mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-02 16:08:01 +00:00
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokeball: SimpleTranslationEntries = {
|
|
"pokeBall": "Poké Ball",
|
|
"greatBall": "Super Ball",
|
|
"ultraBall": "Ultra Ball",
|
|
"rogueBall": "Rogue Ball",
|
|
"masterBall": "Master Ball",
|
|
"luxuryBall": "Lujo Ball",
|
|
} as const;
|