Commit ddea89b2 by BellCodeEditor

save project

parent b3fd82d7
Showing with 22 additions and 0 deletions
class Hore:
def __init__(self,name):
self.level=1
self.hp=250
self.attack=40
def combat(self,enemy):
info1=self.name+"对"+enemy.name+"发起攻击"
inof2="造成"+str(self.attack)+"点攻击"
print(inof)
else:
inof3=enemy.name+"阵亡,游戏结束"
inof=inof1+inof2+inof3
print(inof)
else:
inof3=enemy.name+"阵亡,游戏结束"
inof=inof1+inof2+inof3
print(inof)
exit()
yase=Hore("亚瑟")
houyi=Hore("后羿")
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