Hide keyboard shortcuts

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 -*- 

2 

3 

4# -- stdlib -- 

5# -- third party -- 

6# -- own -- 

7from thb import characters 

8from thb.meta.common import ui_meta 

9 

10 

11# -- code -- 

12 

13 

14@ui_meta(characters.akari.AkariSkill) 

15class AkariSkill: 

16 # Skill 

17 name = '阿卡林' 

18 description = '消失在画面里的能力。在开局之前没有人知道这是谁。' 

19 

20 

21@ui_meta(characters.akari.Akari) 

22class Akari: 

23 # Character 

24 name = '随机角色' 

25 title = '会是谁呢' 

26 

27 port_image = 'thb-portrait-akari'