fix: info authors
This commit is contained in:
@@ -54,52 +54,76 @@ 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):
|
# 旧格式字符串处理
|
||||||
names = [name.strip() for name in author_field.split("&")]
|
if isinstance(author_field, str):
|
||||||
new_authors = []
|
names = [name.strip() for name in author_field.split("&")]
|
||||||
for name in names:
|
new_authors = []
|
||||||
new_name = author_rename.get(name, name)
|
for name in names:
|
||||||
author_obj = {"name": new_name}
|
new_name = author_rename.get(name, name)
|
||||||
if new_name in author_links:
|
author_obj = {"name": new_name}
|
||||||
author_obj["links"] = author_links[new_name]
|
if new_name in author_links:
|
||||||
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]:
|
|
||||||
author_obj["links"] = author_links[new_name]
|
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
|
modified = True
|
||||||
print(f"🔧 更新链接:{new_name} → {author_links[new_name]}")
|
print(f"📝 重命名:{name} → {new_name}")
|
||||||
elif "links" not in author_obj and existing_link:
|
|
||||||
author_obj["links"] = existing_link
|
existing_link = author_obj.pop("link", None) or author_obj.pop("url", None) or author_obj.get("links")
|
||||||
modified = True
|
if new_name in author_links:
|
||||||
print(f"🔄 标准化已有链接字段为 links → {existing_link}")
|
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:
|
if modified:
|
||||||
with open(file_path, "w", encoding="utf-8") as f:
|
with open(file_path, "w", encoding="utf-8") as f:
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,164 +21,165 @@
|
|||||||
},
|
},
|
||||||
"positions": [
|
"positions": [
|
||||||
{
|
{
|
||||||
"id": 1,
|
"id": 1,
|
||||||
"x": -4124.54,
|
"x": -4124.54,
|
||||||
"y": -2759.87,
|
"y": -2759.87,
|
||||||
"type": "teleport",
|
"type": "teleport",
|
||||||
"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,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"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,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"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,
|
||||||
"type": "target",
|
"type": "target",
|
||||||
"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,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"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,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"move_mode": "dash",
|
"move_mode": "dash",
|
||||||
"action": "fight",
|
"action": "fight",
|
||||||
"action_params": "",
|
"action_params": "",
|
||||||
"locked": false,
|
"locked": false,
|
||||||
"point_ext_params": {
|
"point_ext_params": {
|
||||||
"misidentification": {
|
"misidentification": {
|
||||||
"type": [
|
"type": [
|
||||||
"unrecognized"
|
"unrecognized"
|
||||||
],
|
],
|
||||||
"handling_mode": "previousDetectedPoint",
|
"handling_mode": "previousDetectedPoint",
|
||||||
"arrival_time": 0
|
"arrival_time": 0
|
||||||
},
|
},
|
||||||
"description": "盗宝团",
|
"description": "盗宝团",
|
||||||
"monster_tag": "normal"
|
"monster_tag": "normal"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 7,
|
"id": 7,
|
||||||
"x": -4024.02,
|
"x": -4024.02,
|
||||||
"y": -2828.33,
|
"y": -2828.33,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"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,
|
||||||
"type": "target",
|
"type": "target",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"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,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"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,
|
||||||
"type": "target",
|
"type": "target",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"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,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"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,
|
||||||
"type": "target",
|
"type": "target",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"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,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"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,
|
||||||
"type": "path",
|
"type": "path",
|
||||||
"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,
|
||||||
"type": "target",
|
"type": "target",
|
||||||
"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"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -213,4 +213,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -205,4 +205,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -83,4 +83,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -249,4 +249,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -68,4 +68,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -142,4 +142,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -141,4 +141,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -150,4 +150,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -123,4 +123,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -119,4 +119,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -150,4 +150,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -114,4 +114,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -132,4 +132,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -177,4 +177,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -150,4 +150,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -285,4 +285,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -299,4 +299,4 @@
|
|||||||
"type": "path"
|
"type": "path"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -115,4 +115,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -78,4 +78,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -224,4 +224,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -77,4 +77,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -133,4 +133,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -143,4 +143,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -152,4 +152,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -151,4 +151,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -168,4 +168,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -180,4 +180,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -159,4 +159,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -232,4 +232,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -123,4 +123,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -132,4 +132,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -186,4 +186,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -105,4 +105,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -87,4 +87,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -96,4 +96,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -132,4 +132,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -114,4 +114,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -105,4 +105,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -150,4 +150,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -115,4 +115,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -87,4 +87,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -223,4 +223,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -179,4 +179,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -125,4 +125,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -113,4 +113,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -253,4 +253,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -249,4 +249,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -150,4 +150,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -339,4 +339,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -140,4 +140,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -167,4 +167,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -93,4 +93,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -140,4 +140,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -113,4 +113,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -129,4 +129,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -101,4 +101,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -238,4 +238,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -140,4 +140,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -194,4 +194,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -84,4 +84,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -331,4 +331,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -196,4 +196,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -70,4 +70,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -79,4 +79,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -70,4 +70,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -205,4 +205,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -232,4 +232,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -127,4 +127,4 @@
|
|||||||
"action_params": "wait(1)"
|
"action_params": "wait(1)"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -144,4 +144,4 @@
|
|||||||
"action_params": ""
|
"action_params": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -127,4 +127,4 @@
|
|||||||
"action_params": ""
|
"action_params": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -175,4 +175,4 @@
|
|||||||
"action_params": "wait(1)"
|
"action_params": "wait(1)"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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,
|
||||||
|
|||||||
@@ -223,4 +223,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -169,4 +169,4 @@
|
|||||||
"type": "orientation"
|
"type": "orientation"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -151,4 +151,4 @@
|
|||||||
"type": "orientation"
|
"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