mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-28 20:49:19 +01: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
8 lines
388 B
TypeScript
8 lines
388 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const abilityTriggers: SimpleTranslationEntries = {
|
|
"blockRecoilDamage" : "¡{{abilityName}} de {{pokemonName}}\nlo protegió del daño de retroceso!",
|
|
"badDreams": "¡{{pokemonName}} está atormentado!",
|
|
"windPowerCharged": "¡{{pokemonName}} se ha cargado de electricidad gracias a {{moveName}}!",
|
|
} as const;
|