mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-10 02:48:49 +00:00
10 lines
313 B
TypeScript
10 lines
313 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokeball: SimpleTranslationEntries = {
|
||
|
"pokeBall": "Poké Ball",
|
||
|
"greatBall": "Mega Ball",
|
||
|
"ultraBall": "Ultra Ball",
|
||
|
"rogueBall": "Rogue Ball",
|
||
|
"masterBall": "Master Ball",
|
||
|
"luxuryBall": "Chich Ball",
|
||
|
} as const;
|