mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-11 10:45:34 +00:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokeball: SimpleTranslationEntries = {
|
|
"pokeBall": "Pokéball",
|
|
"greatBall": "Superball",
|
|
"ultraBall": "Hyperball",
|
|
"rogueBall": "Rogueball",
|
|
"masterBall": "Meisterball",
|
|
"luxuryBall": "Luxusball",
|
|
} as const;
|