mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 18:01:05 +00:00
b189289890
Updated: - `it/fight-ui-handler` - `it/growth` - `it/nature`
29 lines
663 B
TypeScript
29 lines
663 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const nature: SimpleTranslationEntries = {
|
|
"Hardy": "Ardita",
|
|
"Lonely": "Schiva",
|
|
"Brave": "Audace",
|
|
"Adamant": "Decisa",
|
|
"Naughty": "Birbona",
|
|
"Bold": "Sicura",
|
|
"Docile": "Docile",
|
|
"Relaxed": "Placida",
|
|
"Impish": "Scaltra",
|
|
"Lax": "Fiacca",
|
|
"Timid": "Timida",
|
|
"Hasty": "Lesta",
|
|
"Serious": "Seria",
|
|
"Jolly": "Allegra",
|
|
"Naive": "Ingenuaa",
|
|
"Modest": "Modesta",
|
|
"Mild": "Mite",
|
|
"Quiet": "Quieta",
|
|
"Bashful": "Ritrosa",
|
|
"Rash": "Ardente",
|
|
"Calm": "Calma",
|
|
"Gentle": "Gentile",
|
|
"Sassy": "Vivace",
|
|
"Careful": "Cauta",
|
|
"Quirky": "Furba"
|
|
} as const; |