Commit 26e376d0 by BellCodeEditor

save project

parent a9f9b2b9
Showing with 12 additions and 7 deletions
# 英雄角色类 # 英雄角色类
class Hero(object): class Hero(object):
def __init__(self, name): def __init__(self,name):
self.level = 1 self.level = 1
self.hp = 3500 self.hp = 300
self.attack = 388 self.attack = 30
self.name = name self.name = name
def combat(self,enemy): # 攻击 def combat(self,enemy): # 攻击
...@@ -16,7 +16,12 @@ class Hero(object): ...@@ -16,7 +16,12 @@ class Hero(object):
info3 = enemy.name + '还剩下' + str(enemy.hp) + '点生命值' info3 = enemy.name + '还剩下' + str(enemy.hp) + '点生命值'
print(info1 + info2 + info3) print(info1 + info2 + info3)
class Player(Hero):
def __init__(self,name):
super().__init__(name)
self.hp=200
self.attack=60
gui = Player("鬼谷子")
yase = Hero("垭瑟") yase = Hero("垭瑟")
houyi= Hero("后羿") #houyi= Hero("后羿")
yase.combat(houyi) yase.combat(gui)
\ No newline at end of file \ 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