mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-27 03:07:28 +00:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
||
|
"moveset": "기술",
|
||
|
"gender": "성별:",
|
||
|
"ability": "특성:",
|
||
|
"nature": "성격:",
|
||
|
"epic": "에픽",
|
||
|
"rare": "레어",
|
||
|
"common": "커먼"
|
||
|
} as const;
|