fix: info authors

This commit is contained in:
起个名字好难的喵
2025-07-24 21:19:50 +08:00
parent ed5b616f58
commit 2ad4565d23
191 changed files with 609 additions and 484 deletions

View File

@@ -54,52 +54,76 @@ for root, dirs, files in os.walk(folder_path):
print("⚠️ 缺少 info 字段")
continue
author_field = info.get("author")
if author_field is None:
print("⚠️ 缺少 author 字段")
continue
modified = False
author_field = info.get("author")
# 字符串格式处理
if isinstance(author_field, str):
names = [name.strip() for name in author_field.split("&")]
new_authors = []
for name in names:
new_name = author_rename.get(name, name)
author_obj = {"name": new_name}
if new_name in author_links:
author_obj["links"] = author_links[new_name]
new_authors.append(author_obj)
data["info"]["authors"] = new_authors
modified = True
print("✅ 替换为结构化 author")
# 列表格式处理
elif isinstance(author_field, list):
for author_obj in author_field:
if not isinstance(author_obj, dict):
continue
name = author_obj.get("name")
if not name:
continue
new_name = author_rename.get(name, name)
if name != new_name:
author_obj["name"] = new_name
modified = True
print(f"📝 重命名:{name}{new_name}")
# 统一链接字段名
existing_link = author_obj.pop("link", None) or author_obj.pop("url", None) or author_obj.get("links")
if new_name in author_links:
if author_obj.get("links") != author_links[new_name]:
if author_field is not None:
# 旧格式字符串处理
if isinstance(author_field, str):
names = [name.strip() for name in author_field.split("&")]
new_authors = []
for name in names:
new_name = author_rename.get(name, name)
author_obj = {"name": new_name}
if new_name in author_links:
author_obj["links"] = author_links[new_name]
new_authors.append(author_obj)
data["info"]["authors"] = new_authors
modified = True
print("✅ 替换为结构化 authors")
elif isinstance(author_field, list):
for author_obj in author_field:
if not isinstance(author_obj, dict):
continue
name = author_obj.get("name")
if not name:
continue
new_name = author_rename.get(name, name)
if name != new_name:
author_obj["name"] = new_name
modified = True
print(f"🔧 更新链接{new_name}{author_links[new_name]}")
elif "links" not in author_obj and existing_link:
author_obj["links"] = existing_link
modified = True
print(f"🔄 标准化已有链接字段为 links → {existing_link}")
print(f"📝 重命名{name}{new_name}")
existing_link = author_obj.pop("link", None) or author_obj.pop("url", None) or author_obj.get("links")
if new_name in author_links:
if author_obj.get("links") != author_links[new_name]:
author_obj["links"] = author_links[new_name]
modified = True
print(f"🔧 更新链接:{new_name}{author_links[new_name]}")
elif "links" not in author_obj and existing_link:
author_obj["links"] = existing_link
modified = True
print(f"🔄 标准化已有链接字段为 links → {existing_link}")
else:
# 🔧 处理已有结构化 authors 字段,补充 links
authors_field = info.get("authors")
if isinstance(authors_field, list):
for author_obj in authors_field:
if not isinstance(author_obj, dict):
continue
name = author_obj.get("name")
if not name:
continue
new_name = author_rename.get(name, name)
if name != new_name:
author_obj["name"] = new_name
modified = True
print(f"📝 重命名authors{name}{new_name}")
existing_link = author_obj.pop("link", None) or author_obj.pop("url", None) or author_obj.get("links")
if new_name in author_links:
if author_obj.get("links") != author_links[new_name]:
author_obj["links"] = author_links[new_name]
modified = True
print(f"🔧 更新链接authors{new_name}{author_links[new_name]}")
elif "links" not in author_obj and existing_link:
author_obj["links"] = existing_link
modified = True
print(f"🔄 标准化已有链接字段为 links → {existing_link}")
else:
print("⚠️ 缺少 author 字段,且 authors 非标准格式")
if modified:
with open(file_path, "w", encoding="utf-8") as f:

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -4,7 +4,7 @@
"type": "collect",
"authors": [
{
"name": "蜜柑魚",
"name": "this-Fish",
"links": "https://github.com/this-Fish"
}
],

View File

@@ -21,164 +21,165 @@
},
"positions": [
{
"id": 1,
"x": -4124.54,
"y": -2759.87,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -4094.21,
"y": -2747.25,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -4065.99,
"y": -2763.1,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -4040.42,
"y": -2802.05,
"type": "target",
"move_mode": "dash",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 5,
"x": -4024.67,
"y": -2817.47,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 6,
"x": -4024.02,
"y": -2828.33,
"type": "path",
"move_mode": "dash",
"action": "fight",
"action_params": "",
"locked": false,
"point_ext_params": {
"id": 1,
"x": -4124.54,
"y": -2759.87,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -4094.21,
"y": -2747.25,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -4065.99,
"y": -2763.1,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": -4040.42,
"y": -2802.05,
"type": "target",
"move_mode": "dash",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 5,
"x": -4024.67,
"y": -2817.47,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 6,
"x": -4024.02,
"y": -2828.33,
"type": "path",
"move_mode": "dash",
"action": "fight",
"action_params": "",
"locked": false,
"point_ext_params": {
"misidentification": {
"type": [
"unrecognized"
],
"handling_mode": "previousDetectedPoint",
"arrival_time": 0
"type": [
"unrecognized"
],
"handling_mode": "previousDetectedPoint",
"arrival_time": 0
},
"description": "盗宝团",
"monster_tag": "normal"
}
},
{
"id": 7,
"x": -4024.02,
"y": -2828.33,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": -4034.8,
"y": -2797.40,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": -4035.85,
"y": -2805.09,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 10,
"x": -4035.85,
"y": -2805.09,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 11,
"x": -4034.22,
"y": -2809.61,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 12,
"x": -4034.22,
"y": -2809.61,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 13,
"x": -4036.41,
"y": -2810.36,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 14,
"x": -4036.41,
"y": -2810.36,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 15,
"x": -4025.08,
"y": -2817.49,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 16,
"x": -4029.85,
"y": -2815.07,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
},{
}
},
{
"id": 7,
"x": -4024.02,
"y": -2828.33,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": -4034.8,
"y": -2797.4,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": -4035.85,
"y": -2805.09,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 10,
"x": -4035.85,
"y": -2805.09,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 11,
"x": -4034.22,
"y": -2809.61,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 12,
"x": -4034.22,
"y": -2809.61,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 13,
"x": -4036.41,
"y": -2810.36,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 14,
"x": -4036.41,
"y": -2810.36,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 15,
"x": -4025.08,
"y": -2817.49,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 16,
"x": -4029.85,
"y": -2815.07,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
},
{
"id": 17,
"x": -4029.85,
"y": -2815.07,

View File

@@ -85,7 +85,7 @@
{
"id": 8,
"x": -3478.8,
"y": -3761.50,
"y": -3761.5,
"action": "mining",
"move_mode": "walk",
"action_params": "",

View File

@@ -4,7 +4,7 @@
"type": "collect",
"authors": [
{
"name": "蜜柑魚",
"name": "this-Fish",
"links": "https://github.com/this-Fish"
}
],

View File

@@ -4,7 +4,7 @@
"type": "collect",
"authors": [
{
"name": "蜜柑魚",
"name": "this-Fish",
"links": "https://github.com/this-Fish"
}
],

View File

@@ -106,7 +106,7 @@
},
{
"id": 9,
"x": -2565.90,
"x": -2565.9,
"y": -6634.31,
"action": "mining",
"move_mode": "walk",

View File

@@ -4,7 +4,7 @@
"type": "collect",
"authors": [
{
"name": "蜜柑魚",
"name": "this-Fish",
"links": "https://github.com/this-Fish"
}
],

View File

@@ -18,8 +18,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -56,8 +56,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 5,
@@ -209,8 +211,10 @@
"move_mode": "dash",
"action_params": "",
"type": "path",
"locked": false
,"point_ext_params": {"monster_tag": "elite"}
"locked": false,
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 22,

View File

@@ -18,8 +18,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -182,8 +182,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 19,

View File

@@ -18,8 +18,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -92,8 +92,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 9,

View File

@@ -18,8 +18,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -38,8 +38,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 3,

View File

@@ -15,8 +15,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -215,8 +215,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 23,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -130,8 +130,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 14,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -94,8 +94,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 10,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -148,8 +148,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 16,

View File

@@ -103,8 +103,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 11,
@@ -158,8 +160,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 17,

View File

@@ -12,8 +12,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -266,8 +266,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 29,
@@ -332,8 +334,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 36,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -103,8 +103,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 11,
@@ -167,8 +169,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 18,
@@ -231,8 +235,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 25,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -40,8 +40,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 4,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -175,8 +175,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 19,
@@ -221,8 +223,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 24,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -40,8 +40,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 4,
@@ -131,8 +133,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 14,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -112,8 +112,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 12,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -103,8 +103,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 11,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -175,8 +175,8 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"enable_monster_loot_split": true
"type": "path",
"enable_monster_loot_split": true
},
{
"id": 19,
@@ -275,8 +275,8 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"enable_monster_loot_split": true
"type": "path",
"enable_monster_loot_split": true
},
{
"id": 30,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -40,8 +40,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 4,
@@ -77,8 +79,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 8,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -31,8 +31,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 3,

View File

@@ -12,8 +12,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -51,8 +51,10 @@
"type": "orientation",
"move_mode": "walk",
"action": "fight",
"action_params": ""
,"point_ext_params": {"monster_tag": "elite"}
"action_params": "",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 5,

View File

@@ -12,8 +12,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -157,8 +157,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 17,
@@ -293,8 +295,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 32,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -67,8 +67,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "orientation"
,"point_ext_params": {"monster_tag": "elite"}
"type": "orientation",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 7,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -67,8 +67,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 7,
@@ -122,8 +124,10 @@
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 13,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -202,8 +202,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 22,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -49,8 +49,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 5,

View File

@@ -11,8 +11,8 @@
"name": "mno",
"links": "https://github.com/Bedrockx"
}
]
,"enable_monster_loot_split": true
],
"enable_monster_loot_split": true
},
"positions": [
{
@@ -211,8 +211,10 @@
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path"
,"point_ext_params": {"monster_tag": "elite"}
"type": "path",
"point_ext_params": {
"monster_tag": "elite"
}
},
{
"id": 23,

View File

@@ -10,7 +10,13 @@
"tags": [
"迪希雅"
],
"last_modified_time": 1753170814385
"last_modified_time": 1753170814385,
"authors": [
{
"name": "蜜柑魚",
"links": "https://github.com/this-Fish"
}
]
},
"positions": [
{

View File

@@ -10,7 +10,13 @@
"tags": [
"迪希雅"
],
"last_modified_time": 1753170986994
"last_modified_time": 1753170986994,
"authors": [
{
"name": "蜜柑魚",
"links": "https://github.com/this-Fish"
}
]
},
"positions": [
{

View File

@@ -10,7 +10,13 @@
"tags": [
"迪希雅"
],
"last_modified_time": 1753171233794
"last_modified_time": 1753171233794,
"authors": [
{
"name": "蜜柑魚",
"links": "https://github.com/this-Fish"
}
]
},
"positions": [
{

View File

@@ -10,7 +10,13 @@
"tags": [
"迪希雅"
],
"last_modified_time": 1753171812759
"last_modified_time": 1753171812759,
"authors": [
{
"name": "蜜柑魚",
"links": "https://github.com/this-Fish"
}
]
},
"positions": [
{

View File

@@ -11,7 +11,13 @@
"战斗",
"高危"
],
"last_modified_time": 1753172580683
"last_modified_time": 1753172580683,
"authors": [
{
"name": "蜜柑魚",
"links": "https://github.com/this-Fish"
}
]
},
"positions": [
{

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "Tool_tingsu",
"links": ""
"links": "https://github.com/Tooltingsu"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "ddaodan",
"links": ""
"links": "https://github.com/ddaodan"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "ddaodan",
"links": ""
"links": "https://github.com/ddaodan"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "ddaodan",
"links": ""
"links": "https://github.com/ddaodan"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "ddaodan",
"links": ""
"links": "https://github.com/ddaodan"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "ddaodan",
"links": ""
"links": "https://github.com/ddaodan"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",

View File

@@ -5,7 +5,7 @@
"authors": [
{
"name": "汐",
"links": ""
"links": "https://github.com/jiegedabaobei"
}
],
"version": "1.0",