fix: info authors
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "Tool_tingsu",
|
||||
"links": ""
|
||||
"links": "https://github.com/Tooltingsu"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "Tool_tingsu",
|
||||
"links": ""
|
||||
"links": "https://github.com/Tooltingsu"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"type": "collect",
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"name": "this-Fish",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
],
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
{
|
||||
"id": 8,
|
||||
"x": -3478.8,
|
||||
"y": -3761.50,
|
||||
"y": -3761.5,
|
||||
"action": "mining",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"type": "collect",
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"name": "this-Fish",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
],
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"type": "collect",
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"name": "this-Fish",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
],
|
||||
|
||||
@@ -106,7 +106,7 @@
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": -2565.90,
|
||||
"x": -2565.9,
|
||||
"y": -6634.31,
|
||||
"action": "mining",
|
||||
"move_mode": "walk",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"type": "collect",
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"name": "this-Fish",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
],
|
||||
|
||||
@@ -213,4 +213,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -205,4 +205,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -83,4 +83,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -249,4 +249,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -68,4 +68,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -142,4 +142,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -141,4 +141,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -150,4 +150,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -123,4 +123,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -119,4 +119,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -150,4 +150,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -114,4 +114,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -132,4 +132,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -177,4 +177,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -150,4 +150,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -285,4 +285,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -299,4 +299,4 @@
|
||||
"type": "path"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -115,4 +115,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -78,4 +78,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -224,4 +224,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -77,4 +77,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -133,4 +133,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -143,4 +143,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -152,4 +152,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -151,4 +151,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -168,4 +168,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -180,4 +180,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -159,4 +159,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -232,4 +232,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -123,4 +123,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -132,4 +132,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -186,4 +186,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -105,4 +105,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -87,4 +87,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -96,4 +96,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -132,4 +132,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -114,4 +114,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -105,4 +105,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -150,4 +150,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -115,4 +115,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -87,4 +87,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -223,4 +223,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -179,4 +179,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -125,4 +125,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -113,4 +113,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -253,4 +253,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -249,4 +249,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -150,4 +150,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -339,4 +339,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -140,4 +140,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -167,4 +167,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -93,4 +93,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -140,4 +140,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -113,4 +113,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -129,4 +129,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -101,4 +101,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -238,4 +238,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -140,4 +140,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -194,4 +194,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -84,4 +84,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -331,4 +331,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -196,4 +196,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -70,4 +70,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -79,4 +79,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -70,4 +70,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -205,4 +205,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -232,4 +232,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -127,4 +127,4 @@
|
||||
"action_params": "wait(1)"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -144,4 +144,4 @@
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -127,4 +127,4 @@
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -175,4 +175,4 @@
|
||||
"action_params": "wait(1)"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
@@ -223,4 +223,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -169,4 +169,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -151,4 +151,4 @@
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user