Commit 5ab2f15c by BellCodeEditor

save project

parent 9212eb0a
Showing with 6 additions and 4 deletions
import random
class Hero(object):
def __init__(self, name):
self.name = name
......@@ -25,7 +25,6 @@ class Hero(object):
info3 = enemy.name+"阵亡,游戏结束"
info = info1+info2+info3
print(info)
print('你干嘛啊~~')
exit()
class Player(Hero):
......@@ -37,8 +36,11 @@ class Player(Hero):
self.hero_type = hero_type
print("角色"+self.name+"创建成功,英雄类型为:", self.hero_type)
print("当前等级、血量、攻击力分别为:",self.level,self.hp,self.attack)
print('-'*30)
print(' 战斗开始')
houyi=Player("射手","后羿")
yase
print('-'*30)
print(' 战斗开始')
def cure(self):
c=random.randint(35,50)
self.hp+=c
......
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