关卡连接:
https://codecombat.163.com/play/level/cupboards-of-kithgard
谁知道什么样的恐怖事情潜伏在 Kithgard 的橱柜里?
简介:
你可以在 while-true循环 前执行任何动作。
hero.moveUp;
while True:
hero.attack("Brak")
默认代码
# 周围可能有东西能帮到你。
# 首先,移动到橱柜。
# 然后,使用while-true循环攻击"Cupboard"(橱柜)。
概览
你不可能一下解决太多的食人魔守卫,不过你可能会在「橱柜」里找到些什么有用的东西?
首先移动到 "Cupboard" 附近(站在红 X 上)。但它看起来好像上锁了,所以你需要用 while-true 循环来重复攻击「橱柜」,以此破开它。
橱柜里的骷髅 解法
# 周围可能有东西能帮到你。
# 首先,移动到橱柜。
hero.moveUp()
hero.moveRight(2)
hero.moveRight(2)
然后,使用while-true循环攻击"Cupboard"(橱柜)。
while True:
hero.attack("Cupboard")