mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 18:47:55 +08:00
fix: Replacing strange space characters in ResourceUpdater for JP Recruit
fix #8027
This commit is contained in:
@@ -620,6 +620,17 @@
|
|||||||
"术师干员"
|
"术师干员"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "char_272_strong",
|
||||||
|
"name": "ジェイ",
|
||||||
|
"rarity": 4,
|
||||||
|
"tags": [
|
||||||
|
"快速复活",
|
||||||
|
"输出",
|
||||||
|
"近战位",
|
||||||
|
"特种干员"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "char_155_tiger",
|
"id": "char_155_tiger",
|
||||||
"name": "インドラ",
|
"name": "インドラ",
|
||||||
@@ -1105,6 +1116,42 @@
|
|||||||
"近卫干员"
|
"近卫干员"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "char_218_cuttle",
|
||||||
|
"name": "アンドレアナ",
|
||||||
|
"rarity": 5,
|
||||||
|
"tags": [
|
||||||
|
"输出",
|
||||||
|
"减速",
|
||||||
|
"远程位",
|
||||||
|
"资深干员",
|
||||||
|
"狙击干员"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "char_349_chiave",
|
||||||
|
"name": "キアーベ",
|
||||||
|
"rarity": 5,
|
||||||
|
"tags": [
|
||||||
|
"费用回复",
|
||||||
|
"输出",
|
||||||
|
"近战位",
|
||||||
|
"资深干员",
|
||||||
|
"先锋干员"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "char_344_beewax",
|
||||||
|
"name": "ビーズワクス",
|
||||||
|
"rarity": 5,
|
||||||
|
"tags": [
|
||||||
|
"群攻",
|
||||||
|
"防护",
|
||||||
|
"远程位",
|
||||||
|
"资深干员",
|
||||||
|
"术师干员"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "char_103_angel",
|
"id": "char_103_angel",
|
||||||
"name": "エクシア",
|
"name": "エクシア",
|
||||||
@@ -1372,6 +1419,18 @@
|
|||||||
"高级资深干员",
|
"高级资深干员",
|
||||||
"辅助干员"
|
"辅助干员"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "char_293_thorns",
|
||||||
|
"name": "ソーンズ",
|
||||||
|
"rarity": 6,
|
||||||
|
"tags": [
|
||||||
|
"输出",
|
||||||
|
"防护",
|
||||||
|
"近战位",
|
||||||
|
"高级资深干员",
|
||||||
|
"近卫干员"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"tags": {
|
"tags": {
|
||||||
|
|||||||
@@ -934,6 +934,12 @@ bool update_recruitment_data(const std::filesystem::path& input_dir, const std::
|
|||||||
if (name == "Justice Knight") {
|
if (name == "Justice Knight") {
|
||||||
name = "'Justice Knight'";
|
name = "'Justice Knight'";
|
||||||
}
|
}
|
||||||
|
if (name == " レオンハルト") {
|
||||||
|
name = "レオンハルト";
|
||||||
|
}
|
||||||
|
if (name == "ウィーディ ") {
|
||||||
|
name = "ウィーディ";
|
||||||
|
}
|
||||||
chars_list.emplace_back(name);
|
chars_list.emplace_back(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user