b1760e6e by Barry

Finished the first round of feral skills.

1 parent 93d98e04
No preview for this file type
......@@ -1282,7 +1282,7 @@ def check_arena():
winner = 1
while fighting:
actions = battle_arena.step()
time.sleep(4)
time.sleep(3)
out_str = ""
for action in actions:
# TODO: Decide if I should merge magicresistaction with miss action
......@@ -1306,7 +1306,7 @@ def check_arena():
# give a small amount to the loser
if result:
out_str += xp_msg
result, xp_msg = monster2.add_xp(5)
result, xp_msg = monster2.add_xp(action.losing_xp)
if result:
out_str += xp_msg
winner = 1
......@@ -1318,7 +1318,7 @@ def check_arena():
# give a small amount to the loser
if result:
out_str += xp_msg
result, xp_msg = monster.add_xp(5)
result, xp_msg = monster.add_xp(action.losing_xp)
if result:
out_str += xp_msg
winner = 2
......