mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-03 06:52:16 +02:00
Adds the base files needed to start translating Ability trigger messages. Provides one as an example.
5 lines
223 B
TypeScript
5 lines
223 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const abilityTriggers: SimpleTranslationEntries = {
|
|
'blockRecoilDamage' : `{{pokemonName}}'s {{abilityName}}\nprotected it from recoil!`,
|
|
} as const; |