Commit daa36c5e by BellCodeEditor

save project

parent 35053c20
Showing with 5 additions and 3 deletions
......@@ -9,8 +9,9 @@ class Hero(object):
def cure(self): # 治疗
self.hp+=55
if self.hp>self.max_hp:
self.hp=self.max_hp
if self.hp>self.max_hp:
self.hp=self.max_hp
print(self)
def combat(self, enemy): # 普通攻击
info1 = self.name+"对"+enemy.name+"发起进攻,"
info2 = "造成"+str(self.attack)+"点伤害,"
......@@ -32,5 +33,5 @@ class Player(Hero):
houyi = Player("射手", "后羿")
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