Coverage for thb/meta/characters/aya.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 -*-
2from __future__ import annotations
4# -- stdlib --
5# -- third party --
6# -- own --
7from thb import characters
8from thb.meta.common import ui_meta
11# -- code --
12@ui_meta(characters.aya.UltimateSpeed)
13class UltimateSpeed:
14 # Skill
15 name = '最速'
16 description = '|B锁定技|r,你的回合内,当你使用本回合的第二张牌时,你摸一张牌,然后你使用卡牌时无距离限制,直到回合结束。'
19@ui_meta(characters.aya.UltimateSpeedAction)
20class UltimateSpeedAction:
21 def effect_string(self, act):
22 return '|G【%s】|r:“哼哼,你已经跟不上我的速度了吧~”' % (
23 act.source.ui_meta.name,
24 )
26 def sound_effect(self, act):
27 return 'thb-cv-aya_ultimatespeed'
30@ui_meta(characters.aya.Aya)
31class Aya:
32 # Character
33 name = '射命丸文'
34 title = '幻想乡最速'
35 illustrator = '渚FUN'
36 cv = '君寻'
38 port_image = 'thb-portrait-aya'
39 figure_image = 'thb-figure-aya'
40 miss_sound_effect = 'thb-cv-aya_miss'