Commit a4de9ee0 by BellCodeEditor

save project

parent 77069f23
Showing with 6 additions and 5 deletions
...@@ -9,8 +9,8 @@ class Hero(object): ...@@ -9,8 +9,8 @@ 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
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)+"点伤害,"
...@@ -28,9 +28,9 @@ class Player(Hero): ...@@ -28,9 +28,9 @@ class Player(Hero):
print("当前等级、血量、攻击力分别为:",self.level,self.hp,self.attack) print("当前等级、血量、攻击力分别为:",self.level,self.hp,self.attack)
print('-'*30) print('-'*30)
print(' 战斗开始') print(' 战斗开始')
def cure(self):
c=random
houyi = Player("射手", "后羿") houyi = Player("射手", "后羿")
yase = Hero("垭瑟") yase = Hero("垭瑟")
whilhture
\ 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