mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-09 09:45:38 +00:00
10 lines
307 B
TypeScript
10 lines
307 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokeball: SimpleTranslationEntries = {
|
||
|
"pokeBall": "精灵球",
|
||
|
"greatBall": "超级球",
|
||
|
"ultraBall": "高级球",
|
||
|
"rogueBall": "肉鸽球",
|
||
|
"masterBall": "大师球",
|
||
|
"luxuryBall": "豪华球",
|
||
|
} as const;
|