Coverage for thb/meta/modes/thbnewbie.py : 100%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# -*- coding: utf-8 -*-
3# -- stdlib --
4# -- third party --
5# -- own --
6from thb import thbnewbie
7from thb.meta.common import ui_meta
10# -- code --
11@ui_meta(thbnewbie.THBattleNewbie)
12class THBattleNewbie:
13 name = '琪露诺的完美THB教室'
14 logo = 'thb-modelogo-newbie'
15 description = (
16 '|R游戏人数|r:1人+1NPC。\n'
17 '\n'
18 '|G游戏目标|r:让琪露诺带你飞。\n'
19 '\n'
20 '|G胜利条件|r:完整地完成教学,不掉线。\n'
21 '\n'
22 ).strip()
24 roles_disp = {
25 thbnewbie.THBNewbieRole.HIDDEN: '?',
26 thbnewbie.THBNewbieRole.NEWBIE: '萌新',
27 thbnewbie.THBNewbieRole.BAKA: '笨蛋',
28 }