mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-22 00:41:05 +00:00
29 lines
647 B
TypeScript
29 lines
647 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const nature: SimpleTranslationEntries = {
|
||
|
"Hardy": "Hardy",
|
||
|
"Lonely": "Lonely",
|
||
|
"Brave": "Brave",
|
||
|
"Adamant": "Adamant",
|
||
|
"Naughty": "Naughty",
|
||
|
"Bold": "Bold",
|
||
|
"Docile": "Docile",
|
||
|
"Relaxed": "Relaxed",
|
||
|
"Impish": "Impish",
|
||
|
"Lax": "Lax",
|
||
|
"Timid": "Timid",
|
||
|
"Hasty": "Hasty",
|
||
|
"Serious": "Serious",
|
||
|
"Jolly": "Jolly",
|
||
|
"Naive": "Naive",
|
||
|
"Modest": "Modest",
|
||
|
"Mild": "Mild",
|
||
|
"Quiet": "Quiet",
|
||
|
"Bashful": "Bashful",
|
||
|
"Rash": "Rash",
|
||
|
"Calm": "Calm",
|
||
|
"Gentle": "Gentle",
|
||
|
"Sassy": "Sassy",
|
||
|
"Careful": "Careful",
|
||
|
"Quirky": "Quirky"
|
||
|
} as const;
|