Commit 2617360d by BellCodeEditor

save project

parent db7ac9cb
Showing with 13 additions and 16 deletions
......@@ -4,22 +4,19 @@ class Hero:
self.name=name
self.hp=hp
self.attack=attack
def upgreade(self):
def upgrade(self):
self.attack=self.attack+4
self.level=self.level+1
self.hp=self.hp+50
self.attack=self.attack+4
yase=Hero("垭瑟",300,20)
houyi=Hero("后羿",250,23)
#print("亚瑟的攻击力是:",yase.attack)
#print("后羿的血量是:",houyi.attack)
yase.upgreade()
yase.upgreade()
houyi.upgreade()
houyi.upgreade()
yase=Hero("亚瑟",300,20)
houyi=Hero("后羿",240,23)
yase.upgrade()
houyi.upgrade()
print("亚瑟的等级是:",yase.level)
print("亚瑟的攻击力是:",yase.attack)
print("亚瑟的血量是:",yase.hp)
print("亚瑟的等级是:",yase.level)
print("亚瑟的攻击力是:",yase.attack)
print("后羿的等级是:",houyi.level)
print("后羿的攻击力是:",houyi.attack)
\ No newline at end of file
print("后羿的等级是:",houyi.level)
print("后羿的攻击力是:",houyi.attack)
print("后羿的血量是:",houyi.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