# You'll need good strategy to win this one!
# Your clone will have the same equipment you have!
# But, they're not very skilled at using special powers.
while True:
enemy = hero.findNearestEnemy()
if enemy:
if hero.isReady("cleave"):
hero.cleave(enemy)
elif hero.isReady("bash"):
hero.bash(enemy)
elif hero.isReady("chain-lightning"):
hero.cast("chain-lightning", enemy)
else:
hero.attack(enemy)
# You'll need good strategy to win this one!
# Your clone will have the same equipment you have!
# But, they're not very skilled at using special powers.
while True:
enemy = hero.findNearestEnemy()
if enemy:
if hero.isReady("cleave") and enemy.type == "archer":
hero.cleave(enemy)
elif hero.isReady("bash"):
hero.bash(enemy)
elif hero.isReady("chain-lightning")and enemy.type == "archer":
hero.cast("chain-lightning", enemy)
else:
hero.attack(enemy)