What is the best stragegy in the giant’s gate?
I tried to defend with fireball and summon shaman to attack but still not make it
while True:
hero.summon("shaman", "A")
enemies=hero.findEnemies()
for enemy in enemies:
friends=hero.findFriends()
if enemy.health>0 :
if enemy and enemy.type!="giant" and enemy.type!=hero.type :
if enemy.type!="munchkin" and enemy.type!="thrower" and enemy.type!="shaman":
hero.cast("lightning",enemy.x,enemy.y)
else:
hero.cast("fireball", enemy.x,enemy.y)