mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-02 11:46:11 +00:00
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
|
"moveset": "招式",
|
|
"gender": "性别:",
|
|
"ability": "特性:",
|
|
"nature": "性格:",
|
|
"epic": "史诗",
|
|
"rare": "稀有",
|
|
"common": "常见"
|
|
} as const;
|