Commit 83796d50 by BellCodeEditor

save project

parent d2163548
Showing with 2 additions and 18 deletions
import random
class Hero(object): class Hero(object):
def __init__(self, name): def __init__(self, name):
self.name = name self.name = name
...@@ -44,19 +43,4 @@ print(p) ...@@ -44,19 +43,4 @@ print(p)
print(" 战斗开始") print(" 战斗开始")
while True: while True:
print(p) print(p)
n=input("请选择技能,1攻击、2治疗术:") n=input("请选择技能,1攻击、2治疗术:")
if n=="q": \ No newline at end of file
print("游戏退出")
break
elif n=="1":
houyi.combat(yase)
elif n=="2":
houyi.cure()
else:
print("笨蛋重输")
continue
num=random.randint(1,3)
if num==1:
yase.cure()
else:
yase.combat(houyi)
\ No newline at end of file
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