Commit b215e394 by BellCodeEditor

auto save

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