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"
|
||||
}
|
||||
],
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -175,8 +175,8 @@
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"enable_monster_loot_split": true
|
||||
"type": "path",
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
@@ -275,8 +275,8 @@
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"enable_monster_loot_split": true
|
||||
"type": "path",
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -40,8 +40,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
@@ -77,8 +79,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -31,8 +31,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -51,8 +51,10 @@
|
||||
"type": "orientation",
|
||||
"move_mode": "walk",
|
||||
"action": "fight",
|
||||
"action_params": ""
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"action_params": "",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -157,8 +157,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
@@ -293,8 +295,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -67,8 +67,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "orientation"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "orientation",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -67,8 +67,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
@@ -122,8 +124,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -202,8 +202,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -49,8 +49,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"name": "mno",
|
||||
"links": "https://github.com/Bedrockx"
|
||||
}
|
||||
]
|
||||
,"enable_monster_loot_split": true
|
||||
],
|
||||
"enable_monster_loot_split": true
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
@@ -211,8 +211,10 @@
|
||||
"action": "fight",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
,"point_ext_params": {"monster_tag": "elite"}
|
||||
"type": "path",
|
||||
"point_ext_params": {
|
||||
"monster_tag": "elite"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
|
||||
@@ -10,7 +10,13 @@
|
||||
"tags": [
|
||||
"迪希雅"
|
||||
],
|
||||
"last_modified_time": 1753170814385
|
||||
"last_modified_time": 1753170814385,
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
]
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
|
||||
@@ -10,7 +10,13 @@
|
||||
"tags": [
|
||||
"迪希雅"
|
||||
],
|
||||
"last_modified_time": 1753170986994
|
||||
"last_modified_time": 1753170986994,
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
]
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
|
||||
@@ -10,7 +10,13 @@
|
||||
"tags": [
|
||||
"迪希雅"
|
||||
],
|
||||
"last_modified_time": 1753171233794
|
||||
"last_modified_time": 1753171233794,
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
]
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
|
||||
@@ -10,7 +10,13 @@
|
||||
"tags": [
|
||||
"迪希雅"
|
||||
],
|
||||
"last_modified_time": 1753171812759
|
||||
"last_modified_time": 1753171812759,
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
]
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
|
||||
@@ -11,7 +11,13 @@
|
||||
"战斗",
|
||||
"高危"
|
||||
],
|
||||
"last_modified_time": 1753172580683
|
||||
"last_modified_time": 1753172580683,
|
||||
"authors": [
|
||||
{
|
||||
"name": "蜜柑魚",
|
||||
"links": "https://github.com/this-Fish"
|
||||
}
|
||||
]
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "Tool_tingsu",
|
||||
"links": ""
|
||||
"links": "https://github.com/Tooltingsu"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "ddaodan",
|
||||
"links": ""
|
||||
"links": "https://github.com/ddaodan"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "ddaodan",
|
||||
"links": ""
|
||||
"links": "https://github.com/ddaodan"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "ddaodan",
|
||||
"links": ""
|
||||
"links": "https://github.com/ddaodan"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "ddaodan",
|
||||
"links": ""
|
||||
"links": "https://github.com/ddaodan"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "ddaodan",
|
||||
"links": ""
|
||||
"links": "https://github.com/ddaodan"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": ""
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
],
|
||||
"version": "1.0",
|
||||
|
||||
Reference in New Issue
Block a user