mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 14:47:12 +00:00
7d07755718
* Update ability-trigger.ts * Update ability.ts * Update battle.ts * Update bgm-name.ts * Update challenges.ts * Update dialogue.ts * Update modifier-type.ts * Update modifier-type.ts * Update move.ts * Update move.ts * Update pokemon-info.ts * Update pokemon-info.ts * Update splash-messages.ts * Update starter-select-ui-handler.ts * Update bgm-name.ts * Update splash-messages.ts * Update src/locales/zh_CN/battle.ts 级 → Lv. * Update src/locales/zh_CN/modifier-type.ts Co-authored-by: RimKnight <rimknight852@gmail.com> * Update src/locales/zh_CN/modifier-type.ts Co-authored-by: RimKnight <rimknight852@gmail.com> * Update splash-messages.ts --------- Co-authored-by: RimKnight <rimknight852@gmail.com>
26 lines
777 B
TypeScript
26 lines
777 B
TypeScript
import { TranslationEntries } from "#app/interfaces/locales";
|
||
|
||
export const challenges: TranslationEntries = {
|
||
"title": "适用挑战条件",
|
||
"illegalEvolution": "{{pokemon}}变成了\n不符合此挑战条件的宝可梦!",
|
||
"singleGeneration": {
|
||
"name": "单一世代",
|
||
"desc": "你只能使用第{{gen}}\n世代的宝可梦",
|
||
"desc_default": "你只能使用所选\n世代的宝可梦",
|
||
"gen_1": "一",
|
||
"gen_2": "二",
|
||
"gen_3": "三",
|
||
"gen_4": "四",
|
||
"gen_5": "五",
|
||
"gen_6": "六",
|
||
"gen_7": "七",
|
||
"gen_8": "八",
|
||
"gen_9": "九",
|
||
},
|
||
"singleType": {
|
||
"name": "单属性",
|
||
"desc": "你只能使用{{type}}\n属性的宝可梦",
|
||
"desc_default": "你只能使用所选\n属性的宝可梦"
|
||
},
|
||
} as const;
|