Commit d4c128c4 by BellCodeEditor

save project

parent ebaa796c
Showing with 7 additions and 4 deletions
...@@ -6,6 +6,9 @@ class Hero: ...@@ -6,6 +6,9 @@ class Hero:
self.attack=attack self.attack=attack
def upgrade(self): def upgrade(self):
self.level=self.level+1 self.level+=1
self.hp=self.hp + 50 self.hp+=50
self.attack=self.attack + 4 self.attack+=4
\ No newline at end of file yase=Hero('yase',300,20)
yase.upgrade()
print(yase.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