Commit b215e394 by BellCodeEditor

auto save

parent de0444a9
Showing with 9 additions and 8 deletions
......@@ -6,14 +6,15 @@ class Hero:
self.attack = attack
def upgrade():
yase.level += 1
yase.hp += 50
yase.attack += 4
def upgrade(self):
self.level += 1
self.hp += 50
self.attack += 4
yase = Hero("亚瑟",300,20)
upgrade()
upgrade()
yase.upgrade()
print("yase的血量为:",yase.hp)
\ No newline at end of file
print("亚瑟的等级为:",yase.level)
print("亚瑟的血量为:",yase.hp)
print("亚瑟的攻击力为:",yase.attack)
\ 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