mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 21:19:18 +01:00
10 lines
356 B
TypeScript
10 lines
356 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "AP",
|
|
"power": "Stärke",
|
|
"accuracy": "Genauigkeit",
|
|
"abilityFlyInText": "{{passive}}{{abilityName}} von {{pokemonName}} wirkt!",
|
|
"passive": "Passive Fähigkeit ", // The space at the end is important
|
|
} as const;
|