diff --git a/repo/js/AutoLeyLineOutcrop/1_generate_target_jsons.py b/repo/js/AutoLeyLineOutcrop/1_generate_target_jsons.py index faf842e3..400501ec 100644 --- a/repo/js/AutoLeyLineOutcrop/1_generate_target_jsons.py +++ b/repo/js/AutoLeyLineOutcrop/1_generate_target_jsons.py @@ -52,7 +52,7 @@ def create_target_jsons(): 'id': 1, 'x': last_position['x'], 'y': last_position['y'], - 'type': last_position.get('type', 'target'), # Keep type, default to 'target' if not present + 'type': 'target', # Keep type, default to 'target' if not present 'move_mode': 'walk' } new_data['positions'] = [simplified_position] diff --git a/repo/js/AutoLeyLineOutcrop/3_generate_ley_line_data.py b/repo/js/AutoLeyLineOutcrop/3_generate_ley_line_data.py index dc87da3b..d4f9add3 100644 --- a/repo/js/AutoLeyLineOutcrop/3_generate_ley_line_data.py +++ b/repo/js/AutoLeyLineOutcrop/3_generate_ley_line_data.py @@ -232,9 +232,9 @@ def generate_ley_line_data(): target_x = format_coord(float(last_pos["x"])) target_y = format_coord(float(last_pos["y"])) - # Determine node type - default to blossom if type is not specified or is target + # Determine node type - default to blossom for target or if not specified node_type = last_pos.get("type", "blossom") - if node_type == "target": + if node_type == "path": node_type = "blossom" # Check if we already have a nearby node of the same type @@ -262,7 +262,6 @@ def generate_ley_line_data(): "node": blossom_node, "file_path": file_path } - # Special handling for files with only target positions (like 纳塔4-溶水域-2.json) for file_path in pathing_files: file_name = os.path.basename(file_path) @@ -331,27 +330,29 @@ def generate_ley_line_data(): # For teleport source type, connect to destination if first_pos.get("type") == "teleport": - # Find teleport node + # 查找第一个点(传送点) x = format_coord(float(first_pos["x"])) y = format_coord(float(first_pos["y"])) teleport_node = find_nearby_node(nodes, x, y, "teleport") - # Find destination node + # 查找最后一个点(目标点,通常是blossom) dest_x = format_coord(float(last_pos["x"])) dest_y = format_coord(float(last_pos["y"])) - # Determine node type, default to blossom for target or if not specified + # 确定节点类型,默认为blossom dest_type = last_pos.get("type", "blossom") - if dest_type == "target": + if dest_type == "target" or dest_type == "path": dest_type = "blossom" + # 查找目标节点 dest_node = find_nearby_node(nodes, dest_x, dest_y, dest_type) + # 如果找到了传送点和目标节点,则建立连接 if teleport_node and dest_node: - # Add connection + # 添加相对路径 relative_path = generate_relative_path(file_path, script_dir) - # Add destination to teleport's next array if not already there + # 将目标添加到传送点的next数组中(如果尚未添加) route_exists = False for route in teleport_node["next"]: if route["target"] == dest_node["id"]: @@ -364,9 +365,18 @@ def generate_ley_line_data(): "route": relative_path }) - # Add teleport to destination's prev array if not already there + # 将传送点添加到目标的prev数组中(如果尚未添加) if teleport_node["id"] not in dest_node["prev"]: dest_node["prev"].append(teleport_node["id"]) + + # 输出调试信息,帮助排查问题 + else: + debug_info = f"无法连接传送点到目标: 文件={file_name}" + if not teleport_node: + debug_info += f", 未找到传送点({x},{y})" + if not dest_node: + debug_info += f", 未找到目标点({dest_x},{dest_y}, 类型={dest_type})" + print(debug_info) # Fourth pass: Connect nodes based on numerical sequence and handle branch paths for region_area, num_to_target in region_area_num_to_target.items(): diff --git a/repo/js/AutoLeyLineOutcrop/LeyLineOutcropData.json b/repo/js/AutoLeyLineOutcrop/LeyLineOutcropData.json index b2ee6fe1..d84207aa 100644 --- a/repo/js/AutoLeyLineOutcrop/LeyLineOutcropData.json +++ b/repo/js/AutoLeyLineOutcrop/LeyLineOutcropData.json @@ -1163,7 +1163,7 @@ "prev": [], "next": [ { - "target": 228, + "target": 227, "route": "assets/pathing/蒙德2-清泉镇-5-1.json" } ] @@ -1179,7 +1179,7 @@ "prev": [], "next": [ { - "target": 229, + "target": 228, "route": "assets/pathing/蒙德3-奔狼领-1.json" } ] @@ -1195,7 +1195,7 @@ "prev": [], "next": [ { - "target": 232, + "target": 231, "route": "assets/pathing/蒙德3-奔狼领-4.json" } ] @@ -1211,7 +1211,7 @@ "prev": [], "next": [ { - "target": 233, + "target": 232, "route": "assets/pathing/蒙德4-风龙废墟-1.json" } ] @@ -1227,7 +1227,7 @@ "prev": [], "next": [ { - "target": 235, + "target": 234, "route": "assets/pathing/蒙德4-风龙废墟-3.json" } ] @@ -1243,7 +1243,7 @@ "prev": [], "next": [ { - "target": 237, + "target": 236, "route": "assets/pathing/蒙德5-千风神殿-1.json" } ] @@ -1259,7 +1259,7 @@ "prev": [], "next": [ { - "target": 240, + "target": 239, "route": "assets/pathing/蒙德5-千风神殿-4.json" } ] @@ -1275,11 +1275,11 @@ "prev": [], "next": [ { - "target": 241, + "target": 240, "route": "assets/pathing/蒙德5-千风神殿-5.json" }, { - "target": 242, + "target": 241, "route": "assets/pathing/蒙德6-望风山地-1.json" } ] @@ -1295,7 +1295,7 @@ "prev": [], "next": [ { - "target": 244, + "target": 243, "route": "assets/pathing/蒙德6-望风山地-3.json" } ] @@ -1311,7 +1311,7 @@ "prev": [], "next": [ { - "target": 246, + "target": 245, "route": "assets/pathing/蒙德7-达达乌帕谷-1.json" } ] @@ -1327,11 +1327,11 @@ "prev": [], "next": [ { - "target": 247, + "target": 246, "route": "assets/pathing/蒙德7-达达乌帕谷-2.json" }, { - "target": 248, + "target": 247, "route": "assets/pathing/蒙德7-达达乌帕谷-3.json" } ] @@ -1347,7 +1347,7 @@ "prev": [], "next": [ { - "target": 251, + "target": 250, "route": "assets/pathing/须弥1-无郁稠林-1.json" } ] @@ -1363,15 +1363,15 @@ "prev": [], "next": [ { - "target": 256, + "target": 255, "route": "assets/pathing/须弥10-荼泥黑渊-1.json" }, { - "target": 257, + "target": 256, "route": "assets/pathing/须弥10-荼泥黑渊-2.json" }, { - "target": 258, + "target": 257, "route": "assets/pathing/须弥10-荼泥黑渊-3.json" } ] @@ -1387,7 +1387,7 @@ "prev": [], "next": [ { - "target": 259, + "target": 258, "route": "assets/pathing/须弥10-荼泥黑渊-4.json" } ] @@ -1403,7 +1403,7 @@ "prev": [], "next": [ { - "target": 260, + "target": 259, "route": "assets/pathing/须弥2-奥摩斯港西-1.json" } ] @@ -1419,7 +1419,7 @@ "prev": [], "next": [ { - "target": 262, + "target": 261, "route": "assets/pathing/须弥2-奥摩斯港西-3.json" } ] @@ -1435,7 +1435,7 @@ "prev": [], "next": [ { - "target": 265, + "target": 264, "route": "assets/pathing/须弥3-禅那园-1.json" } ] @@ -1451,7 +1451,7 @@ "prev": [], "next": [ { - "target": 267, + "target": 266, "route": "assets/pathing/须弥3-禅那园-3.json" } ] @@ -1467,7 +1467,7 @@ "prev": [], "next": [ { - "target": 269, + "target": 268, "route": "assets/pathing/须弥4-水天丛林-1.json" } ] @@ -1483,7 +1483,7 @@ "prev": [], "next": [ { - "target": 272, + "target": 271, "route": "assets/pathing/须弥4-水天丛林-4.json" } ] @@ -1499,7 +1499,7 @@ "prev": [], "next": [ { - "target": 273, + "target": 272, "route": "assets/pathing/须弥4-水天丛林-5.json" } ] @@ -1515,7 +1515,7 @@ "prev": [], "next": [ { - "target": 274, + "target": 273, "route": "assets/pathing/须弥5-阿如村-1.json" } ] @@ -1531,7 +1531,7 @@ "prev": [], "next": [ { - "target": 278, + "target": 277, "route": "assets/pathing/须弥6-荼诃落谷-1.json" } ] @@ -1547,7 +1547,7 @@ "prev": [], "next": [ { - "target": 279, + "target": 278, "route": "assets/pathing/须弥6-荼诃落谷-2.json" } ] @@ -1563,7 +1563,7 @@ "prev": [], "next": [ { - "target": 281, + "target": 280, "route": "assets/pathing/须弥6-荼诃落谷-4.json" } ] @@ -1579,7 +1579,7 @@ "prev": [], "next": [ { - "target": 282, + "target": 281, "route": "assets/pathing/须弥8-折胫谷-1.json" } ] @@ -1595,14 +1595,14 @@ "prev": [], "next": [ { - "target": 286, + "target": 285, "route": "assets/pathing/须弥9-镔铁沙丘-1.json" } ] }, { "id": 90, - "type": "path", + "type": "blossom", "region": "枫丹1", "position": { "x": 4183.27, @@ -1620,7 +1620,7 @@ }, { "id": 91, - "type": "path", + "type": "blossom", "region": "枫丹1", "position": { "x": 4190.03, @@ -1639,7 +1639,7 @@ }, { "id": 92, - "type": "path", + "type": "blossom", "region": "枫丹1", "position": { "x": 4246.28, @@ -1658,7 +1658,7 @@ }, { "id": 93, - "type": "path", + "type": "blossom", "region": "枫丹1", "position": { "x": 4299.75, @@ -1677,7 +1677,7 @@ }, { "id": 94, - "type": "path", + "type": "blossom", "region": "枫丹1", "position": { "x": 4402.53, @@ -1691,7 +1691,7 @@ }, { "id": 95, - "type": "path", + "type": "blossom", "region": "枫丹2", "position": { "x": 4962.82, @@ -1709,7 +1709,7 @@ }, { "id": 96, - "type": "path", + "type": "blossom", "region": "枫丹2", "position": { "x": 4952.04, @@ -1728,7 +1728,7 @@ }, { "id": 97, - "type": "path", + "type": "blossom", "region": "枫丹2", "position": { "x": 5043.36, @@ -1747,7 +1747,7 @@ }, { "id": 98, - "type": "path", + "type": "blossom", "region": "枫丹2", "position": { "x": 5087.02, @@ -1761,7 +1761,7 @@ }, { "id": 99, - "type": "path", + "type": "blossom", "region": "枫丹3", "position": { "x": 4556.1, @@ -1779,7 +1779,7 @@ }, { "id": 100, - "type": "path", + "type": "blossom", "region": "枫丹3", "position": { "x": 4517.81, @@ -1798,7 +1798,7 @@ }, { "id": 101, - "type": "path", + "type": "blossom", "region": "枫丹3", "position": { "x": 4578.63, @@ -1817,7 +1817,7 @@ }, { "id": 102, - "type": "path", + "type": "blossom", "region": "枫丹3", "position": { "x": 4679.47, @@ -1831,7 +1831,7 @@ }, { "id": 103, - "type": "path", + "type": "blossom", "region": "枫丹4", "position": { "x": 2932.47, @@ -1849,7 +1849,7 @@ }, { "id": 104, - "type": "path", + "type": "blossom", "region": "枫丹4", "position": { "x": 3008.4, @@ -1868,7 +1868,7 @@ }, { "id": 105, - "type": "path", + "type": "blossom", "region": "枫丹4", "position": { "x": 3077.19, @@ -1887,7 +1887,7 @@ }, { "id": 106, - "type": "path", + "type": "blossom", "region": "枫丹4", "position": { "x": 3091.8, @@ -1901,7 +1901,7 @@ }, { "id": 107, - "type": "path", + "type": "blossom", "region": "枫丹5", "position": { "x": 4098.63, @@ -1924,7 +1924,7 @@ }, { "id": 108, - "type": "path", + "type": "blossom", "region": "枫丹5", "position": { "x": 3999.66, @@ -1943,7 +1943,7 @@ }, { "id": 109, - "type": "path", + "type": "blossom", "region": "枫丹5", "position": { "x": 3921.35, @@ -1957,7 +1957,7 @@ }, { "id": 110, - "type": "path", + "type": "blossom", "region": "枫丹6", "position": { "x": 4760.8, @@ -1975,7 +1975,7 @@ }, { "id": 111, - "type": "path", + "type": "blossom", "region": "枫丹6", "position": { "x": 4653.67, @@ -1994,7 +1994,7 @@ }, { "id": 112, - "type": "path", + "type": "blossom", "region": "枫丹6", "position": { "x": 4568.49, @@ -2013,7 +2013,7 @@ }, { "id": 113, - "type": "path", + "type": "blossom", "region": "枫丹6", "position": { "x": 4553.51, @@ -2032,7 +2032,7 @@ }, { "id": 114, - "type": "path", + "type": "blossom", "region": "枫丹6", "position": { "x": 4607.46, @@ -2051,7 +2051,7 @@ }, { "id": 115, - "type": "path", + "type": "blossom", "region": "枫丹6", "position": { "x": 4700.14, @@ -2065,7 +2065,7 @@ }, { "id": 116, - "type": "path", + "type": "blossom", "region": "璃月1", "position": { "x": 73.73, @@ -2083,7 +2083,7 @@ }, { "id": 117, - "type": "path", + "type": "blossom", "region": "璃月1", "position": { "x": -12.62, @@ -2102,7 +2102,7 @@ }, { "id": 118, - "type": "path", + "type": "blossom", "region": "璃月1", "position": { "x": -81.76, @@ -2120,7 +2120,7 @@ }, { "id": 119, - "type": "path", + "type": "blossom", "region": "璃月1", "position": { "x": -28.76, @@ -2133,7 +2133,7 @@ }, { "id": 120, - "type": "path", + "type": "blossom", "region": "璃月10", "position": { "x": 1046.34, @@ -2151,7 +2151,7 @@ }, { "id": 121, - "type": "path", + "type": "blossom", "region": "璃月10", "position": { "x": 892.5, @@ -2170,7 +2170,7 @@ }, { "id": 122, - "type": "path", + "type": "blossom", "region": "璃月10", "position": { "x": 594.3, @@ -2189,7 +2189,7 @@ }, { "id": 123, - "type": "path", + "type": "blossom", "region": "璃月10", "position": { "x": 683.19, @@ -2209,7 +2209,7 @@ }, { "id": 124, - "type": "path", + "type": "blossom", "region": "璃月10", "position": { "x": 455.4, @@ -2224,7 +2224,7 @@ }, { "id": 125, - "type": "path", + "type": "blossom", "region": "璃月11", "position": { "x": 802.19, @@ -2242,7 +2242,7 @@ }, { "id": 126, - "type": "path", + "type": "blossom", "region": "璃月11", "position": { "x": 697.31, @@ -2260,7 +2260,7 @@ }, { "id": 127, - "type": "path", + "type": "blossom", "region": "璃月11", "position": { "x": 646.5, @@ -2278,7 +2278,7 @@ }, { "id": 128, - "type": "path", + "type": "blossom", "region": "璃月11", "position": { "x": 632.03, @@ -2296,7 +2296,7 @@ }, { "id": 129, - "type": "path", + "type": "blossom", "region": "璃月11", "position": { "x": 558.31, @@ -2315,7 +2315,7 @@ }, { "id": 130, - "type": "path", + "type": "blossom", "region": "璃月11", "position": { "x": 285.79, @@ -2329,7 +2329,7 @@ }, { "id": 131, - "type": "path", + "type": "blossom", "region": "璃月14", "position": { "x": 1614.21, @@ -2347,7 +2347,7 @@ }, { "id": 132, - "type": "path", + "type": "blossom", "region": "璃月14", "position": { "x": 1581.57, @@ -2365,7 +2365,7 @@ }, { "id": 133, - "type": "path", + "type": "blossom", "region": "璃月14", "position": { "x": 1563.45, @@ -2383,7 +2383,7 @@ }, { "id": 134, - "type": "path", + "type": "blossom", "region": "璃月14", "position": { "x": 1525.0, @@ -2396,7 +2396,7 @@ }, { "id": 135, - "type": "path", + "type": "blossom", "region": "璃月2", "position": { "x": -194.85, @@ -2414,7 +2414,7 @@ }, { "id": 136, - "type": "path", + "type": "blossom", "region": "璃月2", "position": { "x": 32.81, @@ -2433,7 +2433,7 @@ }, { "id": 137, - "type": "path", + "type": "blossom", "region": "璃月2", "position": { "x": -24.14, @@ -2452,7 +2452,7 @@ }, { "id": 138, - "type": "path", + "type": "blossom", "region": "璃月2", "position": { "x": -10.67, @@ -2466,7 +2466,7 @@ }, { "id": 139, - "type": "path", + "type": "blossom", "region": "璃月3", "position": { "x": -55.27, @@ -2484,7 +2484,7 @@ }, { "id": 140, - "type": "path", + "type": "blossom", "region": "璃月3", "position": { "x": 139.9, @@ -2503,7 +2503,7 @@ }, { "id": 141, - "type": "path", + "type": "blossom", "region": "璃月3", "position": { "x": 284.12, @@ -2522,7 +2522,7 @@ }, { "id": 142, - "type": "path", + "type": "blossom", "region": "璃月3", "position": { "x": 276.12, @@ -2542,7 +2542,7 @@ }, { "id": 143, - "type": "path", + "type": "blossom", "region": "璃月4", "position": { "x": -7.16, @@ -2560,7 +2560,7 @@ }, { "id": 144, - "type": "path", + "type": "blossom", "region": "璃月4", "position": { "x": 101.14, @@ -2578,7 +2578,7 @@ }, { "id": 145, - "type": "path", + "type": "blossom", "region": "璃月4", "position": { "x": 127.05, @@ -2596,7 +2596,7 @@ }, { "id": 146, - "type": "path", + "type": "blossom", "region": "璃月4", "position": { "x": 146.03, @@ -2614,7 +2614,7 @@ }, { "id": 147, - "type": "path", + "type": "blossom", "region": "璃月4", "position": { "x": 262.65, @@ -2633,7 +2633,7 @@ }, { "id": 148, - "type": "path", + "type": "blossom", "region": "璃月5", "position": { "x": 773.08, @@ -2651,7 +2651,7 @@ }, { "id": 149, - "type": "path", + "type": "blossom", "region": "璃月5", "position": { "x": 885.79, @@ -2670,7 +2670,7 @@ }, { "id": 150, - "type": "path", + "type": "blossom", "region": "璃月5", "position": { "x": 1063.54, @@ -2688,7 +2688,7 @@ }, { "id": 151, - "type": "path", + "type": "blossom", "region": "璃月5", "position": { "x": 936.52, @@ -2702,7 +2702,7 @@ }, { "id": 152, - "type": "path", + "type": "blossom", "region": "璃月8", "position": { "x": 1627.15, @@ -2720,7 +2720,7 @@ }, { "id": 153, - "type": "path", + "type": "blossom", "region": "璃月8", "position": { "x": 1333.25, @@ -2739,7 +2739,7 @@ }, { "id": 154, - "type": "path", + "type": "blossom", "region": "璃月8", "position": { "x": 1160.17, @@ -2758,7 +2758,7 @@ }, { "id": 155, - "type": "path", + "type": "blossom", "region": "璃月8", "position": { "x": 972.68, @@ -2777,7 +2777,7 @@ }, { "id": 156, - "type": "path", + "type": "blossom", "region": "璃月8", "position": { "x": 815.31, @@ -2796,7 +2796,7 @@ }, { "id": 157, - "type": "path", + "type": "blossom", "region": "璃月9", "position": { "x": 1484.37, @@ -2814,7 +2814,7 @@ }, { "id": 158, - "type": "path", + "type": "blossom", "region": "璃月9", "position": { "x": 1445.77, @@ -2832,7 +2832,7 @@ }, { "id": 159, - "type": "path", + "type": "blossom", "region": "璃月9", "position": { "x": 1561.48, @@ -2851,7 +2851,7 @@ }, { "id": 160, - "type": "path", + "type": "blossom", "region": "璃月9", "position": { "x": 1686.66, @@ -2865,7 +2865,7 @@ }, { "id": 161, - "type": "path", + "type": "blossom", "region": "稻妻1", "position": { "x": -4309.58, @@ -2883,7 +2883,7 @@ }, { "id": 162, - "type": "path", + "type": "blossom", "region": "稻妻1", "position": { "x": -4401.19, @@ -2902,7 +2902,7 @@ }, { "id": 163, - "type": "path", + "type": "blossom", "region": "稻妻1", "position": { "x": -4509.57, @@ -2921,7 +2921,7 @@ }, { "id": 164, - "type": "path", + "type": "blossom", "region": "稻妻1", "position": { "x": -4549.96, @@ -2935,7 +2935,7 @@ }, { "id": 165, - "type": "path", + "type": "blossom", "region": "稻妻2", "position": { "x": -3007.64, @@ -2953,7 +2953,7 @@ }, { "id": 166, - "type": "path", + "type": "blossom", "region": "稻妻2", "position": { "x": -3153.03, @@ -2972,7 +2972,7 @@ }, { "id": 167, - "type": "path", + "type": "blossom", "region": "稻妻2", "position": { "x": -3328.99, @@ -2991,7 +2991,7 @@ }, { "id": 168, - "type": "path", + "type": "blossom", "region": "稻妻2", "position": { "x": -3429.72, @@ -3010,7 +3010,7 @@ }, { "id": 169, - "type": "path", + "type": "blossom", "region": "稻妻2", "position": { "x": -3340.38, @@ -3024,7 +3024,7 @@ }, { "id": 170, - "type": "path", + "type": "blossom", "region": "稻妻3", "position": { "x": -2269.86, @@ -3042,7 +3042,7 @@ }, { "id": 171, - "type": "path", + "type": "blossom", "region": "稻妻3", "position": { "x": -2280.61, @@ -3060,7 +3060,7 @@ }, { "id": 172, - "type": "path", + "type": "blossom", "region": "稻妻3", "position": { "x": -2169.62, @@ -3079,7 +3079,7 @@ }, { "id": 173, - "type": "path", + "type": "blossom", "region": "稻妻3", "position": { "x": -2211.44, @@ -3093,7 +3093,7 @@ }, { "id": 174, - "type": "path", + "type": "blossom", "region": "稻妻4", "position": { "x": -1120.06, @@ -3111,7 +3111,7 @@ }, { "id": 175, - "type": "path", + "type": "blossom", "region": "稻妻4", "position": { "x": -1190.51, @@ -3129,7 +3129,7 @@ }, { "id": 176, - "type": "path", + "type": "blossom", "region": "稻妻4", "position": { "x": -1254.7, @@ -3147,7 +3147,7 @@ }, { "id": 177, - "type": "path", + "type": "blossom", "region": "稻妻4", "position": { "x": -1322.41, @@ -3161,7 +3161,7 @@ }, { "id": 178, - "type": "path", + "type": "blossom", "region": "稻妻5", "position": { "x": -3908.27, @@ -3179,7 +3179,7 @@ }, { "id": 179, - "type": "path", + "type": "blossom", "region": "稻妻5", "position": { "x": -3850.61, @@ -3197,7 +3197,7 @@ }, { "id": 180, - "type": "path", + "type": "blossom", "region": "稻妻5", "position": { "x": -3763.54, @@ -3215,7 +3215,7 @@ }, { "id": 181, - "type": "path", + "type": "blossom", "region": "稻妻5", "position": { "x": -3703.34, @@ -3234,7 +3234,7 @@ }, { "id": 182, - "type": "path", + "type": "blossom", "region": "稻妻5", "position": { "x": -3671.61, @@ -3247,7 +3247,7 @@ }, { "id": 183, - "type": "path", + "type": "blossom", "region": "纳塔1", "position": { "x": 7864.95, @@ -3265,7 +3265,7 @@ }, { "id": 184, - "type": "path", + "type": "blossom", "region": "纳塔1", "position": { "x": 7945.72, @@ -3284,7 +3284,7 @@ }, { "id": 185, - "type": "path", + "type": "blossom", "region": "纳塔1", "position": { "x": 7932.2, @@ -3303,7 +3303,7 @@ }, { "id": 186, - "type": "path", + "type": "blossom", "region": "纳塔1", "position": { "x": 7853.72, @@ -3316,7 +3316,7 @@ }, { "id": 187, - "type": "path", + "type": "blossom", "region": "纳塔10", "position": { "x": 8361.82, @@ -3334,7 +3334,7 @@ }, { "id": 188, - "type": "path", + "type": "blossom", "region": "纳塔10", "position": { "x": 8495.87, @@ -3352,7 +3352,7 @@ }, { "id": 189, - "type": "path", + "type": "blossom", "region": "纳塔10", "position": { "x": 8587.99, @@ -3370,7 +3370,7 @@ }, { "id": 190, - "type": "path", + "type": "blossom", "region": "纳塔10", "position": { "x": 8879.8, @@ -3384,7 +3384,7 @@ }, { "id": 191, - "type": "path", + "type": "blossom", "region": "纳塔2", "position": { "x": 8604.22, @@ -3402,7 +3402,7 @@ }, { "id": 192, - "type": "path", + "type": "blossom", "region": "纳塔2", "position": { "x": 8657.57, @@ -3421,7 +3421,7 @@ }, { "id": 193, - "type": "path", + "type": "blossom", "region": "纳塔2", "position": { "x": 8733.62, @@ -3440,7 +3440,7 @@ }, { "id": 194, - "type": "path", + "type": "blossom", "region": "纳塔2", "position": { "x": 8588.9, @@ -3454,7 +3454,7 @@ }, { "id": 195, - "type": "path", + "type": "blossom", "region": "纳塔3", "position": { "x": 8312.07, @@ -3472,7 +3472,7 @@ }, { "id": 196, - "type": "path", + "type": "blossom", "region": "纳塔3", "position": { "x": 8429.86, @@ -3491,7 +3491,7 @@ }, { "id": 197, - "type": "path", + "type": "blossom", "region": "纳塔3", "position": { "x": 8291.29, @@ -3510,7 +3510,7 @@ }, { "id": 198, - "type": "path", + "type": "blossom", "region": "纳塔3", "position": { "x": 8088.21, @@ -3523,7 +3523,7 @@ }, { "id": 199, - "type": "path", + "type": "blossom", "region": "纳塔4", "position": { "x": 9028.67, @@ -3541,7 +3541,7 @@ }, { "id": 200, - "type": "path", + "type": "blossom", "region": "纳塔4", "position": { "x": 9090.71, @@ -3554,7 +3554,7 @@ }, { "id": 201, - "type": "path", + "type": "blossom", "region": "纳塔5", "position": { "x": 9687.15, @@ -3572,7 +3572,7 @@ }, { "id": 202, - "type": "path", + "type": "blossom", "region": "纳塔5", "position": { "x": 9754.7, @@ -3591,7 +3591,7 @@ }, { "id": 203, - "type": "path", + "type": "blossom", "region": "纳塔5", "position": { "x": 9778.7, @@ -3605,7 +3605,7 @@ }, { "id": 204, - "type": "path", + "type": "blossom", "region": "纳塔6", "position": { "x": 9231.08, @@ -3623,7 +3623,7 @@ }, { "id": 205, - "type": "path", + "type": "blossom", "region": "纳塔6", "position": { "x": 9110.86, @@ -3642,7 +3642,7 @@ }, { "id": 206, - "type": "path", + "type": "blossom", "region": "纳塔6", "position": { "x": 8945.55, @@ -3660,7 +3660,7 @@ }, { "id": 207, - "type": "path", + "type": "blossom", "region": "纳塔6", "position": { "x": 8810.08, @@ -3673,7 +3673,7 @@ }, { "id": 208, - "type": "path", + "type": "blossom", "region": "纳塔7", "position": { "x": 9999.51, @@ -3691,7 +3691,7 @@ }, { "id": 209, - "type": "path", + "type": "blossom", "region": "纳塔7", "position": { "x": 9963.8, @@ -3709,7 +3709,7 @@ }, { "id": 210, - "type": "path", + "type": "blossom", "region": "纳塔7", "position": { "x": 9907.78, @@ -3722,7 +3722,7 @@ }, { "id": 211, - "type": "path", + "type": "blossom", "region": "纳塔8", "position": { "x": 9636.29, @@ -3740,7 +3740,7 @@ }, { "id": 212, - "type": "path", + "type": "blossom", "region": "纳塔8", "position": { "x": 9517.92, @@ -3759,7 +3759,7 @@ }, { "id": 213, - "type": "path", + "type": "blossom", "region": "纳塔8", "position": { "x": 9472.28, @@ -3773,7 +3773,7 @@ }, { "id": 214, - "type": "path", + "type": "blossom", "region": "纳塔9", "position": { "x": 9920.8, @@ -3791,7 +3791,7 @@ }, { "id": 215, - "type": "path", + "type": "blossom", "region": "纳塔9", "position": { "x": 9888.22, @@ -3809,7 +3809,7 @@ }, { "id": 216, - "type": "path", + "type": "blossom", "region": "纳塔9", "position": { "x": 9938.82, @@ -3827,7 +3827,7 @@ }, { "id": 217, - "type": "path", + "type": "blossom", "region": "纳塔9", "position": { "x": 9984.24, @@ -3840,7 +3840,7 @@ }, { "id": 218, - "type": "path", + "type": "blossom", "region": "蒙德1", "position": { "x": -1298.03, @@ -3858,7 +3858,7 @@ }, { "id": 219, - "type": "path", + "type": "blossom", "region": "蒙德1", "position": { "x": -1223.18, @@ -3877,7 +3877,7 @@ }, { "id": 220, - "type": "path", + "type": "blossom", "region": "蒙德1", "position": { "x": -1113.87, @@ -3895,7 +3895,7 @@ }, { "id": 221, - "type": "path", + "type": "blossom", "region": "蒙德1", "position": { "x": -1041.91, @@ -3913,7 +3913,7 @@ }, { "id": 222, - "type": "path", + "type": "blossom", "region": "蒙德1", "position": { "x": -895.08, @@ -3922,13 +3922,13 @@ "prev": [ 60, 221, - 250 + 249 ], "next": [] }, { "id": 223, - "type": "path", + "type": "blossom", "region": "蒙德2", "position": { "x": -717.83, @@ -3946,7 +3946,7 @@ }, { "id": 224, - "type": "path", + "type": "blossom", "region": "蒙德2", "position": { "x": -523.76, @@ -3965,7 +3965,7 @@ }, { "id": 225, - "type": "path", + "type": "blossom", "region": "蒙德2", "position": { "x": -420.36, @@ -3978,40 +3978,36 @@ { "target": 227, "route": "assets/pathing/蒙德2-清泉镇-4-2.json" - }, - { - "target": 226, - "route": "assets/pathing/蒙德2-清泉镇-4-1.json" } ] }, { "id": 226, - "type": "path", + "type": "blossom", "region": "蒙德2", "position": { "x": -347.95, "y": 1902.51 }, - "prev": [ - 225 - ], + "prev": [], "next": [] }, { "id": 227, - "type": "path", + "type": "blossom", "region": "蒙德2", "position": { "x": -319.46, "y": 2156.93 }, "prev": [ - 225 + 63, + 225, + 227 ], "next": [ { - "target": 228, + "target": 227, "route": "assets/pathing/蒙德2-清泉镇-5-1.json" } ] @@ -4019,20 +4015,6 @@ { "id": 228, "type": "blossom", - "region": "蒙德2", - "position": { - "x": -319.57, - "y": 2156.48 - }, - "prev": [ - 63, - 227 - ], - "next": [] - }, - { - "id": 229, - "type": "path", "region": "蒙德3", "position": { "x": -281.79, @@ -4043,50 +4025,50 @@ ], "next": [ { - "target": 230, + "target": 229, "route": "assets/pathing/蒙德3-奔狼领-2.json" } ] }, { - "id": 230, - "type": "path", + "id": 229, + "type": "blossom", "region": "蒙德3", "position": { "x": -205.49, "y": 2429.07 }, + "prev": [ + 228 + ], + "next": [ + { + "target": 230, + "route": "assets/pathing/蒙德3-奔狼领-3.json" + } + ] + }, + { + "id": 230, + "type": "blossom", + "region": "蒙德3", + "position": { + "x": -327.03, + "y": 2410.43 + }, "prev": [ 229 ], "next": [ { "target": 231, - "route": "assets/pathing/蒙德3-奔狼领-3.json" - } - ] - }, - { - "id": 231, - "type": "path", - "region": "蒙德3", - "position": { - "x": -327.03, - "y": 2410.43 - }, - "prev": [ - 230 - ], - "next": [ - { - "target": 232, "route": "assets/pathing/蒙德3-奔狼领-4.json" } ] }, { - "id": 232, - "type": "path", + "id": 231, + "type": "blossom", "region": "蒙德3", "position": { "x": -336.15, @@ -4094,13 +4076,13 @@ }, "prev": [ 65, - 231 + 230 ], "next": [] }, { - "id": 233, - "type": "path", + "id": 232, + "type": "blossom", "region": "蒙德4", "position": { "x": 241.41, @@ -4111,32 +4093,32 @@ ], "next": [ { - "target": 234, + "target": 233, "route": "assets/pathing/蒙德4-风龙废墟-2.json" } ] }, { - "id": 234, - "type": "path", + "id": 233, + "type": "blossom", "region": "蒙德4", "position": { "x": 124.61, "y": 2817.24 }, "prev": [ - 233 + 232 ], "next": [ { - "target": 235, + "target": 234, "route": "assets/pathing/蒙德4-风龙废墟-3.json" } ] }, { - "id": 235, - "type": "path", + "id": 234, + "type": "blossom", "region": "蒙德4", "position": { "x": 152.71, @@ -4144,31 +4126,31 @@ }, "prev": [ 67, - 234 + 233 ], "next": [ { - "target": 236, + "target": 235, "route": "assets/pathing/蒙德4-风龙废墟-4.json" } ] }, { - "id": 236, - "type": "path", + "id": 235, + "type": "blossom", "region": "蒙德4", "position": { "x": -27.99, "y": 2919.59 }, "prev": [ - 235 + 234 ], "next": [] }, { - "id": 237, - "type": "path", + "id": 236, + "type": "blossom", "region": "蒙德5", "position": { "x": -1453.46, @@ -4179,50 +4161,50 @@ ], "next": [ { - "target": 238, + "target": 237, "route": "assets/pathing/蒙德5-千风神殿-2.json" } ] }, { - "id": 238, - "type": "path", + "id": 237, + "type": "blossom", "region": "蒙德5", "position": { "x": -1367.78, "y": 2411.31 }, + "prev": [ + 236 + ], + "next": [ + { + "target": 238, + "route": "assets/pathing/蒙德5-千风神殿-3.json" + } + ] + }, + { + "id": 238, + "type": "blossom", + "region": "蒙德5", + "position": { + "x": -1474.91, + "y": 2520.0 + }, "prev": [ 237 ], "next": [ { "target": 239, - "route": "assets/pathing/蒙德5-千风神殿-3.json" - } - ] - }, - { - "id": 239, - "type": "path", - "region": "蒙德5", - "position": { - "x": -1474.91, - "y": 2520.0 - }, - "prev": [ - 238 - ], - "next": [ - { - "target": 240, "route": "assets/pathing/蒙德5-千风神殿-4.json" } ] }, { - "id": 240, - "type": "path", + "id": 239, + "type": "blossom", "region": "蒙德5", "position": { "x": -1394.83, @@ -4230,18 +4212,18 @@ }, "prev": [ 69, - 239 + 238 ], "next": [ { - "target": 241, + "target": 240, "route": "assets/pathing/蒙德5-千风神殿-5.json" } ] }, { - "id": 241, - "type": "path", + "id": 240, + "type": "blossom", "region": "蒙德5", "position": { "x": -1316.21, @@ -4249,13 +4231,13 @@ }, "prev": [ 70, - 240 + 239 ], "next": [] }, { - "id": 242, - "type": "path", + "id": 241, + "type": "blossom", "region": "蒙德6", "position": { "x": -1512.81, @@ -4266,32 +4248,32 @@ ], "next": [ { - "target": 243, + "target": 242, "route": "assets/pathing/蒙德6-望风山地-2.json" } ] }, { - "id": 243, - "type": "path", + "id": 242, + "type": "blossom", "region": "蒙德6", "position": { "x": -1518.71, "y": 2877.4 }, "prev": [ - 242 + 241 ], "next": [ { - "target": 244, + "target": 243, "route": "assets/pathing/蒙德6-望风山地-3.json" } ] }, { - "id": 244, - "type": "path", + "id": 243, + "type": "blossom", "region": "蒙德6", "position": { "x": -1603.95, @@ -4299,31 +4281,31 @@ }, "prev": [ 71, - 243 + 242 ], "next": [ { - "target": 245, + "target": 244, "route": "assets/pathing/蒙德6-望风山地-4.json" } ] }, { - "id": 245, - "type": "path", + "id": 244, + "type": "blossom", "region": "蒙德6", "position": { "x": -1710.73, "y": 2983.29 }, "prev": [ - 244 + 243 ], "next": [] }, { - "id": 246, - "type": "path", + "id": 245, + "type": "blossom", "region": "蒙德7", "position": { "x": -1660.63, @@ -4334,19 +4316,38 @@ ], "next": [ { - "target": 247, + "target": 246, "route": "assets/pathing/蒙德7-达达乌帕谷-2.json" } ] }, { - "id": 247, - "type": "path", + "id": 246, + "type": "blossom", "region": "蒙德7", "position": { "x": -1517.07, "y": 1513.97 }, + "prev": [ + 73, + 245 + ], + "next": [ + { + "target": 247, + "route": "assets/pathing/蒙德7-达达乌帕谷-3.json" + } + ] + }, + { + "id": 247, + "type": "blossom", + "region": "蒙德7", + "position": { + "x": -1331.96, + "y": 1560.15 + }, "prev": [ 73, 246 @@ -4354,57 +4355,38 @@ "next": [ { "target": 248, - "route": "assets/pathing/蒙德7-达达乌帕谷-3.json" - } - ] - }, - { - "id": 248, - "type": "path", - "region": "蒙德7", - "position": { - "x": -1331.96, - "y": 1560.15 - }, - "prev": [ - 73, - 247 - ], - "next": [ - { - "target": 249, "route": "assets/pathing/蒙德7-达达乌帕谷-4.json" } ] }, { - "id": 249, - "type": "path", + "id": 248, + "type": "blossom", "region": "蒙德7", "position": { "x": -1318.63, "y": 1692.63 }, "prev": [ - 248 + 247 ], "next": [ { - "target": 250, + "target": 249, "route": "assets/pathing/蒙德7-达达乌帕谷-5.json" } ] }, { - "id": 250, - "type": "path", + "id": 249, + "type": "blossom", "region": "蒙德7", "position": { "x": -1138.22, "y": 1789.79 }, "prev": [ - 249 + 248 ], "next": [ { @@ -4414,8 +4396,8 @@ ] }, { - "id": 251, - "type": "path", + "id": 250, + "type": "blossom", "region": "须弥1", "position": { "x": 2368.79, @@ -4426,36 +4408,54 @@ ], "next": [ { - "target": 252, + "target": 251, "route": "assets/pathing/须弥1-无郁稠林-2.json" } ] }, { - "id": 252, - "type": "path", + "id": 251, + "type": "blossom", "region": "须弥1", "position": { "x": 2317.29, "y": -115.35 }, + "prev": [ + 250 + ], + "next": [ + { + "target": 252, + "route": "assets/pathing/须弥1-无郁稠林-3.json" + } + ] + }, + { + "id": 252, + "type": "blossom", + "region": "须弥1", + "position": { + "x": 2212.83, + "y": -83.02 + }, "prev": [ 251 ], "next": [ { "target": 253, - "route": "assets/pathing/须弥1-无郁稠林-3.json" + "route": "assets/pathing/须弥1-无郁稠林-4.json" } ] }, { "id": 253, - "type": "path", + "type": "blossom", "region": "须弥1", "position": { - "x": 2212.83, - "y": -83.02 + "x": 2233.8, + "y": -160.88 }, "prev": [ 252 @@ -4463,44 +4463,26 @@ "next": [ { "target": 254, - "route": "assets/pathing/须弥1-无郁稠林-4.json" - } - ] - }, - { - "id": 254, - "type": "path", - "region": "须弥1", - "position": { - "x": 2233.8, - "y": -160.88 - }, - "prev": [ - 253 - ], - "next": [ - { - "target": 255, "route": "assets/pathing/须弥1-无郁稠林-5.json" } ] }, { - "id": 255, - "type": "path", + "id": 254, + "type": "blossom", "region": "须弥1", "position": { "x": 2269.0, "y": -251.14 }, "prev": [ - 254 + 253 ], "next": [] }, { - "id": 256, - "type": "path", + "id": 255, + "type": "blossom", "region": "须弥10", "position": { "x": 6501.08, @@ -4511,19 +4493,38 @@ ], "next": [ { - "target": 257, + "target": 256, "route": "assets/pathing/须弥10-荼泥黑渊-2.json" } ] }, { - "id": 257, - "type": "path", + "id": 256, + "type": "blossom", "region": "须弥10", "position": { "x": 6613.41, "y": 784.42 }, + "prev": [ + 75, + 255 + ], + "next": [ + { + "target": 257, + "route": "assets/pathing/须弥10-荼泥黑渊-3.json" + } + ] + }, + { + "id": 257, + "type": "blossom", + "region": "须弥10", + "position": { + "x": 6692.66, + "y": 625.4 + }, "prev": [ 75, 256 @@ -4531,32 +4532,13 @@ "next": [ { "target": 258, - "route": "assets/pathing/须弥10-荼泥黑渊-3.json" - } - ] - }, - { - "id": 258, - "type": "path", - "region": "须弥10", - "position": { - "x": 6692.66, - "y": 625.4 - }, - "prev": [ - 75, - 257 - ], - "next": [ - { - "target": 259, "route": "assets/pathing/须弥10-荼泥黑渊-4.json" } ] }, { - "id": 259, - "type": "path", + "id": 258, + "type": "blossom", "region": "须弥10", "position": { "x": 6280.81, @@ -4564,13 +4546,13 @@ }, "prev": [ 76, - 258 + 257 ], "next": [] }, { - "id": 260, - "type": "path", + "id": 259, + "type": "blossom", "region": "须弥2", "position": { "x": 2910.46, @@ -4581,32 +4563,32 @@ ], "next": [ { - "target": 261, + "target": 260, "route": "assets/pathing/须弥2-奥摩斯港西-2.json" } ] }, { - "id": 261, - "type": "path", + "id": 260, + "type": "blossom", "region": "须弥2", "position": { "x": 2980.38, "y": -1758.57 }, "prev": [ - 260 + 259 ], "next": [ { - "target": 262, + "target": 261, "route": "assets/pathing/须弥2-奥摩斯港西-3.json" } ] }, { - "id": 262, - "type": "path", + "id": 261, + "type": "blossom", "region": "须弥2", "position": { "x": 3013.06, @@ -4614,49 +4596,49 @@ }, "prev": [ 78, - 261 + 260 ], "next": [ { - "target": 263, + "target": 262, "route": "assets/pathing/须弥2-奥摩斯港西-4.json" } ] }, { - "id": 263, - "type": "path", + "id": 262, + "type": "blossom", "region": "须弥2", "position": { "x": 2981.92, "y": -1641.54 }, "prev": [ - 262 + 261 ], "next": [ { - "target": 264, + "target": 263, "route": "assets/pathing/须弥2-奥摩斯港西-5.json" } ] }, { - "id": 264, - "type": "path", + "id": 263, + "type": "blossom", "region": "须弥2", "position": { "x": 2963.07, "y": -1586.92 }, "prev": [ - 263 + 262 ], "next": [] }, { - "id": 265, - "type": "path", + "id": 264, + "type": "blossom", "region": "须弥3", "position": { "x": 3195.78, @@ -4667,32 +4649,32 @@ ], "next": [ { - "target": 266, + "target": 265, "route": "assets/pathing/须弥3-禅那园-2.json" } ] }, { - "id": 266, - "type": "path", + "id": 265, + "type": "blossom", "region": "须弥3", "position": { "x": 3233.51, "y": -740.65 }, "prev": [ - 265 + 264 ], "next": [ { - "target": 267, + "target": 266, "route": "assets/pathing/须弥3-禅那园-3.json" } ] }, { - "id": 267, - "type": "path", + "id": 266, + "type": "blossom", "region": "须弥3", "position": { "x": 3324.5, @@ -4700,31 +4682,31 @@ }, "prev": [ 80, - 266 + 265 ], "next": [ { - "target": 268, + "target": 267, "route": "assets/pathing/须弥3-禅那园-4.json" } ] }, { - "id": 268, - "type": "path", + "id": 267, + "type": "blossom", "region": "须弥3", "position": { "x": 3387.39, "y": -664.21 }, "prev": [ - 267 + 266 ], "next": [] }, { - "id": 269, - "type": "path", + "id": 268, + "type": "blossom", "region": "须弥4", "position": { "x": 3381.91, @@ -4735,50 +4717,50 @@ ], "next": [ { - "target": 270, + "target": 269, "route": "assets/pathing/须弥4-水天丛林-2.json" } ] }, { - "id": 270, - "type": "path", + "id": 269, + "type": "blossom", "region": "须弥4", "position": { "x": 3355.82, "y": -1318.18 }, + "prev": [ + 268 + ], + "next": [ + { + "target": 270, + "route": "assets/pathing/须弥4-水天丛林-3.json" + } + ] + }, + { + "id": 270, + "type": "blossom", + "region": "须弥4", + "position": { + "x": 3466.17, + "y": -1318.08 + }, "prev": [ 269 ], "next": [ { "target": 271, - "route": "assets/pathing/须弥4-水天丛林-3.json" - } - ] - }, - { - "id": 271, - "type": "path", - "region": "须弥4", - "position": { - "x": 3466.17, - "y": -1318.08 - }, - "prev": [ - 270 - ], - "next": [ - { - "target": 272, "route": "assets/pathing/须弥4-水天丛林-4.json" } ] }, { - "id": 272, - "type": "path", + "id": 271, + "type": "blossom", "region": "须弥4", "position": { "x": 3504.37, @@ -4786,18 +4768,18 @@ }, "prev": [ 82, - 271 + 270 ], "next": [ { - "target": 273, + "target": 272, "route": "assets/pathing/须弥4-水天丛林-5.json" } ] }, { - "id": 273, - "type": "path", + "id": 272, + "type": "blossom", "region": "须弥4", "position": { "x": 3721.99, @@ -4805,13 +4787,13 @@ }, "prev": [ 83, - 272 + 271 ], "next": [] }, { - "id": 274, - "type": "path", + "id": 273, + "type": "blossom", "region": "须弥5", "position": { "x": 4345.77, @@ -4822,68 +4804,68 @@ ], "next": [ { - "target": 275, + "target": 274, "route": "assets/pathing/须弥5-阿如村-2.json" } ] }, { - "id": 275, - "type": "path", + "id": 274, + "type": "blossom", "region": "须弥5", "position": { "x": 4257.86, "y": -1903.31 }, "prev": [ - 274 + 273 ], "next": [ { - "target": 276, + "target": 275, "route": "assets/pathing/须弥5-阿如村-3.json" } ] }, { - "id": 276, - "type": "path", + "id": 275, + "type": "blossom", "region": "须弥5", "position": { "x": 4144.29, "y": -2014.19 }, "prev": [ - 275, - 276 + 274, + 275 ], "next": [ { - "target": 276, + "target": 275, "route": "assets/pathing/须弥5-阿如村-4.json" }, { - "target": 277, + "target": 276, "route": "assets/pathing/须弥5-阿如村-5.json" } ] }, { - "id": 277, - "type": "path", + "id": 276, + "type": "blossom", "region": "须弥5", "position": { "x": 4211.01, "y": -2165.65 }, "prev": [ - 276 + 275 ], "next": [] }, { - "id": 278, - "type": "path", + "id": 277, + "type": "blossom", "region": "须弥6", "position": { "x": 4552.75, @@ -4894,14 +4876,14 @@ ], "next": [ { - "target": 279, + "target": 278, "route": "assets/pathing/须弥6-荼诃落谷-2.json" } ] }, { - "id": 279, - "type": "path", + "id": 278, + "type": "blossom", "region": "须弥6", "position": { "x": 4696.5, @@ -4909,36 +4891,36 @@ }, "prev": [ 86, - 278 + 277 ], "next": [ { - "target": 280, + "target": 279, "route": "assets/pathing/须弥6-荼诃落谷-3.json" } ] }, { - "id": 280, - "type": "path", + "id": 279, + "type": "blossom", "region": "须弥6", "position": { "x": 4886.54, "y": -2940.45 }, "prev": [ - 279 + 278 ], "next": [ { - "target": 281, + "target": 280, "route": "assets/pathing/须弥6-荼诃落谷-4.json" } ] }, { - "id": 281, - "type": "path", + "id": 280, + "type": "blossom", "region": "须弥6", "position": { "x": 4756.03, @@ -4946,13 +4928,13 @@ }, "prev": [ 87, - 280 + 279 ], "next": [] }, { - "id": 282, - "type": "path", + "id": 281, + "type": "blossom", "region": "须弥8", "position": { "x": 5758.76, @@ -4963,63 +4945,63 @@ ], "next": [ { - "target": 283, + "target": 282, "route": "assets/pathing/须弥8-折胫谷-2.json" } ] }, { - "id": 283, - "type": "path", + "id": 282, + "type": "blossom", "region": "须弥8", "position": { "x": 5887.09, "y": -1120.65 }, + "prev": [ + 281 + ], + "next": [ + { + "target": 283, + "route": "assets/pathing/须弥8-折胫谷-3.json" + } + ] + }, + { + "id": 283, + "type": "blossom", + "region": "须弥8", + "position": { + "x": 5902.11, + "y": -1008.25 + }, "prev": [ 282 ], "next": [ { "target": 284, - "route": "assets/pathing/须弥8-折胫谷-3.json" - } - ] - }, - { - "id": 284, - "type": "path", - "region": "须弥8", - "position": { - "x": 5902.11, - "y": -1008.25 - }, - "prev": [ - 283 - ], - "next": [ - { - "target": 285, "route": "assets/pathing/须弥8-折胫谷-4.json" } ] }, { - "id": 285, - "type": "path", + "id": 284, + "type": "blossom", "region": "须弥8", "position": { "x": 5928.09, "y": -922.46 }, "prev": [ - 284 + 283 ], "next": [] }, { - "id": 286, - "type": "path", + "id": 285, + "type": "blossom", "region": "须弥9", "position": { "x": 4555.52, @@ -5030,57 +5012,57 @@ ], "next": [ { - "target": 287, + "target": 286, "route": "assets/pathing/须弥9-镔铁沙丘-2.json" } ] }, { - "id": 287, - "type": "path", + "id": 286, + "type": "blossom", "region": "须弥9", "position": { "x": 4573.81, "y": -408.86 }, + "prev": [ + 285 + ], + "next": [ + { + "target": 287, + "route": "assets/pathing/须弥9-镔铁沙丘-3.json" + } + ] + }, + { + "id": 287, + "type": "blossom", + "region": "须弥9", + "position": { + "x": 4756.13, + "y": -221.43 + }, "prev": [ 286 ], "next": [ { "target": 288, - "route": "assets/pathing/须弥9-镔铁沙丘-3.json" - } - ] - }, - { - "id": 288, - "type": "path", - "region": "须弥9", - "position": { - "x": 4756.13, - "y": -221.43 - }, - "prev": [ - 287 - ], - "next": [ - { - "target": 289, "route": "assets/pathing/须弥9-镔铁沙丘-4.json" } ] }, { - "id": 289, - "type": "path", + "id": 288, + "type": "blossom", "region": "须弥9", "position": { "x": 4862.07, "y": -150.71 }, "prev": [ - 288 + 287 ], "next": [] } diff --git a/repo/js/AutoLeyLineOutcrop/assets/pathing/target/璃月8-南天门南-2.json b/repo/js/AutoLeyLineOutcrop/assets/pathing/target/璃月8-南天门南-2.json index 7b5a6290..5180c5ae 100644 --- a/repo/js/AutoLeyLineOutcrop/assets/pathing/target/璃月8-南天门南-2.json +++ b/repo/js/AutoLeyLineOutcrop/assets/pathing/target/璃月8-南天门南-2.json @@ -13,7 +13,7 @@ "id": 1, "x": 1333.25, "y": 266.26, - "type": "path", + "type": "target", "move_mode": "walk" } ] diff --git a/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-3.5.json b/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-4-1.json similarity index 88% rename from repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-3.5.json rename to repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-4-1.json index 692bf8d0..fb1fa293 100644 --- a/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-3.5.json +++ b/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-4-1.json @@ -1,6 +1,6 @@ { "info": { - "name": "蒙德2-清泉镇-3.5", + "name": "蒙德2-清泉镇-4-1", "type": "collect", "author": "ddaodan", "version": "1.1", diff --git a/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-4-2.json b/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-4-2.json new file mode 100644 index 00000000..a35eba9b --- /dev/null +++ b/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-4-2.json @@ -0,0 +1,19 @@ +{ + "info": { + "name": "蒙德2-清泉镇-4-2", + "type": "collect", + "author": "ddaodan", + "version": "1.1", + "description": "", + "bgi_version": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -319.46, + "y": 2156.93, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-5-1.json b/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-5-1.json new file mode 100644 index 00000000..94885839 --- /dev/null +++ b/repo/js/AutoLeyLineOutcrop/assets/pathing/target/蒙德2-清泉镇-5-1.json @@ -0,0 +1,20 @@ +{ + "info": { + "name": "蒙德2-清泉镇-5-1", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "x": -319.57, + "y": 2156.48, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoLeyLineOutcrop/config.json b/repo/js/AutoLeyLineOutcrop/config.json index 0684703e..0e576b84 100644 --- a/repo/js/AutoLeyLineOutcrop/config.json +++ b/repo/js/AutoLeyLineOutcrop/config.json @@ -1153,13 +1153,6 @@ "steps": 4, "order": 2 }, - { - "x": -347, - "y": 1902, - "strategy": "蒙德2-清泉镇", - "steps": 4, - "order": 3 - }, { "x": -420, "y": 1998, @@ -1174,6 +1167,27 @@ "steps": 4, "order": 4 }, + { + "x": -347, + "y": 1902, + "strategy": "蒙德2-清泉镇-4", + "steps": 2, + "order": 1 + }, + { + "x": -319, + "y": 2156, + "strategy": "蒙德2-清泉镇-4", + "steps": 2, + "order": 2 + }, + { + "x": -319, + "y": 2156, + "strategy": "蒙德2-清泉镇-5", + "steps": 1, + "order": 1 + }, { "x": -281, "y": 2310,