fix: info authors
This commit is contained in:
@@ -54,14 +54,11 @@ for root, dirs, files in os.walk(folder_path):
|
|||||||
print("⚠️ 缺少 info 字段")
|
print("⚠️ 缺少 info 字段")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
author_field = info.get("author")
|
|
||||||
if author_field is None:
|
|
||||||
print("⚠️ 缺少 author 字段")
|
|
||||||
continue
|
|
||||||
|
|
||||||
modified = False
|
modified = False
|
||||||
|
author_field = info.get("author")
|
||||||
|
|
||||||
# 字符串格式处理
|
if author_field is not None:
|
||||||
|
# 旧格式字符串处理
|
||||||
if isinstance(author_field, str):
|
if isinstance(author_field, str):
|
||||||
names = [name.strip() for name in author_field.split("&")]
|
names = [name.strip() for name in author_field.split("&")]
|
||||||
new_authors = []
|
new_authors = []
|
||||||
@@ -73,9 +70,8 @@ for root, dirs, files in os.walk(folder_path):
|
|||||||
new_authors.append(author_obj)
|
new_authors.append(author_obj)
|
||||||
data["info"]["authors"] = new_authors
|
data["info"]["authors"] = new_authors
|
||||||
modified = True
|
modified = True
|
||||||
print("✅ 替换为结构化 author")
|
print("✅ 替换为结构化 authors")
|
||||||
|
|
||||||
# 列表格式处理
|
|
||||||
elif isinstance(author_field, list):
|
elif isinstance(author_field, list):
|
||||||
for author_obj in author_field:
|
for author_obj in author_field:
|
||||||
if not isinstance(author_obj, dict):
|
if not isinstance(author_obj, dict):
|
||||||
@@ -89,7 +85,6 @@ for root, dirs, files in os.walk(folder_path):
|
|||||||
modified = True
|
modified = True
|
||||||
print(f"📝 重命名:{name} → {new_name}")
|
print(f"📝 重命名:{name} → {new_name}")
|
||||||
|
|
||||||
# 统一链接字段名
|
|
||||||
existing_link = author_obj.pop("link", None) or author_obj.pop("url", None) or author_obj.get("links")
|
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 new_name in author_links:
|
||||||
if author_obj.get("links") != author_links[new_name]:
|
if author_obj.get("links") != author_links[new_name]:
|
||||||
@@ -101,6 +96,35 @@ for root, dirs, files in os.walk(folder_path):
|
|||||||
modified = True
|
modified = True
|
||||||
print(f"🔄 标准化已有链接字段为 links → {existing_link}")
|
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:
|
if modified:
|
||||||
with open(file_path, "w", encoding="utf-8") as f:
|
with open(file_path, "w", encoding="utf-8") as f:
|
||||||
json.dump(data, f, ensure_ascii=False, indent=2)
|
json.dump(data, f, ensure_ascii=False, indent=2)
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"type": "collect",
|
"type": "collect",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "蜜柑魚",
|
"name": "this-Fish",
|
||||||
"links": "https://github.com/this-Fish"
|
"links": "https://github.com/this-Fish"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -28,8 +28,8 @@
|
|||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "",
|
"action": "",
|
||||||
"action_params": ""
|
"action_params": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 2,
|
"id": 2,
|
||||||
"x": -4094.21,
|
"x": -4094.21,
|
||||||
"y": -2747.25,
|
"y": -2747.25,
|
||||||
@@ -37,8 +37,8 @@
|
|||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action": "",
|
"action": "",
|
||||||
"action_params": ""
|
"action_params": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 3,
|
"id": 3,
|
||||||
"x": -4065.99,
|
"x": -4065.99,
|
||||||
"y": -2763.1,
|
"y": -2763.1,
|
||||||
@@ -46,8 +46,8 @@
|
|||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action": "",
|
"action": "",
|
||||||
"action_params": ""
|
"action_params": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 4,
|
"id": 4,
|
||||||
"x": -4040.42,
|
"x": -4040.42,
|
||||||
"y": -2802.05,
|
"y": -2802.05,
|
||||||
@@ -55,8 +55,8 @@
|
|||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action": "combat_script",
|
"action": "combat_script",
|
||||||
"action_params": "wait(0.5)"
|
"action_params": "wait(0.5)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 5,
|
"id": 5,
|
||||||
"x": -4024.67,
|
"x": -4024.67,
|
||||||
"y": -2817.47,
|
"y": -2817.47,
|
||||||
@@ -64,8 +64,8 @@
|
|||||||
"move_mode": "fly",
|
"move_mode": "fly",
|
||||||
"action": "stop_flying",
|
"action": "stop_flying",
|
||||||
"action_params": ""
|
"action_params": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 6,
|
"id": 6,
|
||||||
"x": -4024.02,
|
"x": -4024.02,
|
||||||
"y": -2828.33,
|
"y": -2828.33,
|
||||||
@@ -85,8 +85,8 @@
|
|||||||
"description": "盗宝团",
|
"description": "盗宝团",
|
||||||
"monster_tag": "normal"
|
"monster_tag": "normal"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 7,
|
"id": 7,
|
||||||
"x": -4024.02,
|
"x": -4024.02,
|
||||||
"y": -2828.33,
|
"y": -2828.33,
|
||||||
@@ -94,17 +94,17 @@
|
|||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "",
|
"action": "",
|
||||||
"action_params": ""
|
"action_params": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 8,
|
"id": 8,
|
||||||
"x": -4034.8,
|
"x": -4034.8,
|
||||||
"y": -2797.40,
|
"y": -2797.4,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "",
|
"action": "",
|
||||||
"action_params": ""
|
"action_params": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 9,
|
"id": 9,
|
||||||
"x": -4035.85,
|
"x": -4035.85,
|
||||||
"y": -2805.09,
|
"y": -2805.09,
|
||||||
@@ -113,8 +113,8 @@
|
|||||||
"action": "mining",
|
"action": "mining",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"locked": false
|
"locked": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 10,
|
"id": 10,
|
||||||
"x": -4035.85,
|
"x": -4035.85,
|
||||||
"y": -2805.09,
|
"y": -2805.09,
|
||||||
@@ -122,8 +122,8 @@
|
|||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "combat_script",
|
"action": "combat_script",
|
||||||
"action_params": "wait(0.5)"
|
"action_params": "wait(0.5)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 11,
|
"id": 11,
|
||||||
"x": -4034.22,
|
"x": -4034.22,
|
||||||
"y": -2809.61,
|
"y": -2809.61,
|
||||||
@@ -132,8 +132,8 @@
|
|||||||
"action": "mining",
|
"action": "mining",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"locked": false
|
"locked": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 12,
|
"id": 12,
|
||||||
"x": -4034.22,
|
"x": -4034.22,
|
||||||
"y": -2809.61,
|
"y": -2809.61,
|
||||||
@@ -141,8 +141,8 @@
|
|||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "combat_script",
|
"action": "combat_script",
|
||||||
"action_params": "wait(0.5)"
|
"action_params": "wait(0.5)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 13,
|
"id": 13,
|
||||||
"x": -4036.41,
|
"x": -4036.41,
|
||||||
"y": -2810.36,
|
"y": -2810.36,
|
||||||
@@ -151,8 +151,8 @@
|
|||||||
"action": "mining",
|
"action": "mining",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"locked": false
|
"locked": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 14,
|
"id": 14,
|
||||||
"x": -4036.41,
|
"x": -4036.41,
|
||||||
"y": -2810.36,
|
"y": -2810.36,
|
||||||
@@ -160,8 +160,8 @@
|
|||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "combat_script",
|
"action": "combat_script",
|
||||||
"action_params": "wait(0.5)"
|
"action_params": "wait(0.5)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 15,
|
"id": 15,
|
||||||
"x": -4025.08,
|
"x": -4025.08,
|
||||||
"y": -2817.49,
|
"y": -2817.49,
|
||||||
@@ -169,8 +169,8 @@
|
|||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "",
|
"action": "",
|
||||||
"action_params": ""
|
"action_params": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 16,
|
"id": 16,
|
||||||
"x": -4029.85,
|
"x": -4029.85,
|
||||||
"y": -2815.07,
|
"y": -2815.07,
|
||||||
@@ -178,7 +178,8 @@
|
|||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "mining",
|
"action": "mining",
|
||||||
"action_params": ""
|
"action_params": ""
|
||||||
},{
|
},
|
||||||
|
{
|
||||||
"id": 17,
|
"id": 17,
|
||||||
"x": -4029.85,
|
"x": -4029.85,
|
||||||
"y": -2815.07,
|
"y": -2815.07,
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
{
|
{
|
||||||
"id": 8,
|
"id": 8,
|
||||||
"x": -3478.8,
|
"x": -3478.8,
|
||||||
"y": -3761.50,
|
"y": -3761.5,
|
||||||
"action": "mining",
|
"action": "mining",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"type": "collect",
|
"type": "collect",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "蜜柑魚",
|
"name": "this-Fish",
|
||||||
"links": "https://github.com/this-Fish"
|
"links": "https://github.com/this-Fish"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"type": "collect",
|
"type": "collect",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "蜜柑魚",
|
"name": "this-Fish",
|
||||||
"links": "https://github.com/this-Fish"
|
"links": "https://github.com/this-Fish"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -106,7 +106,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 9,
|
"id": 9,
|
||||||
"x": -2565.90,
|
"x": -2565.9,
|
||||||
"y": -6634.31,
|
"y": -6634.31,
|
||||||
"action": "mining",
|
"action": "mining",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"type": "collect",
|
"type": "collect",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "蜜柑魚",
|
"name": "this-Fish",
|
||||||
"links": "https://github.com/this-Fish"
|
"links": "https://github.com/this-Fish"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -56,8 +56,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 5,
|
"id": 5,
|
||||||
@@ -209,8 +211,10 @@
|
|||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"locked": false
|
"locked": false,
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 22,
|
"id": 22,
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -182,8 +182,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 19,
|
"id": 19,
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -92,8 +92,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 9,
|
"id": 9,
|
||||||
|
|||||||
@@ -18,8 +18,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -38,8 +38,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 3,
|
"id": 3,
|
||||||
|
|||||||
@@ -15,8 +15,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -215,8 +215,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 23,
|
"id": 23,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -130,8 +130,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 14,
|
"id": 14,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -94,8 +94,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 10,
|
"id": 10,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -148,8 +148,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 16,
|
"id": 16,
|
||||||
|
|||||||
@@ -103,8 +103,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 11,
|
"id": 11,
|
||||||
@@ -158,8 +160,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 17,
|
"id": 17,
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -266,8 +266,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 29,
|
"id": 29,
|
||||||
@@ -332,8 +334,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 36,
|
"id": 36,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -103,8 +103,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 11,
|
"id": 11,
|
||||||
@@ -167,8 +169,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 18,
|
"id": 18,
|
||||||
@@ -231,8 +235,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 25,
|
"id": 25,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -40,8 +40,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 4,
|
"id": 4,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -175,8 +175,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 19,
|
"id": 19,
|
||||||
@@ -221,8 +223,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 24,
|
"id": 24,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -40,8 +40,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 4,
|
"id": 4,
|
||||||
@@ -131,8 +133,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 14,
|
"id": 14,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -112,8 +112,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 12,
|
"id": 12,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -103,8 +103,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 11,
|
"id": 11,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -175,8 +175,8 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 19,
|
"id": 19,
|
||||||
@@ -275,8 +275,8 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 30,
|
"id": 30,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -40,8 +40,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 4,
|
"id": 4,
|
||||||
@@ -77,8 +79,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 8,
|
"id": 8,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -31,8 +31,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 3,
|
"id": 3,
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -51,8 +51,10 @@
|
|||||||
"type": "orientation",
|
"type": "orientation",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": "fight",
|
"action": "fight",
|
||||||
"action_params": ""
|
"action_params": "",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 5,
|
"id": 5,
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -157,8 +157,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 17,
|
"id": 17,
|
||||||
@@ -293,8 +295,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 32,
|
"id": 32,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -67,8 +67,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "orientation"
|
"type": "orientation",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 7,
|
"id": 7,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -67,8 +67,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 7,
|
"id": 7,
|
||||||
@@ -122,8 +124,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 13,
|
"id": 13,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -202,8 +202,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 22,
|
"id": 22,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -49,8 +49,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 5,
|
"id": 5,
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
"name": "mno",
|
"name": "mno",
|
||||||
"links": "https://github.com/Bedrockx"
|
"links": "https://github.com/Bedrockx"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"enable_monster_loot_split": true
|
"enable_monster_loot_split": true
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
@@ -211,8 +211,10 @@
|
|||||||
"action": "fight",
|
"action": "fight",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"type": "path"
|
"type": "path",
|
||||||
,"point_ext_params": {"monster_tag": "elite"}
|
"point_ext_params": {
|
||||||
|
"monster_tag": "elite"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 23,
|
"id": 23,
|
||||||
|
|||||||
@@ -10,7 +10,13 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"迪希雅"
|
"迪希雅"
|
||||||
],
|
],
|
||||||
"last_modified_time": 1753170814385
|
"last_modified_time": 1753170814385,
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "蜜柑魚",
|
||||||
|
"links": "https://github.com/this-Fish"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,7 +10,13 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"迪希雅"
|
"迪希雅"
|
||||||
],
|
],
|
||||||
"last_modified_time": 1753170986994
|
"last_modified_time": 1753170986994,
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "蜜柑魚",
|
||||||
|
"links": "https://github.com/this-Fish"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,7 +10,13 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"迪希雅"
|
"迪希雅"
|
||||||
],
|
],
|
||||||
"last_modified_time": 1753171233794
|
"last_modified_time": 1753171233794,
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "蜜柑魚",
|
||||||
|
"links": "https://github.com/this-Fish"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,7 +10,13 @@
|
|||||||
"tags": [
|
"tags": [
|
||||||
"迪希雅"
|
"迪希雅"
|
||||||
],
|
],
|
||||||
"last_modified_time": 1753171812759
|
"last_modified_time": 1753171812759,
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "蜜柑魚",
|
||||||
|
"links": "https://github.com/this-Fish"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,7 +11,13 @@
|
|||||||
"战斗",
|
"战斗",
|
||||||
"高危"
|
"高危"
|
||||||
],
|
],
|
||||||
"last_modified_time": 1753172580683
|
"last_modified_time": 1753172580683,
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "蜜柑魚",
|
||||||
|
"links": "https://github.com/this-Fish"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Tool_tingsu",
|
"name": "Tool_tingsu",
|
||||||
"links": ""
|
"links": "https://github.com/Tooltingsu"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "ddaodan",
|
"name": "ddaodan",
|
||||||
"links": ""
|
"links": "https://github.com/ddaodan"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "ddaodan",
|
"name": "ddaodan",
|
||||||
"links": ""
|
"links": "https://github.com/ddaodan"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "ddaodan",
|
"name": "ddaodan",
|
||||||
"links": ""
|
"links": "https://github.com/ddaodan"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "ddaodan",
|
"name": "ddaodan",
|
||||||
"links": ""
|
"links": "https://github.com/ddaodan"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "ddaodan",
|
"name": "ddaodan",
|
||||||
"links": ""
|
"links": "https://github.com/ddaodan"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "汐",
|
"name": "汐",
|
||||||
"links": ""
|
"links": "https://github.com/jiegedabaobei"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user