mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 00:26:15 +00:00
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokeball: SimpleTranslationEntries = {
|
||
|
"pokeBall": "몬스터볼",
|
||
|
"greatBall": "슈퍼볼",
|
||
|
"ultraBall": "하이퍼볼",
|
||
|
"rogueBall": "로그볼",
|
||
|
"masterBall": "마스터볼",
|
||
|
"luxuryBall": "럭셔리볼",
|
||
|
} as const;
|