Commit afbe2c33 by BellCodeEditor

save project

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