Commit 1a206a0e by BellCodeEditor

save project

parent 90250abc
Showing with 10 additions and 0 deletions
import random
class Hero(object): class Hero(object):
def __init__(self, name): def __init__(self, name):
self.name = name self.name = name
...@@ -48,4 +50,12 @@ while True: ...@@ -48,4 +50,12 @@ while True:
Player.combat(houyi,yase) Player.combat(houyi,yase)
elif sb=="2": elif sb=="2":
Player.cure(houyi) Player.cure(houyi)
else:
continue
num=random.randint(1,3)
if num=="1":
yase.cure()
else:
yase.combat(houyi)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment