(self)
| 23 | |
| 24 | @cached_property |
| 25 | def match_layer(self) -> dict: |
| 26 | return { |
| 27 | '壹': 1, '贰': 2, |
| 28 | '叁': 3, '肆': 4, |
| 29 | '伍': 5, '陆': 6, |
| 30 | '柒': 7, '捌': 8, |
| 31 | '玖': 9, '拾': 10, |
| 32 | } |
| 33 | |
| 34 | @cached_property |
| 35 | def battle_config(self) -> GeneralBattleConfig: |
nothing calls this directly
no outgoing calls
no test coverage detected