Commit 103c67f3 by BellCodeEditor

save project

parent a99f60b7
Showing with 7 additions and 3 deletions
...@@ -8,9 +8,13 @@ class Hero(object): ...@@ -8,9 +8,13 @@ class Hero(object):
def combat(self,enemy): def combat(self,enemy):
enemy.hp-=self.attad enemy.hp-=self.attad
infol= infol=self.name+"对"+enemy.name +"发起攻击"
info2= info2="造成"+str(self.attack)+"伤害"
if enemy.hp>0! if enemy.hp>0:
info3=enemy.name+"还剩下"+self.attack
info=info1+info2+info3
yase = Hero("垭瑟") yase = Hero("垭瑟")
houyi= Hero("后羿") houyi= Hero("后羿")
......
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