mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
10 lines
329 B
TypeScript
10 lines
329 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "Poder",
|
|
"accuracy": "Precisão",
|
|
"abilityFlyInText": " {{passive}}{{pokemonName}}\n{{abilityName}}",
|
|
"passive": "Passiva de ", // The space at the end is important
|
|
} as const;
|