Commit 2f25ffe9 by BellCodeEditor

save project

parent 15ab3185
Showing with 6 additions and 1 deletions
......@@ -9,7 +9,8 @@ class Hero(object):
def cure(self): # 治疗
self.hp+=55
if self.hp>self.max_hp:
self.hp=self.max_hp
def combat(self, enemy): # 普通攻击
info1 = self.name+"对"+enemy.name+"发起进攻,"
......@@ -32,6 +33,9 @@ class Player(Hero):
houyi = Player("射手", "后羿")
yase = Hero("垭瑟")
while TRUE:
print('-'*30)
\ 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