mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-21 00:11:00 +00:00
8d6a0bb0a1
* implement ice face ability * remove showing ability bar * fixes * add documentations * move code out of phases.ts * add hardcoded eiscue check, localization * add KO locale * remove unnecessary constructor * use && instead of || to specify ice form on eiscue
9 lines
443 B
TypeScript
9 lines
443 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
||
export const abilityTriggers: SimpleTranslationEntries = {
|
||
"blockRecoilDamage" : "{{pokemonName}} 的 {{abilityName}}\n抵消了反作用力!",
|
||
"badDreams": "{{pokemonName}} 被折磨着!",
|
||
"windPowerCharged": "受 {{moveName}} 的影响, {{pokemonName}} 提升了能力!",
|
||
"iceFaceAvoidedDamage": "{{pokemonName}} avoided\ndamage with {{abilityName}}!"
|
||
} as const;
|