Commit b5507007 by BellCodeEditor

save project

parent f613b324
Showing with 27 additions and 7 deletions
class Hero(object):
import random
class Hero(object):
def __init__(self, name):
self.name = name
self.level = 1
self.hp = 250
self.attack = 40
self.hp = 1
self.attack = 1
self.max_hp = self.hp
def cure(self): # 治疗
......@@ -29,8 +30,8 @@ class Hero(object):
class Player(Hero):
def __init__(self,hero_type,name):
super().__init__(name)
self.hp = 200
self.attack = 50
self.hp = 999999999
self.attack = 999
self.max_hp = self.hp
self.hero_type = hero_type
print("角色"+self.name+"创建成功,英雄类型为:", self.hero_type)
......@@ -42,4 +43,23 @@ print("_"*30)
print(" ZDKS ")
while True:
print("_"*30)
a=input("给爷输(1g/2z):")
\ No newline at end of file
a=input("给爷输(1g/2z):")
if a=="q":
print("YXJX")
exit()
elif a=="1":
houyi.combat(yase)
elif a=="2":
houyi.cure()
else:
print("重输")
continue
b=random.randint(1,3)
if b==1:
yase.combat(houyi)
else:
yase.cure()
\ 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