Commit 30484b16 by BellCodeEditor

save project

parent 1d76221c
Showing with 5 additions and 2 deletions
...@@ -9,8 +9,9 @@ class Hero(object): ...@@ -9,8 +9,9 @@ class Hero(object):
def cure(self): # 治疗 def cure(self): # 治疗
self.hp+=55 self.hp+=55
if self.hp>self.max_hp:
self.hp=self.max_hp
print(self.name+"使用治疗术血量增加55")
def combat(self, enemy): # 普通攻击 def combat(self, enemy): # 普通攻击
info1 = self.name+"对"+enemy.name+"发起进攻," info1 = self.name+"对"+enemy.name+"发起进攻,"
info2 = "造成"+str(self.attack)+"点伤害," info2 = "造成"+str(self.attack)+"点伤害,"
...@@ -33,5 +34,6 @@ class Player(Hero): ...@@ -33,5 +34,6 @@ class Player(Hero):
houyi = Player("射手", "后羿") houyi = Player("射手", "后羿")
yase = Hero("垭瑟") yase = Hero("垭瑟")
\ 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