因为这关也算复习关,我只好再列单词表了,:)
1 单词复习
code
combat
hero
move
attack
while
loop
true
false
enemy
find
near
2 相关技能
回顾一下我们已有的技能呗!
findNearestEnemy()
attack()
当然,还有最最重要的while True循环!
3 通关思路
发现一个,干掉一个!哈哈
3.1 源代码
# 在 while true循环里,使用 findNearestEnemy() 并攻击!
while True:
enemy = hero.findNearestEnemy()
hero.attack(enemy)
hero.attack(enemy)
A 附注
当前地图:Kithgard地牢
关卡链接:https://codecombat.163.com/play/dungeon
B 同主题文章
极客战记攻略——Kithgard地牢 | python
极客战记攻略——深藏的宝石 | python
极客战记攻略——幽影守卫 | python
极客战记攻略——真名实姓 | python
极客战记攻略——高举之剑 | python
极客战记攻略——焰中舞动 | python
极客战记攻略——kithmaze二度冒险 | python
极客战记攻略——老对手 | python
极客战记攻略——名称大师 | python