mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 09:58:10 +00:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokeball: SimpleTranslationEntries = {
|
|
"pokeBall": "몬스터볼",
|
|
"greatBall": "슈퍼볼",
|
|
"ultraBall": "하이퍼볼",
|
|
"rogueBall": "로그볼",
|
|
"masterBall": "마스터볼",
|
|
"luxuryBall": "럭셔리볼",
|
|
} as const;
|