mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-22 08:51:04 +00:00
10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokeball: SimpleTranslationEntries = {
|
||
|
"pokeBall": "Pokéball",
|
||
|
"greatBall": "Superball",
|
||
|
"ultraBall": "Hyperball",
|
||
|
"rogueBall": "Rogueball",
|
||
|
"masterBall": "Meisterball",
|
||
|
"luxuryBall": "Luxusball",
|
||
|
} as const;
|