Commit 4e487c36 by BellCodeEditor

save project

parent 27a23fe8
Showing with 16 additions and 6 deletions
...@@ -7,8 +7,9 @@ class Hero(object): ...@@ -7,8 +7,9 @@ class Hero(object):
self.max_hp = self.hp self.max_hp = self.hp
def cure(self): # 治疗 def cure(self): # 治疗
self.max_hp = self.max_hp self.hp = self.hp+60
self.hero_type =self max_type if self.hp>self.max_hp:
self.hp =self.max_hp
print(self.name+"使用了治疗,血量增加:", 60,",目前的血量为:",self.hp) print(self.name+"使用了治疗,血量增加:", 60,",目前的血量为:",self.hp)
def combat(self, enemy): # 普通攻击 def combat(self, enemy): # 普通攻击
...@@ -31,7 +32,7 @@ class Player(Hero): ...@@ -31,7 +32,7 @@ class Player(Hero):
self.hp = 200 self.hp = 200
self.attack = 50 self.attack = 50
self.max_hp = self.hp self.max_hp = self.hp
self.hero_type =type self.hero_type =hero_type
print("角色"+self.name+"创建成功,英雄类型为:", self.hero_type) print("角色"+self.name+"创建成功,英雄类型为:", self.hero_type)
print("当前等级、血量、攻击力分别为:",self.level,self.hp,self.attack) print("当前等级、血量、攻击力分别为:",self.level,self.hp,self.attack)
...@@ -39,6 +40,15 @@ houyi = Player("射手", "后羿") ...@@ -39,6 +40,15 @@ houyi = Player("射手", "后羿")
yase = Hero("垭瑟") yase = Hero("垭瑟")
print("_"*30) print("_"*30)
primnt("jdsrdfidsr") primnt("jdsrdfidsr")
while Ture while True()
print("_"*30) print("_"*30)
a=input("gjk") a=input("-#-")
\ No newline at end of file if a=='q':
print("=-.-=")
break
elif a=='2':
print("+-.-+")
yasa.hp=yasa.hp+1000000000000000000000000
elif a=='1':
print("_-.-_")
houyi.hp=houyi.hp-yasa.attack
\ 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