mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-14 20:25:57 +00:00
* finish wind moves + tailwind implementation * move code and add documentations * remove partial tag of wind_power * add translations, fix move bugs * fix ability trigger message * fix ability trigger message * add es localization * move out of else statement
9 lines
448 B
TypeScript
9 lines
448 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const abilityTriggers: SimpleTranslationEntries = {
|
|
"blockRecoilDamage" : "{{pokemonName}}'s {{abilityName}}\nprotected it from recoil!",
|
|
"badDreams": "{{pokemonName}} is tormented!",
|
|
"windPowerCharged": "Being hit by {{moveName}} charged {{pokemonName}} with power!",
|
|
"perishBody": "{{pokemonName}}'s {{abilityName}}\n will faint both pokemon in 3 turns!",
|
|
} as const;
|