mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 00:56:08 +00:00
11 lines
377 B
TypeScript
11 lines
377 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
|
||
|
export const pokeball: SimpleTranslationEntries = {
|
||
|
"pokeBall": "モンスターボール",
|
||
|
"greatBall": "スーパーボール",
|
||
|
"ultraBall": "ハイパーボール",
|
||
|
"rogueBall": "ローグボール",
|
||
|
"masterBall": "マスターボール",
|
||
|
"luxuryBall": "ゴージャスボール",
|
||
|
} as const;
|