mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-21 08:20:49 +00:00
e5cd95859d
Co-authored-by: hjh <j1441257360@163.com>
29 lines
666 B
TypeScript
29 lines
666 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const nature: SimpleTranslationEntries = {
|
|
"Hardy": "勤奋",
|
|
"Lonely": "怕寂寞",
|
|
"Brave": "勇敢",
|
|
"Adamant": "固执",
|
|
"Naughty": "顽皮",
|
|
"Bold": "大胆",
|
|
"Docile": "坦率",
|
|
"Relaxed": "悠闲",
|
|
"Impish": "淘气",
|
|
"Lax": "乐天",
|
|
"Timid": "胆小",
|
|
"Hasty": "急躁",
|
|
"Serious": "认真",
|
|
"Jolly": "爽朗",
|
|
"Naive": "天真",
|
|
"Modest": "内敛",
|
|
"Mild": "慢吞吞",
|
|
"Quiet": "冷静",
|
|
"Bashful": "害羞",
|
|
"Rash": "马虎",
|
|
"Calm": "温和",
|
|
"Gentle": "温顺",
|
|
"Sassy": "自大",
|
|
"Careful": "慎重",
|
|
"Quirky": "浮躁"
|
|
} as const; |