Commit a999dbe7 by BellCodeEditor

save project

parent a5129d2a
Showing with 22 additions and 9 deletions
import random import random
class Hero(object):
class Hero(object):
def __init__(self, name): def __init__(self, name):
self.name = name self.name = name
self.level = 1 self.level = 1
...@@ -27,7 +28,7 @@ import random ...@@ -27,7 +28,7 @@ import random
print(info) print(info)
exit() exit()
class Player(Hero): class Player(Hero):
def __init__(self,hero_type,name): def __init__(self,hero_type,name):
super().__init__(name) super().__init__(name)
self.hp = 200 self.hp = 200
...@@ -37,11 +38,24 @@ import random ...@@ -37,11 +38,24 @@ import random
print("角色"+self.name+"创建成功,英雄类型为:", self.hero_type) print("角色"+self.name+"创建成功,英雄类型为:", self.hero_type)
print("当前等级、血量、攻击力分别为:",self.level,self.hp,self.attack) print("当前等级、血量、攻击力分别为:",self.level,self.hp,self.attack)
houyi = Player("射手", "后羿") houyi = Player("射手", "后羿")
yase = Hero("垭瑟") yase = Hero("垭瑟")
print('-'*30) print('-'*30)
print(' 开始战斗') print(' 开始战斗')
while True: while True:
print('-'*30) print('-'*30)
a=input('请选择释放英雄技能(1攻击/2治疗):') a=input('请选择释放英雄技能(1攻击/2治疗):')
if if a=='1':
\ No newline at end of file houyi.combat(yase)
elif a=='2':
houyi.cure()
elif a=='q':
break
exit()
else:
print('请重新输入')
aa=random.randint(1,3)
if aa=='1':
yase.cure()
else:
yase.combat(houyi)
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