Commit f1f91e63 by BellCodeEditor

save project

parent d2178871
Showing with 4 additions and 4 deletions
...@@ -4,10 +4,10 @@ class Hero: ...@@ -4,10 +4,10 @@ class Hero:
self.hp=20 self.hp=20
self.attack=300 self.attack=300
def upgrade(): def upgrade(self):
yase.level=yase+1 self.level=yase+1
yase.hp=yase.hp+50 self.hp=yase.hp+50
yase.attace=yace.attace+4 self.attace=yace.attace+4
yase = Hero("垭瑟",300,20) yase = Hero("垭瑟",300,20)
houyi=Hero("后羿",240,23) houyi=Hero("后羿",240,23)
print(yase.hp) print(yase.hp)
......
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