From 5a2993d4b1104bc7a84cabdeaafd0c9160fbfb81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E4=BA=91?= Date: Sun, 18 May 2025 12:54:41 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E8=92=99=E5=BE=B7=E6=B8=85=E6=B3=89?= =?UTF-8?q?=E9=95=87=205-1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../3_generate_ley_line_data.py | 157 +- .../LeyLineOutcropData.json | 2478 +++++++++-------- ...2-清泉镇-3.5.json => 蒙德2-清泉镇-4-1.json} | 0 ...德2-清泉镇-4.json => 蒙德2-清泉镇-4-2.json} | 0 .../assets/pathing/蒙德2-清泉镇-5-1.json | 49 + 5 files changed, 1401 insertions(+), 1283 deletions(-) rename repo/js/AutoLeyLineOutcrop/assets/pathing/{蒙德2-清泉镇-3.5.json => 蒙德2-清泉镇-4-1.json} (100%) rename repo/js/AutoLeyLineOutcrop/assets/pathing/{蒙德2-清泉镇-4.json => 蒙德2-清泉镇-4-2.json} (100%) create mode 100644 repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-5-1.json diff --git a/repo/js/AutoLeyLineOutcrop/3_generate_ley_line_data.py b/repo/js/AutoLeyLineOutcrop/3_generate_ley_line_data.py index b5f72452..dc87da3b 100644 --- a/repo/js/AutoLeyLineOutcrop/3_generate_ley_line_data.py +++ b/repo/js/AutoLeyLineOutcrop/3_generate_ley_line_data.py @@ -212,10 +212,10 @@ def generate_ley_line_data(): # Second pass: Process all target points to create blossom nodes # Also maintain a map from file info to target nodes region_area_num_to_target = {} - + for file_path, path_data in file_data.items(): _, last_pos = get_first_and_last_positions(path_data) - if not last_pos or last_pos.get("type") != "target": + if not last_pos: continue # Extract region from filename @@ -228,18 +228,23 @@ def generate_ley_line_data(): if not region or not area or not num: continue - # Process target points as blossom nodes + # Process last points as blossom nodes (regardless of type) target_x = format_coord(float(last_pos["x"])) target_y = format_coord(float(last_pos["y"])) - # Check if we already have a nearby blossom node - blossom_node = find_nearby_node(nodes, target_x, target_y, "blossom") + # Determine node type - default to blossom if type is not specified or is target + node_type = last_pos.get("type", "blossom") + if node_type == "target": + node_type = "blossom" + + # Check if we already have a nearby node of the same type + blossom_node = find_nearby_node(nodes, target_x, target_y, node_type) if not blossom_node: - # Create new blossom node + # Create new node blossom_node = { "id": next_node_id, - "type": "blossom", + "type": node_type, "region": region, "position": {"x": target_x, "y": target_y}, "prev": [], @@ -249,7 +254,7 @@ def generate_ley_line_data(): node_map[next_node_id] = blossom_node next_node_id += 1 - # Store the blossom node in our region-area-num map + # Store the node in our region-area-num map key = f"{region}-{area}" if key not in region_area_num_to_target: region_area_num_to_target[key] = {} @@ -275,47 +280,47 @@ def generate_ley_line_data(): target_data = read_pathing_file(target_path) if target_data and "positions" in target_data and target_data["positions"]: - # Create blossom node from the target file + # Create node from the target file target_pos = target_data["positions"][0] - if target_pos.get("type") == "target": - target_x = format_coord(float(target_pos["x"])) - target_y = format_coord(float(target_pos["y"])) - - # Check if we already have a nearby blossom node - blossom_node = find_nearby_node(nodes, target_x, target_y, "blossom") - - if not blossom_node: - # Create new blossom node - blossom_node = { - "id": next_node_id, - "type": "blossom", - "region": region, - "position": {"x": target_x, "y": target_y}, - "prev": [], - "next": [] - } - nodes.append(blossom_node) - node_map[next_node_id] = blossom_node - next_node_id += 1 - - # Add to region_area_num_to_target map - if key not in region_area_num_to_target: - region_area_num_to_target[key] = {} - region_area_num_to_target[key][num] = { - "node": blossom_node, - "file_path": file_path + # Determine node type - default to blossom if type is not specified or is target + node_type = target_pos.get("type", "blossom") + if node_type == "target": + node_type = "blossom" + + target_x = format_coord(float(target_pos["x"])) + target_y = format_coord(float(target_pos["y"])) + + # Check if we already have a nearby node of the same type + blossom_node = find_nearby_node(nodes, target_x, target_y, node_type) + + if not blossom_node: + # Create new node + blossom_node = { + "id": next_node_id, + "type": node_type, + "region": region, + "position": {"x": target_x, "y": target_y}, + "prev": [], + "next": [] } + nodes.append(blossom_node) + node_map[next_node_id] = blossom_node + next_node_id += 1 + + # Add to region_area_num_to_target map + if key not in region_area_num_to_target: + region_area_num_to_target[key] = {} + region_area_num_to_target[key][num] = { + "node": blossom_node, + "file_path": file_path + } - # Third pass: Connect teleport points to their target blossoms + # Third pass: Connect teleport points to their destination nodes for file_path, path_data in file_data.items(): first_pos, last_pos = get_first_and_last_positions(path_data) if not first_pos or not last_pos: continue - # Skip if this isn't a valid target - if last_pos.get("type") != "target": - continue - # Extract file info file_name = os.path.basename(file_path) region, area, num = extract_route_number(file_name) @@ -324,38 +329,44 @@ def generate_ley_line_data(): if not region or not area or not num: continue - # For teleport source type, connect to target + # 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 target blossom node - target_x = format_coord(float(last_pos["x"])) - target_y = format_coord(float(last_pos["y"])) - target_node = find_nearby_node(nodes, target_x, target_y, "blossom") + # Find destination node + dest_x = format_coord(float(last_pos["x"])) + dest_y = format_coord(float(last_pos["y"])) - if teleport_node and target_node: + # Determine node type, default to blossom for target or if not specified + dest_type = last_pos.get("type", "blossom") + if dest_type == "target": + 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 target to teleport's next array if not already there + # Add destination to teleport's next array if not already there route_exists = False for route in teleport_node["next"]: - if route["target"] == target_node["id"]: + if route["target"] == dest_node["id"]: route_exists = True break if not route_exists: teleport_node["next"].append({ - "target": target_node["id"], + "target": dest_node["id"], "route": relative_path }) - # Add teleport to target's prev array if not already there - if teleport_node["id"] not in target_node["prev"]: - target_node["prev"].append(teleport_node["id"]) + # Add teleport to destination's prev array if not already there + if teleport_node["id"] not in dest_node["prev"]: + dest_node["prev"].append(teleport_node["id"]) # 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(): @@ -433,14 +444,14 @@ def generate_ley_line_data(): if current_node["id"] not in next_node["prev"]: next_node["prev"].append(current_node["id"]) - # Fifth pass: Connect "path" type sources to their targets + # Fifth pass: Connect "path" type sources to their destinations for file_path, path_data in file_data.items(): first_pos, last_pos = get_first_and_last_positions(path_data) if not first_pos or not last_pos: continue - # Skip if not a path type or not a valid target - if first_pos.get("type") != "path" or last_pos.get("type") != "target": + # Skip if not a path type + if first_pos.get("type") != "path": continue # Extract file info @@ -451,38 +462,44 @@ def generate_ley_line_data(): if not region or not area or not num: continue - # Try to find the source in previous route target + # Try to find the source in previous route prev_num = num - 1 key = f"{region}-{area}" if key in region_area_num_to_target and prev_num in region_area_num_to_target[key]: prev_info = region_area_num_to_target[key][prev_num] prev_node = prev_info["node"] - # Find the current target node - target_x = format_coord(float(last_pos["x"])) - target_y = format_coord(float(last_pos["y"])) - target_node = find_nearby_node(nodes, target_x, target_y, "blossom") + # Find the current destination node + dest_x = format_coord(float(last_pos["x"])) + dest_y = format_coord(float(last_pos["y"])) - if prev_node and target_node: - # Add connection from previous target to current target + # Determine node type, default to blossom for target or if not specified + dest_type = last_pos.get("type", "blossom") + if dest_type == "target": + dest_type = "blossom" + + dest_node = find_nearby_node(nodes, dest_x, dest_y, dest_type) + + if prev_node and dest_node: + # Add connection from previous node to current destination relative_path = generate_relative_path(file_path, script_dir) - # Add target to previous node's next array if not already there + # Add destination to previous node's next array if not already there route_exists = False for route in prev_node["next"]: - if route["target"] == target_node["id"]: + if route["target"] == dest_node["id"]: route_exists = True break if not route_exists: prev_node["next"].append({ - "target": target_node["id"], + "target": dest_node["id"], "route": relative_path }) - # Add previous node to target's prev array if not already there - if prev_node["id"] not in target_node["prev"]: - target_node["prev"].append(prev_node["id"]) + # Add previous node to destination's prev array if not already there + if prev_node["id"] not in dest_node["prev"]: + dest_node["prev"].append(prev_node["id"]) # Save to JSON file ley_line_data = {"node": nodes} @@ -496,4 +513,4 @@ def generate_ley_line_data(): if __name__ == "__main__": - generate_ley_line_data() \ No newline at end of file + generate_ley_line_data() \ No newline at end of file diff --git a/repo/js/AutoLeyLineOutcrop/LeyLineOutcropData.json b/repo/js/AutoLeyLineOutcrop/LeyLineOutcropData.json index 24249b00..b2ee6fe1 100644 --- a/repo/js/AutoLeyLineOutcrop/LeyLineOutcropData.json +++ b/repo/js/AutoLeyLineOutcrop/LeyLineOutcropData.json @@ -11,15 +11,15 @@ "prev": [], "next": [ { - "target": 89, + "target": 90, "route": "assets/pathing/枫丹1-秋分山西侧-1.json" }, { - "target": 90, + "target": 91, "route": "assets/pathing/枫丹1-秋分山西侧-2.json" }, { - "target": 106, + "target": 107, "route": "assets/pathing/枫丹5-秋分山东侧-1.json" } ] @@ -35,15 +35,15 @@ "prev": [], "next": [ { - "target": 91, + "target": 92, "route": "assets/pathing/枫丹1-秋分山西侧-3.json" }, { - "target": 92, + "target": 93, "route": "assets/pathing/枫丹1-秋分山西侧-4.json" }, { - "target": 93, + "target": 94, "route": "assets/pathing/枫丹1-秋分山西侧-5.json" } ] @@ -59,19 +59,19 @@ "prev": [], "next": [ { - "target": 94, + "target": 95, "route": "assets/pathing/枫丹2-芒索斯山东麓-1.json" }, { - "target": 95, + "target": 96, "route": "assets/pathing/枫丹2-芒索斯山东麓-2.json" }, { - "target": 96, + "target": 97, "route": "assets/pathing/枫丹2-芒索斯山东麓-3.json" }, { - "target": 97, + "target": 98, "route": "assets/pathing/枫丹2-芒索斯山东麓-4.json" } ] @@ -87,11 +87,11 @@ "prev": [], "next": [ { - "target": 98, + "target": 99, "route": "assets/pathing/枫丹3-新枫丹科学院-1.json" }, { - "target": 99, + "target": 100, "route": "assets/pathing/枫丹3-新枫丹科学院-2.json" } ] @@ -107,11 +107,11 @@ "prev": [], "next": [ { - "target": 100, + "target": 101, "route": "assets/pathing/枫丹3-新枫丹科学院-3.json" }, { - "target": 101, + "target": 102, "route": "assets/pathing/枫丹3-新枫丹科学院-4.json" } ] @@ -127,7 +127,7 @@ "prev": [], "next": [ { - "target": 102, + "target": 103, "route": "assets/pathing/枫丹4-柔灯港-1.json" } ] @@ -143,15 +143,15 @@ "prev": [], "next": [ { - "target": 103, + "target": 104, "route": "assets/pathing/枫丹4-柔灯港-2.json" }, { - "target": 104, + "target": 105, "route": "assets/pathing/枫丹4-柔灯港-3.json" }, { - "target": 105, + "target": 106, "route": "assets/pathing/枫丹4-柔灯港-4.json" } ] @@ -167,11 +167,11 @@ "prev": [], "next": [ { - "target": 107, + "target": 108, "route": "assets/pathing/枫丹5-秋分山东侧-3.json" }, { - "target": 108, + "target": 109, "route": "assets/pathing/枫丹5-秋分山东侧-4.json" } ] @@ -187,7 +187,7 @@ "prev": [], "next": [ { - "target": 109, + "target": 110, "route": "assets/pathing/枫丹6-厄里那斯-1.json" } ] @@ -203,19 +203,19 @@ "prev": [], "next": [ { - "target": 110, + "target": 111, "route": "assets/pathing/枫丹6-厄里那斯-2.json" }, { - "target": 111, + "target": 112, "route": "assets/pathing/枫丹6-厄里那斯-3.json" }, { - "target": 112, + "target": 113, "route": "assets/pathing/枫丹6-厄里那斯-4.json" }, { - "target": 114, + "target": 115, "route": "assets/pathing/枫丹6-厄里那斯-6.json" } ] @@ -231,7 +231,7 @@ "prev": [], "next": [ { - "target": 113, + "target": 114, "route": "assets/pathing/枫丹6-厄里那斯-5.json" } ] @@ -247,7 +247,7 @@ "prev": [], "next": [ { - "target": 115, + "target": 116, "route": "assets/pathing/璃月1-石门-1.json" } ] @@ -263,7 +263,7 @@ "prev": [], "next": [ { - "target": 116, + "target": 117, "route": "assets/pathing/璃月1-石门-2.json" } ] @@ -279,11 +279,11 @@ "prev": [], "next": [ { - "target": 119, + "target": 120, "route": "assets/pathing/璃月10-绝云间-1.json" }, { - "target": 122, + "target": 123, "route": "assets/pathing/璃月8-南天门南-6.json" } ] @@ -299,7 +299,7 @@ "prev": [], "next": [ { - "target": 120, + "target": 121, "route": "assets/pathing/璃月10-绝云间-2.json" } ] @@ -315,19 +315,19 @@ "prev": [], "next": [ { - "target": 121, + "target": 122, "route": "assets/pathing/璃月10-绝云间-3.json" }, { - "target": 123, + "target": 124, "route": "assets/pathing/璃月10-绝云间-5.json" }, { - "target": 140, + "target": 141, "route": "assets/pathing/璃月3-瑶光滩-3.json" }, { - "target": 141, + "target": 142, "route": "assets/pathing/璃月3-瑶光滩-4.json" } ] @@ -343,7 +343,7 @@ "prev": [], "next": [ { - "target": 124, + "target": 125, "route": "assets/pathing/璃月11-轻策庄-1.json" } ] @@ -359,7 +359,7 @@ "prev": [], "next": [ { - "target": 128, + "target": 129, "route": "assets/pathing/璃月11-轻策庄-5.json" } ] @@ -375,7 +375,7 @@ "prev": [], "next": [ { - "target": 129, + "target": 130, "route": "assets/pathing/璃月11-轻策庄-6.json" } ] @@ -391,7 +391,7 @@ "prev": [], "next": [ { - "target": 130, + "target": 131, "route": "assets/pathing/璃月14-药蝶谷-1.json" } ] @@ -407,11 +407,11 @@ "prev": [], "next": [ { - "target": 134, + "target": 135, "route": "assets/pathing/璃月2-地中之盐-1.json" }, { - "target": 135, + "target": 136, "route": "assets/pathing/璃月2-地中之盐-2.json" } ] @@ -427,7 +427,7 @@ "prev": [], "next": [ { - "target": 136, + "target": 137, "route": "assets/pathing/璃月2-地中之盐-3.json" } ] @@ -443,15 +443,15 @@ "prev": [], "next": [ { - "target": 137, + "target": 138, "route": "assets/pathing/璃月2-地中之盐-4.json" }, { - "target": 138, + "target": 139, "route": "assets/pathing/璃月3-瑶光滩-1.json" }, { - "target": 139, + "target": 140, "route": "assets/pathing/璃月3-瑶光滩-2.json" } ] @@ -467,7 +467,7 @@ "prev": [], "next": [ { - "target": 142, + "target": 143, "route": "assets/pathing/璃月4-璃月港-1.json" } ] @@ -483,7 +483,7 @@ "prev": [], "next": [ { - "target": 146, + "target": 147, "route": "assets/pathing/璃月4-璃月港-5.json" } ] @@ -499,11 +499,11 @@ "prev": [], "next": [ { - "target": 147, + "target": 148, "route": "assets/pathing/璃月5-天衡山-1.json" }, { - "target": 148, + "target": 149, "route": "assets/pathing/璃月5-天衡山-2.json" } ] @@ -519,7 +519,7 @@ "prev": [], "next": [ { - "target": 150, + "target": 151, "route": "assets/pathing/璃月5-天衡山-4-1.json" } ] @@ -535,11 +535,11 @@ "prev": [], "next": [ { - "target": 151, + "target": 152, "route": "assets/pathing/璃月8-南天门南-1.json" }, { - "target": 158, + "target": 160, "route": "assets/pathing/璃月9-南天门东-4.json" } ] @@ -555,11 +555,15 @@ "prev": [], "next": [ { - "target": 152, + "target": 153, + "route": "assets/pathing/璃月8-南天门南-2.json" + }, + { + "target": 154, "route": "assets/pathing/璃月8-南天门南-3.json" }, { - "target": 153, + "target": 155, "route": "assets/pathing/璃月8-南天门南-4.json" } ] @@ -575,7 +579,7 @@ "prev": [], "next": [ { - "target": 154, + "target": 156, "route": "assets/pathing/璃月8-南天门南-5.json" } ] @@ -591,11 +595,11 @@ "prev": [], "next": [ { - "target": 155, + "target": 157, "route": "assets/pathing/璃月9-南天门东-1.json" }, { - "target": 157, + "target": 159, "route": "assets/pathing/璃月9-南天门东-3-1.json" } ] @@ -611,11 +615,11 @@ "prev": [], "next": [ { - "target": 159, + "target": 161, "route": "assets/pathing/稻妻1-鸣神岛-1.json" }, { - "target": 160, + "target": 162, "route": "assets/pathing/稻妻1-鸣神岛-2.json" } ] @@ -631,11 +635,11 @@ "prev": [], "next": [ { - "target": 161, + "target": 163, "route": "assets/pathing/稻妻1-鸣神岛-3.json" }, { - "target": 162, + "target": 164, "route": "assets/pathing/稻妻1-鸣神岛-4.json" } ] @@ -651,7 +655,7 @@ "prev": [], "next": [ { - "target": 163, + "target": 165, "route": "assets/pathing/稻妻2-踏鞴砂-1.json" } ] @@ -667,7 +671,7 @@ "prev": [], "next": [ { - "target": 164, + "target": 166, "route": "assets/pathing/稻妻2-踏鞴砂-2.json" } ] @@ -683,7 +687,7 @@ "prev": [], "next": [ { - "target": 165, + "target": 167, "route": "assets/pathing/稻妻2-踏鞴砂-3.json" } ] @@ -699,11 +703,11 @@ "prev": [], "next": [ { - "target": 166, + "target": 168, "route": "assets/pathing/稻妻2-踏鞴砂-4.json" }, { - "target": 167, + "target": 169, "route": "assets/pathing/稻妻2-踏鞴砂-5.json" } ] @@ -719,15 +723,15 @@ "prev": [], "next": [ { - "target": 168, + "target": 170, "route": "assets/pathing/稻妻3-八酝岛-1.json" }, { - "target": 170, + "target": 172, "route": "assets/pathing/稻妻3-八酝岛-3.json" }, { - "target": 171, + "target": 173, "route": "assets/pathing/稻妻3-八酝岛-4.json" } ] @@ -743,7 +747,7 @@ "prev": [], "next": [ { - "target": 172, + "target": 174, "route": "assets/pathing/稻妻4-海祇岛-1.json" } ] @@ -759,7 +763,7 @@ "prev": [], "next": [ { - "target": 175, + "target": 177, "route": "assets/pathing/稻妻4-海祇岛-4.json" } ] @@ -775,7 +779,7 @@ "prev": [], "next": [ { - "target": 176, + "target": 178, "route": "assets/pathing/稻妻5-清籁岛-1.json" } ] @@ -791,7 +795,7 @@ "prev": [], "next": [ { - "target": 179, + "target": 181, "route": "assets/pathing/稻妻5-清籁岛-4.json" } ] @@ -807,7 +811,7 @@ "prev": [], "next": [ { - "target": 181, + "target": 183, "route": "assets/pathing/纳塔1-隆崛坡-1.json" } ] @@ -823,11 +827,11 @@ "prev": [], "next": [ { - "target": 182, + "target": 184, "route": "assets/pathing/纳塔1-隆崛坡-2.json" }, { - "target": 183, + "target": 185, "route": "assets/pathing/纳塔1-隆崛坡-3.json" } ] @@ -843,7 +847,7 @@ "prev": [], "next": [ { - "target": 185, + "target": 187, "route": "assets/pathing/纳塔10-溶水域-1.json" } ] @@ -859,7 +863,7 @@ "prev": [], "next": [ { - "target": 188, + "target": 190, "route": "assets/pathing/纳塔10-溶水域-4.json" } ] @@ -875,15 +879,15 @@ "prev": [], "next": [ { - "target": 189, + "target": 191, "route": "assets/pathing/纳塔2-硫晶支脉-1.json" }, { - "target": 190, + "target": 192, "route": "assets/pathing/纳塔2-硫晶支脉-2.json" }, { - "target": 191, + "target": 193, "route": "assets/pathing/纳塔2-硫晶支脉-3.json" } ] @@ -899,7 +903,7 @@ "prev": [], "next": [ { - "target": 192, + "target": 194, "route": "assets/pathing/纳塔2-硫晶支脉-4.json" } ] @@ -915,7 +919,7 @@ "prev": [], "next": [ { - "target": 193, + "target": 195, "route": "assets/pathing/纳塔3-彩石顶-1.json" } ] @@ -931,11 +935,11 @@ "prev": [], "next": [ { - "target": 194, + "target": 196, "route": "assets/pathing/纳塔3-彩石顶-2.json" }, { - "target": 195, + "target": 197, "route": "assets/pathing/纳塔3-彩石顶-3.json" } ] @@ -951,7 +955,7 @@ "prev": [], "next": [ { - "target": 197, + "target": 199, "route": "assets/pathing/纳塔4-溶水域-1.json" } ] @@ -967,15 +971,15 @@ "prev": [], "next": [ { - "target": 199, + "target": 201, "route": "assets/pathing/纳塔5-安饶之野-1.json" }, { - "target": 200, + "target": 202, "route": "assets/pathing/纳塔5-安饶之野-2.json" }, { - "target": 201, + "target": 203, "route": "assets/pathing/纳塔5-安饶之野-3.json" } ] @@ -991,11 +995,11 @@ "prev": [], "next": [ { - "target": 202, + "target": 204, "route": "assets/pathing/纳塔6-圣火竞技场-1.json" }, { - "target": 203, + "target": 205, "route": "assets/pathing/纳塔6-圣火竞技场-2.json" } ] @@ -1011,7 +1015,7 @@ "prev": [], "next": [ { - "target": 206, + "target": 208, "route": "assets/pathing/纳塔7-烟谜主-1.json" } ] @@ -1027,11 +1031,11 @@ "prev": [], "next": [ { - "target": 209, + "target": 211, "route": "assets/pathing/纳塔8-花羽会-1.json" }, { - "target": 210, + "target": 212, "route": "assets/pathing/纳塔8-花羽会-2.json" } ] @@ -1047,7 +1051,7 @@ "prev": [], "next": [ { - "target": 211, + "target": 213, "route": "assets/pathing/纳塔8-花羽会-3.json" } ] @@ -1063,7 +1067,7 @@ "prev": [], "next": [ { - "target": 212, + "target": 214, "route": "assets/pathing/纳塔9-翘枝崖-1.json" } ] @@ -1079,7 +1083,7 @@ "prev": [], "next": [ { - "target": 216, + "target": 218, "route": "assets/pathing/蒙德1-风起地-1.json" } ] @@ -1095,7 +1099,7 @@ "prev": [], "next": [ { - "target": 217, + "target": 219, "route": "assets/pathing/蒙德1-风起地-2.json" } ] @@ -1111,7 +1115,7 @@ "prev": [], "next": [ { - "target": 220, + "target": 222, "route": "assets/pathing/蒙德1-风起地-5.json" } ] @@ -1127,7 +1131,7 @@ "prev": [], "next": [ { - "target": 221, + "target": 223, "route": "assets/pathing/蒙德2-清泉镇-1.json" } ] @@ -1143,7 +1147,7 @@ "prev": [], "next": [ { - "target": 222, + "target": 224, "route": "assets/pathing/蒙德2-清泉镇-2.json" } ] @@ -1151,6 +1155,22 @@ { "id": 63, "type": "teleport", + "region": "蒙德2", + "position": { + "x": -251.66, + "y": 2256.55 + }, + "prev": [], + "next": [ + { + "target": 228, + "route": "assets/pathing/蒙德2-清泉镇-5-1.json" + } + ] + }, + { + "id": 64, + "type": "teleport", "region": "蒙德3", "position": { "x": -385.84, @@ -1159,13 +1179,13 @@ "prev": [], "next": [ { - "target": 226, + "target": 229, "route": "assets/pathing/蒙德3-奔狼领-1.json" } ] }, { - "id": 64, + "id": 65, "type": "teleport", "region": "蒙德3", "position": { @@ -1175,13 +1195,13 @@ "prev": [], "next": [ { - "target": 229, + "target": 232, "route": "assets/pathing/蒙德3-奔狼领-4.json" } ] }, { - "id": 65, + "id": 66, "type": "teleport", "region": "蒙德4", "position": { @@ -1191,13 +1211,13 @@ "prev": [], "next": [ { - "target": 230, + "target": 233, "route": "assets/pathing/蒙德4-风龙废墟-1.json" } ] }, { - "id": 66, + "id": 67, "type": "teleport", "region": "蒙德4", "position": { @@ -1207,13 +1227,13 @@ "prev": [], "next": [ { - "target": 232, + "target": 235, "route": "assets/pathing/蒙德4-风龙废墟-3.json" } ] }, { - "id": 67, + "id": 68, "type": "teleport", "region": "蒙德5", "position": { @@ -1223,13 +1243,13 @@ "prev": [], "next": [ { - "target": 234, + "target": 237, "route": "assets/pathing/蒙德5-千风神殿-1.json" } ] }, { - "id": 68, + "id": 69, "type": "teleport", "region": "蒙德5", "position": { @@ -1239,13 +1259,13 @@ "prev": [], "next": [ { - "target": 237, + "target": 240, "route": "assets/pathing/蒙德5-千风神殿-4.json" } ] }, { - "id": 69, + "id": 70, "type": "teleport", "region": "蒙德5", "position": { @@ -1255,17 +1275,17 @@ "prev": [], "next": [ { - "target": 238, + "target": 241, "route": "assets/pathing/蒙德5-千风神殿-5.json" }, { - "target": 239, + "target": 242, "route": "assets/pathing/蒙德6-望风山地-1.json" } ] }, { - "id": 70, + "id": 71, "type": "teleport", "region": "蒙德6", "position": { @@ -1275,13 +1295,13 @@ "prev": [], "next": [ { - "target": 241, + "target": 244, "route": "assets/pathing/蒙德6-望风山地-3.json" } ] }, { - "id": 71, + "id": 72, "type": "teleport", "region": "蒙德7", "position": { @@ -1291,13 +1311,13 @@ "prev": [], "next": [ { - "target": 243, + "target": 246, "route": "assets/pathing/蒙德7-达达乌帕谷-1.json" } ] }, { - "id": 72, + "id": 73, "type": "teleport", "region": "蒙德7", "position": { @@ -1307,17 +1327,17 @@ "prev": [], "next": [ { - "target": 244, + "target": 247, "route": "assets/pathing/蒙德7-达达乌帕谷-2.json" }, { - "target": 245, + "target": 248, "route": "assets/pathing/蒙德7-达达乌帕谷-3.json" } ] }, { - "id": 73, + "id": 74, "type": "teleport", "region": "须弥1", "position": { @@ -1327,13 +1347,13 @@ "prev": [], "next": [ { - "target": 248, + "target": 251, "route": "assets/pathing/须弥1-无郁稠林-1.json" } ] }, { - "id": 74, + "id": 75, "type": "teleport", "region": "须弥10", "position": { @@ -1343,21 +1363,21 @@ "prev": [], "next": [ { - "target": 253, + "target": 256, "route": "assets/pathing/须弥10-荼泥黑渊-1.json" }, { - "target": 254, + "target": 257, "route": "assets/pathing/须弥10-荼泥黑渊-2.json" }, { - "target": 255, + "target": 258, "route": "assets/pathing/须弥10-荼泥黑渊-3.json" } ] }, { - "id": 75, + "id": 76, "type": "teleport", "region": "须弥10", "position": { @@ -1367,13 +1387,13 @@ "prev": [], "next": [ { - "target": 256, + "target": 259, "route": "assets/pathing/须弥10-荼泥黑渊-4.json" } ] }, { - "id": 76, + "id": 77, "type": "teleport", "region": "须弥2", "position": { @@ -1383,13 +1403,13 @@ "prev": [], "next": [ { - "target": 257, + "target": 260, "route": "assets/pathing/须弥2-奥摩斯港西-1.json" } ] }, { - "id": 77, + "id": 78, "type": "teleport", "region": "须弥2", "position": { @@ -1399,13 +1419,13 @@ "prev": [], "next": [ { - "target": 259, + "target": 262, "route": "assets/pathing/须弥2-奥摩斯港西-3.json" } ] }, { - "id": 78, + "id": 79, "type": "teleport", "region": "须弥3", "position": { @@ -1415,13 +1435,13 @@ "prev": [], "next": [ { - "target": 262, + "target": 265, "route": "assets/pathing/须弥3-禅那园-1.json" } ] }, { - "id": 79, + "id": 80, "type": "teleport", "region": "须弥3", "position": { @@ -1431,13 +1451,13 @@ "prev": [], "next": [ { - "target": 264, + "target": 267, "route": "assets/pathing/须弥3-禅那园-3.json" } ] }, { - "id": 80, + "id": 81, "type": "teleport", "region": "须弥4", "position": { @@ -1447,13 +1467,13 @@ "prev": [], "next": [ { - "target": 266, + "target": 269, "route": "assets/pathing/须弥4-水天丛林-1.json" } ] }, { - "id": 81, + "id": 82, "type": "teleport", "region": "须弥4", "position": { @@ -1463,13 +1483,13 @@ "prev": [], "next": [ { - "target": 269, + "target": 272, "route": "assets/pathing/须弥4-水天丛林-4.json" } ] }, { - "id": 82, + "id": 83, "type": "teleport", "region": "须弥4", "position": { @@ -1479,13 +1499,13 @@ "prev": [], "next": [ { - "target": 270, + "target": 273, "route": "assets/pathing/须弥4-水天丛林-5.json" } ] }, { - "id": 83, + "id": 84, "type": "teleport", "region": "须弥5", "position": { @@ -1495,13 +1515,13 @@ "prev": [], "next": [ { - "target": 271, + "target": 274, "route": "assets/pathing/须弥5-阿如村-1.json" } ] }, { - "id": 84, + "id": 85, "type": "teleport", "region": "须弥6", "position": { @@ -1511,13 +1531,13 @@ "prev": [], "next": [ { - "target": 275, + "target": 278, "route": "assets/pathing/须弥6-荼诃落谷-1.json" } ] }, { - "id": 85, + "id": 86, "type": "teleport", "region": "须弥6", "position": { @@ -1527,13 +1547,13 @@ "prev": [], "next": [ { - "target": 276, + "target": 279, "route": "assets/pathing/须弥6-荼诃落谷-2.json" } ] }, { - "id": 86, + "id": 87, "type": "teleport", "region": "须弥6", "position": { @@ -1543,13 +1563,13 @@ "prev": [], "next": [ { - "target": 278, + "target": 281, "route": "assets/pathing/须弥6-荼诃落谷-4.json" } ] }, { - "id": 87, + "id": 88, "type": "teleport", "region": "须弥8", "position": { @@ -1559,13 +1579,13 @@ "prev": [], "next": [ { - "target": 279, + "target": 282, "route": "assets/pathing/须弥8-折胫谷-1.json" } ] }, { - "id": 88, + "id": 89, "type": "teleport", "region": "须弥9", "position": { @@ -1575,14 +1595,14 @@ "prev": [], "next": [ { - "target": 283, + "target": 286, "route": "assets/pathing/须弥9-镔铁沙丘-1.json" } ] }, { - "id": 89, - "type": "blossom", + "id": 90, + "type": "path", "region": "枫丹1", "position": { "x": 4183.27, @@ -1593,14 +1613,14 @@ ], "next": [ { - "target": 90, + "target": 91, "route": "assets/pathing/枫丹1-秋分山西侧-2.json" } ] }, { - "id": 90, - "type": "blossom", + "id": 91, + "type": "path", "region": "枫丹1", "position": { "x": 4190.03, @@ -1608,41 +1628,22 @@ }, "prev": [ 1, - 89 - ], - "next": [ - { - "target": 91, - "route": "assets/pathing/枫丹1-秋分山西侧-3.json" - } - ] - }, - { - "id": 91, - "type": "blossom", - "region": "枫丹1", - "position": { - "x": 4246.28, - "y": 2374.05 - }, - "prev": [ - 2, 90 ], "next": [ { "target": 92, - "route": "assets/pathing/枫丹1-秋分山西侧-4.json" + "route": "assets/pathing/枫丹1-秋分山西侧-3.json" } ] }, { "id": 92, - "type": "blossom", + "type": "path", "region": "枫丹1", "position": { - "x": 4299.75, - "y": 2232.59 + "x": 4246.28, + "y": 2374.05 }, "prev": [ 2, @@ -1651,13 +1652,32 @@ "next": [ { "target": 93, - "route": "assets/pathing/枫丹1-秋分山西侧-5.json" + "route": "assets/pathing/枫丹1-秋分山西侧-4.json" } ] }, { "id": 93, - "type": "blossom", + "type": "path", + "region": "枫丹1", + "position": { + "x": 4299.75, + "y": 2232.59 + }, + "prev": [ + 2, + 92 + ], + "next": [ + { + "target": 94, + "route": "assets/pathing/枫丹1-秋分山西侧-5.json" + } + ] + }, + { + "id": 94, + "type": "path", "region": "枫丹1", "position": { "x": 4402.53, @@ -1665,13 +1685,13 @@ }, "prev": [ 2, - 92 + 93 ], "next": [] }, { - "id": 94, - "type": "blossom", + "id": 95, + "type": "path", "region": "枫丹2", "position": { "x": 4962.82, @@ -1682,38 +1702,19 @@ ], "next": [ { - "target": 95, + "target": 96, "route": "assets/pathing/枫丹2-芒索斯山东麓-2.json" } ] }, { - "id": 95, - "type": "blossom", + "id": 96, + "type": "path", "region": "枫丹2", "position": { "x": 4952.04, "y": 4468.84 }, - "prev": [ - 3, - 94 - ], - "next": [ - { - "target": 96, - "route": "assets/pathing/枫丹2-芒索斯山东麓-3.json" - } - ] - }, - { - "id": 96, - "type": "blossom", - "region": "枫丹2", - "position": { - "x": 5043.36, - "y": 4479.99 - }, "prev": [ 3, 95 @@ -1721,13 +1722,32 @@ "next": [ { "target": 97, - "route": "assets/pathing/枫丹2-芒索斯山东麓-4.json" + "route": "assets/pathing/枫丹2-芒索斯山东麓-3.json" } ] }, { "id": 97, - "type": "blossom", + "type": "path", + "region": "枫丹2", + "position": { + "x": 5043.36, + "y": 4479.99 + }, + "prev": [ + 3, + 96 + ], + "next": [ + { + "target": 98, + "route": "assets/pathing/枫丹2-芒索斯山东麓-4.json" + } + ] + }, + { + "id": 98, + "type": "path", "region": "枫丹2", "position": { "x": 5087.02, @@ -1735,13 +1755,13 @@ }, "prev": [ 3, - 96 + 97 ], "next": [] }, { - "id": 98, - "type": "blossom", + "id": 99, + "type": "path", "region": "枫丹3", "position": { "x": 4556.1, @@ -1752,14 +1772,14 @@ ], "next": [ { - "target": 99, + "target": 100, "route": "assets/pathing/枫丹3-新枫丹科学院-2.json" } ] }, { - "id": 99, - "type": "blossom", + "id": 100, + "type": "path", "region": "枫丹3", "position": { "x": 4517.81, @@ -1767,18 +1787,18 @@ }, "prev": [ 4, - 98 + 99 ], "next": [ { - "target": 100, + "target": 101, "route": "assets/pathing/枫丹3-新枫丹科学院-3.json" } ] }, { - "id": 100, - "type": "blossom", + "id": 101, + "type": "path", "region": "枫丹3", "position": { "x": 4578.63, @@ -1786,18 +1806,18 @@ }, "prev": [ 5, - 99 + 100 ], "next": [ { - "target": 101, + "target": 102, "route": "assets/pathing/枫丹3-新枫丹科学院-4.json" } ] }, { - "id": 101, - "type": "blossom", + "id": 102, + "type": "path", "region": "枫丹3", "position": { "x": 4679.47, @@ -1805,13 +1825,13 @@ }, "prev": [ 5, - 100 + 101 ], "next": [] }, { - "id": 102, - "type": "blossom", + "id": 103, + "type": "path", "region": "枫丹4", "position": { "x": 2932.47, @@ -1822,38 +1842,19 @@ ], "next": [ { - "target": 103, + "target": 104, "route": "assets/pathing/枫丹4-柔灯港-2.json" } ] }, { - "id": 103, - "type": "blossom", + "id": 104, + "type": "path", "region": "枫丹4", "position": { "x": 3008.4, "y": 3602.59 }, - "prev": [ - 7, - 102 - ], - "next": [ - { - "target": 104, - "route": "assets/pathing/枫丹4-柔灯港-3.json" - } - ] - }, - { - "id": 104, - "type": "blossom", - "region": "枫丹4", - "position": { - "x": 3077.19, - "y": 3602.84 - }, "prev": [ 7, 103 @@ -1861,13 +1862,32 @@ "next": [ { "target": 105, - "route": "assets/pathing/枫丹4-柔灯港-4.json" + "route": "assets/pathing/枫丹4-柔灯港-3.json" } ] }, { "id": 105, - "type": "blossom", + "type": "path", + "region": "枫丹4", + "position": { + "x": 3077.19, + "y": 3602.84 + }, + "prev": [ + 7, + 104 + ], + "next": [ + { + "target": 106, + "route": "assets/pathing/枫丹4-柔灯港-4.json" + } + ] + }, + { + "id": 106, + "type": "path", "region": "枫丹4", "position": { "x": 3091.8, @@ -1875,13 +1895,13 @@ }, "prev": [ 7, - 104 + 105 ], "next": [] }, { - "id": 106, - "type": "blossom", + "id": 107, + "type": "path", "region": "枫丹5", "position": { "x": 4098.63, @@ -1889,22 +1909,22 @@ }, "prev": [ 1, - 106 + 107 ], "next": [ { - "target": 106, + "target": 107, "route": "assets/pathing/枫丹5-秋分山东侧-2.json" }, { - "target": 107, + "target": 108, "route": "assets/pathing/枫丹5-秋分山东侧-3.json" } ] }, { - "id": 107, - "type": "blossom", + "id": 108, + "type": "path", "region": "枫丹5", "position": { "x": 3999.66, @@ -1912,18 +1932,18 @@ }, "prev": [ 8, - 106 + 107 ], "next": [ { - "target": 108, + "target": 109, "route": "assets/pathing/枫丹5-秋分山东侧-4.json" } ] }, { - "id": 108, - "type": "blossom", + "id": 109, + "type": "path", "region": "枫丹5", "position": { "x": 3921.35, @@ -1931,13 +1951,13 @@ }, "prev": [ 8, - 107 + 108 ], "next": [] }, { - "id": 109, - "type": "blossom", + "id": 110, + "type": "path", "region": "枫丹6", "position": { "x": 4760.8, @@ -1948,38 +1968,19 @@ ], "next": [ { - "target": 110, + "target": 111, "route": "assets/pathing/枫丹6-厄里那斯-2.json" } ] }, { - "id": 110, - "type": "blossom", + "id": 111, + "type": "path", "region": "枫丹6", "position": { "x": 4653.67, "y": 2531.89 }, - "prev": [ - 10, - 109 - ], - "next": [ - { - "target": 111, - "route": "assets/pathing/枫丹6-厄里那斯-3.json" - } - ] - }, - { - "id": 111, - "type": "blossom", - "region": "枫丹6", - "position": { - "x": 4568.49, - "y": 2433.23 - }, "prev": [ 10, 110 @@ -1987,17 +1988,17 @@ "next": [ { "target": 112, - "route": "assets/pathing/枫丹6-厄里那斯-4.json" + "route": "assets/pathing/枫丹6-厄里那斯-3.json" } ] }, { "id": 112, - "type": "blossom", + "type": "path", "region": "枫丹6", "position": { - "x": 4553.51, - "y": 2358.49 + "x": 4568.49, + "y": 2433.23 }, "prev": [ 10, @@ -2006,13 +2007,32 @@ "next": [ { "target": 113, - "route": "assets/pathing/枫丹6-厄里那斯-5.json" + "route": "assets/pathing/枫丹6-厄里那斯-4.json" } ] }, { "id": 113, - "type": "blossom", + "type": "path", + "region": "枫丹6", + "position": { + "x": 4553.51, + "y": 2358.49 + }, + "prev": [ + 10, + 112 + ], + "next": [ + { + "target": 114, + "route": "assets/pathing/枫丹6-厄里那斯-5.json" + } + ] + }, + { + "id": 114, + "type": "path", "region": "枫丹6", "position": { "x": 4607.46, @@ -2020,18 +2040,18 @@ }, "prev": [ 11, - 112 + 113 ], "next": [ { - "target": 114, + "target": 115, "route": "assets/pathing/枫丹6-厄里那斯-6.json" } ] }, { - "id": 114, - "type": "blossom", + "id": 115, + "type": "path", "region": "枫丹6", "position": { "x": 4700.14, @@ -2039,13 +2059,13 @@ }, "prev": [ 10, - 113 + 114 ], "next": [] }, { - "id": 115, - "type": "blossom", + "id": 116, + "type": "path", "region": "璃月1", "position": { "x": 73.73, @@ -2056,14 +2076,14 @@ ], "next": [ { - "target": 116, + "target": 117, "route": "assets/pathing/璃月1-石门-2.json" } ] }, { - "id": 116, - "type": "blossom", + "id": 117, + "type": "path", "region": "璃月1", "position": { "x": -12.62, @@ -2071,49 +2091,49 @@ }, "prev": [ 13, - 115 + 116 ], "next": [ { - "target": 117, + "target": 118, "route": "assets/pathing/璃月1-石门-3.json" } ] }, { - "id": 117, - "type": "blossom", + "id": 118, + "type": "path", "region": "璃月1", "position": { "x": -81.76, "y": 1534.73 }, "prev": [ - 116 + 117 ], "next": [ { - "target": 118, + "target": 119, "route": "assets/pathing/璃月1-石门-4.json" } ] }, { - "id": 118, - "type": "blossom", + "id": 119, + "type": "path", "region": "璃月1", "position": { "x": -28.76, "y": 1417.37 }, "prev": [ - 117 + 118 ], "next": [] }, { - "id": 119, - "type": "blossom", + "id": 120, + "type": "path", "region": "璃月10", "position": { "x": 1046.34, @@ -2124,14 +2144,14 @@ ], "next": [ { - "target": 120, + "target": 121, "route": "assets/pathing/璃月10-绝云间-2.json" } ] }, { - "id": 120, - "type": "blossom", + "id": 121, + "type": "path", "region": "璃月10", "position": { "x": 892.5, @@ -2139,18 +2159,18 @@ }, "prev": [ 15, - 119 + 120 ], "next": [ { - "target": 121, + "target": 122, "route": "assets/pathing/璃月10-绝云间-3.json" } ] }, { - "id": 121, - "type": "blossom", + "id": 122, + "type": "path", "region": "璃月10", "position": { "x": 594.3, @@ -2158,18 +2178,18 @@ }, "prev": [ 16, - 120 + 121 ], "next": [ { - "target": 122, + "target": 123, "route": "assets/pathing/璃月10-绝云间-4.json" } ] }, { - "id": 122, - "type": "blossom", + "id": 123, + "type": "path", "region": "璃月10", "position": { "x": 683.19, @@ -2177,19 +2197,19 @@ }, "prev": [ 14, - 121, - 154 + 122, + 156 ], "next": [ { - "target": 123, + "target": 124, "route": "assets/pathing/璃月10-绝云间-5.json" } ] }, { - "id": 123, - "type": "blossom", + "id": 124, + "type": "path", "region": "璃月10", "position": { "x": 455.4, @@ -2197,14 +2217,14 @@ }, "prev": [ 16, - 122, - 141 + 123, + 142 ], "next": [] }, { - "id": 124, - "type": "blossom", + "id": 125, + "type": "path", "region": "璃月11", "position": { "x": 802.19, @@ -2215,54 +2235,36 @@ ], "next": [ { - "target": 125, + "target": 126, "route": "assets/pathing/璃月11-轻策庄-2.json" } ] }, { - "id": 125, - "type": "blossom", + "id": 126, + "type": "path", "region": "璃月11", "position": { "x": 697.31, "y": 1551.84 }, - "prev": [ - 124 - ], - "next": [ - { - "target": 126, - "route": "assets/pathing/璃月11-轻策庄-3.json" - } - ] - }, - { - "id": 126, - "type": "blossom", - "region": "璃月11", - "position": { - "x": 646.5, - "y": 1421.98 - }, "prev": [ 125 ], "next": [ { "target": 127, - "route": "assets/pathing/璃月11-轻策庄-4.json" + "route": "assets/pathing/璃月11-轻策庄-3.json" } ] }, { "id": 127, - "type": "blossom", + "type": "path", "region": "璃月11", "position": { - "x": 632.03, - "y": 1331.15 + "x": 646.5, + "y": 1421.98 }, "prev": [ 126 @@ -2270,13 +2272,31 @@ "next": [ { "target": 128, - "route": "assets/pathing/璃月11-轻策庄-5.json" + "route": "assets/pathing/璃月11-轻策庄-4.json" } ] }, { "id": 128, - "type": "blossom", + "type": "path", + "region": "璃月11", + "position": { + "x": 632.03, + "y": 1331.15 + }, + "prev": [ + 127 + ], + "next": [ + { + "target": 129, + "route": "assets/pathing/璃月11-轻策庄-5.json" + } + ] + }, + { + "id": 129, + "type": "path", "region": "璃月11", "position": { "x": 558.31, @@ -2284,18 +2304,18 @@ }, "prev": [ 18, - 127 + 128 ], "next": [ { - "target": 129, + "target": 130, "route": "assets/pathing/璃月11-轻策庄-6.json" } ] }, { - "id": 129, - "type": "blossom", + "id": 130, + "type": "path", "region": "璃月11", "position": { "x": 285.79, @@ -2303,13 +2323,13 @@ }, "prev": [ 19, - 128 + 129 ], "next": [] }, { - "id": 130, - "type": "blossom", + "id": 131, + "type": "path", "region": "璃月14", "position": { "x": 1614.21, @@ -2320,63 +2340,63 @@ ], "next": [ { - "target": 131, + "target": 132, "route": "assets/pathing/璃月14-药蝶谷-2.json" } ] }, { - "id": 131, - "type": "blossom", + "id": 132, + "type": "path", "region": "璃月14", "position": { "x": 1581.57, "y": 1437.1 }, - "prev": [ - 130 - ], - "next": [ - { - "target": 132, - "route": "assets/pathing/璃月14-药蝶谷-3.json" - } - ] - }, - { - "id": 132, - "type": "blossom", - "region": "璃月14", - "position": { - "x": 1563.45, - "y": 1487.35 - }, "prev": [ 131 ], "next": [ { "target": 133, - "route": "assets/pathing/璃月14-药蝶谷-4.json" + "route": "assets/pathing/璃月14-药蝶谷-3.json" } ] }, { "id": 133, - "type": "blossom", + "type": "path", + "region": "璃月14", + "position": { + "x": 1563.45, + "y": 1487.35 + }, + "prev": [ + 132 + ], + "next": [ + { + "target": 134, + "route": "assets/pathing/璃月14-药蝶谷-4.json" + } + ] + }, + { + "id": 134, + "type": "path", "region": "璃月14", "position": { "x": 1525.0, "y": 1549.17 }, "prev": [ - 132 + 133 ], "next": [] }, { - "id": 134, - "type": "blossom", + "id": 135, + "type": "path", "region": "璃月2", "position": { "x": -194.85, @@ -2387,14 +2407,14 @@ ], "next": [ { - "target": 135, + "target": 136, "route": "assets/pathing/璃月2-地中之盐-2.json" } ] }, { - "id": 135, - "type": "blossom", + "id": 136, + "type": "path", "region": "璃月2", "position": { "x": 32.81, @@ -2402,18 +2422,18 @@ }, "prev": [ 21, - 134 + 135 ], "next": [ { - "target": 136, + "target": 137, "route": "assets/pathing/璃月2-地中之盐-3.json" } ] }, { - "id": 136, - "type": "blossom", + "id": 137, + "type": "path", "region": "璃月2", "position": { "x": -24.14, @@ -2421,18 +2441,18 @@ }, "prev": [ 22, - 135 + 136 ], "next": [ { - "target": 137, + "target": 138, "route": "assets/pathing/璃月2-地中之盐-4.json" } ] }, { - "id": 137, - "type": "blossom", + "id": 138, + "type": "path", "region": "璃月2", "position": { "x": -10.67, @@ -2440,13 +2460,13 @@ }, "prev": [ 23, - 136 + 137 ], "next": [] }, { - "id": 138, - "type": "blossom", + "id": 139, + "type": "path", "region": "璃月3", "position": { "x": -55.27, @@ -2457,14 +2477,14 @@ ], "next": [ { - "target": 139, + "target": 140, "route": "assets/pathing/璃月3-瑶光滩-2.json" } ] }, { - "id": 139, - "type": "blossom", + "id": 140, + "type": "path", "region": "璃月3", "position": { "x": 139.9, @@ -2472,18 +2492,18 @@ }, "prev": [ 23, - 138 + 139 ], "next": [ { - "target": 140, + "target": 141, "route": "assets/pathing/璃月3-瑶光滩-3.json" } ] }, { - "id": 140, - "type": "blossom", + "id": 141, + "type": "path", "region": "璃月3", "position": { "x": 284.12, @@ -2491,18 +2511,18 @@ }, "prev": [ 16, - 139 + 140 ], "next": [ { - "target": 141, + "target": 142, "route": "assets/pathing/璃月3-瑶光滩-4.json" } ] }, { - "id": 141, - "type": "blossom", + "id": 142, + "type": "path", "region": "璃月3", "position": { "x": 276.12, @@ -2510,19 +2530,19 @@ }, "prev": [ 16, - 140, - 146 + 141, + 147 ], "next": [ { - "target": 123, + "target": 124, "route": "assets/pathing/璃月3-瑶光滩-5.json" } ] }, { - "id": 142, - "type": "blossom", + "id": 143, + "type": "path", "region": "璃月4", "position": { "x": -7.16, @@ -2533,54 +2553,36 @@ ], "next": [ { - "target": 143, + "target": 144, "route": "assets/pathing/璃月4-璃月港-2.json" } ] }, { - "id": 143, - "type": "blossom", + "id": 144, + "type": "path", "region": "璃月4", "position": { "x": 101.14, "y": -2.97 }, - "prev": [ - 142 - ], - "next": [ - { - "target": 144, - "route": "assets/pathing/璃月4-璃月港-3.json" - } - ] - }, - { - "id": 144, - "type": "blossom", - "region": "璃月4", - "position": { - "x": 127.05, - "y": 113.87 - }, "prev": [ 143 ], "next": [ { "target": 145, - "route": "assets/pathing/璃月4-璃月港-4.json" + "route": "assets/pathing/璃月4-璃月港-3.json" } ] }, { "id": 145, - "type": "blossom", + "type": "path", "region": "璃月4", "position": { - "x": 146.03, - "y": 220.07 + "x": 127.05, + "y": 113.87 }, "prev": [ 144 @@ -2588,13 +2590,31 @@ "next": [ { "target": 146, - "route": "assets/pathing/璃月4-璃月港-5.json" + "route": "assets/pathing/璃月4-璃月港-4.json" } ] }, { "id": 146, - "type": "blossom", + "type": "path", + "region": "璃月4", + "position": { + "x": 146.03, + "y": 220.07 + }, + "prev": [ + 145 + ], + "next": [ + { + "target": 147, + "route": "assets/pathing/璃月4-璃月港-5.json" + } + ] + }, + { + "id": 147, + "type": "path", "region": "璃月4", "position": { "x": 262.65, @@ -2602,18 +2622,18 @@ }, "prev": [ 25, - 145 + 146 ], "next": [ { - "target": 141, + "target": 142, "route": "assets/pathing/璃月4-璃月港-6.json" } ] }, { - "id": 147, - "type": "blossom", + "id": 148, + "type": "path", "region": "璃月5", "position": { "x": 773.08, @@ -2624,14 +2644,14 @@ ], "next": [ { - "target": 148, + "target": 149, "route": "assets/pathing/璃月5-天衡山-2.json" } ] }, { - "id": 148, - "type": "blossom", + "id": 149, + "type": "path", "region": "璃月5", "position": { "x": 885.79, @@ -2639,36 +2659,36 @@ }, "prev": [ 26, - 147 + 148 ], "next": [ { - "target": 149, + "target": 150, "route": "assets/pathing/璃月5-天衡山-3.json" } ] }, { - "id": 149, - "type": "blossom", + "id": 150, + "type": "path", "region": "璃月5", "position": { "x": 1063.54, "y": -727.34 }, "prev": [ - 148 + 149 ], "next": [ { - "target": 150, + "target": 151, "route": "assets/pathing/璃月5-天衡山-4-1.json" } ] }, { - "id": 150, - "type": "blossom", + "id": 151, + "type": "path", "region": "璃月5", "position": { "x": 936.52, @@ -2676,13 +2696,13 @@ }, "prev": [ 27, - 149 + 150 ], "next": [] }, { - "id": 151, - "type": "blossom", + "id": 152, + "type": "path", "region": "璃月8", "position": { "x": 1627.15, @@ -2691,39 +2711,20 @@ "prev": [ 28 ], - "next": [ - { - "target": 152, - "route": "assets/pathing/璃月8-南天门南-3.json" - } - ] - }, - { - "id": 152, - "type": "blossom", - "region": "璃月8", - "position": { - "x": 1160.17, - "y": 86.75 - }, - "prev": [ - 29, - 151 - ], "next": [ { "target": 153, - "route": "assets/pathing/璃月8-南天门南-4.json" + "route": "assets/pathing/璃月8-南天门南-2.json" } ] }, { "id": 153, - "type": "blossom", + "type": "path", "region": "璃月8", "position": { - "x": 972.68, - "y": 98.66 + "x": 1333.25, + "y": 266.26 }, "prev": [ 29, @@ -2732,13 +2733,51 @@ "next": [ { "target": 154, - "route": "assets/pathing/璃月8-南天门南-5.json" + "route": "assets/pathing/璃月8-南天门南-3.json" } ] }, { "id": 154, - "type": "blossom", + "type": "path", + "region": "璃月8", + "position": { + "x": 1160.17, + "y": 86.75 + }, + "prev": [ + 29, + 153 + ], + "next": [ + { + "target": 155, + "route": "assets/pathing/璃月8-南天门南-4.json" + } + ] + }, + { + "id": 155, + "type": "path", + "region": "璃月8", + "position": { + "x": 972.68, + "y": 98.66 + }, + "prev": [ + 29, + 154 + ], + "next": [ + { + "target": 156, + "route": "assets/pathing/璃月8-南天门南-5.json" + } + ] + }, + { + "id": 156, + "type": "path", "region": "璃月8", "position": { "x": 815.31, @@ -2746,18 +2785,18 @@ }, "prev": [ 30, - 153 + 155 ], "next": [ { - "target": 122, + "target": 123, "route": "assets/pathing/璃月8-南天门南-6.json" } ] }, { - "id": 155, - "type": "blossom", + "id": 157, + "type": "path", "region": "璃月9", "position": { "x": 1484.37, @@ -2768,32 +2807,32 @@ ], "next": [ { - "target": 156, + "target": 158, "route": "assets/pathing/璃月9-南天门东-2.json" } ] }, { - "id": 156, - "type": "blossom", + "id": 158, + "type": "path", "region": "璃月9", "position": { "x": 1445.77, "y": 577.83 }, "prev": [ - 155 + 157 ], "next": [ { - "target": 157, + "target": 159, "route": "assets/pathing/璃月9-南天门东-3-2.json" } ] }, { - "id": 157, - "type": "blossom", + "id": 159, + "type": "path", "region": "璃月9", "position": { "x": 1561.48, @@ -2801,18 +2840,18 @@ }, "prev": [ 31, - 156 + 158 ], "next": [ { - "target": 158, + "target": 160, "route": "assets/pathing/璃月9-南天门东-4.json" } ] }, { - "id": 158, - "type": "blossom", + "id": 160, + "type": "path", "region": "璃月9", "position": { "x": 1686.66, @@ -2820,13 +2859,13 @@ }, "prev": [ 28, - 157 + 159 ], "next": [] }, { - "id": 159, - "type": "blossom", + "id": 161, + "type": "path", "region": "稻妻1", "position": { "x": -4309.58, @@ -2837,14 +2876,14 @@ ], "next": [ { - "target": 160, + "target": 162, "route": "assets/pathing/稻妻1-鸣神岛-2.json" } ] }, { - "id": 160, - "type": "blossom", + "id": 162, + "type": "path", "region": "稻妻1", "position": { "x": -4401.19, @@ -2852,18 +2891,18 @@ }, "prev": [ 32, - 159 + 161 ], "next": [ { - "target": 161, + "target": 163, "route": "assets/pathing/稻妻1-鸣神岛-3.json" } ] }, { - "id": 161, - "type": "blossom", + "id": 163, + "type": "path", "region": "稻妻1", "position": { "x": -4509.57, @@ -2871,18 +2910,18 @@ }, "prev": [ 33, - 160 + 162 ], "next": [ { - "target": 162, + "target": 164, "route": "assets/pathing/稻妻1-鸣神岛-4.json" } ] }, { - "id": 162, - "type": "blossom", + "id": 164, + "type": "path", "region": "稻妻1", "position": { "x": -4549.96, @@ -2890,13 +2929,13 @@ }, "prev": [ 33, - 161 + 163 ], "next": [] }, { - "id": 163, - "type": "blossom", + "id": 165, + "type": "path", "region": "稻妻2", "position": { "x": -3007.64, @@ -2907,14 +2946,14 @@ ], "next": [ { - "target": 164, + "target": 166, "route": "assets/pathing/稻妻2-踏鞴砂-2.json" } ] }, { - "id": 164, - "type": "blossom", + "id": 166, + "type": "path", "region": "稻妻2", "position": { "x": -3153.03, @@ -2922,18 +2961,18 @@ }, "prev": [ 35, - 163 + 165 ], "next": [ { - "target": 165, + "target": 167, "route": "assets/pathing/稻妻2-踏鞴砂-3.json" } ] }, { - "id": 165, - "type": "blossom", + "id": 167, + "type": "path", "region": "稻妻2", "position": { "x": -3328.99, @@ -2941,18 +2980,18 @@ }, "prev": [ 36, - 164 + 166 ], "next": [ { - "target": 166, + "target": 168, "route": "assets/pathing/稻妻2-踏鞴砂-4.json" } ] }, { - "id": 166, - "type": "blossom", + "id": 168, + "type": "path", "region": "稻妻2", "position": { "x": -3429.72, @@ -2960,18 +2999,18 @@ }, "prev": [ 37, - 165 + 167 ], "next": [ { - "target": 167, + "target": 169, "route": "assets/pathing/稻妻2-踏鞴砂-5.json" } ] }, { - "id": 167, - "type": "blossom", + "id": 169, + "type": "path", "region": "稻妻2", "position": { "x": -3340.38, @@ -2979,13 +3018,13 @@ }, "prev": [ 37, - 166 + 168 ], "next": [] }, { - "id": 168, - "type": "blossom", + "id": 170, + "type": "path", "region": "稻妻3", "position": { "x": -2269.86, @@ -2996,32 +3035,32 @@ ], "next": [ { - "target": 169, + "target": 171, "route": "assets/pathing/稻妻3-八酝岛-2.json" } ] }, { - "id": 169, - "type": "blossom", + "id": 171, + "type": "path", "region": "稻妻3", "position": { "x": -2280.61, "y": -4171.18 }, "prev": [ - 168 + 170 ], "next": [ { - "target": 170, + "target": 172, "route": "assets/pathing/稻妻3-八酝岛-3.json" } ] }, { - "id": 170, - "type": "blossom", + "id": 172, + "type": "path", "region": "稻妻3", "position": { "x": -2169.62, @@ -3029,18 +3068,18 @@ }, "prev": [ 38, - 169 + 171 ], "next": [ { - "target": 171, + "target": 173, "route": "assets/pathing/稻妻3-八酝岛-4.json" } ] }, { - "id": 171, - "type": "blossom", + "id": 173, + "type": "path", "region": "稻妻3", "position": { "x": -2211.44, @@ -3048,13 +3087,13 @@ }, "prev": [ 38, - 170 + 172 ], "next": [] }, { - "id": 172, - "type": "blossom", + "id": 174, + "type": "path", "region": "稻妻4", "position": { "x": -1120.06, @@ -3065,50 +3104,50 @@ ], "next": [ { - "target": 173, + "target": 175, "route": "assets/pathing/稻妻4-海祇岛-2.json" } ] }, { - "id": 173, - "type": "blossom", + "id": 175, + "type": "path", "region": "稻妻4", "position": { "x": -1190.51, "y": -3902.08 }, "prev": [ - 172 + 174 ], "next": [ { - "target": 174, + "target": 176, "route": "assets/pathing/稻妻4-海祇岛-3.json" } ] }, { - "id": 174, - "type": "blossom", + "id": 176, + "type": "path", "region": "稻妻4", "position": { "x": -1254.7, "y": -3839.91 }, "prev": [ - 173 + 175 ], "next": [ { - "target": 175, + "target": 177, "route": "assets/pathing/稻妻4-海祇岛-4.json" } ] }, { - "id": 175, - "type": "blossom", + "id": 177, + "type": "path", "region": "稻妻4", "position": { "x": -1322.41, @@ -3116,13 +3155,13 @@ }, "prev": [ 40, - 174 + 176 ], "next": [] }, { - "id": 176, - "type": "blossom", + "id": 178, + "type": "path", "region": "稻妻5", "position": { "x": -3908.27, @@ -3133,50 +3172,50 @@ ], "next": [ { - "target": 177, + "target": 179, "route": "assets/pathing/稻妻5-清籁岛-2.json" } ] }, { - "id": 177, - "type": "blossom", + "id": 179, + "type": "path", "region": "稻妻5", "position": { "x": -3850.61, "y": -4241.9 }, "prev": [ - 176 + 178 ], "next": [ { - "target": 178, + "target": 180, "route": "assets/pathing/稻妻5-清籁岛-3.json" } ] }, { - "id": 178, - "type": "blossom", + "id": 180, + "type": "path", "region": "稻妻5", "position": { "x": -3763.54, "y": -4259.14 }, "prev": [ - 177 + 179 ], "next": [ { - "target": 179, + "target": 181, "route": "assets/pathing/稻妻5-清籁岛-4.json" } ] }, { - "id": 179, - "type": "blossom", + "id": 181, + "type": "path", "region": "稻妻5", "position": { "x": -3703.34, @@ -3184,31 +3223,31 @@ }, "prev": [ 42, - 178 + 180 ], "next": [ { - "target": 180, + "target": 182, "route": "assets/pathing/稻妻5-清籁岛-5.json" } ] }, { - "id": 180, - "type": "blossom", + "id": 182, + "type": "path", "region": "稻妻5", "position": { "x": -3671.61, "y": -4414.03 }, "prev": [ - 179 + 181 ], "next": [] }, { - "id": 181, - "type": "blossom", + "id": 183, + "type": "path", "region": "纳塔1", "position": { "x": 7864.95, @@ -3219,14 +3258,14 @@ ], "next": [ { - "target": 182, + "target": 184, "route": "assets/pathing/纳塔1-隆崛坡-2.json" } ] }, { - "id": 182, - "type": "blossom", + "id": 184, + "type": "path", "region": "纳塔1", "position": { "x": 7945.72, @@ -3234,18 +3273,18 @@ }, "prev": [ 44, - 181 + 183 ], "next": [ { - "target": 183, + "target": 185, "route": "assets/pathing/纳塔1-隆崛坡-3.json" } ] }, { - "id": 183, - "type": "blossom", + "id": 185, + "type": "path", "region": "纳塔1", "position": { "x": 7932.2, @@ -3253,31 +3292,31 @@ }, "prev": [ 44, - 182 + 184 ], "next": [ { - "target": 184, + "target": 186, "route": "assets/pathing/纳塔1-隆崛坡-4.json" } ] }, { - "id": 184, - "type": "blossom", + "id": 186, + "type": "path", "region": "纳塔1", "position": { "x": 7853.72, "y": -1554.26 }, "prev": [ - 183 + 185 ], "next": [] }, { - "id": 185, - "type": "blossom", + "id": 187, + "type": "path", "region": "纳塔10", "position": { "x": 8361.82, @@ -3288,50 +3327,50 @@ ], "next": [ { - "target": 186, + "target": 188, "route": "assets/pathing/纳塔10-溶水域-2.json" } ] }, { - "id": 186, - "type": "blossom", + "id": 188, + "type": "path", "region": "纳塔10", "position": { "x": 8495.87, "y": -3019.42 }, "prev": [ - 185 + 187 ], "next": [ { - "target": 187, + "target": 189, "route": "assets/pathing/纳塔10-溶水域-3.json" } ] }, { - "id": 187, - "type": "blossom", + "id": 189, + "type": "path", "region": "纳塔10", "position": { "x": 8587.99, "y": -3022.4 }, "prev": [ - 186 + 188 ], "next": [ { - "target": 188, + "target": 190, "route": "assets/pathing/纳塔10-溶水域-4.json" } ] }, { - "id": 188, - "type": "blossom", + "id": 190, + "type": "path", "region": "纳塔10", "position": { "x": 8879.8, @@ -3339,13 +3378,13 @@ }, "prev": [ 46, - 187 + 189 ], "next": [] }, { - "id": 189, - "type": "blossom", + "id": 191, + "type": "path", "region": "纳塔2", "position": { "x": 8604.22, @@ -3356,14 +3395,14 @@ ], "next": [ { - "target": 190, + "target": 192, "route": "assets/pathing/纳塔2-硫晶支脉-2.json" } ] }, { - "id": 190, - "type": "blossom", + "id": 192, + "type": "path", "region": "纳塔2", "position": { "x": 8657.57, @@ -3371,18 +3410,18 @@ }, "prev": [ 47, - 189 + 191 ], "next": [ { - "target": 191, + "target": 193, "route": "assets/pathing/纳塔2-硫晶支脉-3.json" } ] }, { - "id": 191, - "type": "blossom", + "id": 193, + "type": "path", "region": "纳塔2", "position": { "x": 8733.62, @@ -3390,18 +3429,18 @@ }, "prev": [ 47, - 190 + 192 ], "next": [ { - "target": 192, + "target": 194, "route": "assets/pathing/纳塔2-硫晶支脉-4.json" } ] }, { - "id": 192, - "type": "blossom", + "id": 194, + "type": "path", "region": "纳塔2", "position": { "x": 8588.9, @@ -3409,13 +3448,13 @@ }, "prev": [ 48, - 191 + 193 ], "next": [] }, { - "id": 193, - "type": "blossom", + "id": 195, + "type": "path", "region": "纳塔3", "position": { "x": 8312.07, @@ -3426,14 +3465,14 @@ ], "next": [ { - "target": 194, + "target": 196, "route": "assets/pathing/纳塔3-彩石顶-2.json" } ] }, { - "id": 194, - "type": "blossom", + "id": 196, + "type": "path", "region": "纳塔3", "position": { "x": 8429.86, @@ -3441,18 +3480,18 @@ }, "prev": [ 50, - 193 + 195 ], "next": [ { - "target": 195, + "target": 197, "route": "assets/pathing/纳塔3-彩石顶-3.json" } ] }, { - "id": 195, - "type": "blossom", + "id": 197, + "type": "path", "region": "纳塔3", "position": { "x": 8291.29, @@ -3460,31 +3499,31 @@ }, "prev": [ 50, - 194 + 196 ], "next": [ { - "target": 196, + "target": 198, "route": "assets/pathing/纳塔3-彩石顶-4.json" } ] }, { - "id": 196, - "type": "blossom", + "id": 198, + "type": "path", "region": "纳塔3", "position": { "x": 8088.21, "y": -2053.56 }, "prev": [ - 195 + 197 ], "next": [] }, { - "id": 197, - "type": "blossom", + "id": 199, + "type": "path", "region": "纳塔4", "position": { "x": 9028.67, @@ -3495,27 +3534,27 @@ ], "next": [ { - "target": 198, + "target": 200, "route": "assets/pathing/纳塔4-溶水域-2.json" } ] }, { - "id": 198, - "type": "blossom", + "id": 200, + "type": "path", "region": "纳塔4", "position": { "x": 9090.71, "y": -2407.11 }, "prev": [ - 197 + 199 ], "next": [] }, { - "id": 199, - "type": "blossom", + "id": 201, + "type": "path", "region": "纳塔5", "position": { "x": 9687.15, @@ -3526,14 +3565,14 @@ ], "next": [ { - "target": 200, + "target": 202, "route": "assets/pathing/纳塔5-安饶之野-2.json" } ] }, { - "id": 200, - "type": "blossom", + "id": 202, + "type": "path", "region": "纳塔5", "position": { "x": 9754.7, @@ -3541,18 +3580,18 @@ }, "prev": [ 52, - 199 + 201 ], "next": [ { - "target": 201, + "target": 203, "route": "assets/pathing/纳塔5-安饶之野-3.json" } ] }, { - "id": 201, - "type": "blossom", + "id": 203, + "type": "path", "region": "纳塔5", "position": { "x": 9778.7, @@ -3560,13 +3599,13 @@ }, "prev": [ 52, - 200 + 202 ], "next": [] }, { - "id": 202, - "type": "blossom", + "id": 204, + "type": "path", "region": "纳塔6", "position": { "x": 9231.08, @@ -3577,14 +3616,14 @@ ], "next": [ { - "target": 203, + "target": 205, "route": "assets/pathing/纳塔6-圣火竞技场-2.json" } ] }, { - "id": 203, - "type": "blossom", + "id": 205, + "type": "path", "region": "纳塔6", "position": { "x": 9110.86, @@ -3592,49 +3631,49 @@ }, "prev": [ 53, - 202 + 204 ], "next": [ { - "target": 204, + "target": 206, "route": "assets/pathing/纳塔6-圣火竞技场-3.json" } ] }, { - "id": 204, - "type": "blossom", + "id": 206, + "type": "path", "region": "纳塔6", "position": { "x": 8945.55, "y": -2138.43 }, "prev": [ - 203 + 205 ], "next": [ { - "target": 205, + "target": 207, "route": "assets/pathing/纳塔6-圣火竞技场-4.json" } ] }, { - "id": 205, - "type": "blossom", + "id": 207, + "type": "path", "region": "纳塔6", "position": { "x": 8810.08, "y": -2077.83 }, "prev": [ - 204 + 206 ], "next": [] }, { - "id": 206, - "type": "blossom", + "id": 208, + "type": "path", "region": "纳塔7", "position": { "x": 9999.51, @@ -3645,45 +3684,45 @@ ], "next": [ { - "target": 207, + "target": 209, "route": "assets/pathing/纳塔7-烟谜主-2.json" } ] }, { - "id": 207, - "type": "blossom", + "id": 209, + "type": "path", "region": "纳塔7", "position": { "x": 9963.8, "y": -1511.61 }, "prev": [ - 206 + 208 ], "next": [ { - "target": 208, + "target": 210, "route": "assets/pathing/纳塔7-烟谜主-3.json" } ] }, { - "id": 208, - "type": "blossom", + "id": 210, + "type": "path", "region": "纳塔7", "position": { "x": 9907.78, "y": -1424.0 }, "prev": [ - 207 + 209 ], "next": [] }, { - "id": 209, - "type": "blossom", + "id": 211, + "type": "path", "region": "纳塔8", "position": { "x": 9636.29, @@ -3694,14 +3733,14 @@ ], "next": [ { - "target": 210, + "target": 212, "route": "assets/pathing/纳塔8-花羽会-2.json" } ] }, { - "id": 210, - "type": "blossom", + "id": 212, + "type": "path", "region": "纳塔8", "position": { "x": 9517.92, @@ -3709,18 +3748,18 @@ }, "prev": [ 55, - 209 + 211 ], "next": [ { - "target": 211, + "target": 213, "route": "assets/pathing/纳塔8-花羽会-3.json" } ] }, { - "id": 211, - "type": "blossom", + "id": 213, + "type": "path", "region": "纳塔8", "position": { "x": 9472.28, @@ -3728,13 +3767,13 @@ }, "prev": [ 56, - 210 + 212 ], "next": [] }, { - "id": 212, - "type": "blossom", + "id": 214, + "type": "path", "region": "纳塔9", "position": { "x": 9920.8, @@ -3745,63 +3784,63 @@ ], "next": [ { - "target": 213, + "target": 215, "route": "assets/pathing/纳塔9-翘枝崖-2.json" } ] }, { - "id": 213, - "type": "blossom", + "id": 215, + "type": "path", "region": "纳塔9", "position": { "x": 9888.22, "y": -1046.55 }, "prev": [ - 212 + 214 ], "next": [ { - "target": 214, + "target": 216, "route": "assets/pathing/纳塔9-翘枝崖-3.json" } ] }, { - "id": 214, - "type": "blossom", + "id": 216, + "type": "path", "region": "纳塔9", "position": { "x": 9938.82, "y": -933.87 }, "prev": [ - 213 + 215 ], "next": [ { - "target": 215, + "target": 217, "route": "assets/pathing/纳塔9-翘枝崖-4.json" } ] }, { - "id": 215, - "type": "blossom", + "id": 217, + "type": "path", "region": "纳塔9", "position": { "x": 9984.24, "y": -876.43 }, "prev": [ - 214 + 216 ], "next": [] }, { - "id": 216, - "type": "blossom", + "id": 218, + "type": "path", "region": "蒙德1", "position": { "x": -1298.03, @@ -3812,14 +3851,14 @@ ], "next": [ { - "target": 217, + "target": 219, "route": "assets/pathing/蒙德1-风起地-2.json" } ] }, { - "id": 217, - "type": "blossom", + "id": 219, + "type": "path", "region": "蒙德1", "position": { "x": -1223.18, @@ -3827,54 +3866,54 @@ }, "prev": [ 59, - 216 + 218 ], "next": [ { - "target": 218, + "target": 220, "route": "assets/pathing/蒙德1-风起地-3.json" } ] }, { - "id": 218, - "type": "blossom", + "id": 220, + "type": "path", "region": "蒙德1", "position": { "x": -1113.87, "y": 1971.9 }, "prev": [ - 217 + 219 ], "next": [ { - "target": 219, + "target": 221, "route": "assets/pathing/蒙德1-风起地-4.json" } ] }, { - "id": 219, - "type": "blossom", + "id": 221, + "type": "path", "region": "蒙德1", "position": { "x": -1041.91, "y": 1927.07 }, "prev": [ - 218 + 220 ], "next": [ { - "target": 220, + "target": 222, "route": "assets/pathing/蒙德1-风起地-5.json" } ] }, { - "id": 220, - "type": "blossom", + "id": 222, + "type": "path", "region": "蒙德1", "position": { "x": -895.08, @@ -3882,14 +3921,14 @@ }, "prev": [ 60, - 219, - 247 + 221, + 250 ], "next": [] }, { - "id": 221, - "type": "blossom", + "id": 223, + "type": "path", "region": "蒙德2", "position": { "x": -717.83, @@ -3900,14 +3939,14 @@ ], "next": [ { - "target": 222, + "target": 224, "route": "assets/pathing/蒙德2-清泉镇-2.json" } ] }, { - "id": 222, - "type": "blossom", + "id": 224, + "type": "path", "region": "蒙德2", "position": { "x": -523.76, @@ -3915,162 +3954,125 @@ }, "prev": [ 62, - 221 + 223 ], "next": [ { - "target": 224, + "target": 225, "route": "assets/pathing/蒙德2-清泉镇-3.json" } ] }, { - "id": 223, - "type": "blossom", - "region": "蒙德2", - "position": { - "x": -347.95, - "y": 1902.51 - }, - "prev": [ - 224 - ], - "next": [ - { - "target": 225, - "route": "assets/pathing/蒙德2-清泉镇-4.json" - } - ] - }, - { - "id": 224, - "type": "blossom", + "id": 225, + "type": "path", "region": "蒙德2", "position": { "x": -420.36, "y": 1998.11 }, "prev": [ - 222 + 224 ], "next": [ { - "target": 223, - "route": "assets/pathing/蒙德2-清泉镇-3.5.json" + "target": 227, + "route": "assets/pathing/蒙德2-清泉镇-4-2.json" }, { - "target": 225, - "route": "assets/pathing/蒙德2-清泉镇-4.json" + "target": 226, + "route": "assets/pathing/蒙德2-清泉镇-4-1.json" } ] }, { - "id": 225, - "type": "blossom", + "id": 226, + "type": "path", + "region": "蒙德2", + "position": { + "x": -347.95, + "y": 1902.51 + }, + "prev": [ + 225 + ], + "next": [] + }, + { + "id": 227, + "type": "path", "region": "蒙德2", "position": { "x": -319.46, "y": 2156.93 }, "prev": [ - 223, - 224 - ], - "next": [] - }, - { - "id": 226, - "type": "blossom", - "region": "蒙德3", - "position": { - "x": -281.79, - "y": 2310.78 - }, - "prev": [ - 63 - ], - "next": [ - { - "target": 227, - "route": "assets/pathing/蒙德3-奔狼领-2.json" - } - ] - }, - { - "id": 227, - "type": "blossom", - "region": "蒙德3", - "position": { - "x": -205.49, - "y": 2429.07 - }, - "prev": [ - 226 + 225 ], "next": [ { "target": 228, - "route": "assets/pathing/蒙德3-奔狼领-3.json" + "route": "assets/pathing/蒙德2-清泉镇-5-1.json" } ] }, { "id": 228, "type": "blossom", - "region": "蒙德3", + "region": "蒙德2", "position": { - "x": -327.03, - "y": 2410.43 + "x": -319.57, + "y": 2156.48 }, "prev": [ + 63, 227 ], - "next": [ - { - "target": 229, - "route": "assets/pathing/蒙德3-奔狼领-4.json" - } - ] - }, - { - "id": 229, - "type": "blossom", - "region": "蒙德3", - "position": { - "x": -336.15, - "y": 2562.91 - }, - "prev": [ - 64, - 228 - ], "next": [] }, { - "id": 230, - "type": "blossom", - "region": "蒙德4", + "id": 229, + "type": "path", + "region": "蒙德3", "position": { - "x": 241.41, - "y": 2703.08 + "x": -281.79, + "y": 2310.78 }, "prev": [ - 65 + 64 + ], + "next": [ + { + "target": 230, + "route": "assets/pathing/蒙德3-奔狼领-2.json" + } + ] + }, + { + "id": 230, + "type": "path", + "region": "蒙德3", + "position": { + "x": -205.49, + "y": 2429.07 + }, + "prev": [ + 229 ], "next": [ { "target": 231, - "route": "assets/pathing/蒙德4-风龙废墟-2.json" + "route": "assets/pathing/蒙德3-奔狼领-3.json" } ] }, { "id": 231, - "type": "blossom", - "region": "蒙德4", + "type": "path", + "region": "蒙德3", "position": { - "x": 124.61, - "y": 2817.24 + "x": -327.03, + "y": 2410.43 }, "prev": [ 230 @@ -4078,918 +4080,919 @@ "next": [ { "target": 232, - "route": "assets/pathing/蒙德4-风龙废墟-3.json" + "route": "assets/pathing/蒙德3-奔狼领-4.json" } ] }, { "id": 232, - "type": "blossom", + "type": "path", + "region": "蒙德3", + "position": { + "x": -336.15, + "y": 2562.91 + }, + "prev": [ + 65, + 231 + ], + "next": [] + }, + { + "id": 233, + "type": "path", + "region": "蒙德4", + "position": { + "x": 241.41, + "y": 2703.08 + }, + "prev": [ + 66 + ], + "next": [ + { + "target": 234, + "route": "assets/pathing/蒙德4-风龙废墟-2.json" + } + ] + }, + { + "id": 234, + "type": "path", + "region": "蒙德4", + "position": { + "x": 124.61, + "y": 2817.24 + }, + "prev": [ + 233 + ], + "next": [ + { + "target": 235, + "route": "assets/pathing/蒙德4-风龙废墟-3.json" + } + ] + }, + { + "id": 235, + "type": "path", "region": "蒙德4", "position": { "x": 152.71, "y": 2963.33 }, "prev": [ - 66, - 231 + 67, + 234 ], "next": [ { - "target": 233, + "target": 236, "route": "assets/pathing/蒙德4-风龙废墟-4.json" } ] }, { - "id": 233, - "type": "blossom", + "id": 236, + "type": "path", "region": "蒙德4", "position": { "x": -27.99, "y": 2919.59 }, "prev": [ - 232 + 235 ], "next": [] }, { - "id": 234, - "type": "blossom", + "id": 237, + "type": "path", "region": "蒙德5", "position": { "x": -1453.46, "y": 2282.88 }, "prev": [ - 67 + 68 ], "next": [ { - "target": 235, + "target": 238, "route": "assets/pathing/蒙德5-千风神殿-2.json" } ] }, { - "id": 235, - "type": "blossom", + "id": 238, + "type": "path", "region": "蒙德5", "position": { "x": -1367.78, "y": 2411.31 }, "prev": [ - 234 + 237 ], "next": [ { - "target": 236, + "target": 239, "route": "assets/pathing/蒙德5-千风神殿-3.json" } ] }, { - "id": 236, - "type": "blossom", + "id": 239, + "type": "path", "region": "蒙德5", "position": { "x": -1474.91, "y": 2520.0 }, "prev": [ - 235 + 238 ], "next": [ { - "target": 237, + "target": 240, "route": "assets/pathing/蒙德5-千风神殿-4.json" } ] }, { - "id": 237, - "type": "blossom", + "id": 240, + "type": "path", "region": "蒙德5", "position": { "x": -1394.83, "y": 2569.65 }, "prev": [ - 68, - 236 + 69, + 239 ], "next": [ { - "target": 238, + "target": 241, "route": "assets/pathing/蒙德5-千风神殿-5.json" } ] }, { - "id": 238, - "type": "blossom", + "id": 241, + "type": "path", "region": "蒙德5", "position": { "x": -1316.21, "y": 2734.67 }, "prev": [ - 69, - 237 + 70, + 240 ], "next": [] }, { - "id": 239, - "type": "blossom", + "id": 242, + "type": "path", "region": "蒙德6", "position": { "x": -1512.81, "y": 2774.26 }, "prev": [ - 69 + 70 ], "next": [ { - "target": 240, + "target": 243, "route": "assets/pathing/蒙德6-望风山地-2.json" } ] }, { - "id": 240, - "type": "blossom", + "id": 243, + "type": "path", "region": "蒙德6", "position": { "x": -1518.71, "y": 2877.4 }, "prev": [ - 239 + 242 ], "next": [ { - "target": 241, + "target": 244, "route": "assets/pathing/蒙德6-望风山地-3.json" } ] }, { - "id": 241, - "type": "blossom", + "id": 244, + "type": "path", "region": "蒙德6", "position": { "x": -1603.95, "y": 2865.65 }, "prev": [ - 70, - 240 + 71, + 243 ], "next": [ { - "target": 242, + "target": 245, "route": "assets/pathing/蒙德6-望风山地-4.json" } ] }, { - "id": 242, - "type": "blossom", + "id": 245, + "type": "path", "region": "蒙德6", "position": { "x": -1710.73, "y": 2983.29 }, "prev": [ - 241 + 244 ], "next": [] }, { - "id": 243, - "type": "blossom", + "id": 246, + "type": "path", "region": "蒙德7", "position": { "x": -1660.63, "y": 1392.87 }, "prev": [ - 71 + 72 ], "next": [ { - "target": 244, + "target": 247, "route": "assets/pathing/蒙德7-达达乌帕谷-2.json" } ] }, { - "id": 244, - "type": "blossom", + "id": 247, + "type": "path", "region": "蒙德7", "position": { "x": -1517.07, "y": 1513.97 }, "prev": [ - 72, - 243 + 73, + 246 ], "next": [ { - "target": 245, + "target": 248, "route": "assets/pathing/蒙德7-达达乌帕谷-3.json" } ] }, { - "id": 245, - "type": "blossom", + "id": 248, + "type": "path", "region": "蒙德7", "position": { "x": -1331.96, "y": 1560.15 }, "prev": [ - 72, - 244 + 73, + 247 ], "next": [ { - "target": 246, + "target": 249, "route": "assets/pathing/蒙德7-达达乌帕谷-4.json" } ] }, { - "id": 246, - "type": "blossom", + "id": 249, + "type": "path", "region": "蒙德7", "position": { "x": -1318.63, "y": 1692.63 }, - "prev": [ - 245 - ], - "next": [ - { - "target": 247, - "route": "assets/pathing/蒙德7-达达乌帕谷-5.json" - } - ] - }, - { - "id": 247, - "type": "blossom", - "region": "蒙德7", - "position": { - "x": -1138.22, - "y": 1789.79 - }, - "prev": [ - 246 - ], - "next": [ - { - "target": 220, - "route": "assets/pathing/蒙德7-达达乌帕谷-6.json" - } - ] - }, - { - "id": 248, - "type": "blossom", - "region": "须弥1", - "position": { - "x": 2368.79, - "y": -92.11 - }, - "prev": [ - 73 - ], - "next": [ - { - "target": 249, - "route": "assets/pathing/须弥1-无郁稠林-2.json" - } - ] - }, - { - "id": 249, - "type": "blossom", - "region": "须弥1", - "position": { - "x": 2317.29, - "y": -115.35 - }, "prev": [ 248 ], "next": [ { "target": 250, - "route": "assets/pathing/须弥1-无郁稠林-3.json" + "route": "assets/pathing/蒙德7-达达乌帕谷-5.json" } ] }, { "id": 250, - "type": "blossom", - "region": "须弥1", + "type": "path", + "region": "蒙德7", "position": { - "x": 2212.83, - "y": -83.02 + "x": -1138.22, + "y": 1789.79 }, "prev": [ 249 ], "next": [ { - "target": 251, - "route": "assets/pathing/须弥1-无郁稠林-4.json" + "target": 222, + "route": "assets/pathing/蒙德7-达达乌帕谷-6.json" } ] }, { "id": 251, - "type": "blossom", + "type": "path", "region": "须弥1", "position": { - "x": 2233.8, - "y": -160.88 - }, - "prev": [ - 250 - ], - "next": [ - { - "target": 252, - "route": "assets/pathing/须弥1-无郁稠林-5.json" - } - ] - }, - { - "id": 252, - "type": "blossom", - "region": "须弥1", - "position": { - "x": 2269.0, - "y": -251.14 - }, - "prev": [ - 251 - ], - "next": [] - }, - { - "id": 253, - "type": "blossom", - "region": "须弥10", - "position": { - "x": 6501.08, - "y": 904.25 + "x": 2368.79, + "y": -92.11 }, "prev": [ 74 ], + "next": [ + { + "target": 252, + "route": "assets/pathing/须弥1-无郁稠林-2.json" + } + ] + }, + { + "id": 252, + "type": "path", + "region": "须弥1", + "position": { + "x": 2317.29, + "y": -115.35 + }, + "prev": [ + 251 + ], + "next": [ + { + "target": 253, + "route": "assets/pathing/须弥1-无郁稠林-3.json" + } + ] + }, + { + "id": 253, + "type": "path", + "region": "须弥1", + "position": { + "x": 2212.83, + "y": -83.02 + }, + "prev": [ + 252 + ], "next": [ { "target": 254, - "route": "assets/pathing/须弥10-荼泥黑渊-2.json" + "route": "assets/pathing/须弥1-无郁稠林-4.json" } ] }, { "id": 254, - "type": "blossom", + "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", + "region": "须弥1", + "position": { + "x": 2269.0, + "y": -251.14 + }, + "prev": [ + 254 + ], + "next": [] + }, + { + "id": 256, + "type": "path", + "region": "须弥10", + "position": { + "x": 6501.08, + "y": 904.25 + }, + "prev": [ + 75 + ], + "next": [ + { + "target": 257, + "route": "assets/pathing/须弥10-荼泥黑渊-2.json" + } + ] + }, + { + "id": 257, + "type": "path", "region": "须弥10", "position": { "x": 6613.41, "y": 784.42 }, "prev": [ - 74, - 253 + 75, + 256 ], "next": [ { - "target": 255, + "target": 258, "route": "assets/pathing/须弥10-荼泥黑渊-3.json" } ] }, { - "id": 255, - "type": "blossom", + "id": 258, + "type": "path", "region": "须弥10", "position": { "x": 6692.66, "y": 625.4 }, "prev": [ - 74, - 254 + 75, + 257 ], "next": [ { - "target": 256, + "target": 259, "route": "assets/pathing/须弥10-荼泥黑渊-4.json" } ] }, { - "id": 256, - "type": "blossom", + "id": 259, + "type": "path", "region": "须弥10", "position": { "x": 6280.81, "y": 616.8 }, "prev": [ - 75, - 255 + 76, + 258 ], "next": [] }, { - "id": 257, - "type": "blossom", + "id": 260, + "type": "path", "region": "须弥2", "position": { "x": 2910.46, "y": -1818.57 }, "prev": [ - 76 + 77 ], "next": [ { - "target": 258, + "target": 261, "route": "assets/pathing/须弥2-奥摩斯港西-2.json" } ] }, { - "id": 258, - "type": "blossom", + "id": 261, + "type": "path", "region": "须弥2", "position": { "x": 2980.38, "y": -1758.57 }, "prev": [ - 257 + 260 ], "next": [ { - "target": 259, + "target": 262, "route": "assets/pathing/须弥2-奥摩斯港西-3.json" } ] }, { - "id": 259, - "type": "blossom", + "id": 262, + "type": "path", "region": "须弥2", "position": { "x": 3013.06, "y": -1700.54 }, "prev": [ - 77, - 258 + 78, + 261 ], "next": [ { - "target": 260, + "target": 263, "route": "assets/pathing/须弥2-奥摩斯港西-4.json" } ] }, { - "id": 260, - "type": "blossom", + "id": 263, + "type": "path", "region": "须弥2", "position": { "x": 2981.92, "y": -1641.54 }, - "prev": [ - 259 - ], - "next": [ - { - "target": 261, - "route": "assets/pathing/须弥2-奥摩斯港西-5.json" - } - ] - }, - { - "id": 261, - "type": "blossom", - "region": "须弥2", - "position": { - "x": 2963.07, - "y": -1586.92 - }, - "prev": [ - 260 - ], - "next": [] - }, - { - "id": 262, - "type": "blossom", - "region": "须弥3", - "position": { - "x": 3195.78, - "y": -806.97 - }, - "prev": [ - 78 - ], - "next": [ - { - "target": 263, - "route": "assets/pathing/须弥3-禅那园-2.json" - } - ] - }, - { - "id": 263, - "type": "blossom", - "region": "须弥3", - "position": { - "x": 3233.51, - "y": -740.65 - }, "prev": [ 262 ], "next": [ { "target": 264, - "route": "assets/pathing/须弥3-禅那园-3.json" + "route": "assets/pathing/须弥2-奥摩斯港西-5.json" } ] }, { "id": 264, - "type": "blossom", + "type": "path", + "region": "须弥2", + "position": { + "x": 2963.07, + "y": -1586.92 + }, + "prev": [ + 263 + ], + "next": [] + }, + { + "id": 265, + "type": "path", + "region": "须弥3", + "position": { + "x": 3195.78, + "y": -806.97 + }, + "prev": [ + 79 + ], + "next": [ + { + "target": 266, + "route": "assets/pathing/须弥3-禅那园-2.json" + } + ] + }, + { + "id": 266, + "type": "path", + "region": "须弥3", + "position": { + "x": 3233.51, + "y": -740.65 + }, + "prev": [ + 265 + ], + "next": [ + { + "target": 267, + "route": "assets/pathing/须弥3-禅那园-3.json" + } + ] + }, + { + "id": 267, + "type": "path", "region": "须弥3", "position": { "x": 3324.5, "y": -659.02 }, "prev": [ - 79, - 263 + 80, + 266 ], "next": [ { - "target": 265, + "target": 268, "route": "assets/pathing/须弥3-禅那园-4.json" } ] }, { - "id": 265, - "type": "blossom", + "id": 268, + "type": "path", "region": "须弥3", "position": { "x": 3387.39, "y": -664.21 }, "prev": [ - 264 + 267 ], "next": [] }, { - "id": 266, - "type": "blossom", + "id": 269, + "type": "path", "region": "须弥4", "position": { "x": 3381.91, "y": -1231.97 }, "prev": [ - 80 + 81 ], "next": [ { - "target": 267, + "target": 270, "route": "assets/pathing/须弥4-水天丛林-2.json" } ] }, { - "id": 267, - "type": "blossom", + "id": 270, + "type": "path", "region": "须弥4", "position": { "x": 3355.82, "y": -1318.18 }, "prev": [ - 266 + 269 ], "next": [ { - "target": 268, + "target": 271, "route": "assets/pathing/须弥4-水天丛林-3.json" } ] }, { - "id": 268, - "type": "blossom", + "id": 271, + "type": "path", "region": "须弥4", "position": { "x": 3466.17, "y": -1318.08 }, "prev": [ - 267 + 270 ], "next": [ { - "target": 269, + "target": 272, "route": "assets/pathing/须弥4-水天丛林-4.json" } ] }, { - "id": 269, - "type": "blossom", + "id": 272, + "type": "path", "region": "须弥4", "position": { "x": 3504.37, "y": -1500.13 }, "prev": [ - 81, - 268 + 82, + 271 ], "next": [ { - "target": 270, + "target": 273, "route": "assets/pathing/须弥4-水天丛林-5.json" } ] }, { - "id": 270, - "type": "blossom", + "id": 273, + "type": "path", "region": "须弥4", "position": { "x": 3721.99, "y": -1507.71 }, "prev": [ - 82, - 269 + 83, + 272 ], "next": [] }, { - "id": 271, - "type": "blossom", + "id": 274, + "type": "path", "region": "须弥5", "position": { "x": 4345.77, "y": -1793.67 }, "prev": [ - 83 + 84 ], "next": [ { - "target": 272, + "target": 275, "route": "assets/pathing/须弥5-阿如村-2.json" } ] }, { - "id": 272, - "type": "blossom", + "id": 275, + "type": "path", "region": "须弥5", "position": { "x": 4257.86, "y": -1903.31 }, "prev": [ - 271 + 274 ], "next": [ { - "target": 273, + "target": 276, "route": "assets/pathing/须弥5-阿如村-3.json" } ] }, { - "id": 273, - "type": "blossom", + "id": 276, + "type": "path", "region": "须弥5", "position": { "x": 4144.29, "y": -2014.19 }, "prev": [ - 272, - 273 + 275, + 276 ], "next": [ { - "target": 273, + "target": 276, "route": "assets/pathing/须弥5-阿如村-4.json" }, { - "target": 274, + "target": 277, "route": "assets/pathing/须弥5-阿如村-5.json" } ] }, { - "id": 274, - "type": "blossom", + "id": 277, + "type": "path", "region": "须弥5", "position": { "x": 4211.01, "y": -2165.65 }, "prev": [ - 273 + 276 ], "next": [] }, { - "id": 275, - "type": "blossom", + "id": 278, + "type": "path", "region": "须弥6", "position": { "x": 4552.75, "y": -2945.07 }, "prev": [ - 84 + 85 ], "next": [ { - "target": 276, + "target": 279, "route": "assets/pathing/须弥6-荼诃落谷-2.json" } ] }, { - "id": 276, - "type": "blossom", + "id": 279, + "type": "path", "region": "须弥6", "position": { "x": 4696.5, "y": -3055.9 }, "prev": [ - 85, - 275 + 86, + 278 ], "next": [ { - "target": 277, + "target": 280, "route": "assets/pathing/须弥6-荼诃落谷-3.json" } ] }, { - "id": 277, - "type": "blossom", + "id": 280, + "type": "path", "region": "须弥6", "position": { "x": 4886.54, "y": -2940.45 }, - "prev": [ - 276 - ], - "next": [ - { - "target": 278, - "route": "assets/pathing/须弥6-荼诃落谷-4.json" - } - ] - }, - { - "id": 278, - "type": "blossom", - "region": "须弥6", - "position": { - "x": 4756.03, - "y": -2742.32 - }, - "prev": [ - 86, - 277 - ], - "next": [] - }, - { - "id": 279, - "type": "blossom", - "region": "须弥8", - "position": { - "x": 5758.76, - "y": -1154.57 - }, - "prev": [ - 87 - ], - "next": [ - { - "target": 280, - "route": "assets/pathing/须弥8-折胫谷-2.json" - } - ] - }, - { - "id": 280, - "type": "blossom", - "region": "须弥8", - "position": { - "x": 5887.09, - "y": -1120.65 - }, "prev": [ 279 ], "next": [ { "target": 281, - "route": "assets/pathing/须弥8-折胫谷-3.json" + "route": "assets/pathing/须弥6-荼诃落谷-4.json" } ] }, { "id": 281, - "type": "blossom", - "region": "须弥8", + "type": "path", + "region": "须弥6", "position": { - "x": 5902.11, - "y": -1008.25 + "x": 4756.03, + "y": -2742.32 }, "prev": [ + 87, 280 ], - "next": [ - { - "target": 282, - "route": "assets/pathing/须弥8-折胫谷-4.json" - } - ] - }, - { - "id": 282, - "type": "blossom", - "region": "须弥8", - "position": { - "x": 5928.09, - "y": -922.46 - }, - "prev": [ - 281 - ], "next": [] }, { - "id": 283, - "type": "blossom", - "region": "须弥9", + "id": 282, + "type": "path", + "region": "须弥8", "position": { - "x": 4555.52, - "y": -569.96 + "x": 5758.76, + "y": -1154.57 }, "prev": [ 88 ], + "next": [ + { + "target": 283, + "route": "assets/pathing/须弥8-折胫谷-2.json" + } + ] + }, + { + "id": 283, + "type": "path", + "region": "须弥8", + "position": { + "x": 5887.09, + "y": -1120.65 + }, + "prev": [ + 282 + ], "next": [ { "target": 284, - "route": "assets/pathing/须弥9-镔铁沙丘-2.json" + "route": "assets/pathing/须弥8-折胫谷-3.json" } ] }, { "id": 284, - "type": "blossom", - "region": "须弥9", + "type": "path", + "region": "须弥8", "position": { - "x": 4573.81, - "y": -408.86 + "x": 5902.11, + "y": -1008.25 }, "prev": [ 283 @@ -4997,38 +5000,87 @@ "next": [ { "target": 285, - "route": "assets/pathing/须弥9-镔铁沙丘-3.json" + "route": "assets/pathing/须弥8-折胫谷-4.json" } ] }, { "id": 285, - "type": "blossom", + "type": "path", + "region": "须弥8", + "position": { + "x": 5928.09, + "y": -922.46 + }, + "prev": [ + 284 + ], + "next": [] + }, + { + "id": 286, + "type": "path", + "region": "须弥9", + "position": { + "x": 4555.52, + "y": -569.96 + }, + "prev": [ + 89 + ], + "next": [ + { + "target": 287, + "route": "assets/pathing/须弥9-镔铁沙丘-2.json" + } + ] + }, + { + "id": 287, + "type": "path", + "region": "须弥9", + "position": { + "x": 4573.81, + "y": -408.86 + }, + "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": [ - 284 + 287 ], "next": [ { - "target": 286, + "target": 289, "route": "assets/pathing/须弥9-镔铁沙丘-4.json" } ] }, { - "id": 286, - "type": "blossom", + "id": 289, + "type": "path", "region": "须弥9", "position": { "x": 4862.07, "y": -150.71 }, "prev": [ - 285 + 288 ], "next": [] } diff --git a/repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-3.5.json b/repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-4-1.json similarity index 100% rename from repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-3.5.json rename to repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-4-1.json diff --git a/repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-4.json b/repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-4-2.json similarity index 100% rename from repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-4.json rename to repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-4-2.json diff --git a/repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-5-1.json b/repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-5-1.json new file mode 100644 index 00000000..3dd3ee24 --- /dev/null +++ b/repo/js/AutoLeyLineOutcrop/assets/pathing/蒙德2-清泉镇-5-1.json @@ -0,0 +1,49 @@ +{ + "info": { + "name": "蒙德2-清泉镇-5-2", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -251.6552734375, + "y": 2256.552490234375, + "action_params": "" + }, + { + "id": 2, + "x": -259.5361328125, + "y": 2253.7451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -266.4140625, + "y": 2202.67431640625, + "type": "path", + "move_mode": "jump", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -319.5712890625, + "y": 2156.478515625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file