Commit fd740d47 by BellCodeEditor

save project

parent da60e227
Showing with 10 additions and 7 deletions
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
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 = 250
self.attack = 388 self.attack = 40
self.name = name self.name = name
def combat(self,enemy): # 攻击 def combat(self,enemy): # 攻击
...@@ -16,7 +16,10 @@ class Hero(object): ...@@ -16,7 +16,10 @@ 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):
yase = Hero("垭瑟") def __init__(self,name):
houyi= Hero("后羿") super().__init__(name:)
yase.combat(houyi) self.attack = 50
\ No newline at end of file player = player("后羿")
print("“玩家血量值为:",player.hp)
print("“玩家公鸡力为:",player.hp)
\ 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