mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-07 16:55:51 +00:00
12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const pokemonInfoContainer: SimpleTranslationEntries = {
|
||
|
"moveset": "Moveset",
|
||
|
"gender": "Gender:",
|
||
|
"ability": "Ability:",
|
||
|
"nature": "Nature:",
|
||
|
"epic": "Epic",
|
||
|
"rare": "Rare",
|
||
|
"common": "Common"
|
||
|
} as const;
|