标签:over 分享 蓝色 img find blog 命令 中间 http
第十八关 最后的kithman族
大家发现没有,这一关跟之前的循环又循环很像,按照蓝色箭头走,右、上、右、下、上、右完成
一个循环。明显要使用while True了。只是中间有了敌人,在适当的地方加上hero.attack(enemy)
命令。
代码如下:
1 # 使用loop循环移动并攻击目标 2 3 while True: 4 hero.moveRight() 5 hero.moveUp() 6 enemy=hero.findNearestEnemy() 7 hero.attack(enemy) 8 hero.attack(enemy) 9 hero.moveRight() 10 hero.moveDown() 11 hero.moveDown() 12 hero.moveUp()
【codecombat】 试玩全攻略 第十八关 最后的kithman族
标签:over 分享 蓝色 img find blog 命令 中间 http
原文地址:http://www.cnblogs.com/hali/p/6198463.html