mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +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;
|