Commit 7718c2f4 by BellCodeEditor

save project

parent 2fb5add5
Showing with 3 additions and 4 deletions
...@@ -8,14 +8,13 @@ class Hero(object): ...@@ -8,14 +8,13 @@ class Hero(object):
def combat(self,enemy): # 攻击 def combat(self,enemy): # 攻击
enemy.hp-=self.attack enemy.hp-=self.attack
info1=self.name+"对"+enemy.name+"发起进攻"
info2="造成"+str(self.attack)+"点伤害"
if self.hp>0: if self.hp>0:
info1=self.name+"对"+enemy.name+"发起进攻"
info2="造成"+str(self.attack)+"点伤害"
info3=self.name+"还剩下"+str(enemy.hp)+"血量" info3=self.name+"还剩下"+str(enemy.hp)+"血量"
else: else:
info1=self.name+"对"+enemy.name+"发起进攻"
info2="造成"+str(self.attack)+"点伤害"
info3=self.name+"阵亡,游戏结束" info3=self.name+"阵亡,游戏结束"
exit()
info=info1+info2+info3 info=info1+info2+info3
print(info) print(info)
yase = Hero("垭瑟") yase = 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