Exemplo n.º 1
0
AI = []
# 喜爱的人
Lover = []
# 憎恨的人
Hater = []
# 位置
Seat = []
# 航海决策堆
SailStack = []
# 航海决策预备堆
preSail = []

print('=====欢迎进入LifeBoat=====')

# 确认游戏人数
playernum = Else.playernum()
print('当前游戏人数为 {} 人'.format(playernum))

# 确认标识
confirm = 1
# 选择角色
while confirm:
    print('=======请选择你的角色========')
    i = 1
    for role in Roles:
        # Else.showNameSkill('{}.'.format(i), role)
        print('{}.'.format(i), end='')
        role.showInfo()
        i += 1
    print('==========================')
    number = Else.inputnum(1, i)