Commit 3120074d by BellCodeEditor

auto save

parent cfb22031
Showing with 11 additions and 0 deletions
...@@ -9,3 +9,13 @@ lvbu=Hero("吕布",500,38) ...@@ -9,3 +9,13 @@ lvbu=Hero("吕布",500,38)
liyuanfang=Hero("李元芳",240,45) liyuanfang=Hero("李元芳",240,45)
print(liyuanfang.hp) print(liyuanfang.hp)
print(lvbu.hp) print(lvbu.hp)
def upgrade1():
lvbu.level=lvbu.level+1
lvbu.hp=lvbu.hp+200
lvbu.sttack=lvbu.sttack+50
def upgrade2():
liyuanfang.level=liyuanfang.level+1
liyuanfang.hp=liyuanfang.hp+150
liyuanfang.sttack=liyuanfang.sttack+70
upgrade1()
upgrade2()
\ 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