mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-03 06:52:16 +02:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import { SimpleTranslationEntries } from '#app/plugins/i18n';
|
|
|
|
export const pokeball: SimpleTranslationEntries = {
|
|
'pokeBall': 'Poké Ball',
|
|
'greatBall': 'Great Ball',
|
|
'ultraBall': 'Ultra Ball',
|
|
'rogueBall': 'Rogue Ball',
|
|
'masterBall': 'Master Ball',
|
|
'luxuryBall': 'Luxury Ball',
|
|
} as const;
|