mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
29 lines
662 B
TypeScript
29 lines
662 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const nature: SimpleTranslationEntries = {
|
||
|
"Hardy": "Fuerte",
|
||
|
"Lonely": "Huraña",
|
||
|
"Brave": "Audaz",
|
||
|
"Adamant": "Firme",
|
||
|
"Naughty": "Pícara",
|
||
|
"Bold": "Osada",
|
||
|
"Docile": "Dócil",
|
||
|
"Relaxed": "Plácida",
|
||
|
"Impish": "Agitada",
|
||
|
"Lax": "Floja",
|
||
|
"Timid": "Miedosa",
|
||
|
"Hasty": "Activa",
|
||
|
"Serious": "Seria",
|
||
|
"Jolly": "Alegre",
|
||
|
"Naive": "Ingenua",
|
||
|
"Modest": "Modesta",
|
||
|
"Mild": "Afable",
|
||
|
"Quiet": "Mansa",
|
||
|
"Bashful": "Tímida",
|
||
|
"Rash": "Alocada",
|
||
|
"Calm": "Serena",
|
||
|
"Gentle": "Amable",
|
||
|
"Sassy": "Grosera",
|
||
|
"Careful": "Cauta",
|
||
|
"Quirky": "Rara"
|
||
|
} as const;
|