Commit d8cfa25c by BellCodeEditor

save project

parent 37b60281
Showing with 9 additions and 3 deletions
......@@ -6,9 +6,14 @@ class Hero(object):
self.attack = 40
self.name = name
def combat(): # 攻击
def combat(self,nme): # 攻击
nme.hp -= self.attack
info1 = self.name+"对"+nme.name+"发起攻击,"
info2 = str(self.attack)+"点伤害"
info3 = nme.name +"还剩下"+str(nme.hp)+"的血量"
info = info1 + info2 + info3
print(info)
yase = Hero("垭瑟")
houyi= Hero("后羿")
houyi.attack = 60
yase.combat(houyi)
\ 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