fix: Replacing strange space characters in ResourceUpdater for JP Recruit

fix #8027
This commit is contained in:
Constrat
2024-01-16 23:16:18 +01:00
parent 5ec4a6f71e
commit 7bbb5f3122
2 changed files with 65 additions and 0 deletions

View File

@@ -620,6 +620,17 @@
"术师干员"
]
},
{
"id": "char_272_strong",
"name": "ジェイ",
"rarity": 4,
"tags": [
"快速复活",
"输出",
"近战位",
"特种干员"
]
},
{
"id": "char_155_tiger",
"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",
"name": "エクシア",
@@ -1372,6 +1419,18 @@
"高级资深干员",
"辅助干员"
]
},
{
"id": "char_293_thorns",
"name": "ソーンズ",
"rarity": 6,
"tags": [
"输出",
"防护",
"近战位",
"高级资深干员",
"近卫干员"
]
}
],
"tags": {

View File

@@ -934,6 +934,12 @@ bool update_recruitment_data(const std::filesystem::path& input_dir, const std::
if (name == "Justice Knight") {
name = "'Justice Knight'";
}
if (name == " レオンハルト") {
name = "レオンハルト";
}
if (name == "ウィーディ ") {
name = "ウィーディ";
}
chars_list.emplace_back(name);
}
}