Commit afbe2c33 by BellCodeEditor

save project

parent 6aa1b4e9
Showing with 2 additions and 3 deletions
...@@ -7,11 +7,10 @@ class Hero(object): ...@@ -7,11 +7,10 @@ class Hero(object):
self.name = name self.name = name
def combat(self,emol): def combat(self,emol):
if emol.hp>0:
info1=self.name+"对"+emol.name+"发起进攻" info1=self.name+"对"+emol.name+"发起进攻"
info2="造成"+str(self.attack)+"点伤害" info2="造成"+str(self.attack)+"点伤害"
info3=emol.name+"剩下"+str(emol.hp-self.attack)+"血量" # 攻击 info3=emol.name+"剩下"+str(emol.hp-self.attack)+"血量"
info=info1+info2+info3 if emol.hp>0: # 攻击 info=info1+info2+info3
print(info) print(info)
else: else:
print(emol.name+"阵亡") print(emol.name+"阵亡")
......
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