diff --git a/build/validate.py b/build/validate.py index 5bdef0ef..2dfb8ec0 100755 --- a/build/validate.py +++ b/build/validate.py @@ -60,21 +60,15 @@ def get_original_file(file_path): """从上游仓库获取原始文件内容,如果失败则尝试从本地获取""" # 返回值增加一个来源标识: "upstream", "pr_submitted", None - # 首先尝试从上游仓库获取 try: - print(f"尝试从upstream/main获取文件: {file_path}") result = subprocess.run(['git', 'show', f'upstream/main:{file_path}'], capture_output=True, text=True, encoding='utf-8') if result.returncode == 0: - print("从上游仓库成功获取原始文件") return json.loads(result.stdout), "upstream" - else: - print(f"文件在上游仓库中不存在,可能是新文件") except Exception as e: print(f"从上游仓库获取原始文件失败: {str(e)}") try: - print("尝试使用当前文件作为PR提交文件") with open(file_path, 'r', encoding='utf-8') as f: current_data = json.load(f) # 创建一个副本,避免引用相同的对象 @@ -82,7 +76,6 @@ def get_original_file(file_path): except Exception as e: print(f"读取当前文件失败: {str(e)}") - print("无法获取任何形式的原始文件") return None, None def load_json_file(file_path): @@ -318,6 +311,107 @@ def check_bgi_version_compatibility(bgi_version, auto_fix=False): return bgi_version, corrections +def check_position_ids(positions): + """检查并修复位置 ID 编编号的连续性 + + 自动修复功能: + 1. 缺少 id 字段时,自动按顺序添加 + 2. id 编号不连续时,自动重新排序 + 3. id 不是从 1 开始时,自动调整 + 4. id 值无效(非数字)时,自动修正 + """ + corrections = [] + validation_issues = [] + + if not positions: + return validation_issues, corrections + + # 检查是否所有位置都有 id 字段,并收集现有 id 值 + current_ids = [] + missing_ids = [] + invalid_ids = [] + + for idx, pos in enumerate(positions): + if "id" not in pos: + missing_ids.append(idx) + current_ids.append(None) + else: + try: + id_val = int(pos["id"]) + current_ids.append(id_val) + except (ValueError, TypeError): + # 如果 id 不是数字,记录为无效 + invalid_ids.append(idx) + current_ids.append(None) + + # 如果有缺少 id 的位置,记录 + if missing_ids: + corrections.append(f"为 {len(missing_ids)} 个位置自动添加了 id 字段") + + # 如果有无效 id,记录 + if invalid_ids: + corrections.append(f"修正了 {len(invalid_ids)} 个无效的 id 值") + + # 生成期望的 id 序列(从 1 开始) + expected_ids = list(range(1, len(positions) + 1)) + + # 检查当前 id 是否符合期望 + needs_reorder = False + + # 过滤掉 None 值来检查现有的有效 id + valid_current_ids = [id_val for id_val in current_ids if id_val is not None] + + if len(valid_current_ids) != len(positions): + needs_reorder = True + elif valid_current_ids != expected_ids: + needs_reorder = True + else: + # 检查是否有重复的 id + if len(set(valid_current_ids)) != len(valid_current_ids): + needs_reorder = True + duplicates = [id_val for id_val in set(valid_current_ids) if valid_current_ids.count(id_val) > 1] + corrections.append(f"检测到重复的 id: {duplicates}") + # 如果需要重新排序,自动修复 + if needs_reorder: + id_issues = [] + + # 分析具体问题 + if missing_ids or invalid_ids: + if missing_ids: + id_issues.append("存在缺少id的位置") + if invalid_ids: + id_issues.append("存在无效id值") + + if valid_current_ids: + if min(valid_current_ids) != 1: + id_issues.append("id不是从1开始") + + # 检查连续性 + sorted_valid_ids = sorted(valid_current_ids) + expected_sorted = list(range(1, len(valid_current_ids) + 1)) + if sorted_valid_ids != expected_sorted: + id_issues.append("id编号不连续") + + # 重新按顺序分配 id,并将 id 字段放在第一个位置 + for idx, pos in enumerate(positions): + new_id = idx + 1 + # 创建新的有序字典,id 放在第一个 + new_pos = {"id": new_id} + # 添加其他字段 + for key, value in pos.items(): + if key != "id": + new_pos[key] = value + # 更新原位置 + pos.clear() + pos.update(new_pos) + + if id_issues: + corrections.append(f"id编号已重新排序并置于首位 (问题: {', '.join(id_issues)})") + else: + corrections.append("id编号已按顺序重新分配并置于首位") + + return validation_issues, corrections + # ==================== 主验证逻辑 ==================== def initialize_data(data, file_path): @@ -356,9 +450,6 @@ def initialize_data(data, file_path): data["positions"] = [] messages.append(f"⚠️ 文件缺少 positions 字段,已添加空数组") - for message in messages: - print(message) - return data def check_actions_compatibility(positions, bgi_version): @@ -399,7 +490,7 @@ def update_bgi_version_for_compatibility(info, compatibility_issues, auto_fix): corrections.append(f"bgi_version {info['bgi_version']} 自动更新为 {max_required} 以兼容所有功能") return [], corrections except ValueError as e: - print(f"警告: 版本号解析失败 - {e}") + # print(f"警告: 版本号解析失败 - {e}") info["bgi_version"] = DEFAULT_BGI_VERSION corrections.append(f"bgi_version 自动更新为 {DEFAULT_BGI_VERSION} (版本解析失败)") return [], corrections @@ -439,13 +530,18 @@ def validate_file(file_path, auto_fix=False): bgi_version, corrections = check_bgi_version_compatibility(info["bgi_version"], auto_fix) if corrections: info["bgi_version"] = bgi_version - all_corrections.extend(corrections) - - # 检查位置字段 - 修改为接收三个返回值 + all_corrections.extend(corrections) # 检查位置字段 - 修改为接收三个返回值 position_issues, notices, pos_corrections = check_position_fields(data["positions"]) if auto_fix and pos_corrections: all_corrections.extend(pos_corrections) + # 检查位置 ID 编号 + if auto_fix: + id_validation_issues, id_corrections = check_position_ids(data["positions"]) + if id_corrections: + all_corrections.extend(id_corrections) + position_issues.extend(id_validation_issues) + # 检查 action 兼容性 compatibility_issues, action_validation_issues = check_actions_compatibility(data["positions"], info["bgi_version"]) position_issues.extend(action_validation_issues) @@ -493,15 +589,6 @@ def validate_file(file_path, auto_fix=False): # 保存修正 if auto_fix: - # 无论是否有问题,都打印所有自动修正项 - if all_corrections: - print("🔧 自动修正:") - for correction in all_corrections: - print(f" - {correction}") - else: - print("✅ 没有需要自动修正的项目") - - # 只有在有修正或问题时才保存文件 if all_corrections or position_issues: if save_json_file(file_path, data): print("✅ 文件已保存") @@ -523,7 +610,7 @@ def main(): all_notices = [] # 初始化 all_notices 变量 if os.path.isfile(path) and path.endswith('.json'): - print(f"\n🔍 校验文件: {path}") + # print(f"\n🔍 校验文件: {path}") notices = validate_file(path, auto_fix) if notices: all_notices.extend([f"{path}: {n}" for n in notices]) # 添加到 all_notices diff --git a/repo/js/AutoEatCoinPVPEvent/assets/pathing/continue.json b/repo/js/AutoEatCoinPVPEvent/assets/pathing/continue.json index b8f09d40..7f4c9d5f 100644 --- a/repo/js/AutoEatCoinPVPEvent/assets/pathing/continue.json +++ b/repo/js/AutoEatCoinPVPEvent/assets/pathing/continue.json @@ -11,17 +11,8 @@ "positions": [ { "id": 1, - "x": 7348.14697265625, - "y": -1428.5224609375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 2, - "x": 7354.49951171875, - "y": -1428.64404296875, + "x": 7354.68017578125, + "y": -1428.5908203125, "type": "target", "move_mode": "walk", "action": "", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-伊黎耶林区南岸.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-伊黎耶林区南岸.json index fa100fe4..4dbf4bb8 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-伊黎耶林区南岸.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-伊黎耶林区南岸.json @@ -72,7 +72,7 @@ "action_params": "" }, { - "id": 7, + "id": 8, "action": "fishing", "move_mode": "walk", "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-厄里那斯·东侧浅滩.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-厄里那斯·东侧浅滩.json index 099700ea..d74ef092 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-厄里那斯·东侧浅滩.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-厄里那斯·东侧浅滩.json @@ -79,7 +79,7 @@ "type": "target" }, { - "id": 8, + "id": 9, "x": 4607.44, "y": 2731.48, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-厄里那斯·东北海滩.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-厄里那斯·东北海滩.json index 07327375..48cdd267 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-厄里那斯·东北海滩.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-厄里那斯·东北海滩.json @@ -66,7 +66,7 @@ "action_params": "" }, { - "id": 6, + "id": 7, "x": 4724.38, "y": 3023.81, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-枫丹研究院神像西.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-枫丹研究院神像西.json index f9162565..b6003728 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-枫丹研究院神像西.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-枫丹研究院神像西.json @@ -54,7 +54,7 @@ "action_params": "" }, { - "id": 5, + "id": 6, "x": 4003.4, "y": 4524.64, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-柔灯港北岸.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-柔灯港北岸.json index d76abb28..4e8e7422 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-柔灯港北岸.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-枫丹-柔灯港北岸.json @@ -62,7 +62,7 @@ "action_params": "" }, { - "id": 6, + "id": 7, "x": 2912.5, "y": 3263.81, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-古茶树坡·北侧水域.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-古茶树坡·北侧水域.json index c88cf3fc..3034d97c 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-古茶树坡·北侧水域.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-古茶树坡·北侧水域.json @@ -45,7 +45,7 @@ "action_params": "" }, { - "id": 4, + "id": 5, "x": 1725.05, "y": 1910.4, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-奥藏山.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-奥藏山.json index 52ffa95d..68362152 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-奥藏山.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-奥藏山.json @@ -108,7 +108,7 @@ "type": "target" }, { - "id": 11, + "id": 12, "x": 1598.37, "y": 1140.33, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-归离原.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-归离原.json index 5e531886..23520ad8 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-归离原.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-归离原.json @@ -59,7 +59,7 @@ "type": "target" }, { - "id": 6, + "id": 7, "x": 54.76, "y": 629.13, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-悬练山·西南水域.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-悬练山·西南水域.json index fe22fff8..f7b136e0 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-悬练山·西南水域.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-悬练山·西南水域.json @@ -54,7 +54,7 @@ "type": "target" }, { - "id": 5, + "id": 6, "x": 2322.48, "y": 900.94, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-沉玉谷上谷·东侧水域.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-沉玉谷上谷·东侧水域.json index fd6f9b42..80488d06 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-沉玉谷上谷·东侧水域.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-沉玉谷上谷·东侧水域.json @@ -81,7 +81,7 @@ "type": "target" }, { - "id": 8, + "id": 9, "x": 1094.18, "y": 1881.09, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-碧水原.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-碧水原.json index c127eb7c..292f41f7 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-碧水原.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-璃月-碧水原.json @@ -90,7 +90,7 @@ "action_params": "" }, { - "id": 9, + "id": 10, "x": 1139.28, "y": 1530.47, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-千来神祠.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-千来神祠.json index 38cc1102..09b14b0c 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-千来神祠.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-千来神祠.json @@ -34,7 +34,7 @@ "type": "target" }, { - "id": 3, + "id": 4, "x": -2788.11, "y": -6024.98, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-名椎滩.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-名椎滩.json index 7eacf8c6..ad2cbf27 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-名椎滩.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-名椎滩.json @@ -63,7 +63,7 @@ "type": "target" }, { - "id": 6, + "id": 7, "x": -2622.35, "y": -3387.28, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-珊瑚宫.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-珊瑚宫.json index dd2c5140..3daada8f 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-珊瑚宫.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-珊瑚宫.json @@ -71,7 +71,7 @@ "action_params": "" }, { - "id": 7, + "id": 8, "x": -799.3, "y": -3637.15, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-越石村右.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-越石村右.json index f91bf636..da166e74 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-越石村右.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-越石村右.json @@ -54,7 +54,7 @@ "action_params": "" }, { - "id": 5, + "id": 6, "x": -4080.26, "y": -4428.89, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-越石村右对岸.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-越石村右对岸.json index 87881859..55023368 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-越石村右对岸.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-稻妻-越石村右对岸.json @@ -72,7 +72,7 @@ "action_params": "" }, { - "id": 7, + "id": 8, "x": -4144.83, "y": -4460.79, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-望风山地.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-望风山地.json index 5362dda8..d5cd759e 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-望风山地.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-望风山地.json @@ -45,7 +45,7 @@ "action_params": "" }, { - "id": 4, + "id": 5, "x": -1333.56, "y": 2760.86, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-果酒湖.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-果酒湖.json index d3361c52..30de4381 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-果酒湖.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-果酒湖.json @@ -81,7 +81,7 @@ "action_params": "" }, { - "id": 8, + "id": 9, "x": -804.57, "y": 2060.83, "type": "orientation", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-风起地.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-风起地.json index 2ac5e842..810c48c2 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-风起地.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-风起地.json @@ -99,7 +99,7 @@ "type": "target" }, { - "id": 10, + "id": 11, "x": -1271.88, "y": 1858.87, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-风龙废墟.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-风龙废墟.json index 789fa3ef..a7c2c3d4 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-风龙废墟.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-风龙废墟.json @@ -99,7 +99,7 @@ "type": "target" }, { - "id": 10, + "id": 11, "x": 116.33, "y": 2504.11, "action": "fishing", diff --git a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-龙脊雪山.json b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-龙脊雪山.json index c4c66ddf..aa4cb3a8 100644 --- a/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-龙脊雪山.json +++ b/repo/pathing/其他/提瓦特钓鱼指南/自动钓鱼路线-蒙德-龙脊雪山.json @@ -63,7 +63,7 @@ "type": "target" }, { - "id": 6, + "id": 7, "x": -604.74, "y": 977.05, "action": "fishing", diff --git a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/01-幽光星星-黎翡区-6个.json b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/01-幽光星星-黎翡区-6个.json index 7574df51..837b4b15 100644 --- a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/01-幽光星星-黎翡区-6个.json +++ b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/01-幽光星星-黎翡区-6个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 4545.55, "y": 4225.63, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 4536.07, "y": 4225.83, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 4410.89, "y": 4260.37, "type": "path", @@ -30,6 +33,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 4393.03, "y": 4252.94, "type": "target", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": 4384.83, "y": 4251.33, "type": "target", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": 4349.26, "y": 4236.21, "type": "target", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": 4289.03, "y": 4199.05, "type": "target", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": 4263.94, "y": 4175.81, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": 4263.27, "y": 4157.02, "type": "target", @@ -72,6 +81,7 @@ "action": "" }, { + "id": 10, "x": 4265.32, "y": 4127.15, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/02-幽光星星-芒索斯山东麓-5个.json b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/02-幽光星星-芒索斯山东麓-5个.json index 9e50cba5..cf5122e0 100644 --- a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/02-幽光星星-芒索斯山东麓-5个.json +++ b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/02-幽光星星-芒索斯山东麓-5个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 4984.74, "y": 4462.9, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 4963.5, "y": 4416.46, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 4922.73, "y": 4402.04, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 4901.23, "y": 4387.79, "type": "target", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": 4881.2, "y": 4373.67, "type": "target", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": 4892.56, "y": 4358.82, "type": "target", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": 4947.47, "y": 4346.61, "type": "target", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": 4951.35, "y": 4310.98, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": 4944.47, "y": 4296.17, "type": "target", @@ -72,6 +81,7 @@ "action": "" }, { + "id": 10, "x": 4545.52, "y": 4225.61, "type": "teleport", @@ -79,6 +89,7 @@ "action": "" }, { + "id": 11, "x": 4543.25, "y": 4228.88, "type": "path", diff --git a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/03-幽光星星-芒索斯山东麓-4个.json b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/03-幽光星星-芒索斯山东麓-4个.json index ed9af03f..46232abb 100644 --- a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/03-幽光星星-芒索斯山东麓-4个.json +++ b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/03-幽光星星-芒索斯山东麓-4个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 4984.74, "y": 4462.87, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 4962.93, "y": 4487.08, "type": "target", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 4989.34, "y": 4518.53, "type": "target", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 5000.0, "y": 4539.95, "type": "target", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": 4998.31, "y": 4560.33, "type": "target", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": 4545.53, "y": 4225.6, "type": "teleport", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": 4543.66, "y": 4228.03, "type": "path", diff --git a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/04-幽光星星-新枫丹科学院-6个.json b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/04-幽光星星-新枫丹科学院-6个.json index 7ab9fc27..1951137f 100644 --- a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/04-幽光星星-新枫丹科学院-6个.json +++ b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/04-幽光星星-新枫丹科学院-6个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 4498.12, "y": 4710.82, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 4495.32, "y": 4685.03, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 4511.34, "y": 4642.38, "type": "path", @@ -30,6 +33,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 4510.38, "y": 4640.62, "type": "target", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": 4483.31, "y": 4620.69, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": 4456.77, "y": 4618.14, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": 4445.17, "y": 4594.86, "type": "path", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": 4438.29, "y": 4575.85, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": 4424.49, "y": 4570.18, "type": "path", @@ -72,6 +81,7 @@ "action": "" }, { + "id": 10, "x": 4415.03, "y": 4559.61, "type": "target", @@ -79,6 +89,7 @@ "action": "" }, { + "id": 11, "x": 4416.36, "y": 4570.49, "type": "path", @@ -86,6 +97,7 @@ "action": "" }, { + "id": 12, "x": 4407.49, "y": 4568.48, "type": "path", @@ -93,6 +105,7 @@ "action": "" }, { + "id": 13, "x": 4409.12, "y": 4563.1, "type": "target", @@ -100,6 +113,7 @@ "action": "" }, { + "id": 14, "x": 4356.87, "y": 4565.84, "type": "path", @@ -107,6 +121,7 @@ "action": "" }, { + "id": 15, "x": 4334.81, "y": 4561.24, "type": "path", @@ -114,6 +129,7 @@ "action": "" }, { + "id": 16, "x": 4320.91, "y": 4568.12, "type": "target", @@ -121,6 +137,7 @@ "action": "" }, { + "id": 17, "x": 4317.01, "y": 4567.99, "type": "target", @@ -128,6 +145,7 @@ "action": "" }, { + "id": 18, "x": 4545.49, "y": 4225.64, "type": "teleport", @@ -135,6 +153,7 @@ "action": "" }, { + "id": 19, "x": 4543.93, "y": 4228.28, "type": "path", diff --git a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/05-幽光星星-中央实验室遗址东侧-5个.json b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/05-幽光星星-中央实验室遗址东侧-5个.json index eafc6ba8..b981b83a 100644 --- a/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/05-幽光星星-中央实验室遗址东侧-5个.json +++ b/repo/pathing/地方特产/枫丹/幽光星星/幽光星星@柠檬茶叶/05-幽光星星-中央实验室遗址东侧-5个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 3635.92, "y": 4796.02, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 3675.55, "y": 4874.47, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 3670.64, "y": 4880.9, "type": "target", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 3676.46, "y": 4884.96, "type": "target", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": 3686.63, "y": 4908.03, "type": "target", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": 3722.6, "y": 4917.11, "type": "target", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": 3720.04, "y": 4899.95, "type": "target", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": 3764.97, "y": 4840.04, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": 3791.47, "y": 4817.73, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/01-柔灯铃-枫丹廷北侧-27个.json b/repo/pathing/地方特产/枫丹/柔灯铃/01-柔灯铃-枫丹廷北侧-27个.json index 339e8807..dec37122 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/01-柔灯铃-枫丹廷北侧-27个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/01-柔灯铃-枫丹廷北侧-27个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 4701.36, "y": 3958.8, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 4690.75, "y": 3981.41, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 4617.52, "y": 4011.85, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 4577.39, "y": 4000.72, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 4573.55, "y": 3939.84, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 4567.36, "y": 3924.63, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 4563.24, "y": 3903.81, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 4578.64, "y": 3905.29, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 4582.93, "y": 3900.8, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 4556.14, "y": 3881.12, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 4588.14, "y": 3860.62, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 4538.6, "y": 3817.66, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 4502.48, "y": 3826.83, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/02-柔灯铃-伊黎耶林区-9个.json b/repo/pathing/地方特产/枫丹/柔灯铃/02-柔灯铃-伊黎耶林区-9个.json index b088c132..a15f6024 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/02-柔灯铃-伊黎耶林区-9个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/02-柔灯铃-伊黎耶林区-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 3635.48, "y": 3801.41, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 3676.76, "y": 3810.29, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 3701.55, "y": 3836.57, "type": "target", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 3725.26, "y": 3881.94, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/03-柔灯铃-伊黎耶林区-6个.json b/repo/pathing/地方特产/枫丹/柔灯铃/03-柔灯铃-伊黎耶林区-6个.json index 17b61864..fb7200d7 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/03-柔灯铃-伊黎耶林区-6个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/03-柔灯铃-伊黎耶林区-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 3635.54, "y": 3801.49, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 3605.68, "y": 3774.59, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/04-柔灯铃-苍晶区-6个.json b/repo/pathing/地方特产/枫丹/柔灯铃/04-柔灯铃-苍晶区-6个.json index f45263fe..abb01763 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/04-柔灯铃-苍晶区-6个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/04-柔灯铃-苍晶区-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 4705.57, "y": 2951.59, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 4725.71, "y": 2965.61, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 4758.91, "y": 2956.97, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 4757.33, "y": 2948.74, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/05-柔灯铃-苍晶区-9个.json b/repo/pathing/地方特产/枫丹/柔灯铃/05-柔灯铃-苍晶区-9个.json index 9da7d89a..2a90ae0e 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/05-柔灯铃-苍晶区-9个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/05-柔灯铃-苍晶区-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 4955.77, "y": 2760.5, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 4862.34, "y": 2768.23, "type": "target", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": 4848.83, "y": 2769.76, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 4844.63, "y": 2779.07, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 4822.51, "y": 2766.04, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/06-柔灯铃-苍晶区-3个.json b/repo/pathing/地方特产/枫丹/柔灯铃/06-柔灯铃-苍晶区-3个.json index 800b4a9a..10c2fb44 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/06-柔灯铃-苍晶区-3个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/06-柔灯铃-苍晶区-3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 5117.53, "y": 2543.36, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 5085.94, "y": 2548.2, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 5067.64, "y": 2556.47, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 5067.5, "y": 2551.62, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/07-柔灯铃-苍晶区-9个.json b/repo/pathing/地方特产/枫丹/柔灯铃/07-柔灯铃-苍晶区-9个.json index f2745dea..162dfbb4 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/07-柔灯铃-苍晶区-9个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/07-柔灯铃-苍晶区-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 4689.41, "y": 2429.45, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 4679.44, "y": 2401.24, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 4675.08, "y": 2389.55, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 4680.81, "y": 2372.1, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/08-柔灯铃-秋分山西侧-12个.json b/repo/pathing/地方特产/枫丹/柔灯铃/08-柔灯铃-秋分山西侧-12个.json index 2f34a7d6..b5131282 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/08-柔灯铃-秋分山西侧-12个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/08-柔灯铃-秋分山西侧-12个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 4146.66, "y": 2606.28, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 4153.77, "y": 2584.58, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 4159.55, "y": 2566.96, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 4157.1, "y": 2504.78, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 4187.63, "y": 2432.75, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 4160.53, "y": 2380.85, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 4138.83, "y": 2370.13, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 4132.02, "y": 2365.21, "type": "target", diff --git a/repo/pathing/地方特产/枫丹/柔灯铃/09-柔灯铃-秋分山东侧-6个.json b/repo/pathing/地方特产/枫丹/柔灯铃/09-柔灯铃-秋分山东侧-6个.json index 8e8c274a..bb3e7fa4 100644 --- a/repo/pathing/地方特产/枫丹/柔灯铃/09-柔灯铃-秋分山东侧-6个.json +++ b/repo/pathing/地方特产/枫丹/柔灯铃/09-柔灯铃-秋分山东侧-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 3955.31, "y": 2869.15, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 3978.11, "y": 2813.89, "type": "target", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": 3974.4, "y": 2809.83, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 3987.77, "y": 2782.49, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 3991.27, "y": 2774.41, "type": "target", diff --git a/repo/pathing/地方特产/璃月/星螺/01-星螺-瑶光滩-17个.json b/repo/pathing/地方特产/璃月/星螺/01-星螺-瑶光滩-17个.json index 933c00c9..815b52e8 100644 --- a/repo/pathing/地方特产/璃月/星螺/01-星螺-瑶光滩-17个.json +++ b/repo/pathing/地方特产/璃月/星螺/01-星螺-瑶光滩-17个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -474.01, "y": 441.76, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -472.25, "y": 447.81, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -482.48, "y": 441.23, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -424.53, "y": 399.81, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -332.25, "y": 389.33, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -291.02, "y": 443.35, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -249.74, "y": 389.44, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -223.72, "y": 390.18, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -201.12, "y": 388.48, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -157.61, "y": 432.9, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -125.09, "y": 390.62, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -104.59, "y": 366.49, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -104.59, "y": 366.49, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -151.02, "y": 336.02, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -151.02, "y": 336.02, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -157.98, "y": 362.01, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -157.98, "y": 362.01, "type": "path", diff --git a/repo/pathing/地方特产/璃月/星螺/02-星螺-瑶光滩-12个.json b/repo/pathing/地方特产/璃月/星螺/02-星螺-瑶光滩-12个.json index e5ab39be..2d88c537 100644 --- a/repo/pathing/地方特产/璃月/星螺/02-星螺-瑶光滩-12个.json +++ b/repo/pathing/地方特产/璃月/星螺/02-星螺-瑶光滩-12个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -57.41, "y": 656.93, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -46.29, "y": 592.36, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -51.73, "y": 526.45, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -47.05, "y": 490.27, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -47.18, "y": 521.68, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -98.9, "y": 489.84, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -151.92, "y": 497.2, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -188.37, "y": 537.05, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -286.51, "y": 529.83, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -378.5, "y": 522.44, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -447.91, "y": 547.52, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -503.34, "y": 575.22, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -551.86, "y": 576.48, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -554.55, "y": 562.62, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -508.71, "y": 533.18, "type": "path", diff --git a/repo/pathing/地方特产/璃月/星螺/03-星螺-归离原-14个.json b/repo/pathing/地方特产/璃月/星螺/03-星螺-归离原-14个.json index bab68674..84693968 100644 --- a/repo/pathing/地方特产/璃月/星螺/03-星螺-归离原-14个.json +++ b/repo/pathing/地方特产/璃月/星螺/03-星螺-归离原-14个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 54.32, "y": 139.23, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -15.51, "y": 121.47, "type": "path", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": -45.79, "y": 111.83, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -60.74, "y": 63.73, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -70.59, "y": 64.43, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -62.69, "y": 51.84, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -65.47, "y": 46.75, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -81.55, "y": 57.19, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -97.7, "y": 46.72, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -104.78, "y": 4.64, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -130.3, "y": 5.73, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -162.04, "y": -89.65, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -187.12, "y": -69.81, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -202.7, "y": -70.32, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -228.55, "y": -60.28, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -255.45, "y": -84.92, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -239.86, "y": -113.36, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -262.17, "y": -134.01, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -241.66, "y": -162.28, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": -245.37, "y": -183.57, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": -208.31, "y": -154.03, "type": "path", diff --git a/repo/pathing/地方特产/璃月/星螺/04-星螺-归离原-4个.json b/repo/pathing/地方特产/璃月/星螺/04-星螺-归离原-4个.json index 9fdb7842..4f5ff923 100644 --- a/repo/pathing/地方特产/璃月/星螺/04-星螺-归离原-4个.json +++ b/repo/pathing/地方特产/璃月/星螺/04-星螺-归离原-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 54.33, "y": 139.26, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -40.77, "y": 163.58, "type": "path", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": -42.23, "y": 173.16, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -62.1, "y": 198.87, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -87.37, "y": 223.63, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -97.68, "y": 211.89, "type": "path", diff --git a/repo/pathing/地方特产/璃月/星螺/05-星螺-孤云阁-9个.json b/repo/pathing/地方特产/璃月/星螺/05-星螺-孤云阁-9个.json index 643a23e8..9dc1a423 100644 --- a/repo/pathing/地方特产/璃月/星螺/05-星螺-孤云阁-9个.json +++ b/repo/pathing/地方特产/璃月/星螺/05-星螺-孤云阁-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -963.33, "y": -288.95, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -868.88, "y": -273.2, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -856.23, "y": -287.04, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -878.25, "y": -303.28, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -855.03, "y": -286.86, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -865.67, "y": -255.7, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -825.96, "y": -262.64, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -826.61, "y": -285.21, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -765.39, "y": -305.54, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -727.74, "y": -289.24, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -712.52, "y": -317.43, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -710.76, "y": -341.53, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -742.21, "y": -377.4, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -764.13, "y": -363.21, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -767.44, "y": -364.98, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -727.13, "y": -396.25, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -716.19, "y": -417.15, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -705.69, "y": -415.85, "type": "path", diff --git a/repo/pathing/地方特产/璃月/清水玉/清水玉@MOMO/1灵濛山.json b/repo/pathing/地方特产/璃月/清水玉/清水玉@MOMO/1灵濛山.json index cadf5556..291c6f4e 100644 --- a/repo/pathing/地方特产/璃月/清水玉/清水玉@MOMO/1灵濛山.json +++ b/repo/pathing/地方特产/璃月/清水玉/清水玉@MOMO/1灵濛山.json @@ -33,7 +33,7 @@ "type": "target" }, { - "id": 7, + "id": 4, "x": 2031.07, "y": 2374.58, "action": "mining", @@ -42,7 +42,7 @@ "type": "path" }, { - "id": 8, + "id": 5, "x": 2027.62, "y": 2369.2, "action": "", @@ -50,7 +50,7 @@ "type": "path" }, { - "id": 9, + "id": 6, "x": 2027.65, "y": 2380.9, "action": "", @@ -58,7 +58,7 @@ "type": "path" }, { - "id": 10, + "id": 7, "x": 2019.43, "y": 2378.68, "action": "", @@ -66,7 +66,7 @@ "type": "path" }, { - "id": 11, + "id": 8, "x": 1468.13, "y": 1998.0, "action": "", @@ -74,7 +74,7 @@ "type": "teleport" }, { - "id": 12, + "id": 9, "x": 1465.05, "y": 2009.71, "action": "", @@ -82,7 +82,7 @@ "type": "path" }, { - "id": 13, + "id": 10, "x": 1465.05, "y": 2014.98, "move_mode": "walk", @@ -91,7 +91,7 @@ "action_params": "" }, { - "id": 14, + "id": 11, "x": 1461.79, "y": 2015.05, "action": "", @@ -99,7 +99,7 @@ "type": "path" }, { - "id": 15, + "id": 12, "x": 1493.8, "y": 1981.27, "action": "", @@ -107,7 +107,7 @@ "type": "path" }, { - "id": 16, + "id": 13, "x": 1493.08, "y": 1940.09, "action": "", @@ -115,7 +115,7 @@ "type": "path" }, { - "id": 17, + "id": 14, "x": 1499.05, "y": 1910.48, "action": "mining", @@ -124,7 +124,7 @@ "type": "path" }, { - "id": 18, + "id": 15, "x": 1489.26, "y": 1888.08, "action": "", @@ -132,7 +132,7 @@ "type": "path" }, { - "id": 19, + "id": 16, "x": 1480.44, "y": 1859.17, "move_mode": "walk", @@ -141,7 +141,7 @@ "action_params": "" }, { - "id": 20, + "id": 17, "x": 1481.82, "y": 1852.57, "action": "", @@ -149,7 +149,7 @@ "type": "path" }, { - "id": 21, + "id": 18, "x": 1477.45, "y": 1857.27, "action": "", @@ -157,7 +157,7 @@ "type": "path" }, { - "id": 22, + "id": 19, "x": 1480.42, "y": 1862.61, "action": "", @@ -165,7 +165,7 @@ "type": "path" }, { - "id": 23, + "id": 20, "x": 1481.53, "y": 1857.67, "action": "", @@ -173,7 +173,7 @@ "type": "path" }, { - "id": 24, + "id": 21, "x": 1480.62, "y": 1852.76, "action": "", @@ -181,7 +181,7 @@ "type": "path" }, { - "id": 25, + "id": 22, "x": 1485.53, "y": 1851.03, "action": "", @@ -189,7 +189,7 @@ "type": "path" }, { - "id": 26, + "id": 23, "x": 1485.57, "y": 1864.47, "action": "", @@ -197,7 +197,7 @@ "type": "path" }, { - "id": 27, + "id": 24, "x": 1490.96, "y": 1861.04, "action": "", @@ -205,7 +205,7 @@ "type": "path" }, { - "id": 28, + "id": 25, "x": 1470.51, "y": 1839.2, "action": "", @@ -213,7 +213,7 @@ "type": "path" }, { - "id": 29, + "id": 26, "x": 1460.1, "y": 1805.95, "action": "", @@ -221,7 +221,7 @@ "type": "path" }, { - "id": 30, + "id": 27, "x": 1459.6, "y": 1806.45, "move_mode": "walk", @@ -230,7 +230,7 @@ "action_params": "" }, { - "id": 31, + "id": 28, "x": 1458.12, "y": 1801.64, "action": "", @@ -238,7 +238,7 @@ "type": "path" }, { - "id": 32, + "id": 29, "x": 1459.29, "y": 1798.84, "action": "", @@ -246,7 +246,7 @@ "type": "path" }, { - "id": 33, + "id": 30, "x": 1462.12, "y": 1804.4, "action": "", @@ -254,7 +254,7 @@ "type": "path" }, { - "id": 34, + "id": 31, "x": 1459.83, "y": 1806.9, "action": "", @@ -262,7 +262,7 @@ "type": "path" }, { - "id": 35, + "id": 32, "x": 1463.66, "y": 1802.99, "action": "", @@ -270,7 +270,7 @@ "type": "path" }, { - "id": 36, + "id": 33, "x": 1461.57, "y": 1798.12, "action": "", @@ -278,7 +278,7 @@ "type": "path" }, { - "id": 37, + "id": 34, "x": 1469.02, "y": 1794.18, "action": "", @@ -286,7 +286,7 @@ "type": "path" }, { - "id": 38, + "id": 35, "x": 1485.83, "y": 1785.99, "action": "", @@ -294,7 +294,7 @@ "type": "path" }, { - "id": 39, + "id": 36, "x": 1492.29, "y": 1785.06, "move_mode": "walk", @@ -303,7 +303,7 @@ "action_params": "" }, { - "id": 40, + "id": 37, "x": 1492.73, "y": 1781.09, "action": "", @@ -311,7 +311,7 @@ "type": "path" }, { - "id": 41, + "id": 38, "x": 1491.63, "y": 1779.37, "action": "", @@ -319,7 +319,7 @@ "type": "path" }, { - "id": 42, + "id": 39, "x": 1492.01, "y": 1785.29, "action": "", @@ -327,7 +327,7 @@ "type": "path" }, { - "id": 43, + "id": 40, "x": 1492.68, "y": 1784.97, "action": "", @@ -335,7 +335,7 @@ "type": "path" }, { - "id": 44, + "id": 41, "x": 1492.32, "y": 1781.9, "action": "", @@ -343,7 +343,7 @@ "type": "path" }, { - "id": 45, + "id": 42, "x": 1491.57, "y": 1779.36, "action": "", @@ -351,7 +351,7 @@ "type": "path" }, { - "id": 46, + "id": 43, "x": 1494.02, "y": 1780.21, "action": "", @@ -359,7 +359,7 @@ "type": "path" }, { - "id": 47, + "id": 44, "x": 1492.19, "y": 1786.85, "action": "", diff --git a/repo/pathing/地方特产/璃月/清水玉/清水玉@起个名字好难/C组动态/C01-清水玉-古茶树坡-东侧-8个.json b/repo/pathing/地方特产/璃月/清水玉/清水玉@起个名字好难/C组动态/C01-清水玉-古茶树坡-东侧-8个.json index 1ae2dbd7..8c89de46 100644 --- a/repo/pathing/地方特产/璃月/清水玉/清水玉@起个名字好难/C组动态/C01-清水玉-古茶树坡-东侧-8个.json +++ b/repo/pathing/地方特产/璃月/清水玉/清水玉@起个名字好难/C组动态/C01-清水玉-古茶树坡-东侧-8个.json @@ -26,6 +26,7 @@ "action_params": "" }, { + "id": 3, "x": 1461.62, "y": 2014.59, "type": "target", @@ -34,7 +35,7 @@ "action_params": "3" }, { - "id": 3, + "id": 4, "x": 1487.84, "y": 1978.88, "type": "path", @@ -42,7 +43,7 @@ "action": "" }, { - "id": 4, + "id": 5, "x": 1496.96, "y": 1910.74, "type": "path", @@ -50,7 +51,7 @@ "action": "" }, { - "id": 5, + "id": 6, "x": 1480.32, "y": 1859.34, "type": "target", @@ -59,6 +60,7 @@ "action_params": "" }, { + "id": 7, "x": 1480.32, "y": 1859.34, "type": "target", @@ -67,7 +69,7 @@ "action_params": "2" }, { - "id": 6, + "id": 8, "x": 1436.73, "y": 1846.85, "type": "path", @@ -75,7 +77,7 @@ "action": "" }, { - "id": 7, + "id": 9, "x": 1408.65, "y": 1807.16, "type": "target", @@ -84,6 +86,7 @@ "action_params": "" }, { + "id": 10, "x": 1408.65, "y": 1806.16, "type": "target", @@ -92,7 +95,7 @@ "action_params": "" }, { - "id": 8, + "id": 11, "x": 1456.13, "y": 1805.07, "type": "target", diff --git a/repo/pathing/地方特产/璃月/清水玉/清水玉@起个名字好难/C组动态/C02-清水玉-古茶树坡-西侧-5个.json b/repo/pathing/地方特产/璃月/清水玉/清水玉@起个名字好难/C组动态/C02-清水玉-古茶树坡-西侧-5个.json index 0813f554..88ccabec 100644 --- a/repo/pathing/地方特产/璃月/清水玉/清水玉@起个名字好难/C组动态/C02-清水玉-古茶树坡-西侧-5个.json +++ b/repo/pathing/地方特产/璃月/清水玉/清水玉@起个名字好难/C组动态/C02-清水玉-古茶树坡-西侧-5个.json @@ -77,6 +77,7 @@ "type": "target" }, { + "id": 9, "x": 1881.88, "y": 1772.86, "action": "", @@ -84,7 +85,7 @@ "type": "path" }, { - "id": 9, + "id": 10, "x": 1877.73, "y": 1764.58, "action": "mining", @@ -93,7 +94,7 @@ "type": "target" }, { - "id": 10, + "id": 11, "x": 1878.93, "y": 1771.9, "action": "pick_around", diff --git a/repo/pathing/地方特产/璃月/琉璃百合/01-琉璃百合-璃月港右-3个.json b/repo/pathing/地方特产/璃月/琉璃百合/01-琉璃百合-璃月港右-3个.json index 2ee820fc..56ab1ae3 100644 --- a/repo/pathing/地方特产/璃月/琉璃百合/01-琉璃百合-璃月港右-3个.json +++ b/repo/pathing/地方特产/璃月/琉璃百合/01-琉璃百合-璃月港右-3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 267.96, "y": -665.16, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 269.57, "y": -661.89, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 278.26, "y": -666.81, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 279.47, "y": -663.86, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 281.63, "y": -664.58, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 286.09, "y": -660.33, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 282.48, "y": -657.72, "type": "target", diff --git a/repo/pathing/地方特产/璃月/琉璃百合/02-琉璃百合-璃月港左-7个+霓裳花4x2个.json b/repo/pathing/地方特产/璃月/琉璃百合/02-琉璃百合-璃月港左-7个+霓裳花4x2个.json index bc876e80..e86fd7fe 100644 --- a/repo/pathing/地方特产/璃月/琉璃百合/02-琉璃百合-璃月港左-7个+霓裳花4x2个.json +++ b/repo/pathing/地方特产/璃月/琉璃百合/02-琉璃百合-璃月港左-7个+霓裳花4x2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 507.99, "y": -630.45, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 430.76, "y": -620.21, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 430.76, "y": -620.21, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 420.07, "y": -619.48, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 412.03, "y": -602.1, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 416.54, "y": -595.78, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 419.6, "y": -600.64, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 427.75, "y": -596.92, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 431.32, "y": -606.47, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 437.48, "y": -605.58, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 446.98, "y": -608.51, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 454.1, "y": -606.5, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 452.37, "y": -603.62, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 462.3, "y": -590.82, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 439.51, "y": -571.81, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 423.18, "y": -589.43, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 411.77, "y": -588.83, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 410.57, "y": -585.43, "type": "target", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 401.62, "y": -579.95, "type": "target", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 399.77, "y": -563.02, "type": "target", diff --git a/repo/pathing/地方特产/璃月/琉璃百合/03-琉璃百合-璃月港左-11个+霓裳花3x2个.json b/repo/pathing/地方特产/璃月/琉璃百合/03-琉璃百合-璃月港左-11个+霓裳花3x2个.json index 997587a1..554129ff 100644 --- a/repo/pathing/地方特产/璃月/琉璃百合/03-琉璃百合-璃月港左-11个+霓裳花3x2个.json +++ b/repo/pathing/地方特产/璃月/琉璃百合/03-琉璃百合-璃月港左-11个+霓裳花3x2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 507.99, "y": -630.45, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 440.59, "y": -546.18, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 440.59, "y": -546.18, "type": "target", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 447.23, "y": -540.27, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 439.89, "y": -538.9, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 428.07, "y": -534.95, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 447.82, "y": -542.18, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 440.5, "y": -533.13, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 474.92, "y": -534.74, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 498.78, "y": -534.52, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 503.85, "y": -535.72, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 498.03, "y": -535.17, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 498.91, "y": -521.07, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 480.12, "y": -517.26, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 475.91, "y": -514.84, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 466.51, "y": -499.51, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 468.74, "y": -452.09, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 468.74, "y": -452.09, "type": "path", @@ -134,6 +152,7 @@ "action": "stop_flying" }, { + "id": 19, "x": 476.73, "y": -456.41, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 474.69, "y": -460.31, "type": "target", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 492.05, "y": -469.72, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 490.36, "y": -451.88, "type": "target", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 490.22, "y": -450.81, "type": "target", diff --git a/repo/pathing/地方特产/璃月/琉璃百合/04-琉璃百合-轻策庄下-2个+绝云椒椒2x3个.json b/repo/pathing/地方特产/璃月/琉璃百合/04-琉璃百合-轻策庄下-2个+绝云椒椒2x3个.json index d23374cc..18f5074f 100644 --- a/repo/pathing/地方特产/璃月/琉璃百合/04-琉璃百合-轻策庄下-2个+绝云椒椒2x3个.json +++ b/repo/pathing/地方特产/璃月/琉璃百合/04-琉璃百合-轻策庄下-2个+绝云椒椒2x3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 547.72, "y": 1766.83, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 558.58, "y": 1756.06, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 565.23, "y": 1739.96, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 556.2, "y": 1732.68, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 587.64, "y": 1723.84, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 603.98, "y": 1712.13, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 627.05, "y": 1708.71, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 638.94, "y": 1705.13, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 659.02, "y": 1694.33, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 706.57, "y": 1666.82, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 706.57, "y": 1666.82, "type": "path", @@ -85,6 +96,7 @@ "action": "stop_flying" }, { + "id": 12, "x": 716.82, "y": 1690.11, "type": "target", diff --git a/repo/pathing/地方特产/璃月/琉璃百合/05-琉璃百合-轻策庄右-1个+绝云椒椒1x3个.json b/repo/pathing/地方特产/璃月/琉璃百合/05-琉璃百合-轻策庄右-1个+绝云椒椒1x3个.json index 4e17b962..588a099f 100644 --- a/repo/pathing/地方特产/璃月/琉璃百合/05-琉璃百合-轻策庄右-1个+绝云椒椒1x3个.json +++ b/repo/pathing/地方特产/璃月/琉璃百合/05-琉璃百合-轻策庄右-1个+绝云椒椒1x3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 547.75, "y": 1766.8, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 549.3, "y": 1746.91, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 557.48, "y": 1747.94, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 557.5, "y": 1747.92, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 567.81, "y": 1753.45, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 573.02, "y": 1760.8, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 573.02, "y": 1760.79, "type": "path", @@ -57,6 +64,7 @@ "action": "stop_flying" }, { + "id": 8, "x": 561.54, "y": 1764.93, "type": "target", diff --git a/repo/pathing/地方特产/璃月/琉璃百合/06-琉璃百合-轻策庄下-1个+绝云椒椒1x3个.json b/repo/pathing/地方特产/璃月/琉璃百合/06-琉璃百合-轻策庄下-1个+绝云椒椒1x3个.json index 57a1f0fd..e9762012 100644 --- a/repo/pathing/地方特产/璃月/琉璃百合/06-琉璃百合-轻策庄下-1个+绝云椒椒1x3个.json +++ b/repo/pathing/地方特产/璃月/琉璃百合/06-琉璃百合-轻策庄下-1个+绝云椒椒1x3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 547.72, "y": 1766.82, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 556.22, "y": 1763.26, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 658.17, "y": 1776.69, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 658.18, "y": 1776.72, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 638.71, "y": 1760.81, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 638.71, "y": 1760.81, "type": "target", diff --git a/repo/pathing/地方特产/璃月/琉璃百合/07-琉璃百合-轻策庄左-5个+绝云椒椒1x3个.json b/repo/pathing/地方特产/璃月/琉璃百合/07-琉璃百合-轻策庄左-5个+绝云椒椒1x3个.json index 1f4cafc0..efe623d1 100644 --- a/repo/pathing/地方特产/璃月/琉璃百合/07-琉璃百合-轻策庄左-5个+绝云椒椒1x3个.json +++ b/repo/pathing/地方特产/璃月/琉璃百合/07-琉璃百合-轻策庄左-5个+绝云椒椒1x3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 801.62, "y": 1796.1, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 795.33, "y": 1786.5, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 781.81, "y": 1785.26, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 716.6, "y": 1769.25, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 702.85, "y": 1780.73, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 699.6, "y": 1793.48, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 685.85, "y": 1798.27, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 712.79, "y": 1800.15, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 727.42, "y": 1790.52, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 737.79, "y": 1792.79, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 730.25, "y": 1817.61, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 739.39, "y": 1823.68, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 739.39, "y": 1823.68, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 746.81, "y": 1813.67, "type": "target", diff --git a/repo/pathing/地方特产/璃月/琉璃百合/08-琉璃百合-轻策庄上-11个+绝云椒椒1x3个.json b/repo/pathing/地方特产/璃月/琉璃百合/08-琉璃百合-轻策庄上-11个+绝云椒椒1x3个.json index 38381b40..2671d23d 100644 --- a/repo/pathing/地方特产/璃月/琉璃百合/08-琉璃百合-轻策庄上-11个+绝云椒椒1x3个.json +++ b/repo/pathing/地方特产/璃月/琉璃百合/08-琉璃百合-轻策庄上-11个+绝云椒椒1x3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 801.6, "y": 1796.13, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 808.7, "y": 1795.7, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 807.18, "y": 1855.33, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 754.69, "y": 1888.32, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 744.93, "y": 1909.15, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 711.06, "y": 1884.1, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 704.66, "y": 1899.56, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 663.83, "y": 1917.96, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 623.81, "y": 1886.75, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 637.07, "y": 1852.28, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 591.51, "y": 1853.7, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 584.45, "y": 1866.8, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 571.21, "y": 1884.69, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 598.08, "y": 1912.9, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 597.87, "y": 1927.74, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 584.22, "y": 1927.43, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 574.47, "y": 1913.88, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 588.31, "y": 1918.1, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 621.39, "y": 1911.12, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 621.37, "y": 1911.12, "type": "target", @@ -148,6 +168,7 @@ "action": "stop_flying" }, { + "id": 21, "x": 618.55, "y": 1922.19, "type": "target", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 639.16, "y": 1844.29, "type": "path", diff --git a/repo/pathing/地方特产/璃月/琉璃袋/琉璃袋@yulalaa/琉璃袋-天遒谷-2个.json b/repo/pathing/地方特产/璃月/琉璃袋/琉璃袋@yulalaa/琉璃袋-天遒谷-2个.json index 18708e0c..a587f8c4 100644 --- a/repo/pathing/地方特产/璃月/琉璃袋/琉璃袋@yulalaa/琉璃袋-天遒谷-2个.json +++ b/repo/pathing/地方特产/璃月/琉璃袋/琉璃袋@yulalaa/琉璃袋-天遒谷-2个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 3, + "id": 1, "x": 1268.36, "y": -64.19, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 4, + "id": 2, "x": 1261.1, "y": -76.42, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 5, + "id": 3, "x": 1228.59, "y": -114.65, "type": "path", @@ -33,7 +33,7 @@ "action": "" }, { - "id": 6, + "id": 4, "x": 1183.38, "y": -160.31, "type": "target", diff --git a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/01-绝云椒椒-奥藏山(一)-1×3个.json b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/01-绝云椒椒-奥藏山(一)-1×3个.json index 0f46236f..7895b31e 100644 --- a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/01-绝云椒椒-奥藏山(一)-1×3个.json +++ b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/01-绝云椒椒-奥藏山(一)-1×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1451.49, "y": 1028.57, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1486.6, "y": 1050.01, "type": "path", diff --git a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/02-绝云椒椒-奥藏山(二)-6×3个.json b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/02-绝云椒椒-奥藏山(二)-6×3个.json index d148276e..eba9ca7d 100644 --- a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/02-绝云椒椒-奥藏山(二)-6×3个.json +++ b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/02-绝云椒椒-奥藏山(二)-6×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1451.48, "y": 1028.55, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1409.11, "y": 999.54, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1378.43, "y": 983.55, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1342.81, "y": 964.82, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1293.3, "y": 951.42, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1252.97, "y": 941.31, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1221.96, "y": 918.9, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 1208.09, "y": 901.84, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 1199.16, "y": 881.51, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 1202.58, "y": 879.08, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 1213.59, "y": 875.83, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 1225.45, "y": 876.6, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 1222.58, "y": 824.89, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 1204.31, "y": 796.78, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 1171.17, "y": 764.98, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 1167.88, "y": 760.1, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 1152.89, "y": 740.5, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 1107.23, "y": 756.12, "type": "path", @@ -134,6 +152,7 @@ "action": "stop_flying" }, { + "id": 19, "x": 1104.0, "y": 757.06, "type": "target", diff --git a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/03-绝云椒椒-苍白本-7×3个.json b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/03-绝云椒椒-苍白本-7×3个.json index b27a01c4..83d2b76b 100644 --- a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/03-绝云椒椒-苍白本-7×3个.json +++ b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/03-绝云椒椒-苍白本-7×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -321.58, "y": 1473.27, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -308.7, "y": 1477.43, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -285.29, "y": 1483.84, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -247.55, "y": 1488.24, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -232.14, "y": 1487.56, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -193.57, "y": 1487.46, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -130.38, "y": 1495.48, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -111.97, "y": 1487.57, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -109.24, "y": 1486.31, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -93.39, "y": 1511.75, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -79.23, "y": 1515.67, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -38.42, "y": 1506.28, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -30.3, "y": 1500.15, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -36.43, "y": 1527.48, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -26.94, "y": 1540.67, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -17.45, "y": 1553.64, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -7.07, "y": 1557.68, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -28.25, "y": 1569.03, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -38.06, "y": 1579.16, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": -34.16, "y": 1582.53, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": -29.29, "y": 1582.73, "type": "target", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": -34.28, "y": 1616.5, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": -5.14, "y": 1652.47, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": 4.62, "y": 1668.39, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": 5.15, "y": 1671.38, "type": "path", diff --git a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/04-绝云椒椒-轻策庄(一)-1×3个.json b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/04-绝云椒椒-轻策庄(一)-1×3个.json index 2a4e39e8..98b5df0b 100644 --- a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/04-绝云椒椒-轻策庄(一)-1×3个.json +++ b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/04-绝云椒椒-轻策庄(一)-1×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 547.69, "y": 1766.75, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 547.67, "y": 1766.78, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 551.05, "y": 1790.24, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 551.02, "y": 1788.23, "type": "path", diff --git a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/05-绝云椒椒-轻策庄(二)-7×3个.json b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/05-绝云椒椒-轻策庄(二)-7×3个.json index 246f97e4..327b78dd 100644 --- a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/05-绝云椒椒-轻策庄(二)-7×3个.json +++ b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/05-绝云椒椒-轻策庄(二)-7×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 547.72, "y": 1766.81, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 555.52, "y": 1751.41, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 557.13, "y": 1747.48, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 558.27, "y": 1739.45, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 557.47, "y": 1731.25, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 584.34, "y": 1726.02, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 638.32, "y": 1705.12, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 647.09, "y": 1702.91, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 653.86, "y": 1695.32, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 659.07, "y": 1694.26, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 654.97, "y": 1701.35, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 668.98, "y": 1709.28, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 683.86, "y": 1751.19, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 671.33, "y": 1759.09, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 659.02, "y": 1775.99, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 677.17, "y": 1785.79, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 685.74, "y": 1799.11, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 682.5, "y": 1812.76, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 704.74, "y": 1822.2, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 703.85, "y": 1843.57, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 702.26, "y": 1846.02, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 706.47, "y": 1851.82, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 705.34, "y": 1854.55, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": 721.34, "y": 1881.31, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": 711.38, "y": 1883.64, "type": "target", diff --git a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/06-绝云椒椒-轻策庄(三)-1×3个.json b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/06-绝云椒椒-轻策庄(三)-1×3个.json index f190c682..09572441 100644 --- a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/06-绝云椒椒-轻策庄(三)-1×3个.json +++ b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/06-绝云椒椒-轻策庄(三)-1×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 801.58, "y": 1796.14, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 812.59, "y": 1792.38, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 821.24, "y": 1797.42, "type": "target", diff --git a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/07-绝云椒椒-宗室本-4×3个.json b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/07-绝云椒椒-宗室本-4×3个.json index 5665bf77..ce93de9e 100644 --- a/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/07-绝云椒椒-宗室本-4×3个.json +++ b/repo/pathing/地方特产/璃月/绝云椒椒/绝云椒椒@不瘦五十斤不改名/07-绝云椒椒-宗室本-4×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1436.33, "y": 1289.96, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1447.47, "y": 1257.22, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1460.07, "y": 1235.83, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1446.32, "y": 1213.04, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1421.44, "y": 1206.45, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1393.28, "y": 1220.97, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1372.99, "y": 1221.74, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 1361.83, "y": 1211.53, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 1342.13, "y": 1165.49, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 1333.35, "y": 1150.54, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 1312.25, "y": 1150.66, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 1295.54, "y": 1140.82, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 1309.98, "y": 1125.23, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 1308.32, "y": 1117.31, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 1335.07, "y": 1088.01, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 1370.19, "y": 1087.64, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 1380.27, "y": 1088.78, "type": "path", diff --git a/repo/pathing/地方特产/璃月/霓裳花/02-霓裳花-望舒客栈-7个.json b/repo/pathing/地方特产/璃月/霓裳花/02-霓裳花-望舒客栈-7个.json index 417ff132..c504646e 100644 --- a/repo/pathing/地方特产/璃月/霓裳花/02-霓裳花-望舒客栈-7个.json +++ b/repo/pathing/地方特产/璃月/霓裳花/02-霓裳花-望舒客栈-7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 328.97, "y": 873.58, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 275.63, "y": 864.53, "type": "path", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": 267.63, "y": 860.53, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 285.19, "y": 887.51, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 274.72, "y": 914.68, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 301.85, "y": 937.81, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 284.09, "y": 945.51, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 293.76, "y": 939.53, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 308.95, "y": 962.22, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 337.5, "y": 994.74, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 352.61, "y": 1010.85, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 349.09, "y": 1020.06, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 380.65, "y": 1032.59, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/天云草实/天云草实@曦/01-天云草实-天云峠左下角-26个.json b/repo/pathing/地方特产/稻妻/天云草实/天云草实@曦/01-天云草实-天云峠左下角-26个.json index 4c227e94..699df8aa 100644 --- a/repo/pathing/地方特产/稻妻/天云草实/天云草实@曦/01-天云草实-天云峠左下角-26个.json +++ b/repo/pathing/地方特产/稻妻/天云草实/天云草实@曦/01-天云草实-天云峠左下角-26个.json @@ -153,7 +153,7 @@ "type": "path" }, { - "id": 20, + "id": 19, "x": -4108.27, "y": -4816.23, "action": "", @@ -161,7 +161,7 @@ "type": "path" }, { - "id": 21, + "id": 20, "x": -4135.23, "y": -4812.48, "action": "", @@ -169,7 +169,7 @@ "type": "target" }, { - "id": 22, + "id": 21, "x": -4130.55, "y": -4807.46, "action": "", @@ -177,7 +177,7 @@ "type": "target" }, { - "id": 23, + "id": 22, "x": -4145.06, "y": -4830.29, "action": "", @@ -185,7 +185,7 @@ "type": "target" }, { - "id": 24, + "id": 23, "x": -4159.44, "y": -4829.14, "action": "", @@ -193,7 +193,7 @@ "type": "target" }, { - "id": 25, + "id": 24, "x": -4164.97, "y": -4832.08, "action": "", @@ -201,7 +201,7 @@ "type": "target" }, { - "id": 26, + "id": 25, "x": -4164.41, "y": -4842.6, "action": "", @@ -209,7 +209,7 @@ "type": "target" }, { - "id": 27, + "id": 26, "x": -4178.9, "y": -4850.36, "action": "", @@ -217,7 +217,7 @@ "type": "target" }, { - "id": 28, + "id": 27, "x": -4192.33, "y": -4844.13, "action": "", diff --git a/repo/pathing/地方特产/稻妻/天云草实/天云草实@曦/04-天云草实-越石村右侧-6个.json b/repo/pathing/地方特产/稻妻/天云草实/天云草实@曦/04-天云草实-越石村右侧-6个.json index c1c6f007..9ccecdb3 100644 --- a/repo/pathing/地方特产/稻妻/天云草实/天云草实@曦/04-天云草实-越石村右侧-6个.json +++ b/repo/pathing/地方特产/稻妻/天云草实/天云草实@曦/04-天云草实-越石村右侧-6个.json @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 3, + "id": 2, "x": -4195.28, "y": -4253.78, "action": "", @@ -25,7 +25,7 @@ "type": "path" }, { - "id": 4, + "id": 3, "x": -4202.15, "y": -4258.45, "action": "", @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 5, + "id": 4, "x": -4214.45, "y": -4269.48, "action": "", @@ -41,7 +41,7 @@ "type": "target" }, { - "id": 6, + "id": 5, "x": -4216.56, "y": -4271.76, "action": "", @@ -49,7 +49,7 @@ "type": "target" }, { - "id": 7, + "id": 6, "x": -4217.97, "y": -4269.1, "action": "", diff --git a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/01-幽灯蕈-鹤观大门-8个.json b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/01-幽灯蕈-鹤观大门-8个.json index 55261b50..512c2981 100644 --- a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/01-幽灯蕈-鹤观大门-8个.json +++ b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/01-幽灯蕈-鹤观大门-8个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2836.85, "y": -6287.49, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2911.88, "y": -6269.32, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2914.77, "y": -6268.11, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2913.99, "y": -6277.85, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -2905.33, "y": -6289.27, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2908.33, "y": -6285.14, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2907.58, "y": -6289.06, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2918.28, "y": -6279.84, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2946.35, "y": -6265.88, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -2934.02, "y": -6265.35, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -2933.26, "y": -6262.63, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -2967.96, "y": -6284.82, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -2974.64, "y": -6293.96, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -2977.47, "y": -6293.27, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -2976.94, "y": -6286.15, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -2979.61, "y": -6288.95, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/02-幽灯蕈-茂知祭场-6个.json b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/02-幽灯蕈-茂知祭场-6个.json index 6892e24f..375bf95f 100644 --- a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/02-幽灯蕈-茂知祭场-6个.json +++ b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/02-幽灯蕈-茂知祭场-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2836.83, "y": -6287.49, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2813.85, "y": -6292.11, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2802.88, "y": -6318.12, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2788.02, "y": -6342.86, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -2800.86, "y": -6368.32, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2800.58, "y": -6360.14, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2801.6, "y": -6376.25, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2791.88, "y": -6374.51, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2788.09, "y": -6378.85, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -2788.6, "y": -6372.85, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -2779.95, "y": -6366.05, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -2772.93, "y": -6342.8, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -2775.77, "y": -6337.32, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -2771.67, "y": -6334.58, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -2769.84, "y": -6331.36, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/03-幽灯蕈-鹤观下-12个.json b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/03-幽灯蕈-鹤观下-12个.json index 68fd465e..cda3c2b6 100644 --- a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/03-幽灯蕈-鹤观下-12个.json +++ b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/03-幽灯蕈-鹤观下-12个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2612.33, "y": -6508.18, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2600.82, "y": -6488.98, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2599.91, "y": -6476.02, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2600.78, "y": -6474.14, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -2610.88, "y": -6459.45, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2637.28, "y": -6437.77, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2644.97, "y": -6427.12, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2654.03, "y": -6435.92, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2662.73, "y": -6423.56, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -2656.02, "y": -6434.01, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -2589.73, "y": -6437.7, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -2574.07, "y": -6439.55, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -2573.79, "y": -6437.29, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -2554.33, "y": -6448.31, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -2543.49, "y": -6435.05, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -2545.75, "y": -6411.51, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -2553.18, "y": -6416.57, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -2556.48, "y": -6414.24, "type": "target", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -2561.9, "y": -6418.94, "type": "target", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": -2564.71, "y": -6418.29, "type": "target", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": -2573.53, "y": -6389.46, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": -2574.22, "y": -6387.5, "type": "target", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": -2571.68, "y": -6387.35, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": -2571.17, "y": -6385.5, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/04-幽灯蕈-笈名海滨-11个.json b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/04-幽灯蕈-笈名海滨-11个.json index 53181f44..2c00db20 100644 --- a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/04-幽灯蕈-笈名海滨-11个.json +++ b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/04-幽灯蕈-笈名海滨-11个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2606.28, "y": -6216.23, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2610.15, "y": -6232.87, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2606.73, "y": -6225.52, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2605.55, "y": -6235.36, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -2588.31, "y": -6206.93, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2585.64, "y": -6189.06, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2549.28, "y": -6151.72, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2538.0, "y": -6124.97, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2538.02, "y": -6125.01, "type": "target", @@ -71,6 +80,7 @@ "action": "stop_flying" }, { + "id": 10, "x": -2538.58, "y": -6122.03, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -2565.7, "y": -6131.2, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -2579.8, "y": -6124.82, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -2580.54, "y": -6123.28, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -2589.39, "y": -6106.52, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -2665.62, "y": -6121.24, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -2694.46, "y": -6107.55, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -2698.35, "y": -6106.42, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -2718.87, "y": -6100.66, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -2716.38, "y": -6127.57, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": -2701.59, "y": -6138.38, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": -2712.44, "y": -6141.94, "type": "target", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": -2710.09, "y": -6151.85, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": -2714.98, "y": -6145.58, "type": "target", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": -2711.62, "y": -6159.36, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": -2735.1, "y": -6182.74, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/05-幽灯蕈-知比山外-9个.json b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/05-幽灯蕈-知比山外-9个.json index 84ce1a05..ee665c12 100644 --- a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/05-幽灯蕈-知比山外-9个.json +++ b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/05-幽灯蕈-知比山外-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2556.34, "y": -6007.46, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2566.51, "y": -6009.4, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2637.49, "y": -5990.2, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2637.49, "y": -5990.2, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": -2638.59, "y": -5985.33, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2644.58, "y": -5989.94, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2653.97, "y": -5995.38, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2648.76, "y": -5988.7, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2655.65, "y": -6000.18, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -2633.69, "y": -6065.2, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -2635.34, "y": -6072.55, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -2633.6, "y": -6068.15, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -2635.04, "y": -6070.82, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -2638.11, "y": -6072.01, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -2638.23, "y": -6067.05, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/06-幽灯蕈-知比山内-4个.json b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/06-幽灯蕈-知比山内-4个.json index f541662b..d175a19e 100644 --- a/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/06-幽灯蕈-知比山内-4个.json +++ b/repo/pathing/地方特产/稻妻/幽灯蕈/幽灯蕈@黎歌/06-幽灯蕈-知比山内-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2556.35, "y": -6007.45, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2552.65, "y": -5995.71, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2550.16, "y": -5977.33, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2550.16, "y": -5977.33, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": -2541.24, "y": -5963.49, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2543.53, "y": -5959.32, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2569.38, "y": -5963.76, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2571.75, "y": -5969.18, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2583.86, "y": -5966.61, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/晶化骨髓/03-晶化骨髓-藤兜砦-3个.json b/repo/pathing/地方特产/稻妻/晶化骨髓/03-晶化骨髓-藤兜砦-3个.json index d3164465..db865b1d 100644 --- a/repo/pathing/地方特产/稻妻/晶化骨髓/03-晶化骨髓-藤兜砦-3个.json +++ b/repo/pathing/地方特产/稻妻/晶化骨髓/03-晶化骨髓-藤兜砦-3个.json @@ -49,7 +49,7 @@ "action": "" }, { - "id": 7, + "id": 6, "x": -2015.29, "y": -3619.22, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/晶化骨髓/05-晶化骨髓-踏鞴砂-10个.json b/repo/pathing/地方特产/稻妻/晶化骨髓/05-晶化骨髓-踏鞴砂-10个.json index 17a59b9f..5507b276 100644 --- a/repo/pathing/地方特产/稻妻/晶化骨髓/05-晶化骨髓-踏鞴砂-10个.json +++ b/repo/pathing/地方特产/稻妻/晶化骨髓/05-晶化骨髓-踏鞴砂-10个.json @@ -97,7 +97,7 @@ "action": "" }, { - "id": 13, + "id": 12, "x": -3037.85, "y": -3684.66, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/01-海灵芝-绀田村左上角-5个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/01-海灵芝-绀田村左上角-5个.json index 0f366a06..10bf3659 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/01-海灵芝-绀田村左上角-5个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/01-海灵芝-绀田村左上角-5个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -4041.37, "y": -2657.98, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -4022.29, "y": -2631.32, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -4023.0, "y": -2595.09, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -4031.2, "y": -2596.55, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -4043.53, "y": -2588.07, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -4030.11, "y": -2573.02, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -4038.82, "y": -2547.8, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/02-海灵芝-九条阵屋右-7个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/02-海灵芝-九条阵屋右-7个.json index d571ad08..ca2c9bbe 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/02-海灵芝-九条阵屋右-7个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/02-海灵芝-九条阵屋右-7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3437.11, "y": -3314.66, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3439.71, "y": -3346.08, "type": "path", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": -3437.81, "y": -3357.56, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -3436.95, "y": -3374.05, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": -3455.08, "y": -3387.56, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3480.23, "y": -3383.34, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3500.21, "y": -3367.57, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3523.89, "y": -3352.72, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -3541.48, "y": -3351.38, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -3556.91, "y": -3347.07, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -3575.9, "y": -3343.29, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -3592.52, "y": -3357.51, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -3593.13, "y": -3340.33, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -3607.2, "y": -3337.0, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -3605.46, "y": -3329.29, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -3610.75, "y": -3326.97, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -3623.85, "y": -3314.04, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -3646.62, "y": -3315.7, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -3650.94, "y": -3333.0, "type": "target", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": -3652.74, "y": -3335.48, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/03-海灵芝-九条阵屋左-2个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/03-海灵芝-九条阵屋左-2个.json index 9f526c9f..1a697b97 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/03-海灵芝-九条阵屋左-2个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/03-海灵芝-九条阵屋左-2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3437.62, "y": -3315.43, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3408.11, "y": -3334.53, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3386.61, "y": -3343.53, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -3372.56, "y": -3348.36, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3370.25, "y": -3358.3, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/04-海灵芝-九条阵屋下-7个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/04-海灵芝-九条阵屋下-7个.json index c005154a..fdb0a8f7 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/04-海灵芝-九条阵屋下-7个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/04-海灵芝-九条阵屋下-7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3396.91, "y": -3555.42, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3379.87, "y": -3559.25, "type": "path", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": -3364.17, "y": -3545.31, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -3390.9, "y": -3505.16, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3414.03, "y": -3496.22, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3441.59, "y": -3489.31, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3460.1, "y": -3477.01, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3454.91, "y": -3465.29, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -3435.02, "y": -3458.38, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -3417.02, "y": -3446.03, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -3405.27, "y": -3433.87, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -3393.41, "y": -3423.6, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -3367.69, "y": -3439.95, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -3338.64, "y": -3437.38, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -3329.63, "y": -3434.76, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/05-海灵芝-踏鞴沙右下-6个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/05-海灵芝-踏鞴沙右下-6个.json index 4cb76e0f..b0255a56 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/05-海灵芝-踏鞴沙右下-6个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/05-海灵芝-踏鞴沙右下-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3229.89, "y": -3872.3, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3257.98, "y": -3867.22, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3280.06, "y": -3857.16, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -3289.38, "y": -3829.37, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3281.89, "y": -3825.76, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3265.6, "y": -3817.68, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3269.84, "y": -3813.15, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3265.52, "y": -3795.15, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -3276.47, "y": -3771.35, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/06-海灵芝-踏鞴沙左上-9个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/06-海灵芝-踏鞴沙左上-9个.json index fbdcb259..e2161e52 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/06-海灵芝-踏鞴沙左上-9个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/06-海灵芝-踏鞴沙左上-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3020.0, "y": -3621.55, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3005.3, "y": -3585.37, "type": "path", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": -2988.51, "y": -3544.79, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -3014.8, "y": -3510.38, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3041.45, "y": -3504.57, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3037.81, "y": -3483.21, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3007.94, "y": -3497.41, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3001.53, "y": -3478.58, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2995.61, "y": -3466.52, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -3014.69, "y": -3446.32, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -3005.44, "y": -3428.96, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -3016.43, "y": -3397.36, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -3023.46, "y": -3372.25, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/07-海灵芝-蛇神之首右-5个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/07-海灵芝-蛇神之首右-5个.json index ba44e1b4..42595aff 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/07-海灵芝-蛇神之首右-5个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/07-海灵芝-蛇神之首右-5个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2402.94, "y": -3922.03, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2435.68, "y": -3901.92, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2446.7, "y": -3882.53, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -2473.25, "y": -3862.0, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": -2508.8, "y": -3839.41, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2524.2, "y": -3832.59, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2551.14, "y": -3827.29, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2588.74, "y": -3822.98, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2621.9, "y": -3813.19, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -2668.89, "y": -3795.24, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -2663.23, "y": -3809.88, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -2664.17, "y": -3814.21, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -2668.31, "y": -3827.6, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -2655.18, "y": -3844.53, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/08-海灵芝-越石村东北-8个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/08-海灵芝-越石村东北-8个.json index cdedeb50..89132e53 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/08-海灵芝-越石村东北-8个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/08-海灵芝-越石村东北-8个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -4028.49, "y": -4436.19, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -4020.35, "y": -4398.73, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -4004.56, "y": -4376.24, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -4008.72, "y": -4336.64, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -4009.86, "y": -4325.09, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -4030.14, "y": -4314.22, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -4033.41, "y": -4318.72, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -4051.56, "y": -4303.33, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -4058.29, "y": -4320.45, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -4064.53, "y": -4322.05, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -4021.66, "y": -4331.21, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -3989.76, "y": -4339.85, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -3979.38, "y": -4316.25, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -3965.75, "y": -4296.22, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -3948.36, "y": -4272.43, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -3947.41, "y": -4252.7, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -3941.9, "y": -4244.31, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -3916.96, "y": -4238.71, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/09-海灵芝-清籁丸西北-4个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/09-海灵芝-清籁丸西北-4个.json index 9bced683..e8ca0463 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/09-海灵芝-清籁丸西北-4个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/09-海灵芝-清籁丸西北-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3679.97, "y": -4282.12, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3683.69, "y": -4308.17, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3673.87, "y": -4322.79, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -3681.02, "y": -4316.2, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3664.48, "y": -4308.38, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3629.81, "y": -4277.4, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3649.32, "y": -4254.87, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/10-海灵芝-浅濑神社-4个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/10-海灵芝-浅濑神社-4个.json index a4144d15..9b44b8f5 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/10-海灵芝-浅濑神社-4个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/10-海灵芝-浅濑神社-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3700.24, "y": -4688.41, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3720.48, "y": -4665.04, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3750.83, "y": -4640.38, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -3768.24, "y": -4621.11, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3775.74, "y": -4612.28, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3778.5, "y": -4579.91, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3778.37, "y": -4563.69, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3767.05, "y": -4547.63, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -3752.34, "y": -4537.3, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -3722.09, "y": -4531.64, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -3707.09, "y": -4526.84, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -3703.26, "y": -4517.28, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/11-海灵芝-天云峠北方-3个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/11-海灵芝-天云峠北方-3个.json index facf9d17..3ec44d2f 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/11-海灵芝-天云峠北方-3个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/11-海灵芝-天云峠北方-3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -4168.78, "y": -4570.46, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -4212.17, "y": -4533.96, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -4248.14, "y": -4509.98, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -4243.92, "y": -4503.45, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -4236.1, "y": -4505.83, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -4232.71, "y": -4501.4, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -4235.5, "y": -4492.12, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/12-海灵芝-水月池东南远处离岛-2个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/12-海灵芝-水月池东南远处离岛-2个.json index 401ce23a..a79b78fa 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/12-海灵芝-水月池东南远处离岛-2个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/12-海灵芝-水月池东南远处离岛-2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -1316.16, "y": -3772.72, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -1332.44, "y": -3822.8, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -1353.18, "y": -3784.26, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/13-海灵芝-望泷村东-3个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/13-海灵芝-望泷村东-3个.json index 6f7315cf..ee42c307 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/13-海灵芝-望泷村东-3个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/13-海灵芝-望泷村东-3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -1058.99, "y": -3947.85, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -1006.87, "y": -3952.6, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -993.53, "y": -3955.21, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -986.75, "y": -3962.99, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -975.91, "y": -3960.45, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -960.39, "y": -3960.8, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -943.4, "y": -3954.65, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/14-海灵芝-望泷村西南-3个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/14-海灵芝-望泷村西南-3个.json index f3d97d86..b7d5f99f 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/14-海灵芝-望泷村西南-3个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/14-海灵芝-望泷村西南-3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -757.03, "y": -4004.17, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -749.83, "y": -4026.99, "type": "path", @@ -22,6 +24,7 @@ "action": "stop_flying" }, { + "id": 3, "x": -736.16, "y": -4060.87, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -710.71, "y": -4074.22, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -702.82, "y": -4091.26, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -709.61, "y": -4094.51, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -727.29, "y": -4075.41, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -746.09, "y": -4070.66, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -778.08, "y": -4076.47, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -807.27, "y": -4088.34, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -794.0, "y": -4104.57, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -807.46, "y": -4122.49, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/15-海灵芝-曚云神社西-6个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/15-海灵芝-曚云神社西-6个.json index dbee6665..5e7855d4 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/15-海灵芝-曚云神社西-6个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/15-海灵芝-曚云神社西-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -578.82, "y": -3833.72, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -560.9, "y": -3834.18, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -536.5, "y": -3839.34, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -517.17, "y": -3842.87, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -498.54, "y": -3818.53, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -485.75, "y": -3800.48, "type": "path", @@ -50,6 +56,7 @@ "action": "stop_flying" }, { + "id": 7, "x": -473.45, "y": -3786.36, "type": "path", @@ -57,6 +64,7 @@ "action": "stop_flying" }, { + "id": 8, "x": -469.46, "y": -3787.12, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -464.12, "y": -3788.88, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -445.86, "y": -3812.04, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -448.75, "y": -3817.47, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -439.01, "y": -3841.13, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -428.44, "y": -3865.9, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -399.67, "y": -3881.01, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -395.9, "y": -3883.39, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -365.42, "y": -3873.49, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/16-海灵芝-珊瑚宫西北-5个.json b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/16-海灵芝-珊瑚宫西北-5个.json index c9859411..e18ca4b1 100644 --- a/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/16-海灵芝-珊瑚宫西北-5个.json +++ b/repo/pathing/地方特产/稻妻/海灵芝/海灵芝@tignioj/16-海灵芝-珊瑚宫西北-5个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -766.14, "y": -3560.47, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -746.44, "y": -3542.42, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -720.01, "y": -3530.48, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -701.87, "y": -3536.39, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -677.23, "y": -3536.69, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -668.52, "y": -3522.71, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -661.64, "y": -3513.86, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -646.35, "y": -3518.57, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -610.57, "y": -3524.73, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -575.81, "y": -3531.39, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -548.15, "y": -3546.36, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -510.86, "y": -3573.53, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -491.7, "y": -3585.69, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -480.26, "y": -3601.7, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -475.08, "y": -3596.78, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -467.22, "y": -3599.14, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -458.36, "y": -3591.09, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/01-珊瑚珍珠-望泷村右上-9个.json b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/01-珊瑚珍珠-望泷村右上-9个.json index 2a736def..265309e3 100644 --- a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/01-珊瑚珍珠-望泷村右上-9个.json +++ b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/01-珊瑚珍珠-望泷村右上-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -1057.71, "y": -3946.0, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -950.94, "y": -3912.08, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -950.9, "y": -3912.04, "type": "target", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -955.27, "y": -3906.19, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -952.06, "y": -3902.32, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -951.52, "y": -3894.3, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -949.42, "y": -3887.3, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -957.6, "y": -3878.21, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -943.4, "y": -3837.88, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -945.8, "y": -3830.71, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -984.32, "y": -3841.31, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -990.14, "y": -3843.1, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/02-珊瑚珍珠-珊瑚宫下-7个.json b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/02-珊瑚珍珠-珊瑚宫下-7个.json index 24aa95e2..29c550a1 100644 --- a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/02-珊瑚珍珠-珊瑚宫下-7个.json +++ b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/02-珊瑚珍珠-珊瑚宫下-7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -757.93, "y": -3815.09, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -765.29, "y": -3873.98, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -765.29, "y": -3873.98, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -768.31, "y": -3876.83, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -811.51, "y": -3889.03, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -811.52, "y": -3889.03, "type": "target", @@ -50,6 +56,7 @@ "action": "stop_flying" }, { + "id": 7, "x": -837.4, "y": -3887.25, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -840.36, "y": -3887.9, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -835.21, "y": -3868.14, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -836.89, "y": -3866.65, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/03-珊瑚珍珠-珊瑚宫右-3个.json b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/03-珊瑚珍珠-珊瑚宫右-3个.json index 2e1e21d5..96353ab1 100644 --- a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/03-珊瑚珍珠-珊瑚宫右-3个.json +++ b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/03-珊瑚珍珠-珊瑚宫右-3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -757.94, "y": -3815.12, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -868.26, "y": -3775.23, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -868.24, "y": -3775.28, "type": "target", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -873.65, "y": -3760.95, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -875.17, "y": -3758.69, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/04-珊瑚珍珠-珊瑚宫上-12个.json b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/04-珊瑚珍珠-珊瑚宫上-12个.json index fce46656..9b44333b 100644 --- a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/04-珊瑚珍珠-珊瑚宫上-12个.json +++ b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/04-珊瑚珍珠-珊瑚宫上-12个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -765.78, "y": -3557.3, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -789.14, "y": -3616.91, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -789.14, "y": -3616.91, "type": "target", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -783.44, "y": -3620.93, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -780.96, "y": -3622.74, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -776.96, "y": -3628.97, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -763.99, "y": -3653.91, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -767.79, "y": -3654.88, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -771.1, "y": -3667.74, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -780.8, "y": -3693.59, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -775.27, "y": -3695.15, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -771.3, "y": -3695.36, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -774.93, "y": -3700.18, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -778.02, "y": -3699.74, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -780.42, "y": -3716.33, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/05-珊瑚珍珠-水月池-5个.json b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/05-珊瑚珍珠-水月池-5个.json index 0bf97351..6e097704 100644 --- a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/05-珊瑚珍珠-水月池-5个.json +++ b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/05-珊瑚珍珠-水月池-5个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -1134.51, "y": -3604.99, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -1146.98, "y": -3594.09, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -1152.87, "y": -3578.79, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -1157.21, "y": -3574.62, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -1166.87, "y": -3573.15, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -1146.39, "y": -3560.14, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -1147.31, "y": -3547.83, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -1152.01, "y": -3547.41, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -1163.77, "y": -3546.47, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -1174.61, "y": -3542.09, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -1170.3, "y": -3536.79, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/06-珊瑚珍珠-水月池下-6个.json b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/06-珊瑚珍珠-水月池下-6个.json index 26486159..ec586197 100644 --- a/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/06-珊瑚珍珠-水月池下-6个.json +++ b/repo/pathing/地方特产/稻妻/珊瑚真珠/珊瑚真珠@黎歌/06-珊瑚珍珠-水月池下-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -1057.75, "y": -3946.01, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -1040.16, "y": -3939.07, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -1038.17, "y": -3830.89, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -1038.17, "y": -3830.89, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": -1039.79, "y": -3820.63, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -1060.51, "y": -3820.77, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -1070.56, "y": -3799.67, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -1072.44, "y": -3804.38, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -1073.6, "y": -3824.24, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -1077.87, "y": -3820.37, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -1087.52, "y": -3832.17, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -1093.09, "y": -3817.72, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -1112.91, "y": -3832.35, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -1115.03, "y": -3832.37, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/绯樱绣球/09-绯樱绣球-鸣神大社神樱-3个.json b/repo/pathing/地方特产/稻妻/绯樱绣球/09-绯樱绣球-鸣神大社神樱-3个.json index 55cb8e1b..c977d02b 100644 --- a/repo/pathing/地方特产/稻妻/绯樱绣球/09-绯樱绣球-鸣神大社神樱-3个.json +++ b/repo/pathing/地方特产/稻妻/绯樱绣球/09-绯樱绣球-鸣神大社神樱-3个.json @@ -73,7 +73,7 @@ "action": "electro_collect" }, { - "id": 10, + "id": 9, "x": -4416.27, "y": -2477.59, "action": "", @@ -81,7 +81,7 @@ "type": "path" }, { - "id": 11, + "id": 10, "x": -4408.76, "y": -2466.94, "action": "", @@ -89,7 +89,7 @@ "type": "path" }, { - "id": 12, + "id": 11, "x": -4414.43, "y": -2459.37, "action": "electro_collect", diff --git a/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/02-血斛-名椎滩-13个.json b/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/02-血斛-名椎滩-13个.json index cabb14de..a7838a64 100644 --- a/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/02-血斛-名椎滩-13个.json +++ b/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/02-血斛-名椎滩-13个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2533.49, "y": -3539.62, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2533.37, "y": -3539.58, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2530.28, "y": -3546.16, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2515.36, "y": -3541.38, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -2566.65, "y": -3509.68, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2570.98, "y": -3502.84, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2599.85, "y": -3533.07, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2632.18, "y": -3558.09, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2627.0, "y": -3561.0, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -2619.36, "y": -3584.21, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -2643.27, "y": -3559.32, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -2637.37, "y": -3554.11, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -2638.32, "y": -3554.19, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -2718.95, "y": -3558.08, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -2740.35, "y": -3531.83, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -2752.59, "y": -3535.68, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -2780.28, "y": -3554.65, "type": "path", diff --git a/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/03-血斛-名椎滩-8个.json b/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/03-血斛-名椎滩-8个.json index cf716d63..dc186224 100644 --- a/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/03-血斛-名椎滩-8个.json +++ b/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/03-血斛-名椎滩-8个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2738.67, "y": -3414.84, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2741.97, "y": -3425.27, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2745.64, "y": -3451.46, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2765.8, "y": -3461.96, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -2789.48, "y": -3541.68, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2794.27, "y": -3539.2, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2825.88, "y": -3538.66, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2821.5, "y": -3560.51, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -2833.5, "y": -3560.13, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -2849.39, "y": -3596.6, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -2859.9, "y": -3593.98, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -2864.76, "y": -3610.98, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -2898.76, "y": -3638.04, "type": "path", diff --git a/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/04-血斛-名椎滩-6个.json b/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/04-血斛-名椎滩-6个.json index ddbbe9b6..036a9367 100644 --- a/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/04-血斛-名椎滩-6个.json +++ b/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/04-血斛-名椎滩-6个.json @@ -9,66 +9,77 @@ }, "positions": [ { + "id": 1, "x": -2738.26, "y": -3414.7, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": -2720.98, "y": -3394.76, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": -2672.37, "y": -3397.38, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": -2654.42, "y": -3419.09, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": -2627.26, "y": -3411.74, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": -2611.87, "y": -3431.47, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": -2614.71, "y": -3447.0, "type": "path", "move_mode": "walk" }, { + "id": 8, "x": -2619.61, "y": -3484.03, "type": "path", "move_mode": "walk" }, { + "id": 9, "x": -2635.78, "y": -3519.17, "type": "path", "move_mode": "walk" }, { + "id": 10, "x": -2655.91, "y": -3503.2, "type": "path", "move_mode": "walk" }, { + "id": 11, "x": -2658.22, "y": -3468.3, "type": "path", diff --git a/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/05-血斛-蛇神之首-12个.json b/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/05-血斛-蛇神之首-12个.json index d180da3c..364a67b0 100644 --- a/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/05-血斛-蛇神之首-12个.json +++ b/repo/pathing/地方特产/稻妻/血斛/血斛@起个名字好难/05-血斛-蛇神之首-12个.json @@ -105,7 +105,7 @@ "action": "" }, { - "id": 15, + "id": 13, "x": -2318.3, "y": -3910.4, "action": "stop_flying", @@ -113,7 +113,7 @@ "type": "path" }, { - "id": 16, + "id": 14, "x": -2317.3, "y": -3910.21, "action": "", @@ -121,7 +121,7 @@ "type": "target" }, { - "id": 17, + "id": 15, "x": -2315.04, "y": -3907.17, "action": "", @@ -129,7 +129,7 @@ "type": "target" }, { - "id": 18, + "id": 16, "x": -2317.04, "y": -3904.94, "action": "", @@ -137,7 +137,7 @@ "type": "target" }, { - "id": 19, + "id": 17, "x": -2336.41, "y": -3904.91, "action": "", @@ -145,7 +145,7 @@ "type": "target" }, { - "id": 20, + "id": 18, "x": -2339.3, "y": -3904.21, "action": "", @@ -153,7 +153,7 @@ "type": "target" }, { - "id": 21, + "id": 19, "x": -2336.6, "y": -3898.23, "action": "", diff --git a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/07-鬼兜虫-踏鞴砂(西北侧)-7个(中途会引怪).json b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/07-鬼兜虫-踏鞴砂(西北侧)-7个(中途会引怪).json index b0bfcaca..483588e2 100644 --- a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/07-鬼兜虫-踏鞴砂(西北侧)-7个(中途会引怪).json +++ b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/07-鬼兜虫-踏鞴砂(西北侧)-7个(中途会引怪).json @@ -145,7 +145,7 @@ "action": "" }, { - "id": 19, + "id": 18, "x": -2973.42, "y": -3702.83, "type": "path", @@ -153,7 +153,7 @@ "action": "" }, { - "id": 20, + "id": 19, "x": -2973.56, "y": -3701.75, "type": "target", @@ -161,7 +161,7 @@ "action": "" }, { - "id": 21, + "id": 20, "x": -2973.24, "y": -3703.08, "type": "path", diff --git a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/11-鬼兜虫-八酝岛(西南侧)-1个.json b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/11-鬼兜虫-八酝岛(西南侧)-1个.json index c110c51b..6dd53243 100644 --- a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/11-鬼兜虫-八酝岛(西南侧)-1个.json +++ b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/11-鬼兜虫-八酝岛(西南侧)-1个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 8, + "id": 1, "x": -2404.76, "y": -3922.83, "action": "", @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 9, + "id": 2, "x": -2347.37, "y": -4032.2, "action": "stop_flying", @@ -26,7 +26,7 @@ "type": "path" }, { - "id": 10, + "id": 3, "x": -2342.43, "y": -4031.45, "type": "target", diff --git a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/12-鬼兜虫-八酝岛(中部)-1个 .json b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/12-鬼兜虫-八酝岛(中部)-1个 .json index 13c327e2..0a9a1afa 100644 --- a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/12-鬼兜虫-八酝岛(中部)-1个 .json +++ b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/12-鬼兜虫-八酝岛(中部)-1个 .json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 12, + "id": 1, "x": -2405.63, "y": -3922.05, "action": "", @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 13, + "id": 2, "x": -2379.14, "y": -3863.71, "action": "", @@ -25,7 +25,7 @@ "type": "path" }, { - "id": 14, + "id": 3, "x": -2354.95, "y": -3847.07, "action": "", @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 15, + "id": 4, "x": -2350.11, "y": -3842.4, "action": "", @@ -41,7 +41,7 @@ "type": "path" }, { - "id": 16, + "id": 5, "x": -2353.26, "y": -3844.69, "action": "", diff --git a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/13-鬼兜虫-八酝岛(西北侧龙骨南)-1个.json b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/13-鬼兜虫-八酝岛(西北侧龙骨南)-1个.json index 32b11990..042e508f 100644 --- a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/13-鬼兜虫-八酝岛(西北侧龙骨南)-1个.json +++ b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/13-鬼兜虫-八酝岛(西北侧龙骨南)-1个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 17, + "id": 1, "x": -2404.94, "y": -3922.6, "action": "", @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 18, + "id": 2, "x": -2388.44, "y": -3912.94, "action": "", @@ -25,7 +25,7 @@ "type": "path" }, { - "id": 19, + "id": 3, "x": -2291.76, "y": -3907.77, "action": "stop_flying", @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 20, + "id": 4, "x": -2289.15, "y": -3903.51, "action": "", diff --git a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/14-鬼兜虫-八酝岛(西北侧龙骨北)-1个.json b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/14-鬼兜虫-八酝岛(西北侧龙骨北)-1个.json index c9104699..829e383a 100644 --- a/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/14-鬼兜虫-八酝岛(西北侧龙骨北)-1个.json +++ b/repo/pathing/地方特产/稻妻/鬼兜虫/无草神@起个名字好难/14-鬼兜虫-八酝岛(西北侧龙骨北)-1个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 21, + "id": 1, "x": -2404.9, "y": -3921.68, "action": "", @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 22, + "id": 2, "x": -2252.73, "y": -3876.15, "action": "stop_flying", @@ -25,7 +25,7 @@ "type": "path" }, { - "id": 23, + "id": 3, "x": -2257.77, "y": -3885.98, "action": "", diff --git a/repo/pathing/地方特产/稻妻/鬼兜虫/有草神@起个名字好难/03-鬼兜虫-鸣神大社-6个.json b/repo/pathing/地方特产/稻妻/鬼兜虫/有草神@起个名字好难/03-鬼兜虫-鸣神大社-6个.json index 4f3ecff1..7900c52a 100644 --- a/repo/pathing/地方特产/稻妻/鬼兜虫/有草神@起个名字好难/03-鬼兜虫-鸣神大社-6个.json +++ b/repo/pathing/地方特产/稻妻/鬼兜虫/有草神@起个名字好难/03-鬼兜虫-鸣神大社-6个.json @@ -193,7 +193,7 @@ "type": "target" }, { - "id": 25, + "id": 24, "x": -4507.34, "y": -2519.43, "action": "", @@ -201,7 +201,7 @@ "type": "path" }, { - "id": 26, + "id": 25, "x": -4502.97, "y": -2520.28, "action": "", @@ -209,7 +209,7 @@ "type": "path" }, { - "id": 27, + "id": 26, "x": -4496.18, "y": -2512.55, "action": "", @@ -217,7 +217,7 @@ "type": "path" }, { - "id": 28, + "id": 27, "x": -4492.25, "y": -2504.64, "action": "", @@ -225,7 +225,7 @@ "type": "path" }, { - "id": 29, + "id": 28, "x": -4483.0, "y": -2498.67, "action": "", @@ -233,7 +233,7 @@ "type": "path" }, { - "id": 30, + "id": 29, "x": -4470.31, "y": -2492.21, "action": "", @@ -241,7 +241,7 @@ "type": "path" }, { - "id": 31, + "id": 30, "x": -4460.61, "y": -2476.77, "action": "", @@ -249,7 +249,7 @@ "type": "path" }, { - "id": 32, + "id": 31, "x": -4462.87, "y": -2461.15, "action": "", @@ -257,7 +257,7 @@ "type": "path" }, { - "id": 33, + "id": 32, "x": -4463.69, "y": -2458.29, "action": "nahida_collect", diff --git a/repo/pathing/地方特产/稻妻/鬼兜虫/有草神@起个名字好难/07-鬼兜虫-踏鞴砂(东北侧)-1个.json b/repo/pathing/地方特产/稻妻/鬼兜虫/有草神@起个名字好难/07-鬼兜虫-踏鞴砂(东北侧)-1个.json index 5e10f452..25e559b0 100644 --- a/repo/pathing/地方特产/稻妻/鬼兜虫/有草神@起个名字好难/07-鬼兜虫-踏鞴砂(东北侧)-1个.json +++ b/repo/pathing/地方特产/稻妻/鬼兜虫/有草神@起个名字好难/07-鬼兜虫-踏鞴砂(东北侧)-1个.json @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 7, + "id": 4, "x": -3199.29, "y": -3619.33, "type": "path", diff --git a/repo/pathing/地方特产/稻妻/鸣草/01-鸣草-踏鞴砂1号线-15个.json b/repo/pathing/地方特产/稻妻/鸣草/01-鸣草-踏鞴砂1号线-15个.json index ef026033..59c1d458 100644 --- a/repo/pathing/地方特产/稻妻/鸣草/01-鸣草-踏鞴砂1号线-15个.json +++ b/repo/pathing/地方特产/稻妻/鸣草/01-鸣草-踏鞴砂1号线-15个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3288.14, "y": -3652.53, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3293.74, "y": -3626.98, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3302.01, "y": -3628.41, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -3283.25, "y": -3631.22, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3277.31, "y": -3630.14, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3270.32, "y": -3640.33, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3253.05, "y": -3647.33, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3245.2, "y": -3660.23, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -3227.79, "y": -3662.13, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -3221.66, "y": -3667.6, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -3221.86, "y": -3688.04, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -3230.6, "y": -3690.66, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -3231.21, "y": -3703.55, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -3221.78, "y": -3688.91, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -3230.05, "y": -3690.54, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -3259.32, "y": -3701.27, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -3275.66, "y": -3719.79, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -3251.16, "y": -3723.38, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -3245.63, "y": -3741.83, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": -3227.88, "y": -3788.8, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": -3208.14, "y": -3766.52, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": -3179.11, "y": -3766.42, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": -3170.92, "y": -3772.85, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": -3170.14, "y": -3796.15, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": -3173.86, "y": -3796.74, "type": "path", @@ -183,6 +208,7 @@ "action": "" }, { + "id": 26, "x": -3108.79, "y": -3781.9, "type": "path", @@ -190,6 +216,7 @@ "action": "" }, { + "id": 27, "x": -3088.96, "y": -3791.26, "type": "path", @@ -197,6 +224,7 @@ "action": "" }, { + "id": 28, "x": -3072.62, "y": -3783.44, "type": "path", @@ -204,6 +232,7 @@ "action": "" }, { + "id": 29, "x": -3077.67, "y": -3804.67, "type": "path", @@ -211,6 +240,7 @@ "action": "" }, { + "id": 30, "x": -3086.45, "y": -3807.19, "type": "path", diff --git a/repo/pathing/地方特产/稻妻/鸣草/02-鸣草-踏鞴砂2号线-6个.json b/repo/pathing/地方特产/稻妻/鸣草/02-鸣草-踏鞴砂2号线-6个.json index 75cd43a8..fa000f24 100644 --- a/repo/pathing/地方特产/稻妻/鸣草/02-鸣草-踏鞴砂2号线-6个.json +++ b/repo/pathing/地方特产/稻妻/鸣草/02-鸣草-踏鞴砂2号线-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3288.18, "y": -3652.57, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3293.53, "y": -3629.51, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3297.03, "y": -3627.47, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -3291.82, "y": -3631.64, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3269.73, "y": -3633.45, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3241.95, "y": -3656.94, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3238.5, "y": -3673.07, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3236.34, "y": -3675.24, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -3233.05, "y": -3674.1, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -3205.42, "y": -3677.05, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -3187.87, "y": -3656.39, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -3184.79, "y": -3660.61, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -3164.45, "y": -3653.93, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -3157.8, "y": -3630.75, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -3137.73, "y": -3619.9, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -3110.48, "y": -3649.88, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -3099.97, "y": -3665.93, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -3097.08, "y": -3668.47, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -3092.11, "y": -3680.58, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": -3077.68, "y": -3685.69, "type": "path", diff --git a/repo/pathing/地方特产/稻妻/鸣草/04-鸣草-越石村1号线-7个.json b/repo/pathing/地方特产/稻妻/鸣草/04-鸣草-越石村1号线-7个.json index 40f665db..dcf446fb 100644 --- a/repo/pathing/地方特产/稻妻/鸣草/04-鸣草-越石村1号线-7个.json +++ b/repo/pathing/地方特产/稻妻/鸣草/04-鸣草-越石村1号线-7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -4023.37, "y": -4428.83, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -4022.2, "y": -4436.17, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -4031.12, "y": -4431.59, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -4015.71, "y": -4419.05, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -4010.72, "y": -4428.3, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3998.8, "y": -4414.14, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -4008.6, "y": -4405.26, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3989.86, "y": -4379.53, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -4008.03, "y": -4351.43, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -4023.4, "y": -4339.16, "type": "path", diff --git a/repo/pathing/地方特产/稻妻/鸣草/05-鸣草-越石村2号线-6个.json b/repo/pathing/地方特产/稻妻/鸣草/05-鸣草-越石村2号线-6个.json index a41ca5e7..9ee7e6d8 100644 --- a/repo/pathing/地方特产/稻妻/鸣草/05-鸣草-越石村2号线-6个.json +++ b/repo/pathing/地方特产/稻妻/鸣草/05-鸣草-越石村2号线-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -4023.3, "y": -4428.87, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -4003.91, "y": -4442.38, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3985.09, "y": -4476.36, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -3978.59, "y": -4486.8, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3977.02, "y": -4500.15, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3990.14, "y": -4506.2, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3995.44, "y": -4503.42, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -4002.18, "y": -4500.75, "type": "path", @@ -64,6 +72,7 @@ "action": "stop_flying" }, { + "id": 9, "x": -4005.99, "y": -4517.03, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -3993.6, "y": -4510.08, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -3979.8, "y": -4514.38, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -3975.71, "y": -4513.82, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -3961.72, "y": -4511.31, "type": "path", diff --git a/repo/pathing/地方特产/纳塔/微光角菌/微光角菌@曦/03-微光角菌-烟谜主02-12个.json b/repo/pathing/地方特产/纳塔/微光角菌/微光角菌@曦/03-微光角菌-烟谜主02-12个.json index 5ed21608..e1a44bc2 100644 --- a/repo/pathing/地方特产/纳塔/微光角菌/微光角菌@曦/03-微光角菌-烟谜主02-12个.json +++ b/repo/pathing/地方特产/纳塔/微光角菌/微光角菌@曦/03-微光角菌-烟谜主02-12个.json @@ -169,7 +169,7 @@ "type": "path" }, { - "id": 27, + "id": 21, "x": 9675.01, "y": -1705.85, "action": "", @@ -177,7 +177,7 @@ "type": "target" }, { - "id": 28, + "id": 22, "x": 9676.58, "y": -1697.73, "action": "", @@ -185,7 +185,7 @@ "type": "target" }, { - "id": 29, + "id": 23, "x": 9675.72, "y": -1697.4, "action": "", diff --git a/repo/pathing/地方特产/纳塔/微光角菌/微光角菌@曦/04-微光角菌-翘枝崖-5个.json b/repo/pathing/地方特产/纳塔/微光角菌/微光角菌@曦/04-微光角菌-翘枝崖-5个.json index cd0b42e5..1ded1253 100644 --- a/repo/pathing/地方特产/纳塔/微光角菌/微光角菌@曦/04-微光角菌-翘枝崖-5个.json +++ b/repo/pathing/地方特产/纳塔/微光角菌/微光角菌@曦/04-微光角菌-翘枝崖-5个.json @@ -49,7 +49,7 @@ "type": "path" }, { - "id": 7, + "id": 6, "x": 9796.51, "y": -1427.28, "action": "stop_flying", @@ -57,7 +57,7 @@ "type": "target" }, { - "id": 8, + "id": 7, "x": 9813.23, "y": -1443.28, "action": "", @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 9, + "id": 8, "x": 9818.29, "y": -1434.47, "action": "", @@ -73,7 +73,7 @@ "type": "target" }, { - "id": 10, + "id": 9, "x": 9798.42, "y": -1437.87, "action": "", @@ -81,7 +81,7 @@ "type": "path" }, { - "id": 11, + "id": 10, "x": 9774.88, "y": -1419.26, "action": "stop_flying", @@ -89,7 +89,7 @@ "type": "target" }, { - "id": 12, + "id": 11, "x": 9749.13, "y": -1445.03, "action": "", @@ -97,7 +97,7 @@ "type": "path" }, { - "id": 13, + "id": 12, "x": 9735.84, "y": -1450.6, "action": "", @@ -105,7 +105,7 @@ "type": "path" }, { - "id": 14, + "id": 13, "x": 9716.68, "y": -1482.39, "action": "", diff --git a/repo/pathing/地方特产/纳塔/枯叶紫英/01-枯叶紫英-火鹦之塔-18个.json b/repo/pathing/地方特产/纳塔/枯叶紫英/01-枯叶紫英-火鹦之塔-18个.json index f9426124..79ad7e26 100644 --- a/repo/pathing/地方特产/纳塔/枯叶紫英/01-枯叶紫英-火鹦之塔-18个.json +++ b/repo/pathing/地方特产/纳塔/枯叶紫英/01-枯叶紫英-火鹦之塔-18个.json @@ -137,7 +137,7 @@ "type": "path" }, { - "id": 18, + "id": 17, "x": 9881.31, "y": -593.38, "action": "stop_flying", @@ -145,7 +145,7 @@ "type": "path" }, { - "id": 19, + "id": 18, "x": 9898.0, "y": -540.47, "action": "", @@ -153,7 +153,7 @@ "type": "path" }, { - "id": 20, + "id": 19, "x": 9903.25, "y": -500.6, "action": "", @@ -161,7 +161,7 @@ "type": "path" }, { - "id": 21, + "id": 20, "x": 9912.33, "y": -497.69, "action": "", @@ -169,7 +169,7 @@ "type": "target" }, { - "id": 22, + "id": 21, "x": 9886.78, "y": -486.06, "action": "", @@ -177,7 +177,7 @@ "type": "target" }, { - "id": 23, + "id": 22, "x": 9853.92, "y": -498.4, "action": "", @@ -185,7 +185,7 @@ "type": "target" }, { - "id": 24, + "id": 23, "x": 9850.03, "y": -493.73, "action": "", @@ -193,7 +193,7 @@ "type": "target" }, { - "id": 25, + "id": 24, "x": 9851.97, "y": -536.63, "action": "", @@ -201,7 +201,7 @@ "type": "target" }, { - "id": 26, + "id": 25, "x": 9846.5, "y": -512.36, "action": "", @@ -209,7 +209,7 @@ "type": "path" }, { - "id": 27, + "id": 26, "x": 9828.06, "y": -527.65, "action": "", @@ -217,7 +217,7 @@ "type": "path" }, { - "id": 28, + "id": 27, "x": 9820.47, "y": -523.93, "action": "", @@ -225,7 +225,7 @@ "type": "target" }, { - "id": 29, + "id": 28, "x": 9808.87, "y": -528.46, "action": "", @@ -233,7 +233,7 @@ "type": "path" }, { - "id": 30, + "id": 29, "x": 9765.8, "y": -512.21, "action": "", @@ -241,7 +241,7 @@ "type": "path" }, { - "id": 31, + "id": 30, "x": 9765.11, "y": -509.24, "action": "", @@ -249,7 +249,7 @@ "type": "path" }, { - "id": 32, + "id": 31, "x": 9745.82, "y": -521.8, "action": "", @@ -257,7 +257,7 @@ "type": "path" }, { - "id": 33, + "id": 32, "x": 9739.46, "y": -515.16, "action": "", @@ -265,7 +265,7 @@ "type": "path" }, { - "id": 34, + "id": 33, "x": 9745.81, "y": -506.4, "action": "", @@ -273,7 +273,7 @@ "type": "target" }, { - "id": 35, + "id": 34, "x": 9743.74, "y": -490.07, "action": "", diff --git a/repo/pathing/地方特产/纳塔/枯叶紫英/08-枯叶紫英-托佐兹之岛-2个.json b/repo/pathing/地方特产/纳塔/枯叶紫英/08-枯叶紫英-托佐兹之岛-2个.json index 174c2d9f..5e71cb31 100644 --- a/repo/pathing/地方特产/纳塔/枯叶紫英/08-枯叶紫英-托佐兹之岛-2个.json +++ b/repo/pathing/地方特产/纳塔/枯叶紫英/08-枯叶紫英-托佐兹之岛-2个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 16, + "id": 1, "x": 9670.16, "y": 171.38, "type": "teleport", @@ -17,7 +17,7 @@ "action": "force_tp" }, { - "id": 17, + "id": 2, "x": 9685.2, "y": 248.93, "type": "target", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 18, + "id": 3, "x": 9691.01, "y": 261.84, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/浪沫羽鳃/01-浪沫羽鳃-流泉之众上-11个.json b/repo/pathing/地方特产/纳塔/浪沫羽鳃/01-浪沫羽鳃-流泉之众上-11个.json index abac7fe7..59b6531a 100644 --- a/repo/pathing/地方特产/纳塔/浪沫羽鳃/01-浪沫羽鳃-流泉之众上-11个.json +++ b/repo/pathing/地方特产/纳塔/浪沫羽鳃/01-浪沫羽鳃-流泉之众上-11个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8918.96, "y": -2679.08, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8877.21, "y": -2724.69, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8886.09, "y": -2858.32, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8886.09, "y": -2858.32, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 8884.42, "y": -2858.05, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8879.91, "y": -2861.53, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8875.49, "y": -2864.4, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8837.7, "y": -2891.9, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8856.5, "y": -2946.49, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8841.35, "y": -2947.59, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8820.69, "y": -2946.1, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8817.2, "y": -2941.55, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8813.13, "y": -2939.88, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8806.93, "y": -2931.45, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 8805.95, "y": -2891.35, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 8798.94, "y": -2856.0, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 8781.02, "y": -2820.23, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 8769.53, "y": -2824.33, "type": "target", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 8771.06, "y": -2829.92, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/浪沫羽鳃/02-浪沫羽鳃-溶水域七天神像下-8个.json b/repo/pathing/地方特产/纳塔/浪沫羽鳃/02-浪沫羽鳃-溶水域七天神像下-8个.json index 696df990..fbcdffbc 100644 --- a/repo/pathing/地方特产/纳塔/浪沫羽鳃/02-浪沫羽鳃-溶水域七天神像下-8个.json +++ b/repo/pathing/地方特产/纳塔/浪沫羽鳃/02-浪沫羽鳃-溶水域七天神像下-8个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8580.07, "y": -2658.54, "type": "teleport", @@ -15,6 +16,7 @@ "action": "force_tp" }, { + "id": 2, "x": 8600.33, "y": -2681.55, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8600.39, "y": -2691.42, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8559.64, "y": -2793.49, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8559.64, "y": -2793.49, "type": "target", @@ -43,6 +48,7 @@ "action": "stop_flying" }, { + "id": 6, "x": 8557.69, "y": -2794.96, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8535.94, "y": -2793.06, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8523.3, "y": -2824.97, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8522.72, "y": -2827.12, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8481.11, "y": -2814.29, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8470.75, "y": -2792.0, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8466.54, "y": -2783.95, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8450.0, "y": -2787.0, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8439.75, "y": -2781.25, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 8440.88, "y": -2787.14, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/浪沫羽鳃/03-浪沫羽鳃-溶水域七天神像左-14个.json b/repo/pathing/地方特产/纳塔/浪沫羽鳃/03-浪沫羽鳃-溶水域七天神像左-14个.json index 5515b726..2352b1ae 100644 --- a/repo/pathing/地方特产/纳塔/浪沫羽鳃/03-浪沫羽鳃-溶水域七天神像左-14个.json +++ b/repo/pathing/地方特产/纳塔/浪沫羽鳃/03-浪沫羽鳃-溶水域七天神像左-14个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8580.07, "y": -2658.54, "type": "teleport", @@ -15,6 +16,7 @@ "action": "force_tp" }, { + "id": 2, "x": 8581.09, "y": -2658.42, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8609.7, "y": -2625.89, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8636.55, "y": -2632.1, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8675.72, "y": -2654.11, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8693.13, "y": -2655.09, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8699.99, "y": -2655.58, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8719.74, "y": -2663.85, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8738.56, "y": -2638.67, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8739.73, "y": -2617.46, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8758.7, "y": -2602.98, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8764.74, "y": -2601.39, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8744.19, "y": -2588.48, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8741.37, "y": -2592.38, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 8736.24, "y": -2597.47, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 8735.77, "y": -2596.64, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 8770.44, "y": -2560.56, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 8774.93, "y": -2557.15, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 8800.63, "y": -2529.53, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 8811.26, "y": -2513.28, "type": "target", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 8803.27, "y": -2488.23, "type": "target", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 8802.56, "y": -2486.53, "type": "target", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 8796.19, "y": -2482.14, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": 8794.43, "y": -2451.93, "type": "target", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": 8794.01, "y": -2445.8, "type": "target", @@ -183,6 +208,7 @@ "action": "" }, { + "id": 26, "x": 8824.24, "y": -2451.29, "type": "path", @@ -190,6 +216,7 @@ "action": "" }, { + "id": 27, "x": 8824.55, "y": -2457.25, "type": "path", @@ -197,6 +224,7 @@ "action": "" }, { + "id": 28, "x": 8841.2, "y": -2476.95, "type": "target", @@ -204,6 +232,7 @@ "action": "" }, { + "id": 29, "x": 8852.84, "y": -2477.08, "type": "path", @@ -211,6 +240,7 @@ "action": "" }, { + "id": 30, "x": 8888.89, "y": -2452.32, "type": "path", @@ -218,6 +248,7 @@ "action": "" }, { + "id": 31, "x": 8882.02, "y": -2436.09, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/浪沫羽鳃/04-浪沫羽鳃-溶水域七天神像右-12个.json b/repo/pathing/地方特产/纳塔/浪沫羽鳃/04-浪沫羽鳃-溶水域七天神像右-12个.json index 46830956..e874567f 100644 --- a/repo/pathing/地方特产/纳塔/浪沫羽鳃/04-浪沫羽鳃-溶水域七天神像右-12个.json +++ b/repo/pathing/地方特产/纳塔/浪沫羽鳃/04-浪沫羽鳃-溶水域七天神像右-12个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8580.07, "y": -2658.54, "type": "teleport", @@ -15,6 +16,7 @@ "action": "force_tp" }, { + "id": 2, "x": 8581.24, "y": -2658.27, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8611.12, "y": -2618.76, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8609.65, "y": -2605.06, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8637.33, "y": -2586.69, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8668.89, "y": -2582.64, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8665.78, "y": -2576.67, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8654.35, "y": -2592.12, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8641.79, "y": -2572.13, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8643.48, "y": -2569.67, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8640.25, "y": -2562.99, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8624.7, "y": -2517.68, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8620.25, "y": -2518.36, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8620.26, "y": -2516.28, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 8629.4, "y": -2509.35, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 8694.76, "y": -2532.08, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 8699.67, "y": -2540.68, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 8677.41, "y": -2500.06, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 8704.93, "y": -2490.16, "type": "target", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 8705.0, "y": -2494.5, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 8707.85, "y": -2491.14, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/浪沫羽鳃/05-浪沫羽鳃-溶水域右上-9个.json b/repo/pathing/地方特产/纳塔/浪沫羽鳃/05-浪沫羽鳃-溶水域右上-9个.json index 31534f47..e104794d 100644 --- a/repo/pathing/地方特产/纳塔/浪沫羽鳃/05-浪沫羽鳃-溶水域右上-9个.json +++ b/repo/pathing/地方特产/纳塔/浪沫羽鳃/05-浪沫羽鳃-溶水域右上-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8637.69, "y": -2446.61, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8644.91, "y": -2432.85, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8703.57, "y": -2361.9, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8703.53, "y": -2361.89, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 8714.25, "y": -2362.0, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8713.15, "y": -2372.28, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8720.25, "y": -2370.5, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8716.83, "y": -2375.87, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8727.75, "y": -2378.75, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8773.62, "y": -2389.54, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8791.34, "y": -2391.46, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8792.67, "y": -2386.73, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8780.18, "y": -2379.12, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8758.73, "y": -2325.43, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 8732.22, "y": -2323.27, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 8741.81, "y": -2316.99, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 8760.76, "y": -2324.7, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 8825.66, "y": -2303.04, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 8838.94, "y": -2295.86, "type": "target", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 8838.48, "y": -2290.19, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@柠檬茶叶/灼灼彩菊-圣火竞技场-41朵.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@柠檬茶叶/灼灼彩菊-圣火竞技场-41朵.json index 8a8f9025..5098c203 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@柠檬茶叶/灼灼彩菊-圣火竞技场-41朵.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@柠檬茶叶/灼灼彩菊-圣火竞技场-41朵.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 9084.15, "y": -1965.33, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 9095.89, "y": -1971.31, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 9133.14, "y": -1977.81, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 9155.06, "y": -1991.3, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 9175.11, "y": -2010.32, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 9175.43, "y": -2015.54, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 9172.54, "y": -2014.98, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 9172.46, "y": -2014.08, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 9156.97, "y": -2028.77, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 9152.96, "y": -2045.49, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 9151.07, "y": -2048.06, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 9146.63, "y": -2057.84, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 9175.26, "y": -2076.09, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 9167.05, "y": -2087.14, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 9144.8, "y": -2080.38, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 9139.15, "y": -2111.33, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 9117.9, "y": -2120.47, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 9061.89, "y": -2096.81, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 9060.67, "y": -2092.63, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 9024.15, "y": -2074.79, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 9012.5, "y": -2071.41, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 9008.47, "y": -2056.85, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 9006.59, "y": -2052.76, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": 9006.63, "y": -2052.75, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": 9009.72, "y": -2033.12, "type": "path", @@ -183,6 +208,7 @@ "action": "" }, { + "id": 26, "x": 9023.85, "y": -2023.69, "type": "path", @@ -190,6 +216,7 @@ "action": "" }, { + "id": 27, "x": 9023.89, "y": -2023.72, "type": "path", @@ -197,6 +224,7 @@ "action": "" }, { + "id": 28, "x": 9014.86, "y": -2011.34, "type": "path", @@ -204,6 +232,7 @@ "action": "" }, { + "id": 29, "x": 8987.01, "y": -2011.93, "type": "path", @@ -211,6 +240,7 @@ "action": "" }, { + "id": 30, "x": 8986.01, "y": -2012.38, "type": "path", @@ -218,6 +248,7 @@ "action": "" }, { + "id": 31, "x": 8960.98, "y": -1996.83, "type": "path", @@ -225,6 +256,7 @@ "action": "" }, { + "id": 32, "x": 8934.22, "y": -1965.45, "type": "path", @@ -232,6 +264,7 @@ "action": "" }, { + "id": 33, "x": 8924.4, "y": -1965.53, "type": "path", @@ -239,6 +272,7 @@ "action": "" }, { + "id": 34, "x": 8923.8, "y": -1965.33, "type": "path", @@ -246,6 +280,7 @@ "action": "" }, { + "id": 35, "x": 8921.16, "y": -1964.19, "type": "path", @@ -253,6 +288,7 @@ "action": "" }, { + "id": 36, "x": 8919.78, "y": -1940.26, "type": "path", @@ -260,6 +296,7 @@ "action": "" }, { + "id": 37, "x": 8927.59, "y": -1928.91, "type": "path", @@ -267,6 +304,7 @@ "action": "" }, { + "id": 38, "x": 8930.65, "y": -1924.51, "type": "path", @@ -274,6 +312,7 @@ "action": "" }, { + "id": 39, "x": 8906.35, "y": -1905.2, "type": "path", @@ -281,6 +320,7 @@ "action": "" }, { + "id": 40, "x": 8893.12, "y": -1913.92, "type": "path", @@ -288,6 +328,7 @@ "action": "" }, { + "id": 41, "x": 8891.51, "y": -1914.53, "type": "path", @@ -295,6 +336,7 @@ "action": "" }, { + "id": 42, "x": 8888.77, "y": -1915.14, "type": "target", @@ -302,6 +344,7 @@ "action": "" }, { + "id": 43, "x": 8890.79, "y": -1886.13, "type": "path", @@ -309,6 +352,7 @@ "action": "" }, { + "id": 44, "x": 8889.02, "y": -1893.51, "type": "path", @@ -316,6 +360,7 @@ "action": "" }, { + "id": 45, "x": 8912.71, "y": -1877.99, "type": "path", @@ -323,6 +368,7 @@ "action": "" }, { + "id": 46, "x": 8899.5, "y": -1844.76, "type": "path", @@ -330,6 +376,7 @@ "action": "" }, { + "id": 47, "x": 8906.24, "y": -1834.77, "type": "path", @@ -337,6 +384,7 @@ "action": "" }, { + "id": 48, "x": 8908.97, "y": -1824.54, "type": "path", @@ -344,6 +392,7 @@ "action": "" }, { + "id": 49, "x": 8908.39, "y": -1822.89, "type": "path", @@ -351,6 +400,7 @@ "action": "" }, { + "id": 50, "x": 8900.43, "y": -1822.1, "type": "path", @@ -358,6 +408,7 @@ "action": "" }, { + "id": 51, "x": 8928.81, "y": -1786.09, "type": "path", @@ -365,6 +416,7 @@ "action": "" }, { + "id": 52, "x": 8930.51, "y": -1784.96, "type": "path", @@ -372,6 +424,7 @@ "action": "" }, { + "id": 53, "x": 8935.87, "y": -1790.96, "type": "path", @@ -379,6 +432,7 @@ "action": "" }, { + "id": 54, "x": 8941.3, "y": -1784.93, "type": "path", @@ -386,6 +440,7 @@ "action": "" }, { + "id": 55, "x": 8957.09, "y": -1767.85, "type": "path", @@ -393,6 +448,7 @@ "action": "" }, { + "id": 56, "x": 8978.98, "y": -1775.24, "type": "path", @@ -400,6 +456,7 @@ "action": "" }, { + "id": 57, "x": 9004.47, "y": -1782.11, "type": "path", @@ -407,6 +464,7 @@ "action": "" }, { + "id": 58, "x": 9007.14, "y": -1782.6, "type": "path", @@ -414,6 +472,7 @@ "action": "" }, { + "id": 59, "x": 9003.59, "y": -1778.16, "type": "path", @@ -421,6 +480,7 @@ "action": "" }, { + "id": 60, "x": 9005.47, "y": -1800.64, "type": "path", @@ -428,6 +488,7 @@ "action": "" }, { + "id": 61, "x": 9015.47, "y": -1816.22, "type": "path", @@ -435,6 +496,7 @@ "action": "" }, { + "id": 62, "x": 9036.51, "y": -1815.83, "type": "path", @@ -442,6 +504,7 @@ "action": "" }, { + "id": 63, "x": 9051.05, "y": -1808.91, "type": "path", @@ -449,6 +512,7 @@ "action": "" }, { + "id": 64, "x": 9052.58, "y": -1808.04, "type": "path", @@ -456,6 +520,7 @@ "action": "" }, { + "id": 65, "x": 9058.23, "y": -1803.09, "type": "path", @@ -463,6 +528,7 @@ "action": "" }, { + "id": 66, "x": 9069.43, "y": -1802.94, "type": "path", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/01-灼灼彩菊-帕克斯神庙左-7个.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/01-灼灼彩菊-帕克斯神庙左-7个.json index ca4e49e5..a6c98ac7 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/01-灼灼彩菊-帕克斯神庙左-7个.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/01-灼灼彩菊-帕克斯神庙左-7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 9084.13, "y": -1965.33, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 9095.95, "y": -1971.33, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 9160.67, "y": -1987.89, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 9160.45, "y": -1988.0, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 9167.37, "y": -1984.64, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 9179.0, "y": -1999.75, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 9176.32, "y": -2010.79, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 9172.85, "y": -2013.49, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 9171.58, "y": -2013.77, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 9153.68, "y": -2043.27, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 9151.46, "y": -2048.7, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 9147.57, "y": -2056.66, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 9174.34, "y": -2075.51, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/02-灼灼彩菊-帕克斯神庙右-11个.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/02-灼灼彩菊-帕克斯神庙右-11个.json index b95ac39f..2c407e0d 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/02-灼灼彩菊-帕克斯神庙右-11个.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/02-灼灼彩菊-帕克斯神庙右-11个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 9084.16, "y": -1965.33, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 9075.12, "y": -1977.58, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 9074.87, "y": -2003.45, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 9081.23, "y": -2042.23, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 9087.07, "y": -2058.01, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 9059.65, "y": -2096.64, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 9059.63, "y": -2096.63, "type": "path", @@ -57,6 +64,7 @@ "action": "stop_flying" }, { + "id": 8, "x": 9060.79, "y": -2093.59, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 9014.59, "y": -2077.0, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 9012.05, "y": -2071.43, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 9009.0, "y": -2057.42, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 9007.1, "y": -2052.85, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 9007.97, "y": -2034.61, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 9022.83, "y": -2024.83, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 9024.54, "y": -2023.54, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 9014.94, "y": -2012.5, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 8987.91, "y": -2012.52, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 8985.89, "y": -2012.6, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/03-灼灼彩菊-圣火竞技场上-12个.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/03-灼灼彩菊-圣火竞技场上-12个.json index 92205b56..96e05d9b 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/03-灼灼彩菊-圣火竞技场上-12个.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/03-灼灼彩菊-圣火竞技场上-12个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8978.32, "y": -1872.34, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8939.45, "y": -1848.58, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8919.57, "y": -1840.13, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8913.74, "y": -1830.29, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8909.34, "y": -1824.29, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8909.37, "y": -1824.3, "type": "target", @@ -50,6 +56,7 @@ "action": "stop_flying" }, { + "id": 7, "x": 8908.53, "y": -1822.77, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8908.79, "y": -1823.41, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8900.81, "y": -1822.55, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8928.18, "y": -1786.58, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8929.44, "y": -1785.42, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8940.07, "y": -1784.35, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8962.52, "y": -1771.12, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8989.28, "y": -1778.73, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 9001.85, "y": -1777.34, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 9004.74, "y": -1780.8, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 9007.02, "y": -1782.41, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 9029.49, "y": -1810.35, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 9036.62, "y": -1815.5, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 9050.23, "y": -1809.85, "type": "target", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 9051.08, "y": -1809.14, "type": "target", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 9069.45, "y": -1804.03, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/04-灼灼彩菊-圣火竞技场下-11个.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/04-灼灼彩菊-圣火竞技场下-11个.json index 6f4d0f79..3bdc2ecb 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/04-灼灼彩菊-圣火竞技场下-11个.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/04-灼灼彩菊-圣火竞技场下-11个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8978.33, "y": -1872.34, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8946.02, "y": -1874.34, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8913.51, "y": -1879.11, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8913.51, "y": -1879.11, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 8893.54, "y": -1884.35, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8906.26, "y": -1904.51, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8893.93, "y": -1914.0, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8892.0, "y": -1914.48, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8888.14, "y": -1915.22, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8930.29, "y": -1924.36, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8928.7, "y": -1927.95, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8920.76, "y": -1962.96, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8922.35, "y": -1964.32, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8923.19, "y": -1964.95, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/05-灼灼彩菊-万火之瓯上-9个.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/05-灼灼彩菊-万火之瓯上-9个.json index 628880c2..d3f5f18a 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/05-灼灼彩菊-万火之瓯上-9个.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/05-灼灼彩菊-万火之瓯上-9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8706.47, "y": -1575.01, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8754.82, "y": -1549.67, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8767.76, "y": -1552.68, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8768.29, "y": -1554.49, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8786.44, "y": -1546.57, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8789.8, "y": -1552.07, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8790.97, "y": -1564.48, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8805.38, "y": -1568.27, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8805.37, "y": -1578.77, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8809.9, "y": -1576.96, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8837.0, "y": -1595.72, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8837.18, "y": -1596.62, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8870.87, "y": -1561.89, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8870.53, "y": -1532.43, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 8854.84, "y": -1517.1, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/06-灼灼彩菊-柴薪之丘下-5个.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/06-灼灼彩菊-柴薪之丘下-5个.json index 942b8008..0ee21b82 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/06-灼灼彩菊-柴薪之丘下-5个.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/06-灼灼彩菊-柴薪之丘下-5个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 9033.29, "y": -1373.16, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 9031.92, "y": -1396.9, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 9063.56, "y": -1413.3, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 9064.47, "y": -1413.21, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 9069.33, "y": -1405.24, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 9098.48, "y": -1406.23, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 9098.47, "y": -1400.36, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 9098.22, "y": -1399.51, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 9096.29, "y": -1397.18, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/07-灼灼彩菊-柴薪之丘右-4个.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/07-灼灼彩菊-柴薪之丘右-4个.json index fc35a286..c3cecae6 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/07-灼灼彩菊-柴薪之丘右-4个.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/07-灼灼彩菊-柴薪之丘右-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 9033.23, "y": -1373.15, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8980.14, "y": -1419.97, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8862.05, "y": -1415.88, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8859.94, "y": -1415.35, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8856.97, "y": -1410.72, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/08-灼灼彩菊-柴薪之丘上-13个.json b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/08-灼灼彩菊-柴薪之丘上-13个.json index f517f90d..fe905420 100644 --- a/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/08-灼灼彩菊-柴薪之丘上-13个.json +++ b/repo/pathing/地方特产/纳塔/灼灼彩菊/灼灼彩菊@黎歌/08-灼灼彩菊-柴薪之丘上-13个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 9033.27, "y": -1373.15, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 9018.19, "y": -1327.19, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8948.13, "y": -1291.34, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8948.13, "y": -1291.34, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 8954.4, "y": -1289.07, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8959.16, "y": -1290.01, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8972.61, "y": -1243.39, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8970.12, "y": -1247.17, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8950.32, "y": -1257.34, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8950.54, "y": -1263.96, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8949.41, "y": -1265.4, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8925.49, "y": -1257.44, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8924.23, "y": -1270.34, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8932.37, "y": -1271.05, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 8907.19, "y": -1271.98, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 8904.42, "y": -1275.01, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 8901.76, "y": -1276.41, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 8925.27, "y": -1255.0, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 8922.05, "y": -1242.66, "type": "target", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 8919.46, "y": -1241.57, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/肉龙掌/01-肉龙掌-坚岩隘谷上-2个.json b/repo/pathing/地方特产/纳塔/肉龙掌/01-肉龙掌-坚岩隘谷上-2个.json index a46ec7e7..db4814da 100644 --- a/repo/pathing/地方特产/纳塔/肉龙掌/01-肉龙掌-坚岩隘谷上-2个.json +++ b/repo/pathing/地方特产/纳塔/肉龙掌/01-肉龙掌-坚岩隘谷上-2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8400.63, "y": -1221.34, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8466.83, "y": -1233.42, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/肉龙掌/02-肉龙掌-坚岩隘谷上-18个.json b/repo/pathing/地方特产/纳塔/肉龙掌/02-肉龙掌-坚岩隘谷上-18个.json index aee87a28..e267faf8 100644 --- a/repo/pathing/地方特产/纳塔/肉龙掌/02-肉龙掌-坚岩隘谷上-18个.json +++ b/repo/pathing/地方特产/纳塔/肉龙掌/02-肉龙掌-坚岩隘谷上-18个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8400.7, "y": -1221.41, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8357.06, "y": -1225.69, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8277.73, "y": -1188.49, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8296.2, "y": -1213.18, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8330.9, "y": -1291.45, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8318.24, "y": -1293.92, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8259.13, "y": -1307.67, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8263.5, "y": -1314.0, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8255.67, "y": -1313.24, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8164.15, "y": -1311.06, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8163.56, "y": -1307.14, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8115.75, "y": -1309.25, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8071.0, "y": -1291.75, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8026.0, "y": -1274.0, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 7965.52, "y": -1259.75, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 7981.57, "y": -1296.32, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 7976.8, "y": -1295.44, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 8042.77, "y": -1349.99, "type": "target", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 8048.03, "y": -1354.61, "type": "target", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 7916.39, "y": -1292.62, "type": "target", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 7908.47, "y": -1291.78, "type": "target", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 7880.01, "y": -1326.5, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 7917.04, "y": -1394.65, "type": "target", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": 7930.58, "y": -1402.87, "type": "target", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": 7962.38, "y": -1419.95, "type": "target", @@ -183,6 +208,7 @@ "action": "" }, { + "id": 26, "x": 7968.77, "y": -1425.85, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/肉龙掌/03-肉龙掌-坚岩隘谷右-14个.json b/repo/pathing/地方特产/纳塔/肉龙掌/03-肉龙掌-坚岩隘谷右-14个.json index 530671c4..c4348bea 100644 --- a/repo/pathing/地方特产/纳塔/肉龙掌/03-肉龙掌-坚岩隘谷右-14个.json +++ b/repo/pathing/地方特产/纳塔/肉龙掌/03-肉龙掌-坚岩隘谷右-14个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 7973.66, "y": -1557.65, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8098.84, "y": -1542.27, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8098.88, "y": -1536.99, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8120.53, "y": -1548.84, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8121.89, "y": -1547.82, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8118.91, "y": -1523.76, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8193.22, "y": -1477.25, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8141.72, "y": -1419.43, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8117.82, "y": -1399.95, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8117.25, "y": -1391.75, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8111.21, "y": -1388.35, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8081.81, "y": -1383.93, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8070.5, "y": -1399.5, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8055.19, "y": -1393.95, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/肉龙掌/04-肉龙掌-硫晶支脉左-2个.json b/repo/pathing/地方特产/纳塔/肉龙掌/04-肉龙掌-硫晶支脉左-2个.json index 44c5233e..975bfd78 100644 --- a/repo/pathing/地方特产/纳塔/肉龙掌/04-肉龙掌-硫晶支脉左-2个.json +++ b/repo/pathing/地方特产/纳塔/肉龙掌/04-肉龙掌-硫晶支脉左-2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8452.26, "y": -1477.29, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8472.77, "y": -1461.68, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8473.9, "y": -1453.81, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/肉龙掌/05-肉龙掌-硫晶支脉左-5个.json b/repo/pathing/地方特产/纳塔/肉龙掌/05-肉龙掌-硫晶支脉左-5个.json index cb23a03b..ebb7e6b0 100644 --- a/repo/pathing/地方特产/纳塔/肉龙掌/05-肉龙掌-硫晶支脉左-5个.json +++ b/repo/pathing/地方特产/纳塔/肉龙掌/05-肉龙掌-硫晶支脉左-5个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8452.51, "y": -1477.23, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8443.14, "y": -1495.29, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8437.24, "y": -1497.91, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8445.04, "y": -1531.37, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8450.26, "y": -1517.75, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8486.76, "y": -1516.76, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8481.25, "y": -1515.0, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8485.92, "y": -1513.46, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/肉龙掌/06-肉龙掌-回血.json b/repo/pathing/地方特产/纳塔/肉龙掌/06-肉龙掌-回血.json index 2cd496bf..30813874 100644 --- a/repo/pathing/地方特产/纳塔/肉龙掌/06-肉龙掌-回血.json +++ b/repo/pathing/地方特产/纳塔/肉龙掌/06-肉龙掌-回血.json @@ -9,18 +9,21 @@ }, "positions": [ { + "id": 1, "x": 4545.53, "y": 4225.57, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 4545.53, "y": 4225.57, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 4543.24, "y": 4229.01, "type": "path", diff --git a/repo/pathing/地方特产/纳塔/肉龙掌/07-肉龙掌-隆崛坡-13个.json b/repo/pathing/地方特产/纳塔/肉龙掌/07-肉龙掌-隆崛坡-13个.json index 4dc3a284..85cbefc3 100644 --- a/repo/pathing/地方特产/纳塔/肉龙掌/07-肉龙掌-隆崛坡-13个.json +++ b/repo/pathing/地方特产/纳塔/肉龙掌/07-肉龙掌-隆崛坡-13个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 7857.5, "y": -1751.32, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 7808.75, "y": -1724.0, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 7791.25, "y": -1648.5, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 7792.0, "y": -1613.25, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 7774.51, "y": -1611.38, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 7767.99, "y": -1594.5, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 7744.75, "y": -1612.25, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 7734.86, "y": -1600.62, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 7731.62, "y": -1599.73, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 7727.28, "y": -1602.23, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 7714.28, "y": -1556.47, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 7718.74, "y": -1552.44, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 7736.5, "y": -1567.0, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 7755.5, "y": -1557.82, "type": "target", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 7759.69, "y": -1557.2, "type": "target", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 7769.85, "y": -1555.52, "type": "target", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 7764.25, "y": -1542.5, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 7766.25, "y": -1523.25, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 7745.77, "y": -1500.83, "type": "target", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 7743.75, "y": -1491.75, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 7736.59, "y": -1489.62, "type": "target", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 7705.5, "y": -1493.25, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 7698.3, "y": -1498.43, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/青蜜莓/01-青蜜莓-踞石山上-4×3个.json b/repo/pathing/地方特产/纳塔/青蜜莓/01-青蜜莓-踞石山上-4×3个.json index 1508f9d5..e632e3af 100644 --- a/repo/pathing/地方特产/纳塔/青蜜莓/01-青蜜莓-踞石山上-4×3个.json +++ b/repo/pathing/地方特产/纳塔/青蜜莓/01-青蜜莓-踞石山上-4×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 7845.1, "y": -2047.38, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 7846.71, "y": -2045.65, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 7855.83, "y": -2018.21, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 7855.83, "y": -2018.21, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 7870.0, "y": -2039.59, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 7869.01, "y": -2054.92, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 7893.7, "y": -2058.13, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 7888.44, "y": -2084.88, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/青蜜莓/02-青蜜莓-彩石顶右-2×3个.json b/repo/pathing/地方特产/纳塔/青蜜莓/02-青蜜莓-彩石顶右-2×3个.json index eaa9cbdb..31e6717f 100644 --- a/repo/pathing/地方特产/纳塔/青蜜莓/02-青蜜莓-彩石顶右-2×3个.json +++ b/repo/pathing/地方特产/纳塔/青蜜莓/02-青蜜莓-彩石顶右-2×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8201.96, "y": -2288.77, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8190.54, "y": -2288.5, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8146.49, "y": -2277.18, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8146.5, "y": -2277.16, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 8135.81, "y": -2289.4, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8142.02, "y": -2309.58, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/青蜜莓/03-青蜜莓-彩石顶中-3×3个.json b/repo/pathing/地方特产/纳塔/青蜜莓/03-青蜜莓-彩石顶中-3×3个.json index 405214c8..dfcec213 100644 --- a/repo/pathing/地方特产/纳塔/青蜜莓/03-青蜜莓-彩石顶中-3×3个.json +++ b/repo/pathing/地方特产/纳塔/青蜜莓/03-青蜜莓-彩石顶中-3×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8201.93, "y": -2288.75, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8286.18, "y": -2321.68, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8251.14, "y": -2244.97, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8253.14, "y": -2242.97, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8242.87, "y": -2215.76, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8242.87, "y": -2215.75, "type": "target", @@ -50,6 +56,7 @@ "action": "stop_flying" }, { + "id": 7, "x": 8265.08, "y": -2204.57, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8259.42, "y": -2194.06, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/青蜜莓/04-青蜜莓-彩石顶中-1×3个.json b/repo/pathing/地方特产/纳塔/青蜜莓/04-青蜜莓-彩石顶中-1×3个.json index 1fada751..21c2abb1 100644 --- a/repo/pathing/地方特产/纳塔/青蜜莓/04-青蜜莓-彩石顶中-1×3个.json +++ b/repo/pathing/地方特产/纳塔/青蜜莓/04-青蜜莓-彩石顶中-1×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8372.21, "y": -2196.23, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8352.73, "y": -2230.94, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/青蜜莓/05-青蜜莓-彩石顶上-4×3个.json b/repo/pathing/地方特产/纳塔/青蜜莓/05-青蜜莓-彩石顶上-4×3个.json index d2ce281a..2f3b7e0e 100644 --- a/repo/pathing/地方特产/纳塔/青蜜莓/05-青蜜莓-彩石顶上-4×3个.json +++ b/repo/pathing/地方特产/纳塔/青蜜莓/05-青蜜莓-彩石顶上-4×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8372.17, "y": -2196.23, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8361.11, "y": -2147.76, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8356.52, "y": -2128.57, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8356.46, "y": -2128.58, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 8353.21, "y": -2121.91, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8392.32, "y": -2077.87, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8395.48, "y": -2078.46, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/青蜜莓/06-青蜜莓-悬木人-5×3个.json b/repo/pathing/地方特产/纳塔/青蜜莓/06-青蜜莓-悬木人-5×3个.json index ab618774..9df53464 100644 --- a/repo/pathing/地方特产/纳塔/青蜜莓/06-青蜜莓-悬木人-5×3个.json +++ b/repo/pathing/地方特产/纳塔/青蜜莓/06-青蜜莓-悬木人-5×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8497.83, "y": -2221.91, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8498.16, "y": -2218.16, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8520.24, "y": -2185.33, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8520.24, "y": -2185.33, "type": "target", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 8520.24, "y": -2185.33, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8522.7, "y": -2191.11, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8538.2, "y": -2179.22, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8535.48, "y": -2188.66, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8538.2, "y": -2179.22, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 8540.22, "y": -2175.71, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 8535.48, "y": -2188.66, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 8547.56, "y": -2191.33, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 8544.15, "y": -2211.18, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 8550.91, "y": -2215.17, "type": "target", diff --git a/repo/pathing/地方特产/纳塔/青蜜莓/07-青蜜莓-坚岩隘谷-5×3个.json b/repo/pathing/地方特产/纳塔/青蜜莓/07-青蜜莓-坚岩隘谷-5×3个.json index 851aaf2a..87858826 100644 --- a/repo/pathing/地方特产/纳塔/青蜜莓/07-青蜜莓-坚岩隘谷-5×3个.json +++ b/repo/pathing/地方特产/纳塔/青蜜莓/07-青蜜莓-坚岩隘谷-5×3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 8258.29, "y": -1744.66, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 8218.15, "y": -1754.16, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 8138.89, "y": -1706.31, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 8132.25, "y": -1701.48, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 8134.78, "y": -1711.06, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 8103.64, "y": -1694.72, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 8075.06, "y": -1689.48, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 8021.86, "y": -1714.07, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 8019.16, "y": -1711.59, "type": "target", diff --git a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/01-小灯草-低语森林-17个.json b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/01-小灯草-低语森林-17个.json index 4142b459..218e1517 100644 --- a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/01-小灯草-低语森林-17个.json +++ b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/01-小灯草-低语森林-17个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -1120.96, "y": 2190.63, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -1116.19, "y": 2237.2, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -1135.7, "y": 2266.31, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -1167.67, "y": 2288.91, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -1171.33, "y": 2289.64, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -1166.68, "y": 2313.14, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": -1168.29, "y": 2312.82, "type": "path", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": -1168.69, "y": 2313.78, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": -1177.22, "y": 2330.21, "type": "path", @@ -72,6 +81,7 @@ "action": "" }, { + "id": 10, "x": -1161.02, "y": 2364.5, "type": "path", @@ -79,6 +89,7 @@ "action": "" }, { + "id": 11, "x": -1162.51, "y": 2368.13, "type": "path", @@ -86,6 +97,7 @@ "action": "" }, { + "id": 12, "x": -1123.14, "y": 2356.72, "type": "path", @@ -93,6 +105,7 @@ "action": "" }, { + "id": 13, "x": -1113.04, "y": 2357.39, "type": "path", @@ -100,6 +113,7 @@ "action": "" }, { + "id": 14, "x": -1105.09, "y": 2362.26, "type": "path", @@ -107,6 +121,7 @@ "action": "" }, { + "id": 15, "x": -1102.97, "y": 2363.21, "type": "path", @@ -114,6 +129,7 @@ "action": "" }, { + "id": 16, "x": -1109.98, "y": 2367.27, "type": "path", @@ -121,6 +137,7 @@ "action": "" }, { + "id": 17, "x": -1118.42, "y": 2378.77, "type": "path", @@ -128,6 +145,7 @@ "action": "" }, { + "id": 18, "x": -1099.73, "y": 2397.27, "type": "path", @@ -135,6 +153,7 @@ "action": "" }, { + "id": 19, "x": -1096.98, "y": 2397.04, "type": "path", @@ -142,6 +161,7 @@ "action": "" }, { + "id": 20, "x": -1094.37, "y": 2379.5, "type": "path", @@ -149,6 +169,7 @@ "action": "" }, { + "id": 21, "x": -1093.8, "y": 2375.1, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/02-小灯草-风起地-6个.json b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/02-小灯草-风起地-6个.json index f3f1c271..3a0c4190 100644 --- a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/02-小灯草-风起地-6个.json +++ b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/02-小灯草-风起地-6个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -1536.83, "y": 1978.63, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -1535.81, "y": 1981.46, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -1527.54, "y": 2002.47, "type": "path", @@ -30,6 +33,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -1527.68, "y": 2002.25, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -1536.66, "y": 2010.04, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -1544.74, "y": 2004.11, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": -1561.76, "y": 2016.82, "type": "path", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": -1555.75, "y": 2028.81, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": -1572.73, "y": 2026.83, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/03-小灯草-千风神殿-5个.json b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/03-小灯草-千风神殿-5个.json index 284dbde6..424196e2 100644 --- a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/03-小灯草-千风神殿-5个.json +++ b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/03-小灯草-千风神殿-5个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -1505.9, "y": 2296.24, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -1541.64, "y": 2304.92, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -1581.55, "y": 2304.79, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -1629.7, "y": 2288.18, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -1658.2, "y": 2280.85, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -1677.53, "y": 2267.63, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": -1684.69, "y": 2268.03, "type": "path", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": -1686.21, "y": 2266.91, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": -1681.79, "y": 2262.84, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/04-小灯草-晨曦酒庄-4个.json b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/04-小灯草-晨曦酒庄-4个.json index d31cbd85..8bb876a1 100644 --- a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/04-小灯草-晨曦酒庄-4个.json +++ b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/04-小灯草-晨曦酒庄-4个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -201.21, "y": 1861.83, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -125.46, "y": 1875.52, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -120.53, "y": 1876.87, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -116.95, "y": 1873.33, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -117.63, "y": 1870.2, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -119.5, "y": 1869.98, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/05-小灯草-奔狼岭(二)-4个.json b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/05-小灯草-奔狼岭(二)-4个.json index c18be42e..82184bbe 100644 --- a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/05-小灯草-奔狼岭(二)-4个.json +++ b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/05-小灯草-奔狼岭(二)-4个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -521.57, "y": 2181.36, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -491.29, "y": 2195.78, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -485.69, "y": 2196.52, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -474.82, "y": 2208.06, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/06-小灯草-塞西莉亚苗圃-4个.json b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/06-小灯草-塞西莉亚苗圃-4个.json index f7f31571..4f6a83b3 100644 --- a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/06-小灯草-塞西莉亚苗圃-4个.json +++ b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/06-小灯草-塞西莉亚苗圃-4个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -251.7, "y": 2256.57, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -270.46, "y": 2278.66, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -302.29, "y": 2291.65, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -313.95, "y": 2305.51, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -317.96, "y": 2308.75, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -316.98, "y": 2311.57, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/07-小灯草-奔狼岭(一)-3个.json b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/07-小灯草-奔狼岭(一)-3个.json index 5547afa1..4a914de7 100644 --- a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/07-小灯草-奔狼岭(一)-3个.json +++ b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/07-小灯草-奔狼岭(一)-3个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -521.61, "y": 2181.37, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -549.84, "y": 2167.35, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -547.39, "y": 2165.61, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/08-小灯草-仲夏庭院-2个.json b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/08-小灯草-仲夏庭院-2个.json index 510cb6e5..4d76d4b2 100644 --- a/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/08-小灯草-仲夏庭院-2个.json +++ b/repo/pathing/地方特产/蒙德/小灯草/小灯草@不瘦五十斤不改名/08-小灯草-仲夏庭院-2个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -1558.55, "y": 2497.71, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -1543.51, "y": 2506.06, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -1541.29, "y": 2509.19, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -1529.91, "y": 2524.78, "type": "path", @@ -37,6 +41,7 @@ "action": "stop_flying" }, { + "id": 5, "x": -1529.69, "y": 2524.99, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/落落莓/落落莓@yulalaa/01-落落莓-望风山地-24个.json b/repo/pathing/地方特产/蒙德/落落莓/落落莓@yulalaa/01-落落莓-望风山地-24个.json index 8c391729..b7479a11 100644 --- a/repo/pathing/地方特产/蒙德/落落莓/落落莓@yulalaa/01-落落莓-望风山地-24个.json +++ b/repo/pathing/地方特产/蒙德/落落莓/落落莓@yulalaa/01-落落莓-望风山地-24个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -1272.51, "y": 2722.89, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -1263.24, "y": 2751.0, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -1254.3, "y": 2764.29, "type": "target", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -1219.09, "y": 2753.08, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -1142.9, "y": 2778.5, "type": "target", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -1122.63, "y": 2786.24, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": -1099.11, "y": 2778.91, "type": "path", @@ -58,6 +65,7 @@ "action": "stop_flying" }, { + "id": 8, "x": -1062.8, "y": 2779.89, "type": "target", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": -1095.24, "y": 2718.5, "type": "path", @@ -72,6 +81,7 @@ "action": "" }, { + "id": 10, "x": -1084.71, "y": 2649.57, "type": "path", @@ -79,6 +89,7 @@ "action": "" }, { + "id": 11, "x": -1074.66, "y": 2640.09, "type": "target", @@ -86,6 +97,7 @@ "action": "" }, { + "id": 12, "x": -1118.29, "y": 2603.93, "type": "target", @@ -93,6 +105,7 @@ "action": "" }, { + "id": 13, "x": -1156.62, "y": 2658.34, "type": "path", @@ -100,6 +113,7 @@ "action": "" }, { + "id": 14, "x": -1176.8, "y": 2685.01, "type": "target", diff --git a/repo/pathing/地方特产/蒙德/落落莓/落落莓@yulalaa/03-落落莓-望风山地-16个.json b/repo/pathing/地方特产/蒙德/落落莓/落落莓@yulalaa/03-落落莓-望风山地-16个.json index b82bef4f..8ccec02c 100644 --- a/repo/pathing/地方特产/蒙德/落落莓/落落莓@yulalaa/03-落落莓-望风山地-16个.json +++ b/repo/pathing/地方特产/蒙德/落落莓/落落莓@yulalaa/03-落落莓-望风山地-16个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -1629.36, "y": 2834.41, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -1640.24, "y": 2868.23, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -1626.0, "y": 2910.5, "type": "path", @@ -30,6 +33,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -1622.08, "y": 2923.19, "type": "target", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -1631.08, "y": 2927.06, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -1650.08, "y": 2929.5, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": -1666.35, "y": 2933.88, "type": "path", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": -1707.99, "y": 2934.0, "type": "path", @@ -65,6 +73,7 @@ "action": "stop_flying" }, { + "id": 9, "x": -1720.3, "y": 2934.34, "type": "target", @@ -72,6 +81,7 @@ "action": "" }, { + "id": 10, "x": -1727.15, "y": 2920.98, "type": "path", @@ -79,6 +89,7 @@ "action": "" }, { + "id": 11, "x": -1739.78, "y": 2913.21, "type": "path", @@ -86,6 +97,7 @@ "action": "" }, { + "id": 12, "x": -1774.26, "y": 2907.72, "type": "path", @@ -93,6 +105,7 @@ "action": "" }, { + "id": 13, "x": -1790.31, "y": 2918.33, "type": "path", @@ -100,6 +113,7 @@ "action": "" }, { + "id": 14, "x": -1769.38, "y": 2932.18, "type": "path", @@ -107,6 +121,7 @@ "action": "" }, { + "id": 15, "x": -1763.78, "y": 2933.13, "type": "target", @@ -114,6 +129,7 @@ "action": "" }, { + "id": 16, "x": -1810.21, "y": 2929.47, "type": "path", @@ -121,6 +137,7 @@ "action": "" }, { + "id": 17, "x": -1850.52, "y": 2915.93, "type": "path", @@ -128,6 +145,7 @@ "action": "" }, { + "id": 18, "x": -1862.1, "y": 2895.69, "type": "path", @@ -135,6 +153,7 @@ "action": "" }, { + "id": 19, "x": -1857.9, "y": 2870.13, "type": "path", @@ -142,6 +161,7 @@ "action": "" }, { + "id": 20, "x": -1846.82, "y": 2847.7, "type": "target", diff --git a/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/04-蒲公英-星落湖南-3个.json b/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/04-蒲公英-星落湖南-3个.json index 402e959d..055d21b0 100644 --- a/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/04-蒲公英-星落湖南-3个.json +++ b/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/04-蒲公英-星落湖南-3个.json @@ -57,7 +57,7 @@ "action": "anemo_collect" }, { - "id": 8, + "id": 7, "x": -1269.53, "y": 2486.61, "action": "anemo_collect", diff --git a/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/06-蒲公英-誓言岬-2个.json b/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/06-蒲公英-誓言岬-2个.json index f1100148..4433ccf6 100644 --- a/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/06-蒲公英-誓言岬-2个.json +++ b/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/06-蒲公英-誓言岬-2个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 5, + "id": 1, "x": -1999.06, "y": 1435.04, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 6, + "id": 2, "x": -2022.46, "y": 1465.41, "type": "path", @@ -25,7 +25,7 @@ "action": "anemo_collect" }, { - "id": 7, + "id": 3, "x": -2030.42, "y": 1455.52, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/07-蒲公英-达达乌帕谷-3个(有怪).json b/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/07-蒲公英-达达乌帕谷-3个(有怪).json index 5800455a..b906f6e9 100644 --- a/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/07-蒲公英-达达乌帕谷-3个(有怪).json +++ b/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/07-蒲公英-达达乌帕谷-3个(有怪).json @@ -33,7 +33,7 @@ "action": "" }, { - "id": 6, + "id": 4, "x": -1675.52, "y": 1370.04, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/15-蒲公英-望风角-1个(路远,不建议).json b/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/15-蒲公英-望风角-1个(路远,不建议).json index 28f78399..f0d2051b 100644 --- a/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/15-蒲公英-望风角-1个(路远,不建议).json +++ b/repo/pathing/地方特产/蒙德/蒲公英籽/蒲公英籽@秋云/15-蒲公英-望风角-1个(路远,不建议).json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": -1629.35, "y": 2834.3, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 3, + "id": 2, "x": -1634.38, "y": 2846.01, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": -1643.24, "y": 2867.23, "type": "path", @@ -33,7 +33,7 @@ "action": "" }, { - "id": 5, + "id": 4, "x": -1683.23, "y": 2909.0, "type": "path", @@ -41,7 +41,7 @@ "action": "" }, { - "id": 6, + "id": 5, "x": -1704.01, "y": 2987.65, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/钩钩果/钩钩果-30个(有几率卡树洞里).json b/repo/pathing/地方特产/蒙德/钩钩果/钩钩果-30个(有几率卡树洞里).json index dbf9876d..6e642bda 100644 --- a/repo/pathing/地方特产/蒙德/钩钩果/钩钩果-30个(有几率卡树洞里).json +++ b/repo/pathing/地方特产/蒙德/钩钩果/钩钩果-30个(有几率卡树洞里).json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -521.56, "y": 2181.37, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -538.62, "y": 2138.27, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -529.77, "y": 2119.08, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -510.64, "y": 2106.09, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -482.4, "y": 2109.54, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -459.31, "y": 2130.29, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": -435.22, "y": 2159.22, "type": "path", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": -427.75, "y": 2154.92, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": -407.75, "y": 2141.97, "type": "path", @@ -72,6 +81,7 @@ "action": "" }, { + "id": 10, "x": -398.47, "y": 2111.22, "type": "path", @@ -79,6 +89,7 @@ "action": "" }, { + "id": 11, "x": -384.49, "y": 2087.89, "type": "path", @@ -86,6 +97,7 @@ "action": "" }, { + "id": 12, "x": -394.72, "y": 2089.77, "type": "path", @@ -93,6 +105,7 @@ "action": "" }, { + "id": 13, "x": -390.5, "y": 2078.98, "type": "path", @@ -100,6 +113,7 @@ "action": "" }, { + "id": 14, "x": -371.97, "y": 2067.24, "type": "path", @@ -107,6 +121,7 @@ "action": "" }, { + "id": 15, "x": -364.89, "y": 2071.02, "type": "path", @@ -114,6 +129,7 @@ "action": "" }, { + "id": 16, "x": -355.36, "y": 2068.1, "type": "path", @@ -121,6 +137,7 @@ "action": "" }, { + "id": 17, "x": -353.35, "y": 2060.08, "type": "path", @@ -128,6 +145,7 @@ "action": "" }, { + "id": 18, "x": -347.22, "y": 2059.52, "type": "path", @@ -135,6 +153,7 @@ "action": "" }, { + "id": 19, "x": -339.68, "y": 2045.7, "type": "path", @@ -142,6 +161,7 @@ "action": "" }, { + "id": 20, "x": -330.05, "y": 2044.81, "type": "path", @@ -149,6 +169,7 @@ "action": "" }, { + "id": 21, "x": -318.53, "y": 2040.66, "type": "path", @@ -156,6 +177,7 @@ "action": "" }, { + "id": 22, "x": -319.31, "y": 2037.87, "type": "path", @@ -163,6 +185,7 @@ "action": "" }, { + "id": 23, "x": -318.55, "y": 2037.12, "type": "path", @@ -170,6 +193,7 @@ "action": "" }, { + "id": 24, "x": -343.02, "y": 2023.95, "type": "path", @@ -177,6 +201,7 @@ "action": "" }, { + "id": 25, "x": -351.23, "y": 2042.08, "type": "path", @@ -184,6 +209,7 @@ "action": "" }, { + "id": 26, "x": -386.71, "y": 2047.62, "type": "path", @@ -191,6 +217,7 @@ "action": "" }, { + "id": 27, "x": -389.38, "y": 2042.46, "type": "path", @@ -198,6 +225,7 @@ "action": "" }, { + "id": 28, "x": -391.03, "y": 2039.92, "type": "path", @@ -205,6 +233,7 @@ "action": "" }, { + "id": 29, "x": -359.37, "y": 2023.93, "type": "path", @@ -212,6 +241,7 @@ "action": "" }, { + "id": 30, "x": -388.67, "y": 2018.37, "type": "path", @@ -219,6 +249,7 @@ "action": "" }, { + "id": 31, "x": -329.21, "y": 2003.68, "type": "path", @@ -226,6 +257,7 @@ "action": "" }, { + "id": 32, "x": -339.13, "y": 1984.24, "type": "path", @@ -233,6 +265,7 @@ "action": "" }, { + "id": 33, "x": -301.85, "y": 1944.92, "type": "path", @@ -240,6 +273,7 @@ "action": "" }, { + "id": 34, "x": -292.04, "y": 1939.93, "type": "path", @@ -247,6 +281,7 @@ "action": "" }, { + "id": 35, "x": -272.19, "y": 1937.94, "type": "path", @@ -254,6 +289,7 @@ "action": "" }, { + "id": 36, "x": -244.29, "y": 1933.9, "type": "path", @@ -261,6 +297,7 @@ "action": "" }, { + "id": 37, "x": -234.95, "y": 1941.2, "type": "path", @@ -268,6 +305,7 @@ "action": "" }, { + "id": 38, "x": -219.23, "y": 1947.68, "type": "path", @@ -275,6 +313,7 @@ "action": "" }, { + "id": 39, "x": -218.23, "y": 1947.91, "type": "path", @@ -282,6 +321,7 @@ "action": "" }, { + "id": 40, "x": -216.5, "y": 1950.23, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/钩钩果/钩钩果-奔狼岭-蒙德30个-需纳西妲.json b/repo/pathing/地方特产/蒙德/钩钩果/钩钩果-奔狼岭-蒙德30个-需纳西妲.json index ca2445da..abd5e6de 100644 --- a/repo/pathing/地方特产/蒙德/钩钩果/钩钩果-奔狼岭-蒙德30个-需纳西妲.json +++ b/repo/pathing/地方特产/蒙德/钩钩果/钩钩果-奔狼岭-蒙德30个-需纳西妲.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": -521.62, "y": 2181.44, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": -533.45, "y": 2154.15, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": -538.97, "y": 2133.86, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": -520.26, "y": 2110.15, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": -486.49, "y": 2106.0, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": -460.57, "y": 2130.44, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": -428.34, "y": 2165.44, "type": "path", @@ -58,6 +65,7 @@ "action": "" }, { + "id": 8, "x": -427.4, "y": 2154.37, "type": "path", @@ -65,6 +73,7 @@ "action": "" }, { + "id": 9, "x": -404.97, "y": 2135.71, "type": "path", @@ -72,6 +81,7 @@ "action": "" }, { + "id": 10, "x": -383.73, "y": 2087.16, "type": "path", @@ -79,6 +89,7 @@ "action": "" }, { + "id": 11, "x": -381.56, "y": 2080.42, "type": "path", @@ -86,6 +97,7 @@ "action": "nahida_collect" }, { + "id": 12, "x": -366.35, "y": 2078.61, "type": "path", @@ -93,6 +105,7 @@ "action": "" }, { + "id": 13, "x": -364.25, "y": 2071.71, "type": "path", @@ -100,6 +113,7 @@ "action": "" }, { + "id": 14, "x": -364.23, "y": 2071.67, "type": "path", @@ -107,6 +121,7 @@ "action": "" }, { + "id": 15, "x": -353.04, "y": 2067.78, "type": "path", @@ -114,6 +129,7 @@ "action": "nahida_collect" }, { + "id": 16, "x": -337.53, "y": 2046.94, "type": "path", @@ -121,6 +137,7 @@ "action": "nahida_collect" }, { + "id": 17, "x": -355.55, "y": 2039.55, "type": "path", @@ -128,6 +145,7 @@ "action": "" }, { + "id": 18, "x": -381.15, "y": 2021.36, "type": "path", @@ -135,6 +153,7 @@ "action": "nahida_collect" }, { + "id": 19, "x": -378.52, "y": 2011.89, "type": "path", @@ -142,6 +161,7 @@ "action": "" }, { + "id": 20, "x": -357.34, "y": 2007.29, "type": "path", @@ -149,6 +169,7 @@ "action": "" }, { + "id": 21, "x": -349.39, "y": 2019.63, "type": "path", @@ -156,6 +177,7 @@ "action": "nahida_collect" }, { + "id": 22, "x": -344.29, "y": 1989.39, "type": "path", @@ -163,6 +185,7 @@ "action": "" }, { + "id": 23, "x": -298.25, "y": 1950.31, "type": "path", @@ -170,6 +193,7 @@ "action": "" }, { + "id": 24, "x": -293.74, "y": 1947.24, "type": "path", @@ -177,6 +201,7 @@ "action": "" }, { + "id": 25, "x": -272.59, "y": 1938.59, "type": "path", @@ -184,6 +209,7 @@ "action": "" }, { + "id": 26, "x": -243.07, "y": 1934.72, "type": "path", @@ -191,6 +217,7 @@ "action": "" }, { + "id": 27, "x": -228.87, "y": 1933.32, "type": "path", @@ -198,6 +225,7 @@ "action": "" }, { + "id": 28, "x": -218.2, "y": 1947.5, "type": "path", @@ -205,6 +233,7 @@ "action": "" }, { + "id": 29, "x": -216.4, "y": 1951.08, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@tignioj/风车菊_蒙德_8个.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@tignioj/风车菊_蒙德_8个.json index 111017bb..5163f125 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@tignioj/风车菊_蒙德_8个.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@tignioj/风车菊_蒙德_8个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -578.7, "y": 1853.25, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -575.71, "y": 1847.0, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -563.88, "y": 1843.85, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -563.9, "y": 1843.93, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -561.19, "y": 1845.28, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -576.67, "y": 1845.72, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -584.29, "y": 1871.03, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -582.94, "y": 1872.63, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -583.96, "y": 1877.21, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -573.36, "y": 1875.31, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -545.33, "y": 1875.51, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -548.27, "y": 1871.32, "type": "target", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/01-风车菊-星落湖.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/01-风车菊-星落湖.json index 344dd17a..6ce986be 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/01-风车菊-星落湖.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/01-风车菊-星落湖.json @@ -9,12 +9,14 @@ }, "positions": [ { + "id": 1, "x": -1330.16, "y": 2563.83, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": -1306.87, "y": 2595.04, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/02-风车菊-风起地.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/02-风车菊-风起地.json index 3ce9dc02..97f13f0c 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/02-风车菊-风起地.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/02-风车菊-风起地.json @@ -9,42 +9,49 @@ }, "positions": [ { + "id": 1, "x": -1266.53, "y": 1933.61, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": -1290.45, "y": 1903.25, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": -1280.23, "y": 1887.51, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": -1279.83, "y": 1875.42, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": -1279.83, "y": 1875.42, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": -1283.69, "y": 1870.72, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": -1271.96, "y": 1874.25, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/03-风车菊-风起地2.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/03-风车菊-风起地2.json index 5828304e..926961cb 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/03-风车菊-风起地2.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/03-风车菊-风起地2.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -1266.79, "y": 1933.81, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -1249.82, "y": 1922.97, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -1240.88, "y": 1925.49, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -1234.49, "y": 1930.12, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -1250.74, "y": 1943.11, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -1243.99, "y": 1957.07, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -1245.46, "y": 1958.72, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -1331.65, "y": 1980.67, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -1346.58, "y": 1932.67, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -1347.46, "y": 1931.09, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -1345.74, "y": 1927.77, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -1418.93, "y": 1896.63, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -1418.82, "y": 1896.65, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/04-风车菊-风起地3.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/04-风车菊-风起地3.json index 3d14cdaf..945c6afc 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/04-风车菊-风起地3.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/04-风车菊-风起地3.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -1427.74, "y": 1661.57, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -1427.59, "y": 1681.83, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -1402.09, "y": 1741.91, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": -1401.47, "y": 1748.52, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -1420.64, "y": 1767.68, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -1415.17, "y": 1782.6, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -1425.64, "y": 1789.97, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -1442.04, "y": 1787.8, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -1445.15, "y": 1787.27, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -1443.78, "y": 1790.11, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/05-风车菊-苍风高地.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/05-风车菊-苍风高地.json index 6f72021f..c7817e2d 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/05-风车菊-苍风高地.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/05-风车菊-苍风高地.json @@ -9,72 +9,84 @@ }, "positions": [ { + "id": 1, "x": -578.74, "y": 1853.36, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": -575.85, "y": 1847.01, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": -564.72, "y": 1844.06, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": -564.68, "y": 1844.04, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": -561.69, "y": 1846.11, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": -548.76, "y": 1869.88, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": -548.71, "y": 1870.95, "type": "path", "move_mode": "walk" }, { + "id": 8, "x": -550.13, "y": 1883.32, "type": "path", "move_mode": "walk" }, { + "id": 9, "x": -574.25, "y": 1892.17, "type": "path", "move_mode": "walk" }, { + "id": 10, "x": -583.4, "y": 1877.89, "type": "path", "move_mode": "walk" }, { + "id": 11, "x": -584.69, "y": 1872.51, "type": "path", "move_mode": "walk" }, { + "id": 12, "x": -583.75, "y": 1872.35, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/06-风车菊-风龙废墟.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/06-风车菊-风龙废墟.json index 78e0a009..8cf39340 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/06-风车菊-风龙废墟.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/06-风车菊-风龙废墟.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 338.16, "y": 2581.14, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 343.91, "y": 2558.08, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 343.75, "y": 2556.16, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 343.79, "y": 2556.21, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/07-风车菊-风龙废墟2.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/07-风车菊-风龙废墟2.json index 793ff491..f030902c 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/07-风车菊-风龙废墟2.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/07-风车菊-风龙废墟2.json @@ -9,54 +9,63 @@ }, "positions": [ { + "id": 1, "x": 265.63, "y": 2914.95, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 308.52, "y": 2875.31, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 315.63, "y": 2842.5, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": 337.95, "y": 2815.29, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": 344.78, "y": 2818.89, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 361.86, "y": 2785.14, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": 360.08, "y": 2780.65, "type": "path", "move_mode": "walk" }, { + "id": 8, "x": 358.99, "y": 2779.11, "type": "path", "move_mode": "walk" }, { + "id": 9, "x": 358.8, "y": 2778.12, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/08-风车菊-风龙废墟3.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/08-风车菊-风龙废墟3.json index 18d11059..70440ce2 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/08-风车菊-风龙废墟3.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/08-风车菊-风龙废墟3.json @@ -9,102 +9,119 @@ }, "positions": [ { + "id": 1, "x": 338.16, "y": 2581.13, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 293.15, "y": 2599.97, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 276.8, "y": 2607.23, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": 278.72, "y": 2614.1, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": 279.35, "y": 2616.13, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 282.23, "y": 2616.91, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": 265.47, "y": 2590.06, "type": "path", "move_mode": "walk" }, { + "id": 8, "x": 269.98, "y": 2546.1, "type": "path", "move_mode": "walk" }, { + "id": 9, "x": 265.15, "y": 2540.33, "type": "path", "move_mode": "walk" }, { + "id": 10, "x": 262.61, "y": 2536.08, "type": "path", "move_mode": "walk" }, { + "id": 11, "x": 269.76, "y": 2523.08, "type": "path", "move_mode": "walk" }, { + "id": 12, "x": 279.41, "y": 2520.25, "type": "path", "move_mode": "walk" }, { + "id": 13, "x": 276.6, "y": 2487.99, "type": "path", "move_mode": "walk" }, { + "id": 14, "x": 274.51, "y": 2485.77, "type": "path", "move_mode": "walk" }, { + "id": 15, "x": 274.57, "y": 2485.76, "type": "path", "move_mode": "walk" }, { + "id": 16, "x": 267.75, "y": 2483.05, "type": "path", "move_mode": "walk" }, { + "id": 17, "x": 295.34, "y": 2497.79, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/09-风车菊-风龙废墟4.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/09-风车菊-风龙废墟4.json index 668c45e0..7f5afe08 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/09-风车菊-风龙废墟4.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/09-风车菊-风龙废墟4.json @@ -9,84 +9,98 @@ }, "positions": [ { + "id": 1, "x": -83.87, "y": 2781.72, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": -18.24, "y": 2806.45, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": -17.3, "y": 2806.0, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": -20.74, "y": 2811.88, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": -10.74, "y": 2805.76, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 26.37, "y": 2811.78, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": 45.33, "y": 2821.91, "type": "path", "move_mode": "walk" }, { + "id": 8, "x": 76.17, "y": 2825.06, "type": "path", "move_mode": "walk" }, { + "id": 9, "x": 86.96, "y": 2834.85, "type": "path", "move_mode": "walk" }, { + "id": 10, "x": 84.91, "y": 2840.4, "type": "path", "move_mode": "walk" }, { + "id": 11, "x": 87.1, "y": 2842.92, "type": "path", "move_mode": "walk" }, { + "id": 12, "x": 88.32, "y": 2846.2, "type": "path", "move_mode": "walk" }, { + "id": 13, "x": 88.25, "y": 2846.44, "type": "path", "move_mode": "walk" }, { + "id": 14, "x": 90.91, "y": 2849.54, "type": "path", diff --git a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/10-风车菊-风龙废墟5.json b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/10-风车菊-风龙废墟5.json index fcd5b4d0..c6110d3b 100644 --- a/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/10-风车菊-风龙废墟5.json +++ b/repo/pathing/地方特产/蒙德/风车菊/风车菊@柠檬茶叶/10-风车菊-风龙废墟5.json @@ -9,54 +9,63 @@ }, "positions": [ { + "id": 1, "x": 265.62, "y": 2915.08, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 188.36, "y": 2898.44, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 184.99, "y": 2899.74, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": 183.61, "y": 2897.14, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": 184.09, "y": 2892.93, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 158.0, "y": 2927.03, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": 164.42, "y": 2938.21, "type": "path", "move_mode": "walk" }, { + "id": 8, "x": 162.73, "y": 2941.53, "type": "path", "move_mode": "walk" }, { + "id": 9, "x": 166.7, "y": 2944.16, "type": "path", diff --git a/repo/pathing/地方特产/须弥/万相石/万相石@MOMO/万相石合-17个(MOMO版).json b/repo/pathing/地方特产/须弥/万相石/万相石@MOMO/万相石合-17个(MOMO版).json index 90c57deb..1ba18311 100644 --- a/repo/pathing/地方特产/须弥/万相石/万相石@MOMO/万相石合-17个(MOMO版).json +++ b/repo/pathing/地方特产/须弥/万相石/万相石@MOMO/万相石合-17个(MOMO版).json @@ -370,7 +370,7 @@ "type": "target" }, { - "id": 1, + "id": 45, "x": 6187.84, "y": 479.68, "action": "", @@ -378,7 +378,7 @@ "type": "teleport" }, { - "id": 2, + "id": 46, "x": 6160.85, "y": 442.56, "action": "stop_flying", @@ -386,7 +386,7 @@ "type": "path" }, { - "id": 3, + "id": 47, "x": 6148.62, "y": 425.17, "action": "", @@ -394,7 +394,7 @@ "type": "path" }, { - "id": 4, + "id": 48, "x": 6141.35, "y": 413.96, "action": "", @@ -402,7 +402,7 @@ "type": "path" }, { - "id": 5, + "id": 49, "x": 6138.38, "y": 401.42, "action": "", @@ -410,7 +410,7 @@ "type": "path" }, { - "id": 6, + "id": 50, "x": 6126.82, "y": 379.57, "action": "", @@ -418,7 +418,7 @@ "type": "path" }, { - "id": 7, + "id": 51, "x": 6112.14, "y": 360.45, "action": "", @@ -426,7 +426,7 @@ "type": "path" }, { - "id": 8, + "id": 52, "x": 6077.49, "y": 360.04, "action": "", @@ -434,7 +434,7 @@ "type": "path" }, { - "id": 9, + "id": 53, "x": 6043.48, "y": 359.0, "action": "", @@ -442,7 +442,7 @@ "type": "path" }, { - "id": 10, + "id": 54, "x": 6038.72, "y": 359.78, "action": "mining", @@ -451,7 +451,7 @@ "type": "path" }, { - "id": 11, + "id": 55, "x": 6039.84, "y": 360.61, "action": "", @@ -459,7 +459,7 @@ "type": "path" }, { - "id": 12, + "id": 56, "x": 6040.59, "y": 358.53, "action": "", @@ -467,7 +467,7 @@ "type": "path" }, { - "id": 13, + "id": 57, "x": 6037.18, "y": 356.51, "action": "", @@ -475,7 +475,7 @@ "type": "path" }, { - "id": 14, + "id": 58, "x": 6032.58, "y": 323.29, "action": "mining", @@ -484,7 +484,7 @@ "type": "target" }, { - "id": 15, + "id": 59, "x": 6029.94, "y": 322.43, "action": "", @@ -492,7 +492,7 @@ "type": "path" }, { - "id": 16, + "id": 60, "x": 6029.46, "y": 320.4, "action": "", @@ -500,7 +500,7 @@ "type": "path" }, { - "id": 17, + "id": 61, "x": 6013.55, "y": 304.37, "action": "", @@ -508,7 +508,7 @@ "type": "path" }, { - "id": 18, + "id": 62, "x": 6022.21, "y": 285.22, "action": "", @@ -516,7 +516,7 @@ "type": "path" }, { - "id": 19, + "id": 63, "x": 6031.47, "y": 280.23, "action": "mining", @@ -525,7 +525,7 @@ "type": "target" }, { - "id": 20, + "id": 64, "x": 6030.58, "y": 281.09, "action": "", @@ -533,7 +533,7 @@ "type": "path" }, { - "id": 21, + "id": 65, "x": 6031.41, "y": 279.08, "action": "", @@ -541,7 +541,7 @@ "type": "path" }, { - "id": 22, + "id": 66, "x": 6031.92, "y": 276.0, "action": "", @@ -549,7 +549,7 @@ "type": "path" }, { - "id": 23, + "id": 67, "x": 6033.14, "y": 277.67, "action": "", @@ -557,7 +557,7 @@ "type": "path" }, { - "id": 24, + "id": 68, "x": 6034.67, "y": 257.73, "action": "", @@ -565,7 +565,7 @@ "type": "path" }, { - "id": 25, + "id": 69, "x": 6039.48, "y": 253.93, "action": "mining", @@ -574,7 +574,7 @@ "type": "target" }, { - "id": 26, + "id": 70, "x": 6041.0, "y": 253.44, "action": "", @@ -582,7 +582,7 @@ "type": "path" }, { - "id": 27, + "id": 71, "x": 6040.62, "y": 249.75, "action": "", @@ -590,7 +590,7 @@ "type": "path" }, { - "id": 28, + "id": 72, "x": 6042.13, "y": 249.94, "action": "", @@ -598,7 +598,7 @@ "type": "path" }, { - "id": 29, + "id": 73, "x": 6036.96, "y": 250.97, "type": "path", @@ -606,7 +606,7 @@ "action": "" }, { - "id": 30, + "id": 74, "x": 6039.63, "y": 254.2, "type": "path", diff --git a/repo/pathing/地方特产/须弥/劫波莲/无草神@jbcaaa/08-劫波莲-维摩庄下方.json b/repo/pathing/地方特产/须弥/劫波莲/无草神@jbcaaa/08-劫波莲-维摩庄下方.json index 0d5be83f..3decc3a9 100644 --- a/repo/pathing/地方特产/须弥/劫波莲/无草神@jbcaaa/08-劫波莲-维摩庄下方.json +++ b/repo/pathing/地方特产/须弥/劫波莲/无草神@jbcaaa/08-劫波莲-维摩庄下方.json @@ -57,7 +57,7 @@ "action": "" }, { - "id": 9, + "id": 7, "x": 2703.83, "y": -1332.02, "type": "target", @@ -65,7 +65,7 @@ "action": "stop_flying" }, { - "id": 10, + "id": 8, "x": 2711.33, "y": -1323.38, "type": "path", @@ -73,7 +73,7 @@ "action": "" }, { - "id": 11, + "id": 9, "x": 2680.0, "y": -1282.25, "type": "path", diff --git a/repo/pathing/地方特产/须弥/圣金虫/06-圣金虫-荼诃落谷西-3个.json b/repo/pathing/地方特产/须弥/圣金虫/06-圣金虫-荼诃落谷西-3个.json index f319e694..1da76875 100644 --- a/repo/pathing/地方特产/须弥/圣金虫/06-圣金虫-荼诃落谷西-3个.json +++ b/repo/pathing/地方特产/须弥/圣金虫/06-圣金虫-荼诃落谷西-3个.json @@ -33,7 +33,7 @@ "action": "" }, { - "id": 5, + "id": 4, "x": 4773.91, "y": -3089.41, "type": "path", @@ -41,7 +41,7 @@ "action": "" }, { - "id": 6, + "id": 5, "x": 4824.08, "y": -3103.96, "type": "path", @@ -49,7 +49,7 @@ "action": "" }, { - "id": 7, + "id": 6, "x": 4843.29, "y": -3111.15, "type": "target", @@ -57,7 +57,7 @@ "action": "" }, { - "id": 8, + "id": 7, "x": 4881.99, "y": -3102.72, "type": "path", @@ -65,7 +65,7 @@ "action": "" }, { - "id": 9, + "id": 8, "x": 4888.09, "y": -3108.14, "type": "target", diff --git a/repo/pathing/地方特产/须弥/悼灵花/01-悼灵花-铁穆山-21个.json b/repo/pathing/地方特产/须弥/悼灵花/01-悼灵花-铁穆山-21个.json index b98725f5..f825e886 100644 --- a/repo/pathing/地方特产/须弥/悼灵花/01-悼灵花-铁穆山-21个.json +++ b/repo/pathing/地方特产/须弥/悼灵花/01-悼灵花-铁穆山-21个.json @@ -41,7 +41,7 @@ "type": "target" }, { - "id": 6, + "id": 5, "x": 6168.44, "y": 47.88, "action": "", @@ -49,7 +49,7 @@ "type": "target" }, { - "id": 7, + "id": 6, "x": 6182.36, "y": 47.6, "action": "", @@ -57,7 +57,7 @@ "type": "target" }, { - "id": 8, + "id": 7, "x": 6184.35, "y": 62.86, "action": "", @@ -65,7 +65,7 @@ "type": "target" }, { - "id": 9, + "id": 8, "x": 6188.26, "y": 83.79, "action": "", @@ -73,7 +73,7 @@ "type": "path" }, { - "id": 10, + "id": 9, "x": 6164.72, "y": 95.37, "action": "", @@ -81,7 +81,7 @@ "type": "path" }, { - "id": 11, + "id": 10, "x": 6153.33, "y": 116.02, "action": "stop_flying", @@ -89,7 +89,7 @@ "type": "target" }, { - "id": 12, + "id": 11, "x": 6155.5, "y": 116.81, "action": "", @@ -97,7 +97,7 @@ "type": "target" }, { - "id": 13, + "id": 12, "x": 6144.8, "y": 125.17, "action": "", @@ -105,7 +105,7 @@ "type": "target" }, { - "id": 14, + "id": 13, "x": 6143.56, "y": 126.93, "action": "", @@ -113,7 +113,7 @@ "type": "target" }, { - "id": 15, + "id": 14, "x": 6122.84, "y": 120.15, "action": "", @@ -121,7 +121,7 @@ "type": "path" }, { - "id": 16, + "id": 15, "x": 6116.89, "y": 125.4, "action": "", @@ -129,7 +129,7 @@ "type": "path" }, { - "id": 17, + "id": 16, "x": 6102.79, "y": 142.74, "action": "", @@ -137,7 +137,7 @@ "type": "path" }, { - "id": 18, + "id": 17, "x": 6116.38, "y": 157.33, "action": "", @@ -145,7 +145,7 @@ "type": "target" }, { - "id": 19, + "id": 18, "x": 6143.17, "y": 176.21, "action": "", @@ -153,7 +153,7 @@ "type": "target" }, { - "id": 20, + "id": 19, "x": 6143.36, "y": 208.06, "action": "", @@ -161,7 +161,7 @@ "type": "target" }, { - "id": 21, + "id": 20, "x": 6146.22, "y": 211.12, "action": "", @@ -169,7 +169,7 @@ "type": "target" }, { - "id": 22, + "id": 21, "x": 6156.72, "y": 213.69, "action": "", @@ -177,7 +177,7 @@ "type": "target" }, { - "id": 23, + "id": 22, "x": 6146.99, "y": 214.84, "action": "", @@ -185,7 +185,7 @@ "type": "target" }, { - "id": 24, + "id": 23, "x": 6134.25, "y": 208.62, "action": "", @@ -193,7 +193,7 @@ "type": "target" }, { - "id": 25, + "id": 24, "x": 6133.74, "y": 222.93, "action": "", @@ -201,7 +201,7 @@ "type": "target" }, { - "id": 26, + "id": 25, "x": 6149.1, "y": 227.82, "action": "", @@ -209,7 +209,7 @@ "type": "target" }, { - "id": 27, + "id": 26, "x": 6173.99, "y": 266.01, "action": "", @@ -217,7 +217,7 @@ "type": "target" }, { - "id": 28, + "id": 27, "x": 6181.92, "y": 294.58, "action": "", @@ -225,7 +225,7 @@ "type": "path" }, { - "id": 29, + "id": 28, "x": 6185.58, "y": 306.08, "action": "", @@ -233,7 +233,7 @@ "type": "path" }, { - "id": 30, + "id": 29, "x": 6193.62, "y": 357.77, "action": "", diff --git a/repo/pathing/地方特产/须弥/月莲/01-月莲-护世森下-7个.json b/repo/pathing/地方特产/须弥/月莲/01-月莲-护世森下-7个.json index 00cabe3a..fac55275 100644 --- a/repo/pathing/地方特产/须弥/月莲/01-月莲-护世森下-7个.json +++ b/repo/pathing/地方特产/须弥/月莲/01-月莲-护世森下-7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2531.97, "y": -144.74, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2557.3, "y": -216.95, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2558.19, "y": -247.13, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 2645.39, "y": -289.57, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 2644.25, "y": -285.29, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 2621.07, "y": -263.45, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 2589.75, "y": -288.13, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 2591.75, "y": -302.94, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 2554.55, "y": -320.98, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 2532.74, "y": -331.14, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 2503.69, "y": -303.32, "type": "path", @@ -85,6 +96,7 @@ "action": "stop_flying" }, { + "id": 12, "x": 2500.67, "y": -298.86, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 2493.58, "y": -314.65, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 2457.29, "y": -297.75, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/02-月莲-护世森左-4个.json b/repo/pathing/地方特产/须弥/月莲/02-月莲-护世森左-4个.json index 00e76e48..ee63880b 100644 --- a/repo/pathing/地方特产/须弥/月莲/02-月莲-护世森左-4个.json +++ b/repo/pathing/地方特产/须弥/月莲/02-月莲-护世森左-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2531.97, "y": -144.64, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2593.02, "y": -154.65, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2640.34, "y": -163.52, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 2640.81, "y": -169.07, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 2661.5, "y": -152.52, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 2676.68, "y": -165.37, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 2720.1, "y": -207.3, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 2744.03, "y": -204.91, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 2774.99, "y": -209.98, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 2794.85, "y": -227.92, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/03-月莲-卡扎莱宫-5个.json b/repo/pathing/地方特产/须弥/月莲/03-月莲-卡扎莱宫-5个.json index 31666161..f073e0fd 100644 --- a/repo/pathing/地方特产/须弥/月莲/03-月莲-卡扎莱宫-5个.json +++ b/repo/pathing/地方特产/须弥/月莲/03-月莲-卡扎莱宫-5个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2482.4, "y": 5.86, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2502.25, "y": 19.59, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2526.85, "y": 30.76, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 2578.12, "y": 39.97, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 2597.8, "y": 25.27, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 2592.24, "y": 50.12, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 2579.74, "y": 61.62, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 2596.43, "y": 75.42, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 2595.04, "y": 96.72, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 2600.7, "y": 111.28, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 2611.65, "y": 111.04, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 2614.21, "y": 104.11, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 2630.52, "y": 115.66, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 2648.63, "y": 120.73, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 2677.88, "y": 113.05, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 2693.76, "y": 88.38, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/04-月莲-茸蕈窟-4个.json b/repo/pathing/地方特产/须弥/月莲/04-月莲-茸蕈窟-4个.json index 898ae7b3..6585c902 100644 --- a/repo/pathing/地方特产/须弥/月莲/04-月莲-茸蕈窟-4个.json +++ b/repo/pathing/地方特产/须弥/月莲/04-月莲-茸蕈窟-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2803.79, "y": 9.42, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2821.78, "y": 22.91, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2903.8, "y": 65.47, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 2926.76, "y": 75.28, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 2969.6, "y": 102.89, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 2992.71, "y": 121.74, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 3019.51, "y": 119.44, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 3021.19, "y": 94.91, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 3039.83, "y": 70.06, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 3090.69, "y": 48.6, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 3111.12, "y": 37.41, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 3110.65, "y": 36.48, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 3099.1, "y": 9.38, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 3071.05, "y": 6.77, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 3067.58, "y": 6.88, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/05-月莲-觉王之殿右上-2个.json b/repo/pathing/地方特产/须弥/月莲/05-月莲-觉王之殿右上-2个.json index 491e72f0..67c1c128 100644 --- a/repo/pathing/地方特产/须弥/月莲/05-月莲-觉王之殿右上-2个.json +++ b/repo/pathing/地方特产/须弥/月莲/05-月莲-觉王之殿右上-2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 3705.53, "y": -497.45, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 3685.62, "y": -463.37, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 3662.63, "y": -436.89, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 3644.5, "y": -413.65, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 3630.59, "y": -398.27, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 3614.02, "y": -379.45, "type": "path", @@ -50,6 +56,7 @@ "action": "stop_flying" }, { + "id": 7, "x": 3594.13, "y": -359.93, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 3576.97, "y": -341.9, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 3565.81, "y": -360.79, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/06-月莲-禅那园-4个.json b/repo/pathing/地方特产/须弥/月莲/06-月莲-禅那园-4个.json index bdfef893..b10ef767 100644 --- a/repo/pathing/地方特产/须弥/月莲/06-月莲-禅那园-4个.json +++ b/repo/pathing/地方特产/须弥/月莲/06-月莲-禅那园-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 3397.59, "y": -1174.53, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 3376.55, "y": -1133.45, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 3366.35, "y": -1111.79, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 3346.6, "y": -1085.45, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 3330.42, "y": -1087.27, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 3316.95, "y": -1097.51, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 3312.24, "y": -1094.45, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/07-月莲-维摩庄-6个.json b/repo/pathing/地方特产/须弥/月莲/07-月莲-维摩庄-6个.json index ed2c9551..232ce167 100644 --- a/repo/pathing/地方特产/须弥/月莲/07-月莲-维摩庄-6个.json +++ b/repo/pathing/地方特产/须弥/月莲/07-月莲-维摩庄-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2794.12, "y": -1216.44, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2827.14, "y": -1162.23, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2872.96, "y": -1134.97, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 2913.22, "y": -1132.97, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 2947.61, "y": -1117.85, "type": "path", @@ -43,6 +48,7 @@ "action": "stop_flying" }, { + "id": 6, "x": 2943.14, "y": -1127.28, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 2948.13, "y": -1127.76, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 2949.87, "y": -1136.94, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 2957.83, "y": -1127.46, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 2957.18, "y": -1121.97, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 2956.52, "y": -1116.61, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/08-月莲-维摩庄右-2个.json b/repo/pathing/地方特产/须弥/月莲/08-月莲-维摩庄右-2个.json index d497fe2f..06bf697f 100644 --- a/repo/pathing/地方特产/须弥/月莲/08-月莲-维摩庄右-2个.json +++ b/repo/pathing/地方特产/须弥/月莲/08-月莲-维摩庄右-2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2794.18, "y": -1216.44, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2736.18, "y": -1240.44, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2673.21, "y": -1261.75, "type": "path", @@ -29,6 +32,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 2681.12, "y": -1264.4, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 2679.02, "y": -1269.65, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/09-月莲-降魔山下-7个.json b/repo/pathing/地方特产/须弥/月莲/09-月莲-降魔山下-7个.json index dde300fb..1614b5b9 100644 --- a/repo/pathing/地方特产/须弥/月莲/09-月莲-降魔山下-7个.json +++ b/repo/pathing/地方特产/须弥/月莲/09-月莲-降魔山下-7个.json @@ -8,30 +8,35 @@ }, "positions": [ { + "id": 1, "x": 2288.76, "y": -1197.62, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 2305.72, "y": -1230.01, "type": "path", "move_mode": "fly" }, { + "id": 3, "x": 2315.66, "y": -1259.15, "type": "path", "move_mode": "fly" }, { + "id": 4, "x": 2329.77, "y": -1283.01, "type": "path", "move_mode": "fly" }, { + "id": 5, "x": 2342.58, "y": -1309.38, "type": "path", @@ -39,42 +44,49 @@ "action": "stop_flying" }, { + "id": 6, "x": 2336.61, "y": -1313.26, "type": "target", "move_mode": "swim" }, { + "id": 7, "x": 2328.72, "y": -1308.87, "type": "target", "move_mode": "swim" }, { + "id": 8, "x": 2317.43, "y": -1304.23, "type": "target", "move_mode": "swim" }, { + "id": 9, "x": 2313.87, "y": -1312.72, "type": "target", "move_mode": "swim" }, { + "id": 10, "x": 2297.31, "y": -1303.03, "type": "target", "move_mode": "swim" }, { + "id": 11, "x": 2293.66, "y": -1297.61, "type": "target", "move_mode": "swim" }, { + "id": 12, "x": 2287.92, "y": -1310.47, "type": "target", diff --git a/repo/pathing/地方特产/须弥/月莲/10-月莲-降魔山左下-6个.json b/repo/pathing/地方特产/须弥/月莲/10-月莲-降魔山左下-6个.json index dc6f472a..c0bcade3 100644 --- a/repo/pathing/地方特产/须弥/月莲/10-月莲-降魔山左下-6个.json +++ b/repo/pathing/地方特产/须弥/月莲/10-月莲-降魔山左下-6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2567.48, "y": -1424.08, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2594.33, "y": -1429.42, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2618.9, "y": -1433.51, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 2645.72, "y": -1436.63, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 2678.83, "y": -1435.1, "type": "path", @@ -43,6 +48,7 @@ "action": "stop_flying" }, { + "id": 6, "x": 2695.64, "y": -1440.95, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 2696.9, "y": -1452.01, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 2700.53, "y": -1453.75, "type": "target", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 2701.33, "y": -1459.14, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 2719.98, "y": -1460.27, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 2721.16, "y": -1464.8, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 2717.78, "y": -1466.56, "type": "target", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 2719.55, "y": -1472.12, "type": "target", diff --git a/repo/pathing/敌人与魔物/丘丘王/丘丘王01.json b/repo/pathing/敌人与魔物/丘丘王/丘丘王01.json index 5c5c0f4a..b1214caf 100644 --- a/repo/pathing/敌人与魔物/丘丘王/丘丘王01.json +++ b/repo/pathing/敌人与魔物/丘丘王/丘丘王01.json @@ -57,7 +57,7 @@ "action": "" }, { - "id": 8, + "id": 7, "x": -693.96, "y": 1056.0, "action": "", @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 10, + "id": 8, "x": -698.82, "y": 1052.61, "type": "path", @@ -73,7 +73,7 @@ "action": "" }, { - "id": 11, + "id": 9, "x": -701.08, "y": 1062.23, "type": "path", @@ -81,7 +81,7 @@ "action": "" }, { - "id": 12, + "id": 10, "x": -704.03, "y": 1083.9, "type": "path", diff --git a/repo/pathing/敌人与魔物/丘丘王/丘丘王03.json b/repo/pathing/敌人与魔物/丘丘王/丘丘王03.json index 6157094e..24778460 100644 --- a/repo/pathing/敌人与魔物/丘丘王/丘丘王03.json +++ b/repo/pathing/敌人与魔物/丘丘王/丘丘王03.json @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 3, + "id": 2, "x": -444.41, "y": 923.5, "action": "", @@ -25,7 +25,7 @@ "type": "path" }, { - "id": 4, + "id": 3, "x": -381.01, "y": 986.0, "action": "fight", diff --git a/repo/pathing/敌人与魔物/丘丘王/丘丘王04.json b/repo/pathing/敌人与魔物/丘丘王/丘丘王04.json index 5c4bafbb..9bb2d378 100644 --- a/repo/pathing/敌人与魔物/丘丘王/丘丘王04.json +++ b/repo/pathing/敌人与魔物/丘丘王/丘丘王04.json @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 6, + "id": 2, "x": -410.81, "y": 709.88, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 7, + "id": 3, "x": -427.31, "y": 695.17, "type": "path", @@ -33,7 +33,7 @@ "action": "" }, { - "id": 8, + "id": 4, "x": -443.33, "y": 675.55, "type": "path", @@ -41,7 +41,7 @@ "action": "" }, { - "id": 9, + "id": 5, "x": -454.12, "y": 657.49, "type": "path", @@ -49,7 +49,7 @@ "action": "" }, { - "id": 10, + "id": 6, "x": -465.2, "y": 637.76, "type": "path", @@ -57,7 +57,7 @@ "action": "" }, { - "id": 11, + "id": 7, "x": -482.0, "y": 635.0, "action": "fight", diff --git a/repo/pathing/敌人与魔物/丘丘王/丘丘王06.json b/repo/pathing/敌人与魔物/丘丘王/丘丘王06.json index 16c72f9d..1306c4af 100644 --- a/repo/pathing/敌人与魔物/丘丘王/丘丘王06.json +++ b/repo/pathing/敌人与魔物/丘丘王/丘丘王06.json @@ -65,7 +65,7 @@ "action": "stop_flying" }, { - "id": 11, + "id": 8, "x": 921.42, "y": -494.64, "type": "path", diff --git a/repo/pathing/敌人与魔物/丘丘王/丘丘王08.json b/repo/pathing/敌人与魔物/丘丘王/丘丘王08.json index f13ce464..0a2d67e2 100644 --- a/repo/pathing/敌人与魔物/丘丘王/丘丘王08.json +++ b/repo/pathing/敌人与魔物/丘丘王/丘丘王08.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": 1852.09, "y": -897.5, "action": "", @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 5, + "id": 4, "x": 1858.08, "y": -890.0, "action": "", @@ -41,7 +41,7 @@ "type": "path" }, { - "id": 6, + "id": 5, "x": 1865.07, "y": -889.25, "type": "path", diff --git a/repo/pathing/敌人与魔物/丘丘王/丘丘王10.json b/repo/pathing/敌人与魔物/丘丘王/丘丘王10.json index 9786300e..c650085d 100644 --- a/repo/pathing/敌人与魔物/丘丘王/丘丘王10.json +++ b/repo/pathing/敌人与魔物/丘丘王/丘丘王10.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 5, + "id": 3, "x": 3591.36, "y": -2002.66, "action": "", @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 6, + "id": 4, "x": 3608.35, "y": -2013.91, "action": "fight", diff --git a/repo/pathing/敌人与魔物/发条机关/发条机关01.json b/repo/pathing/敌人与魔物/发条机关/发条机关01.json index 07a8147d..2c191d00 100644 --- a/repo/pathing/敌人与魔物/发条机关/发条机关01.json +++ b/repo/pathing/敌人与魔物/发条机关/发条机关01.json @@ -81,7 +81,7 @@ "action": "" }, { - "id": 11, + "id": 10, "x": 4006.8, "y": 4401.44, "type": "path", diff --git a/repo/pathing/敌人与魔物/发条机关/发条机关04.json b/repo/pathing/敌人与魔物/发条机关/发条机关04.json index 00133f34..1af74e0a 100644 --- a/repo/pathing/敌人与魔物/发条机关/发条机关04.json +++ b/repo/pathing/敌人与魔物/发条机关/发条机关04.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 4, + "id": 1, "x": 3846.88, "y": 4652.93, "type": "teleport", diff --git a/repo/pathing/敌人与魔物/发条机关/发条机关05.json b/repo/pathing/敌人与魔物/发条机关/发条机关05.json index 45cae415..03428383 100644 --- a/repo/pathing/敌人与魔物/发条机关/发条机关05.json +++ b/repo/pathing/敌人与魔物/发条机关/发条机关05.json @@ -64,7 +64,7 @@ "action": "fight" }, { - "id": 9, + "id": 8, "x": 3799.54, "y": 4943.41, "type": "path", diff --git a/repo/pathing/敌人与魔物/发条机关/发条机关07.json b/repo/pathing/敌人与魔物/发条机关/发条机关07.json index 138d6b68..7c0ec05d 100644 --- a/repo/pathing/敌人与魔物/发条机关/发条机关07.json +++ b/repo/pathing/敌人与魔物/发条机关/发条机关07.json @@ -17,7 +17,7 @@ "action": "" }, { - "id": 3, + "id": 2, "x": 3961.14, "y": 4720.32, "type": "path", diff --git a/repo/pathing/敌人与魔物/史莱姆/史莱姆速刷.json b/repo/pathing/敌人与魔物/史莱姆/史莱姆速刷.json index b320c15d..f5737227 100644 --- a/repo/pathing/敌人与魔物/史莱姆/史莱姆速刷.json +++ b/repo/pathing/敌人与魔物/史莱姆/史莱姆速刷.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": 25.82, "y": -114.76, "type": "teleport", @@ -305,7 +305,7 @@ "action": "fight" }, { - "id": 39, + "id": 38, "x": 1184.92, "y": 621.06, "type": "teleport", @@ -321,7 +321,7 @@ "action": "" }, { - "id": 41, + "id": 40, "x": 1149.21, "y": 634.4, "type": "path", @@ -449,7 +449,7 @@ "action": "" }, { - "id": 57, + "id": 56, "x": -136.26, "y": 206.48, "type": "path", diff --git a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-璃月-云来海.json b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-璃月-云来海.json index ab4f67ab..a2183aec 100644 --- a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-璃月-云来海.json +++ b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-璃月-云来海.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": 25.99, "y": -112.27, "type": "teleport", diff --git a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-璃月-灵矩关.json b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-璃月-灵矩关.json index 17d3da09..eb738424 100644 --- a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-璃月-灵矩关.json +++ b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-璃月-灵矩关.json @@ -17,7 +17,7 @@ "action": "" }, { - "id": 3, + "id": 2, "x": 1045.32, "y": -619.49, "type": "path", @@ -25,7 +25,7 @@ "action": "stop_flying" }, { - "id": 4, + "id": 3, "x": 1060.44, "y": -615.24, "type": "path", diff --git a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-奔狼领.json b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-奔狼领.json index 66f72d3d..5eae61a9 100644 --- a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-奔狼领.json +++ b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-奔狼领.json @@ -113,7 +113,7 @@ "action": "" }, { - "id": 15, + "id": 14, "x": -315.92, "y": 2042.89, "action": "", @@ -121,7 +121,7 @@ "type": "path" }, { - "id": 16, + "id": 15, "x": -305.76, "y": 2033.21, "action": "fight", diff --git a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-望风山地.json b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-望风山地.json index 0b179f03..b75f031d 100644 --- a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-望风山地.json +++ b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-望风山地.json @@ -49,7 +49,7 @@ "action": "" }, { - "id": 7, + "id": 6, "x": -1201.87, "y": 2852.19, "type": "path", @@ -57,7 +57,7 @@ "action": "" }, { - "id": 8, + "id": 7, "x": -1184.48, "y": 2864.33, "type": "path", @@ -65,7 +65,7 @@ "action": "" }, { - "id": 9, + "id": 8, "x": -1187.5, "y": 2875.28, "type": "path", diff --git a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-达达乌帕谷.json b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-达达乌帕谷.json index 524b63f7..6fed69f5 100644 --- a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-达达乌帕谷.json +++ b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-达达乌帕谷.json @@ -17,19 +17,21 @@ "y": 1464.61 }, { + "id": 2, "x": -1443.85, "y": 1477.51, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": -1445.26, "y": 1494.35, "type": "path", "move_mode": "walk" }, { - "id": 2, + "id": 4, "x": -1453.6, "y": 1504.53, "type": "path", @@ -37,7 +39,7 @@ "action": "" }, { - "id": 3, + "id": 5, "x": -1461.21, "y": 1495.88, "type": "path", @@ -45,7 +47,7 @@ "action": "" }, { - "id": 4, + "id": 6, "x": -1504.8, "y": 1472.17, "type": "path", @@ -53,7 +55,7 @@ "action": "" }, { - "id": 5, + "id": 7, "x": -1525.22, "y": 1471.32, "type": "path", @@ -61,7 +63,7 @@ "action": "" }, { - "id": 6, + "id": 8, "x": -1544.82, "y": 1464.74, "type": "path", diff --git a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-风起地.json b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-风起地.json index 4acffa93..a69ff365 100644 --- a/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-风起地.json +++ b/repo/pathing/敌人与魔物/奇怪的丘丘人/大伟丘-蒙德-风起地.json @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 5, + "id": 4, "x": -1272.95, "y": 1886.84, "type": "path", diff --git a/repo/pathing/敌人与魔物/纳塔龙众和部族龙形武士/柴薪之丘3.json b/repo/pathing/敌人与魔物/纳塔龙众和部族龙形武士/柴薪之丘3.json index 8ed8d90f..f39480dc 100644 --- a/repo/pathing/敌人与魔物/纳塔龙众和部族龙形武士/柴薪之丘3.json +++ b/repo/pathing/敌人与魔物/纳塔龙众和部族龙形武士/柴薪之丘3.json @@ -57,7 +57,7 @@ "type": "path" }, { - "id": 8, + "id": 7, "x": 8932.49, "y": -1750.62, "action": "stop_flying", @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 9, + "id": 8, "x": 9005.77, "y": -1747.07, "action": "", @@ -73,7 +73,7 @@ "type": "path" }, { - "id": 10, + "id": 9, "x": 9027.27, "y": -1736.96, "action": "fight", @@ -81,7 +81,7 @@ "type": "path" }, { - "id": 11, + "id": 10, "x": 9002.46, "y": -1750.16, "action": "", @@ -89,7 +89,7 @@ "type": "path" }, { - "id": 12, + "id": 11, "x": 8965.8, "y": -1761.94, "action": "", @@ -97,7 +97,7 @@ "type": "path" }, { - "id": 13, + "id": 12, "x": 8989.95, "y": -1774.38, "action": "fight", @@ -105,7 +105,7 @@ "type": "path" }, { - "id": 14, + "id": 13, "x": 8991.08, "y": -1816.54, "action": "", @@ -113,7 +113,7 @@ "type": "path" }, { - "id": 15, + "id": 14, "x": 8975.52, "y": -1816.43, "action": "fight", diff --git a/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫06.json b/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫06.json index 73b2f943..7ba25e87 100644 --- a/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫06.json +++ b/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫06.json @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 9, + "id": 8, "x": -326.89, "y": 2695.52, "type": "path", @@ -73,7 +73,7 @@ "action": "" }, { - "id": 10, + "id": 9, "x": -313.13, "y": 2697.88, "action": "", @@ -81,7 +81,7 @@ "type": "path" }, { - "id": 11, + "id": 10, "x": -304.56, "y": 2692.52, "action": "", @@ -89,7 +89,7 @@ "type": "path" }, { - "id": 12, + "id": 11, "x": -302.97, "y": 2692.24, "action": "", @@ -97,7 +97,7 @@ "type": "path" }, { - "id": 14, + "id": 12, "x": -308.06, "y": 2698.5, "type": "path", diff --git a/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫11-枫丹.json b/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫11-枫丹.json index e0abbdb5..c4b314db 100644 --- a/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫11-枫丹.json +++ b/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫11-枫丹.json @@ -73,7 +73,7 @@ "action": "" }, { - "id": 10, + "id": 9, "x": 4981.15, "y": 2402.66, "type": "path", @@ -81,7 +81,7 @@ "action": "fight" }, { - "id": 11, + "id": 10, "x": 4876.55, "y": 2255.21, "action": "", @@ -89,7 +89,7 @@ "type": "teleport" }, { - "id": 12, + "id": 11, "x": 4893.53, "y": 2276.23, "action": "", @@ -97,7 +97,7 @@ "type": "path" }, { - "id": 13, + "id": 12, "x": 4928.1, "y": 2298.16, "action": "", @@ -105,7 +105,7 @@ "type": "path" }, { - "id": 14, + "id": 13, "x": 4939.34, "y": 2314.46, "action": "stop_flying", @@ -113,7 +113,7 @@ "type": "path" }, { - "id": 15, + "id": 14, "x": 4955.55, "y": 2319.06, "action": "stop_flying", @@ -121,7 +121,7 @@ "type": "path" }, { - "id": 16, + "id": 15, "x": 4959.63, "y": 2324.05, "action": "", @@ -129,7 +129,7 @@ "type": "target" }, { - "id": 17, + "id": 16, "x": 4957.63, "y": 2324.05, "type": "path", diff --git a/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫13.json b/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫13.json index b032975d..c9d9f9f0 100644 --- a/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫13.json +++ b/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫13.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": 1088.75, "y": 983.0, "type": "path", @@ -33,7 +33,7 @@ "action": "" }, { - "id": 5, + "id": 4, "x": 1094.48, "y": 970.66, "type": "path", @@ -41,7 +41,7 @@ "action": "" }, { - "id": 6, + "id": 5, "x": 1076.13, "y": 975.7, "type": "path", @@ -49,7 +49,7 @@ "action": "" }, { - "id": 7, + "id": 6, "x": 1079.26, "y": 984.48, "type": "path", @@ -57,7 +57,7 @@ "action": "" }, { - "id": 8, + "id": 7, "x": 1110.36, "y": 981.87, "type": "target", @@ -65,7 +65,7 @@ "action": "" }, { - "id": 9, + "id": 8, "x": 1108.82, "y": 1000.32, "type": "target", @@ -73,7 +73,7 @@ "action": "" }, { - "id": 10, + "id": 9, "x": 1113.07, "y": 1007.28, "type": "path", @@ -81,7 +81,7 @@ "action": "" }, { - "id": 11, + "id": 10, "x": 1117.46, "y": 1016.88, "type": "path", diff --git a/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫14.json b/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫14.json index d5e7ffe1..137123de 100644 --- a/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫14.json +++ b/repo/pathing/敌人与魔物/遗迹守卫/遗迹守卫14.json @@ -41,7 +41,7 @@ "action": "" }, { - "id": 6, + "id": 5, "x": -4288.61, "y": -2431.67, "type": "path", @@ -49,7 +49,7 @@ "action": "stop_flying" }, { - "id": 7, + "id": 6, "x": -4289.94, "y": -2431.58, "type": "path", diff --git a/repo/pathing/敌人与魔物/野伏众/野伏众@XS/01绀田村-刀镡.json b/repo/pathing/敌人与魔物/野伏众/野伏众@XS/01绀田村-刀镡.json index d1db132d..eb7ae518 100644 --- a/repo/pathing/敌人与魔物/野伏众/野伏众@XS/01绀田村-刀镡.json +++ b/repo/pathing/敌人与魔物/野伏众/野伏众@XS/01绀田村-刀镡.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": -4050.1, "y": -2657.46, "type": "teleport", diff --git a/repo/pathing/敌人与魔物/野伏众/野伏众@XS/03海祇岛左上-刀镡.json b/repo/pathing/敌人与魔物/野伏众/野伏众@XS/03海祇岛左上-刀镡.json index df19b539..88f3b8e0 100644 --- a/repo/pathing/敌人与魔物/野伏众/野伏众@XS/03海祇岛左上-刀镡.json +++ b/repo/pathing/敌人与魔物/野伏众/野伏众@XS/03海祇岛左上-刀镡.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": -766.01, "y": -3557.36, "type": "teleport", diff --git a/repo/pathing/敌人与魔物/镀金旅团/善见地1.json b/repo/pathing/敌人与魔物/镀金旅团/善见地1.json index b0888c1f..e045c64b 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/善见地1.json +++ b/repo/pathing/敌人与魔物/镀金旅团/善见地1.json @@ -8,18 +8,21 @@ }, "positions": [ { + "id": 1, "x": 3639.62, "y": -1417.52, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 3657.02, "y": -1420.82, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 3718.47, "y": -1449.81, "type": "path", @@ -27,6 +30,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 3719.47, "y": -1449.81, "type": "path", @@ -34,12 +38,14 @@ "action": "fight" }, { + "id": 5, "x": 3741.29, "y": -1450.77, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 3799.39, "y": -1450.5, "type": "path", @@ -47,12 +53,14 @@ "action": "stop_flying" }, { + "id": 7, "x": 3805.58, "y": -1428.3, "type": "path", "move_mode": "walk" }, { + "id": 8, "x": 3810.3, "y": -1435.63, "type": "path", @@ -60,36 +68,42 @@ "action": "fight" }, { + "id": 9, "x": 3816.74, "y": -1437.94, "type": "path", "move_mode": "walk" }, { + "id": 10, "x": 3813.47, "y": -1445.43, "type": "path", "move_mode": "walk" }, { + "id": 11, "x": 3808.82, "y": -1413.32, "type": "path", "move_mode": "walk" }, { + "id": 12, "x": 3825.85, "y": -1408.32, "type": "path", "move_mode": "walk" }, { + "id": 13, "x": 3830.07, "y": -1431.18, "type": "path", "move_mode": "walk" }, { + "id": 14, "x": 3825.54, "y": -1440.33, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/善见地2.json b/repo/pathing/敌人与魔物/镀金旅团/善见地2.json index 53918bca..e9e890bf 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/善见地2.json +++ b/repo/pathing/敌人与魔物/镀金旅团/善见地2.json @@ -8,18 +8,21 @@ }, "positions": [ { + "id": 1, "x": 3639.61, "y": -1417.5, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 3628.59, "y": -1419.02, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 3558.68, "y": -1436.89, "type": "path", @@ -27,6 +30,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 3552.44, "y": -1441.19, "type": "path", @@ -34,12 +38,14 @@ "action": "fight" }, { + "id": 5, "x": 3571.06, "y": -1476.91, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 3579.71, "y": -1502.63, "type": "path", @@ -47,6 +53,7 @@ "action": "stop_flying" }, { + "id": 7, "x": 3579.03, "y": -1515.34, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/塔尼特露营地.json b/repo/pathing/敌人与魔物/镀金旅团/塔尼特露营地.json index 74d152c3..b044dea3 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/塔尼特露营地.json +++ b/repo/pathing/敌人与魔物/镀金旅团/塔尼特露营地.json @@ -8,24 +8,28 @@ }, "positions": [ { + "id": 1, "x": 5063.82, "y": -1587.74, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 5077.17, "y": -1503.36, "type": "path", "move_mode": "fly" }, { + "id": 3, "x": 5079.81, "y": -1490.07, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": 5044.11, "y": -1479.99, "type": "path", @@ -33,12 +37,14 @@ "action": "fight" }, { + "id": 5, "x": 5015.77, "y": -1433.4, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 5012.46, "y": -1413.1, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/天臂池1.json b/repo/pathing/敌人与魔物/镀金旅团/天臂池1.json index 7b0372dc..b84f3697 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/天臂池1.json +++ b/repo/pathing/敌人与魔物/镀金旅团/天臂池1.json @@ -8,42 +8,49 @@ }, "positions": [ { + "id": 1, "x": 3067.85, "y": -713.76, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 3079.15, "y": -712.87, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 3128.65, "y": -709.26, "type": "path", "move_mode": "fly" }, { + "id": 4, "x": 3189.15, "y": -704.92, "type": "path", "move_mode": "fly" }, { + "id": 5, "x": 3230.49, "y": -713.7, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 3266.88, "y": -704.53, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": 3267.48, "y": -695.79, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/天臂池2.json b/repo/pathing/敌人与魔物/镀金旅团/天臂池2.json index dce8c11b..dbb9dc48 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/天臂池2.json +++ b/repo/pathing/敌人与魔物/镀金旅团/天臂池2.json @@ -8,30 +8,35 @@ }, "positions": [ { + "id": 1, "x": 3097.22, "y": -355.96, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 3121.47, "y": -352.09, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 3139.39, "y": -344.13, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": 3151.04, "y": -373.82, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": 3141.83, "y": -381.65, "type": "path", @@ -39,18 +44,21 @@ "action": "fight" }, { + "id": 6, "x": 3141.21, "y": -411.49, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": 3116.71, "y": -428.82, "type": "path", "move_mode": "walk" }, { + "id": 8, "x": 3111.55, "y": -467.05, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/天臂池3.json b/repo/pathing/敌人与魔物/镀金旅团/天臂池3.json index 1e27b384..71726bb4 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/天臂池3.json +++ b/repo/pathing/敌人与魔物/镀金旅团/天臂池3.json @@ -8,18 +8,21 @@ }, "positions": [ { + "id": 1, "x": 3097.2, "y": -355.97, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 3043.24, "y": -334.58, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 3023.74, "y": -340.24, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/荼诃落谷1.json b/repo/pathing/敌人与魔物/镀金旅团/荼诃落谷1.json index 431adec5..579b9506 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/荼诃落谷1.json +++ b/repo/pathing/敌人与魔物/镀金旅团/荼诃落谷1.json @@ -8,30 +8,35 @@ }, "positions": [ { + "id": 1, "x": 4391.66, "y": -2725.9, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 4421.29, "y": -2715.18, "type": "path", "move_mode": "fly" }, { + "id": 3, "x": 4432.14, "y": -2711.43, "type": "path", "move_mode": "walk" }, { + "id": 4, "x": 4444.17, "y": -2719.08, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": 4463.21, "y": -2707.4, "type": "path", @@ -39,12 +44,14 @@ "action": "fight" }, { + "id": 6, "x": 4532.98, "y": -2670.33, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": 4528.69, "y": -2644.71, "type": "path", @@ -52,18 +59,21 @@ "action": "fight" }, { + "id": 8, "x": 4572.22, "y": -2638.88, "type": "path", "move_mode": "walk" }, { + "id": 9, "x": 4603.06, "y": -2625.81, "type": "path", "move_mode": "walk" }, { + "id": 10, "x": 4609.21, "y": -2640.51, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/荼诃落谷2.json b/repo/pathing/敌人与魔物/镀金旅团/荼诃落谷2.json index 6d8b3b45..30ee2c37 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/荼诃落谷2.json +++ b/repo/pathing/敌人与魔物/镀金旅团/荼诃落谷2.json @@ -8,18 +8,21 @@ }, "positions": [ { + "id": 1, "x": 4209.69, "y": -2712.02, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 4215.01, "y": -2677.16, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 4231.44, "y": -2658.18, "type": "path", @@ -27,24 +30,28 @@ "action": "fight" }, { + "id": 4, "x": 4255.15, "y": -2621.53, "type": "path", "move_mode": "walk" }, { + "id": 5, "x": 4300.91, "y": -2604.69, "type": "path", "move_mode": "walk" }, { + "id": 6, "x": 4339.21, "y": -2590.11, "type": "path", "move_mode": "walk" }, { + "id": 7, "x": 4341.68, "y": -2604.83, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/觉王之殿1.json b/repo/pathing/敌人与魔物/镀金旅团/觉王之殿1.json index 3eb8bf4f..8418b6b0 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/觉王之殿1.json +++ b/repo/pathing/敌人与魔物/镀金旅团/觉王之殿1.json @@ -8,18 +8,21 @@ }, "positions": [ { + "id": 1, "x": 3591.28, "y": -787.33, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 3564.79, "y": -797.35, "type": "path", "move_mode": "walk" }, { + "id": 3, "x": 3561.46, "y": -852.72, "type": "path", @@ -27,6 +30,7 @@ "action": "fight" }, { + "id": 4, "x": 3532.14, "y": -838.62, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/阿陀河谷1.json b/repo/pathing/敌人与魔物/镀金旅团/阿陀河谷1.json index 6e89fc92..22bb81ac 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/阿陀河谷1.json +++ b/repo/pathing/敌人与魔物/镀金旅团/阿陀河谷1.json @@ -8,12 +8,14 @@ }, "positions": [ { + "id": 1, "x": 2809.11, "y": -1789.24, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 2865.38, "y": -1753.29, "type": "path", @@ -21,6 +23,7 @@ "action": "stop_flying" }, { + "id": 3, "x": 2867.9, "y": -1749.05, "type": "path", diff --git a/repo/pathing/敌人与魔物/镀金旅团/阿陀河谷2.json b/repo/pathing/敌人与魔物/镀金旅团/阿陀河谷2.json index ffe7fc0e..8f0cc2bf 100644 --- a/repo/pathing/敌人与魔物/镀金旅团/阿陀河谷2.json +++ b/repo/pathing/敌人与魔物/镀金旅团/阿陀河谷2.json @@ -8,12 +8,14 @@ }, "positions": [ { + "id": 1, "x": 2805.29, "y": -1791.9, "type": "teleport", "move_mode": "walk" }, { + "id": 2, "x": 2798.11, "y": -1879.32, "type": "path", @@ -21,6 +23,7 @@ "action": "stop_flying" }, { + "id": 3, "x": 2771.76, "y": -1870.9, "type": "path", @@ -28,6 +31,7 @@ "action": "fight" }, { + "id": 4, "x": 2763.13, "y": -1868.64, "type": "path", diff --git a/repo/pathing/敌人与魔物/风役人/枫丹风役人10.json b/repo/pathing/敌人与魔物/风役人/枫丹风役人10.json index ab81793c..f9ae1988 100644 --- a/repo/pathing/敌人与魔物/风役人/枫丹风役人10.json +++ b/repo/pathing/敌人与魔物/风役人/枫丹风役人10.json @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 5, + "id": 4, "x": 3872.32, "y": 2492.75, "action": "", @@ -41,7 +41,7 @@ "type": "path" }, { - "id": 6, + "id": 5, "x": 3936.29, "y": 2399.0, "action": "", @@ -49,7 +49,7 @@ "type": "path" }, { - "id": 7, + "id": 6, "x": 3944.21, "y": 2395.29, "action": "fight", diff --git a/repo/pathing/敌人与魔物/飘浮灵/飘浮灵@san/漂浮灵-黄金兽1.json b/repo/pathing/敌人与魔物/飘浮灵/飘浮灵@san/漂浮灵-黄金兽1.json index 14598bea..53f4aeb1 100644 --- a/repo/pathing/敌人与魔物/飘浮灵/飘浮灵@san/漂浮灵-黄金兽1.json +++ b/repo/pathing/敌人与魔物/飘浮灵/飘浮灵@san/漂浮灵-黄金兽1.json @@ -25,7 +25,7 @@ "y": -6723.25 }, { - "id": 4, + "id": 3, "action": "fight", "move_mode": "walk", "type": "path", @@ -33,35 +33,35 @@ "y": -6733.29 }, { - "id": 5, + "id": 4, "x": -2654.5, "y": -6726.5, "move_mode": "walk", "type": "path" }, { - "id": 6, + "id": 5, "x": -2646.0, "y": -6732.0, "move_mode": "walk", "type": "path" }, { - "id": 7, + "id": 6, "x": -2649.25, "y": -6738.25, "move_mode": "walk", "type": "path" }, { - "id": 8, + "id": 7, "x": -2656.0, "y": -6740.0, "move_mode": "walk", "type": "path" }, { - "id": 9, + "id": 8, "action": "", "move_mode": "walk", "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@san/骗骗花-翠块坡下.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@san/骗骗花-翠块坡下.json index 2843a86c..fbfb60d4 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@san/骗骗花-翠块坡下.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@san/骗骗花-翠块坡下.json @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 3, + "id": 2, "x": 854.0, "y": 197.25, "action": "stop_flying", @@ -25,7 +25,7 @@ "type": "target" }, { - "id": 4, + "id": 3, "x": 886.0, "y": 213.48, "action": "fight", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@san/骗骗花-翠块坡左下.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@san/骗骗花-翠块坡左下.json index e6bdb473..754eb7c1 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@san/骗骗花-翠块坡左下.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@san/骗骗花-翠块坡左下.json @@ -33,7 +33,7 @@ "action": "fight" }, { - "id": 5, + "id": 4, "action": "", "move_mode": "run", "type": "path", @@ -41,14 +41,14 @@ "y": 188.5 }, { - "id": 6, + "id": 5, "x": 1044.5, "y": 213.0, "move_mode": "run", "type": "path" }, { - "id": 7, + "id": 6, "action": "", "move_mode": "run", "type": "path", @@ -56,7 +56,7 @@ "y": 187.5 }, { - "id": 8, + "id": 7, "action": "fight", "move_mode": "run", "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林奥藏山东侧-1个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林奥藏山东侧-1个.json index 7cb3764d..178e925b 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林奥藏山东侧-1个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林奥藏山东侧-1个.json @@ -36,7 +36,7 @@ "action_params": "" }, { - "id": 3, + "id": 4, "x": 1404.19, "y": 1045.92, "type": "target", @@ -45,7 +45,7 @@ "action_params": "attack(0.1),wait(2),wait(0.1),keypress(f),wait(0.1),keypress(f),wait(0.1),keypress(f),dash" }, { - "id": 4, + "id": 5, "x": 1404.19, "y": 1045.92, "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林奥藏山南方-1个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林奥藏山南方-1个.json index fe1fe8d7..196cc99b 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林奥藏山南方-1个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林奥藏山南方-1个.json @@ -27,7 +27,7 @@ "type": "path" }, { - "id": 2, + "id": 3, "x": 1604.02, "y": 874.12, "action": "combat_script", @@ -36,7 +36,7 @@ "type": "target" }, { - "id": 3, + "id": 4, "x": 1604.02, "y": 874.12, "action": "fight", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶东南-1个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶东南-1个.json index a1119e36..b14a0b55 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶东南-1个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶东南-1个.json @@ -45,7 +45,7 @@ "action_params": "keypress(space),wait(5),attack(0.1),wait(2)" }, { - "id": 4, + "id": 5, "x": 1365.25, "y": 780.33, "type": "target", @@ -54,7 +54,7 @@ "action_params": "wait(0.1),keypress(f),wait(0.1),keypress(f),wait(0.1),keypress(f),dash" }, { - "id": 5, + "id": 6, "x": 1365.25, "y": 780.33, "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶南方-2个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶南方-2个.json index 4c377956..95a3794e 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶南方-2个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶南方-2个.json @@ -46,7 +46,7 @@ "locked": false }, { - "id": 4, + "id": 5, "x": 1418.34, "y": 624.24, "type": "target", @@ -56,7 +56,7 @@ "locked": false }, { - "id": 5, + "id": 6, "x": 1418.34, "y": 624.24, "type": "path", @@ -65,7 +65,7 @@ "action_params": "" }, { - "id": 6, + "id": 7, "x": 1434.56, "y": 622.51, "type": "path", @@ -74,7 +74,7 @@ "action_params": "" }, { - "id": 7, + "id": 8, "x": 1487.5, "y": 608.5, "type": "path", @@ -83,7 +83,7 @@ "action_params": "" }, { - "id": 8, + "id": 9, "x": 1525.62, "y": 555.74, "type": "path", @@ -93,7 +93,7 @@ "locked": false }, { - "id": 8, + "id": 10, "x": 1525.62, "y": 555.74, "type": "target", @@ -103,7 +103,7 @@ "locked": false }, { - "id": 9, + "id": 11, "x": 1525.62, "y": 555.74, "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶西南-1个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶西南-1个.json index a0041e4b..1ee56ef3 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶西南-1个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-珉林庆云顶西南-1个.json @@ -28,7 +28,7 @@ "locked": false }, { - "id": 2, + "id": 3, "x": 1583.46, "y": 676.74, "type": "target", @@ -38,7 +38,7 @@ "locked": false }, { - "id": 3, + "id": 4, "x": 1583.46, "y": 676.74, "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-碧水原无妄坡西南岸边-1个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-碧水原无妄坡西南岸边-1个.json index 46706118..a2bdc592 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-碧水原无妄坡西南岸边-1个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/璃月-骗骗花-碧水原无妄坡西南岸边-1个.json @@ -27,7 +27,7 @@ "type": "path" }, { - "id": 2, + "id": 3, "x": 556.63, "y": 1331.04, "action": "combat_script", @@ -36,7 +36,7 @@ "type": "target" }, { - "id": 3, + "id": 4, "x": 556.63, "y": 1331.04, "action": "fight", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-海祇岛珊瑚宫西-1个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-海祇岛珊瑚宫西-1个.json index d3a61ee0..c266b08d 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-海祇岛珊瑚宫西-1个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-海祇岛珊瑚宫西-1个.json @@ -54,7 +54,7 @@ "action_params": "" }, { - "id": 5, + "id": 6, "x": -680.67, "y": -3768.89, "type": "target", @@ -63,7 +63,7 @@ "action_params": "wait(0.1),keypress(f),wait(0.1),keypress(f),dash" }, { - "id": 6, + "id": 7, "x": -680.67, "y": -3768.89, "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-清籁岛浅濑神社东方-1个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-清籁岛浅濑神社东方-1个.json index 4f510c3b..3895cfbd 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-清籁岛浅濑神社东方-1个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-清籁岛浅濑神社东方-1个.json @@ -27,7 +27,7 @@ "action_params": "keypress(space),wait(7),attack(0.1),wait(2)" }, { - "id": 2, + "id": 3, "x": -3933.63, "y": -4776.2, "type": "target", @@ -36,7 +36,7 @@ "action_params": "wait(0.1),keypress(f),wait(0.1),keypress(f),wait(0.1),keypress(f),dash" }, { - "id": 3, + "id": 4, "x": -3933.63, "y": -4776.2, "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-神无冢踏鞴砂西崖上-2个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-神无冢踏鞴砂西崖上-2个.json index 6e002fc0..763243a2 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-神无冢踏鞴砂西崖上-2个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-神无冢踏鞴砂西崖上-2个.json @@ -27,7 +27,7 @@ "action_params": "" }, { - "id": 2, + "id": 3, "x": -3102.22, "y": -3703.83, "type": "target", @@ -36,7 +36,7 @@ "action_params": "attack(0.1),wait(2),wait(0.1),keypress(f),wait(0.1),keypress(f),dash" }, { - "id": 3, + "id": 4, "x": -3102.22, "y": -3703.83, "type": "path", diff --git a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-鹤观笈名海滨-2个.json b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-鹤观笈名海滨-2个.json index 254d2f34..c30a72f2 100644 --- a/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-鹤观笈名海滨-2个.json +++ b/repo/pathing/敌人与魔物/骗骗花/骗骗花@提瓦特钓鱼玳师/稻妻-骗骗花-鹤观笈名海滨-2个.json @@ -27,7 +27,7 @@ "action_params": "keypress(space),wait(2),attack(0.1),wait(2)" }, { - "id": 2, + "id": 3, "x": -2544.25, "y": -6117.49, "type": "target", @@ -36,7 +36,7 @@ "action_params": "keypress(f),wait(0.1),keypress(f),dash" }, { - "id": 3, + "id": 4, "x": -2585.65, "y": -6102.99, "type": "path", @@ -45,7 +45,7 @@ "action_params": "" }, { - "id": 4, + "id": 5, "x": -2682.99, "y": -6107.12, "type": "path", @@ -54,7 +54,7 @@ "action_params": "" }, { - "id": 5, + "id": 6, "x": -2702.49, "y": -6083.89, "type": "path", @@ -63,7 +63,7 @@ "action_params": "" }, { - "id": 6, + "id": 7, "x": -2718.68, "y": -6084.74, "type": "target", @@ -73,7 +73,7 @@ "locked": false }, { - "id": 7, + "id": 8, "x": -2718.68, "y": -6084.74, "type": "path", diff --git a/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-05-奔狼领-3个.json b/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-05-奔狼领-3个.json index ff695abb..1acc13bc 100644 --- a/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-05-奔狼领-3个.json +++ b/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-05-奔狼领-3个.json @@ -131,7 +131,7 @@ "action": "" }, { - "id": 17, + "id": 16, "x": -342.93, "y": 2071.62, "type": "path", @@ -139,7 +139,7 @@ "action": "" }, { - "id": 18, + "id": 17, "x": -340.49, "y": 2067.18, "type": "path", @@ -147,7 +147,7 @@ "action": "" }, { - "id": 19, + "id": 18, "x": -341.25, "y": 2061.19, "type": "path", @@ -155,7 +155,7 @@ "action": "" }, { - "id": 20, + "id": 19, "x": -337.16, "y": 2062.37, "type": "path", @@ -163,7 +163,7 @@ "action": "" }, { - "id": 21, + "id": 20, "x": -335.75, "y": 2063.49, "type": "path", diff --git a/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-09-明冠峡东北-1个.json b/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-09-明冠峡东北-1个.json index a68e6ee8..75a411aa 100644 --- a/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-09-明冠峡东北-1个.json +++ b/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-09-明冠峡东北-1个.json @@ -17,7 +17,7 @@ "y": 2580.9 }, { - "id": 3, + "id": 2, "x": -464.32, "y": 2631.71, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": -481.53, "y": 2665.28, "type": "path", diff --git a/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-13-风龙废墟神像-9个.json b/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-13-风龙废墟神像-9个.json index 8692813b..b562b00a 100644 --- a/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-13-风龙废墟神像-9个.json +++ b/repo/pathing/矿物/水晶块/水晶块@愚溪/蒙德-13-风龙废墟神像-9个.json @@ -140,7 +140,7 @@ "action": "" }, { - "id": 18, + "id": 17, "x": 211.33, "y": 2594.12, "action": "mining", @@ -149,7 +149,7 @@ "action_params": "" }, { - "id": 19, + "id": 18, "x": 205.77, "y": 2532.42, "action": "", @@ -157,7 +157,7 @@ "type": "path" }, { - "id": 20, + "id": 19, "x": 216.66, "y": 2505.65, "action": "", @@ -165,7 +165,7 @@ "type": "path" }, { - "id": 21, + "id": 20, "x": 212.16, "y": 2486.55, "action": "", @@ -173,7 +173,7 @@ "type": "path" }, { - "id": 22, + "id": 21, "x": 213.12, "y": 2477.81, "action": "mining", @@ -182,7 +182,7 @@ "action_params": "" }, { - "id": 23, + "id": 22, "x": 190.74, "y": 2511.23, "action": "", @@ -190,7 +190,7 @@ "type": "path" }, { - "id": 24, + "id": 23, "x": 179.1, "y": 2515.31, "action": "", @@ -198,7 +198,7 @@ "type": "path" }, { - "id": 25, + "id": 24, "x": 174.5, "y": 2530.05, "action": "", @@ -206,7 +206,7 @@ "type": "path" }, { - "id": 26, + "id": 25, "x": 145.42, "y": 2538.0, "action": "", @@ -214,7 +214,7 @@ "type": "path" }, { - "id": 27, + "id": 26, "x": 118.9, "y": 2534.96, "action": "", @@ -222,7 +222,7 @@ "type": "path" }, { - "id": 28, + "id": 27, "x": 102.12, "y": 2552.66, "action": "mining", @@ -231,7 +231,7 @@ "action_params": "" }, { - "id": 29, + "id": 28, "x": 68.38, "y": 2557.78, "action": "", @@ -239,7 +239,7 @@ "type": "path" }, { - "id": 30, + "id": 29, "x": 25.14, "y": 2614.46, "action": "", @@ -247,7 +247,7 @@ "type": "path" }, { - "id": 31, + "id": 30, "x": 32.47, "y": 2614.99, "action": "mining", @@ -256,7 +256,7 @@ "action_params": "" }, { - "id": 32, + "id": 31, "x": 20.84, "y": 2633.86, "action": "", @@ -264,7 +264,7 @@ "type": "path" }, { - "id": 33, + "id": 32, "x": 34.79, "y": 2695.42, "action": "", @@ -272,7 +272,7 @@ "type": "path" }, { - "id": 34, + "id": 33, "x": 39.55, "y": 2729.59, "action": "mining", @@ -281,7 +281,7 @@ "action_params": "" }, { - "id": 35, + "id": 34, "x": 63.54, "y": 2743.41, "action": "", @@ -289,7 +289,7 @@ "type": "path" }, { - "id": 36, + "id": 35, "x": 79.53, "y": 2763.64, "action": "", @@ -297,7 +297,7 @@ "type": "path" }, { - "id": 37, + "id": 36, "x": 121.36, "y": 2760.83, "action": "", @@ -305,7 +305,7 @@ "type": "path" }, { - "id": 38, + "id": 37, "x": 104.68, "y": 2748.79, "action": "mining", @@ -314,7 +314,7 @@ "action_params": "" }, { - "id": 39, + "id": 38, "x": 133.02, "y": 2747.23, "action": "", @@ -322,7 +322,7 @@ "type": "path" }, { - "id": 40, + "id": 39, "x": 142.71, "y": 2750.12, "action": "mining", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/04-巨蛇岩洞-9.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/04-巨蛇岩洞-9.json index e46550f2..4b2e0f4c 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/04-巨蛇岩洞-9.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/04-巨蛇岩洞-9.json @@ -76,6 +76,7 @@ "type": "path" }, { + "id": 8, "x": 1055.21, "y": 696.8, "action": "combat_script", @@ -84,7 +85,7 @@ "move_mode": "walk" }, { - "id": 8, + "id": 9, "x": 887.64, "y": 762.66, "action": "", @@ -93,7 +94,7 @@ "type": "teleport" }, { - "id": 9, + "id": 10, "x": 959.6, "y": 779.51, "action": "", @@ -102,7 +103,7 @@ "type": "path" }, { - "id": 10, + "id": 11, "x": 988.19, "y": 782.12, "action": "stop_flying", @@ -111,7 +112,7 @@ "type": "path" }, { - "id": 11, + "id": 12, "x": 1006.53, "y": 783.29, "action": "combat_script", @@ -120,7 +121,7 @@ "type": "path" }, { - "id": 12, + "id": 13, "x": 995.91, "y": 782.46, "action": "", @@ -129,7 +130,7 @@ "type": "path" }, { - "id": 13, + "id": 14, "x": 1015.48, "y": 783.74, "action": "mining", @@ -138,7 +139,7 @@ "type": "path" }, { - "id": 14, + "id": 15, "x": 1021.63, "y": 783.7, "action": "combat_script", @@ -147,7 +148,7 @@ "type": "path" }, { - "id": 15, + "id": 16, "x": 1014.9, "y": 784.81, "action": "", @@ -156,7 +157,7 @@ "type": "path" }, { - "id": 16, + "id": 17, "x": 1023.22, "y": 787.97, "action": "combat_script", @@ -165,7 +166,7 @@ "type": "path" }, { - "id": 17, + "id": 18, "x": 1016.08, "y": 784.28, "action": "", @@ -174,7 +175,7 @@ "type": "path" }, { - "id": 18, + "id": 19, "x": 1029.34, "y": 784.06, "action": "mining", @@ -183,7 +184,7 @@ "type": "path" }, { - "id": 19, + "id": 20, "x": 1025.69, "y": 786.05, "action": "mining", @@ -192,7 +193,7 @@ "type": "path" }, { - "id": 20, + "id": 21, "x": 1022.3, "y": 790.56, "action": "mining", @@ -201,7 +202,7 @@ "type": "path" }, { - "id": 21, + "id": 22, "x": 1018.16, "y": 788.16, "action": "mining", @@ -210,6 +211,7 @@ "type": "path" }, { + "id": 23, "x": 1018.16, "y": 788.16, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/11-临时主矿道-南2-4.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/11-临时主矿道-南2-4.json index aa21f505..8484d1a5 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/11-临时主矿道-南2-4.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/11-临时主矿道-南2-4.json @@ -211,6 +211,7 @@ "type": "path" }, { + "id": 23, "x": 738.38, "y": 864.69, "action": "combat_script", @@ -219,7 +220,7 @@ "move_mode": "walk" }, { - "id": 23, + "id": 24, "x": 739.0, "y": 857.78, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/21-巨渊主矿区-3.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/21-巨渊主矿区-3.json index 73ae2efb..c7fcd20e 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/21-巨渊主矿区-3.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/层岩巨渊·地下矿区/21-巨渊主矿区-3.json @@ -49,6 +49,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 5, "x": 276.92, "y": 896.53, "action": "combat_script", @@ -56,42 +57,44 @@ "type": "path", "move_mode": "walk" }, - { - "id": 5, - "x": 277.82, - "y": 890.07, - "type": "path", - "move_mode": "walk", - "action": "mining", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" - }, - { - "x": 277.82, - "y": 890.07, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 6, - "x": 285.98, - "y": 881.23, + "x": 277.82, + "y": 890.07, "type": "path", "move_mode": "walk", "action": "mining", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, - { - "x": 285.98, - "y": 881.23, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 7, + "x": 277.82, + "y": 890.07, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 8, + "x": 285.98, + "y": 881.23, + "type": "path", + "move_mode": "walk", + "action": "mining", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" + }, + { + "id": 9, + "x": 285.98, + "y": 881.23, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 10, "x": 281.51, "y": 881.19, "type": "path", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/01-药蝶谷-8个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/01-药蝶谷-8个.json index 2ecd1cdc..90b8c625 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/01-药蝶谷-8个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/01-药蝶谷-8个.json @@ -58,6 +58,7 @@ "type": "path" }, { + "id": 6, "x": 1562.05, "y": 1632.67, "action": "combat_script", @@ -65,42 +66,44 @@ "type": "path", "move_mode": "walk" }, - { - "id": 6, - "x": 1560.21, - "y": 1627.17, - "action": "mining", - "move_mode": "walk", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": 1560.21, - "y": 1627.17, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 7, - "x": 1555.98, - "y": 1625.2, + "x": 1560.21, + "y": 1627.17, "action": "mining", "move_mode": "walk", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", "type": "path" }, - { - "x": 1555.98, - "y": 1625.2, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 8, + "x": 1560.21, + "y": 1627.17, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 9, + "x": 1555.98, + "y": 1625.2, + "action": "mining", + "move_mode": "walk", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 10, + "x": 1555.98, + "y": 1625.2, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 11, "x": 1606.63, "y": 1576.2, "action": "", @@ -109,7 +112,7 @@ "type": "path" }, { - "id": 9, + "id": 12, "x": 1610.54, "y": 1523.58, "action": "", @@ -118,7 +121,7 @@ "type": "path" }, { - "id": 10, + "id": 13, "x": 1612.24, "y": 1517.93, "action": "mining", @@ -127,6 +130,7 @@ "type": "path" }, { + "id": 14, "x": 1612.24, "y": 1517.93, "action": "combat_script", @@ -135,7 +139,7 @@ "move_mode": "walk" }, { - "id": 11, + "id": 15, "x": 1615.56, "y": 1519.84, "action": "mining", @@ -144,6 +148,7 @@ "type": "path" }, { + "id": 16, "x": 1615.56, "y": 1519.84, "action": "combat_script", @@ -152,7 +157,7 @@ "move_mode": "walk" }, { - "id": 12, + "id": 17, "x": 1617.68, "y": 1516.41, "action": "mining", @@ -161,6 +166,7 @@ "type": "path" }, { + "id": 18, "x": 1617.68, "y": 1516.41, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/02-古茶树坡-5个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/02-古茶树坡-5个.json index 98d2cf85..b4fcd3a5 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/02-古茶树坡-5个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/02-古茶树坡-5个.json @@ -40,6 +40,7 @@ "type": "path" }, { + "id": 4, "x": 1654.92, "y": 1916.86, "action": "combat_script", @@ -48,7 +49,7 @@ "move_mode": "walk" }, { - "id": 4, + "id": 5, "x": 1657.92, "y": 1912.7, "action": "mining", @@ -57,7 +58,7 @@ "type": "path" }, { - "id": 5, + "id": 6, "x": 1654.4, "y": 1910.53, "action": "mining", @@ -66,6 +67,7 @@ "type": "path" }, { + "id": 7, "x": 1654.4, "y": 1910.53, "action": "combat_script", @@ -74,7 +76,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 8, "x": 1691.32, "y": 1829.24, "action": "", @@ -83,7 +85,7 @@ "type": "teleport" }, { - "id": 7, + "id": 9, "x": 1682.61, "y": 1826.42, "action": "", @@ -92,7 +94,7 @@ "type": "path" }, { - "id": 8, + "id": 10, "x": 1569.5, "y": 1789.68, "action": "", @@ -101,7 +103,7 @@ "type": "path" }, { - "id": 9, + "id": 11, "x": 1562.66, "y": 1787.13, "type": "path", @@ -110,7 +112,7 @@ "action_params": "" }, { - "id": 10, + "id": 12, "x": 1489.45, "y": 1781.07, "action": "", @@ -119,7 +121,7 @@ "type": "path" }, { - "id": 11, + "id": 13, "x": 1492.23, "y": 1780.02, "action": "mining", @@ -128,6 +130,7 @@ "type": "path" }, { + "id": 14, "x": 1492.23, "y": 1780.02, "action": "combat_script", @@ -136,7 +139,7 @@ "move_mode": "walk" }, { - "id": 12, + "id": 15, "x": 1493.1, "y": 1783.55, "action": "mining", @@ -145,6 +148,7 @@ "type": "path" }, { + "id": 16, "x": 1493.1, "y": 1783.55, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/03-灵濛山西-5个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/03-灵濛山西-5个.json index dc9f2054..6e597462 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/03-灵濛山西-5个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/03-灵濛山西-5个.json @@ -49,6 +49,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 5, "x": 2176.86, "y": 2165.27, "action": "combat_script", @@ -56,42 +57,44 @@ "type": "path", "move_mode": "walk" }, - { - "id": 5, - "x": 2179.74, - "y": 2175.98, - "type": "path", - "move_mode": "walk", - "action": "mining", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" - }, - { - "x": 2179.74, - "y": 2175.98, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 6, - "x": 2181.96, - "y": 2178.1, + "x": 2179.74, + "y": 2175.98, "type": "path", "move_mode": "walk", "action": "mining", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, - { - "x": 2181.96, - "y": 2178.1, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 7, + "x": 2179.74, + "y": 2175.98, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 8, + "x": 2181.96, + "y": 2178.1, + "type": "path", + "move_mode": "walk", + "action": "mining", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" + }, + { + "id": 9, + "x": 2181.96, + "y": 2178.1, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 10, "x": 2179.57, "y": 2178.54, "type": "path", @@ -100,7 +103,7 @@ "action_params": "" }, { - "id": 8, + "id": 11, "x": 2152.08, "y": 2183.41, "type": "path", @@ -109,6 +112,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 12, "x": 2152.08, "y": 2183.41, "action": "combat_script", @@ -117,7 +121,7 @@ "move_mode": "dash" }, { - "id": 9, + "id": 13, "x": 2151.52, "y": 2182.57, "type": "path", @@ -126,7 +130,7 @@ "action_params": "诺艾尔 attack(0.2), wait(0.4)" }, { - "id": 10, + "id": 14, "x": 2147.66, "y": 2181.83, "type": "path", @@ -135,6 +139,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 15, "x": 2147.66, "y": 2181.83, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/04-灵濛山北-7个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/04-灵濛山北-7个.json index b399f5d2..00cf761a 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/04-灵濛山北-7个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/04-灵濛山北-7个.json @@ -49,6 +49,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 5, "x": 2031.91, "y": 2374.62, "action": "combat_script", @@ -56,42 +57,44 @@ "type": "path", "move_mode": "walk" }, - { - "id": 5, - "x": 2032.56, - "y": 2373.93, - "type": "path", - "move_mode": "walk", - "action": "mining", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" - }, - { - "x": 2032.56, - "y": 2373.93, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 6, - "x": 2031.96, - "y": 2375.9, + "x": 2032.56, + "y": 2373.93, "type": "path", "move_mode": "walk", "action": "mining", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, - { - "x": 2031.96, - "y": 2375.9, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 7, + "x": 2032.56, + "y": 2373.93, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 8, + "x": 2031.96, + "y": 2375.9, + "type": "path", + "move_mode": "walk", + "action": "mining", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" + }, + { + "id": 9, + "x": 2031.96, + "y": 2375.9, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 10, "x": 2029.25, "y": 2377.83, "type": "path", @@ -100,7 +103,7 @@ "action_params": "wait(0.5)" }, { - "id": 8, + "id": 11, "x": 2025.8, "y": 2373.36, "type": "path", @@ -109,7 +112,7 @@ "action_params": "wait(0.5)" }, { - "id": 9, + "id": 12, "x": 1977.25, "y": 2341.05, "type": "teleport", @@ -118,7 +121,7 @@ "action_params": "" }, { - "id": 10, + "id": 13, "x": 1977.17, "y": 2342.73, "type": "path", @@ -127,7 +130,7 @@ "action_params": "" }, { - "id": 11, + "id": 14, "x": 1965.13, "y": 2359.57, "type": "path", @@ -136,7 +139,7 @@ "action_params": "1000" }, { - "id": 12, + "id": 15, "x": 1963.26, "y": 2359.77, "type": "path", @@ -145,6 +148,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 16, "x": 1963.26, "y": 2359.77, "action": "combat_script", @@ -153,7 +157,7 @@ "move_mode": "walk" }, { - "id": 13, + "id": 17, "x": 1962.69, "y": 2360.89, "type": "path", @@ -162,7 +166,7 @@ "action_params": "" }, { - "id": 14, + "id": 18, "x": 1951.8, "y": 2356.4, "type": "path", @@ -171,7 +175,7 @@ "action_params": "" }, { - "id": 15, + "id": 19, "x": 1952.64, "y": 2354.94, "type": "path", @@ -180,6 +184,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 20, "x": 1952.64, "y": 2354.94, "action": "combat_script", @@ -188,7 +193,7 @@ "move_mode": "walk" }, { - "id": 16, + "id": 21, "x": 2145.66, "y": 2412.96, "type": "teleport", @@ -197,7 +202,7 @@ "action_params": "" }, { - "id": 17, + "id": 22, "x": 2166.09, "y": 2410.45, "type": "path", @@ -206,7 +211,7 @@ "action_params": "" }, { - "id": 18, + "id": 23, "x": 2177.31, "y": 2392.07, "type": "path", @@ -215,7 +220,7 @@ "action_params": "2000" }, { - "id": 19, + "id": 24, "x": 2177.76, "y": 2396.02, "type": "path", @@ -224,6 +229,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 25, "x": 2177.76, "y": 2396.02, "action": "combat_script", @@ -232,7 +238,7 @@ "move_mode": "walk" }, { - "id": 20, + "id": 26, "x": 2174.85, "y": 2396.94, "type": "path", @@ -241,6 +247,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 27, "x": 2174.85, "y": 2396.94, "action": "combat_script", @@ -249,7 +256,7 @@ "move_mode": "jump" }, { - "id": 21, + "id": 28, "x": 2172.89, "y": 2398.74, "type": "path", @@ -258,7 +265,7 @@ "action_params": "诺艾尔 attack(0.2),wait(0.3)" }, { - "id": 22, + "id": 29, "x": 2175.74, "y": 2395.32, "type": "path", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/05-暝垣山北-3个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/05-暝垣山北-3个.json index 5561969f..c557607d 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/05-暝垣山北-3个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/05-暝垣山北-3个.json @@ -58,6 +58,7 @@ "type": "path" }, { + "id": 6, "x": 2620.68, "y": 2510.82, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 2619.5, "y": 2504.97, "action": "mining", @@ -75,6 +76,7 @@ "type": "path" }, { + "id": 8, "x": 2619.5, "y": 2504.97, "action": "combat_script", @@ -83,7 +85,7 @@ "move_mode": "walk" }, { - "id": 7, + "id": 9, "x": 2616.05, "y": 2503.2, "type": "path", @@ -92,7 +94,7 @@ "action_params": "" }, { - "id": 8, + "id": 10, "x": 2615.96, "y": 2502.1, "type": "path", @@ -101,6 +103,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 11, "x": 2615.96, "y": 2502.1, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/06-暝垣山-5个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/06-暝垣山-5个.json index 8375f623..a64ec45f 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/06-暝垣山-5个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/06-暝垣山-5个.json @@ -49,6 +49,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 5, "x": 2610.62, "y": 2064.2, "action": "combat_script", @@ -57,7 +58,7 @@ "move_mode": "walk" }, { - "id": 5, + "id": 6, "x": 2617.75, "y": 2067.36, "type": "path", @@ -66,6 +67,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 7, "x": 2617.75, "y": 2067.36, "action": "combat_script", @@ -74,7 +76,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 8, "x": 2620.16, "y": 2064.4, "type": "path", @@ -83,7 +85,7 @@ "action_params": "" }, { - "id": 7, + "id": 9, "x": 2621.28, "y": 2062.09, "type": "path", @@ -92,6 +94,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 10, "x": 2621.28, "y": 2062.09, "action": "combat_script", @@ -100,7 +103,7 @@ "move_mode": "walk" }, { - "id": 8, + "id": 11, "x": 2625.08, "y": 2062.5, "type": "path", @@ -109,7 +112,7 @@ "action_params": "诺艾尔 attack(0.2),wait(0.3)" }, { - "id": 9, + "id": 12, "x": 2615.0, "y": 2050.85, "type": "teleport", @@ -118,7 +121,7 @@ "action_params": "" }, { - "id": 10, + "id": 13, "x": 2625.03, "y": 2054.72, "type": "path", @@ -127,7 +130,7 @@ "action_params": "" }, { - "id": 11, + "id": 14, "x": 2796.94, "y": 2114.83, "type": "path", @@ -136,7 +139,7 @@ "action_params": "2200" }, { - "id": 12, + "id": 15, "x": 2802.66, "y": 2112.17, "type": "path", @@ -145,6 +148,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 16, "x": 2802.66, "y": 2112.17, "action": "combat_script", @@ -153,7 +157,7 @@ "move_mode": "walk" }, { - "id": 13, + "id": 17, "x": 2803.44, "y": 2106.49, "type": "path", @@ -162,6 +166,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 18, "x": 2803.44, "y": 2106.49, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/07-赤璋城垣-11.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/07-赤璋城垣-11.json index d206567f..d3a057ec 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/07-赤璋城垣-11.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/07-赤璋城垣-11.json @@ -58,6 +58,7 @@ "type": "path" }, { + "id": 6, "x": 2467.69, "y": 1720.64, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 2469.48, "y": 1720.81, "action": "", @@ -75,7 +76,7 @@ "type": "path" }, { - "id": 7, + "id": 8, "x": 2471.59, "y": 1727.31, "action": "", @@ -84,7 +85,7 @@ "type": "path" }, { - "id": 8, + "id": 9, "x": 2470.88, "y": 1727.77, "action": "mining", @@ -93,6 +94,7 @@ "type": "path" }, { + "id": 10, "x": 2470.88, "y": 1727.77, "action": "combat_script", @@ -101,7 +103,7 @@ "move_mode": "walk" }, { - "id": 9, + "id": 11, "x": 2323.96, "y": 1605.02, "action": "", @@ -110,7 +112,7 @@ "type": "teleport" }, { - "id": 10, + "id": 12, "x": 2292.34, "y": 1639.92, "action": "", @@ -119,7 +121,7 @@ "type": "path" }, { - "id": 11, + "id": 13, "x": 2249.18, "y": 1667.84, "action": "fight", @@ -128,7 +130,7 @@ "type": "path" }, { - "id": 12, + "id": 14, "x": 2243.91, "y": 1670.47, "action": "", @@ -137,7 +139,7 @@ "type": "path" }, { - "id": 13, + "id": 15, "x": 2234.33, "y": 1675.09, "action": "mining", @@ -145,42 +147,44 @@ "action_params": "诺艾尔 attack(0.2),wait(0.3)", "type": "path" }, - { - "id": 14, - "x": 2230.5, - "y": 1677.29, - "action": "mining", - "move_mode": "walk", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": 2230.5, - "y": 1677.29, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, - { - "id": 15, - "x": 2232.12, - "y": 1679.94, - "action": "mining", - "move_mode": "walk", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": 2232.12, - "y": 1679.94, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 16, + "x": 2230.5, + "y": 1677.29, + "action": "mining", + "move_mode": "walk", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 17, + "x": 2230.5, + "y": 1677.29, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 18, + "x": 2232.12, + "y": 1679.94, + "action": "mining", + "move_mode": "walk", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 19, + "x": 2232.12, + "y": 1679.94, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 20, "x": 2230.56, "y": 1683.05, "action": "mining", @@ -189,7 +193,7 @@ "type": "path" }, { - "id": 17, + "id": 21, "x": 2233.6, "y": 1686.06, "type": "path", @@ -198,6 +202,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 22, "x": 2233.6, "y": 1686.06, "action": "combat_script", @@ -206,7 +211,7 @@ "move_mode": "walk" }, { - "id": 18, + "id": 23, "x": 2323.93, "y": 1605.04, "action": "", @@ -215,7 +220,7 @@ "type": "teleport" }, { - "id": 19, + "id": 24, "x": 2315.48, "y": 1591.36, "action": "", @@ -224,7 +229,7 @@ "type": "path" }, { - "id": 20, + "id": 25, "x": 2293.65, "y": 1533.12, "action": "", @@ -233,7 +238,7 @@ "type": "path" }, { - "id": 21, + "id": 26, "x": 2287.06, "y": 1522.95, "action": "", @@ -242,7 +247,7 @@ "type": "path" }, { - "id": 22, + "id": 27, "x": 2284.66, "y": 1515.93, "action": "", @@ -251,7 +256,7 @@ "type": "path" }, { - "id": 23, + "id": 28, "x": 2285.54, "y": 1512.48, "action": "mining", @@ -260,6 +265,7 @@ "type": "path" }, { + "id": 29, "x": 2285.54, "y": 1512.48, "action": "combat_script", @@ -268,7 +274,7 @@ "move_mode": "walk" }, { - "id": 24, + "id": 30, "x": 2066.18, "y": 1484.47, "action": "", @@ -277,7 +283,7 @@ "type": "teleport" }, { - "id": 25, + "id": 31, "x": 2076.71, "y": 1477.57, "action": "", @@ -286,7 +292,7 @@ "type": "path" }, { - "id": 26, + "id": 32, "x": 2161.32, "y": 1426.79, "action": "stop_flying", @@ -295,7 +301,7 @@ "type": "path" }, { - "id": 27, + "id": 33, "x": 2164.22, "y": 1431.88, "action": "mining", @@ -304,7 +310,7 @@ "type": "path" }, { - "id": 28, + "id": 34, "x": 2166.25, "y": 1434.4, "action": "mining", @@ -313,6 +319,7 @@ "type": "path" }, { + "id": 35, "x": 2166.25, "y": 1434.4, "action": "combat_script", @@ -321,7 +328,7 @@ "move_mode": "walk" }, { - "id": 29, + "id": 36, "x": 2164.21, "y": 1435.58, "action": "mining", @@ -330,6 +337,7 @@ "type": "path" }, { + "id": 37, "x": 2164.21, "y": 1435.58, "action": "combat_script", @@ -338,7 +346,7 @@ "move_mode": "jump" }, { - "id": 30, + "id": 38, "x": 2066.2, "y": 1484.41, "action": "", @@ -347,7 +355,7 @@ "type": "teleport" }, { - "id": 31, + "id": 39, "x": 1930.76, "y": 1457.32, "action": "", @@ -356,7 +364,7 @@ "type": "path" }, { - "id": 32, + "id": 40, "x": 1951.32, "y": 1388.3, "action": "stop_flying", @@ -365,7 +373,7 @@ "type": "path" }, { - "id": 33, + "id": 41, "x": 1942.24, "y": 1400.21, "action": "mining", @@ -374,6 +382,7 @@ "type": "path" }, { + "id": 42, "x": 1942.24, "y": 1400.21, "action": "combat_script", @@ -382,7 +391,7 @@ "move_mode": "walk" }, { - "id": 34, + "id": 43, "x": 1933.13, "y": 1408.33, "action": "mining", @@ -391,6 +400,7 @@ "type": "path" }, { + "id": 44, "x": 1933.13, "y": 1408.33, "action": "combat_script", @@ -399,7 +409,7 @@ "move_mode": "walk" }, { - "id": 35, + "id": 45, "x": 1931.28, "y": 1408.48, "action": "mining", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/07-赤璋城垣-9个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/07-赤璋城垣-9个.json index 0be9492e..523a053a 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/07-赤璋城垣-9个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/沉玉谷/07-赤璋城垣-9个.json @@ -58,6 +58,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 6, "x": 2467.69, "y": 1720.64, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 2469.48, "y": 1720.81, "type": "path", @@ -75,7 +76,7 @@ "action_params": "" }, { - "id": 7, + "id": 8, "x": 2471.59, "y": 1727.31, "type": "path", @@ -84,7 +85,7 @@ "action_params": "" }, { - "id": 8, + "id": 9, "x": 2470.88, "y": 1727.77, "type": "path", @@ -93,6 +94,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 10, "x": 2470.88, "y": 1727.77, "action": "combat_script", @@ -101,7 +103,7 @@ "move_mode": "walk" }, { - "id": 18, + "id": 11, "x": 2323.93, "y": 1605.04, "type": "teleport", @@ -110,7 +112,7 @@ "action_params": "" }, { - "id": 19, + "id": 12, "x": 2315.48, "y": 1591.36, "type": "path", @@ -119,7 +121,7 @@ "action_params": "" }, { - "id": 20, + "id": 13, "x": 2293.65, "y": 1533.12, "type": "path", @@ -128,7 +130,7 @@ "action_params": "" }, { - "id": 21, + "id": 14, "x": 2287.06, "y": 1522.95, "type": "path", @@ -137,7 +139,7 @@ "action_params": "" }, { - "id": 22, + "id": 15, "x": 2284.66, "y": 1515.93, "type": "path", @@ -146,7 +148,7 @@ "action_params": "" }, { - "id": 23, + "id": 16, "x": 2285.54, "y": 1512.48, "type": "path", @@ -155,6 +157,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 17, "x": 2285.54, "y": 1512.48, "action": "combat_script", @@ -163,7 +166,7 @@ "move_mode": "walk" }, { - "id": 24, + "id": 18, "x": 2066.18, "y": 1484.47, "type": "teleport", @@ -172,7 +175,7 @@ "action_params": "" }, { - "id": 25, + "id": 19, "x": 2076.71, "y": 1477.57, "type": "path", @@ -181,7 +184,7 @@ "action_params": "" }, { - "id": 26, + "id": 20, "x": 2161.32, "y": 1426.79, "type": "path", @@ -190,7 +193,7 @@ "action_params": "1000" }, { - "id": 27, + "id": 21, "x": 2164.22, "y": 1431.88, "type": "path", @@ -199,7 +202,7 @@ "action_params": "诺艾尔 attack(0.2),wait(0.3)" }, { - "id": 28, + "id": 22, "x": 2166.25, "y": 1434.4, "type": "path", @@ -208,6 +211,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 23, "x": 2166.25, "y": 1434.4, "action": "combat_script", @@ -216,7 +220,7 @@ "move_mode": "walk" }, { - "id": 29, + "id": 24, "x": 2164.21, "y": 1435.58, "type": "path", @@ -225,6 +229,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 25, "x": 2164.21, "y": 1435.58, "action": "combat_script", @@ -233,7 +238,7 @@ "move_mode": "jump" }, { - "id": 30, + "id": 26, "x": 2066.2, "y": 1484.41, "type": "teleport", @@ -242,7 +247,7 @@ "action_params": "" }, { - "id": 31, + "id": 27, "x": 1930.76, "y": 1457.32, "type": "path", @@ -251,7 +256,7 @@ "action_params": "" }, { - "id": 32, + "id": 28, "x": 1951.32, "y": 1388.3, "type": "path", @@ -259,42 +264,44 @@ "action": "stop_flying", "action_params": "3000" }, + { + "id": 29, + "x": 1942.24, + "y": 1400.21, + "type": "path", + "move_mode": "walk", + "action": "mining", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" + }, + { + "id": 30, + "x": 1942.24, + "y": 1400.21, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 31, + "x": 1933.13, + "y": 1408.33, + "type": "path", + "move_mode": "walk", + "action": "mining", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" + }, + { + "id": 32, + "x": 1933.13, + "y": 1408.33, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, { "id": 33, - "x": 1942.24, - "y": 1400.21, - "type": "path", - "move_mode": "walk", - "action": "mining", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" - }, - { - "x": 1942.24, - "y": 1400.21, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, - { - "id": 34, - "x": 1933.13, - "y": 1408.33, - "type": "path", - "move_mode": "walk", - "action": "mining", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" - }, - { - "x": 1933.13, - "y": 1408.33, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, - { - "id": 35, "x": 1931.28, "y": 1408.48, "type": "path", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/01-天衡山-10个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/01-天衡山-10个.json index 0d04fb2a..60402f80 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/01-天衡山-10个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/01-天衡山-10个.json @@ -40,6 +40,7 @@ "type": "path" }, { + "id": 4, "x": 561.13, "y": -598.76, "action": "combat_script", @@ -48,7 +49,7 @@ "move_mode": "walk" }, { - "id": 4, + "id": 5, "x": 565.15, "y": -598.26, "action": "mining", @@ -57,6 +58,7 @@ "type": "path" }, { + "id": 6, "x": 565.15, "y": -598.26, "action": "combat_script", @@ -65,7 +67,7 @@ "move_mode": "walk" }, { - "id": 5, + "id": 7, "x": 570.67, "y": -601.7, "action": "", @@ -74,7 +76,7 @@ "type": "path" }, { - "id": 6, + "id": 8, "x": 568.96, "y": -601.07, "type": "path", @@ -83,6 +85,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 9, "x": 568.96, "y": -601.07, "action": "combat_script", @@ -90,76 +93,80 @@ "type": "path", "move_mode": "walk" }, - { - "id": 7, - "x": 568.41, - "y": -598.48, - "action": "mining", - "move_mode": "walk", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": 568.41, - "y": -598.48, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, - { - "id": 8, - "x": 570.2, - "y": -595.38, - "action": "mining", - "move_mode": "walk", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": 570.2, - "y": -595.38, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, - { - "id": 9, - "x": 569.73, - "y": -595.46, - "action": "mining", - "move_mode": "walk", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": 569.73, - "y": -595.46, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 10, - "x": 566.17, - "y": -594.24, + "x": 568.41, + "y": -598.48, "action": "mining", "move_mode": "walk", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", "type": "path" }, - { - "x": 566.17, - "y": -594.24, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 11, + "x": 568.41, + "y": -598.48, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 12, + "x": 570.2, + "y": -595.38, + "action": "mining", + "move_mode": "walk", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 13, + "x": 570.2, + "y": -595.38, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 14, + "x": 569.73, + "y": -595.46, + "action": "mining", + "move_mode": "walk", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 15, + "x": 569.73, + "y": -595.46, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 16, + "x": 566.17, + "y": -594.24, + "action": "mining", + "move_mode": "walk", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 17, + "x": 566.17, + "y": -594.24, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 18, "x": 565.44, "y": -591.01, "action": "", @@ -168,7 +175,7 @@ "type": "path" }, { - "id": 12, + "id": 19, "x": 568.08, "y": -589.57, "action": "", @@ -177,7 +184,7 @@ "type": "path" }, { - "id": 13, + "id": 20, "x": 570.04, "y": -591.33, "action": "", @@ -186,7 +193,7 @@ "type": "path" }, { - "id": 14, + "id": 21, "x": 568.46, "y": -592.5, "action": "", @@ -195,7 +202,7 @@ "type": "path" }, { - "id": 15, + "id": 22, "x": 577.04, "y": -559.9, "action": "mining", @@ -204,6 +211,7 @@ "type": "path" }, { + "id": 23, "x": 577.04, "y": -559.9, "action": "combat_script", @@ -212,7 +220,7 @@ "move_mode": "dash" }, { - "id": 16, + "id": 24, "x": 576.91, "y": -556.97, "action": "mining", @@ -221,6 +229,7 @@ "type": "path" }, { + "id": 25, "x": 576.91, "y": -556.97, "action": "combat_script", @@ -229,7 +238,7 @@ "move_mode": "walk" }, { - "id": 17, + "id": 26, "x": 573.34, "y": -552.24, "action": "", @@ -238,7 +247,7 @@ "type": "path" }, { - "id": 18, + "id": 27, "x": 578.01, "y": -551.53, "action": "", @@ -247,7 +256,7 @@ "type": "path" }, { - "id": 19, + "id": 28, "x": 578.98, "y": -552.74, "type": "path", @@ -256,6 +265,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 29, "x": 578.98, "y": -552.74, "action": "combat_script", @@ -264,7 +274,7 @@ "move_mode": "walk" }, { - "id": 20, + "id": 30, "x": 578.36, "y": -554.57, "action": "mining", @@ -273,6 +283,7 @@ "type": "path" }, { + "id": 31, "x": 578.36, "y": -554.57, "action": "combat_script", @@ -281,7 +292,7 @@ "move_mode": "walk" }, { - "id": 21, + "id": 32, "x": 579.72, "y": -550.83, "action": "mining", @@ -290,6 +301,7 @@ "type": "path" }, { + "id": 33, "x": 579.72, "y": -550.83, "action": "combat_script", @@ -298,7 +310,7 @@ "move_mode": "walk" }, { - "id": 22, + "id": 34, "x": 579.63, "y": -548.94, "action": "mining", @@ -307,6 +319,7 @@ "type": "path" }, { + "id": 35, "x": 579.63, "y": -548.94, "action": "combat_script", @@ -315,7 +328,7 @@ "move_mode": "walk" }, { - "id": 23, + "id": 36, "x": 577.88, "y": -545.47, "action": "mining", @@ -324,6 +337,7 @@ "type": "path" }, { + "id": 37, "x": 577.88, "y": -545.47, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/06-遁玉陵-6个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/06-遁玉陵-6个.json index 0d23b273..9738727b 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/06-遁玉陵-6个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/06-遁玉陵-6个.json @@ -67,6 +67,7 @@ "type": "path" }, { + "id": 7, "x": 1116.46, "y": -342.56, "action": "combat_script", @@ -75,7 +76,7 @@ "move_mode": "walk" }, { - "id": 7, + "id": 8, "x": 1116.53, "y": -337.98, "type": "path", @@ -83,52 +84,19 @@ "action": "", "action_params": "" }, - { - "id": 8, - "x": 1118.29, - "y": -344.88, - "action": "mining", - "move_mode": "walk", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": 1118.29, - "y": -344.88, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 9, - "x": 1120.69, - "y": -344.25, + "x": 1118.29, + "y": -344.88, "action": "mining", "move_mode": "walk", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", "type": "path" }, - { - "x": 1120.69, - "y": -344.25, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 10, - "x": 1123.14, - "y": -345.92, - "action": "mining", - "move_mode": "walk", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": 1123.14, - "y": -345.92, + "x": 1118.29, + "y": -344.88, "action": "combat_script", "action_params": "wait(1)", "type": "path", @@ -136,6 +104,42 @@ }, { "id": 11, + "x": 1120.69, + "y": -344.25, + "action": "mining", + "move_mode": "walk", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 12, + "x": 1120.69, + "y": -344.25, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 13, + "x": 1123.14, + "y": -345.92, + "action": "mining", + "move_mode": "walk", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 14, + "x": 1123.14, + "y": -345.92, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 15, "x": 1125.18, "y": -345.09, "action": "mining", @@ -144,6 +148,7 @@ "type": "path" }, { + "id": 16, "x": 1125.18, "y": -345.09, "action": "combat_script", @@ -152,7 +157,7 @@ "move_mode": "walk" }, { - "id": 12, + "id": 17, "x": 1128.3, "y": -345.45, "type": "path", @@ -161,6 +166,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 18, "x": 1128.3, "y": -345.45, "action": "combat_script", @@ -169,7 +175,7 @@ "move_mode": "walk" }, { - "id": 13, + "id": 19, "x": 1129.98, "y": -344.32, "action": "mining", @@ -178,6 +184,7 @@ "type": "path" }, { + "id": 20, "x": 1129.98, "y": -344.32, "action": "combat_script", @@ -186,7 +193,7 @@ "move_mode": "walk" }, { - "id": 14, + "id": 21, "x": 1132.93, "y": -344.37, "action": "mining", @@ -195,6 +202,7 @@ "type": "path" }, { + "id": 22, "x": 1132.93, "y": -344.37, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/08-天遒谷东-2个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/08-天遒谷东-2个.json index bf7778f1..0532bfd3 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/08-天遒谷东-2个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/08-天遒谷东-2个.json @@ -58,6 +58,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 6, "x": 1030.38, "y": 135.65, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 1030.01, "y": 138.44, "type": "path", @@ -75,6 +76,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 8, "x": 1030.01, "y": 138.44, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/09-翠玦坡西-5个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/09-翠玦坡西-5个.json index fc879067..ea46a134 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/09-翠玦坡西-5个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/09-翠玦坡西-5个.json @@ -40,6 +40,7 @@ "type": "path" }, { + "id": 4, "x": 926.49, "y": 277.51, "action": "combat_script", @@ -48,7 +49,7 @@ "move_mode": "walk" }, { - "id": 4, + "id": 5, "x": 925.28, "y": 281.62, "type": "path", @@ -57,7 +58,7 @@ "action_params": "" }, { - "id": 5, + "id": 6, "x": 936.02, "y": 315.33, "type": "path", @@ -66,7 +67,7 @@ "action_params": "" }, { - "id": 6, + "id": 7, "x": 873.43, "y": 331.56, "action": "", @@ -75,7 +76,7 @@ "type": "path" }, { - "id": 7, + "id": 8, "x": 874.28, "y": 329.64, "action": "mining", @@ -84,6 +85,7 @@ "type": "path" }, { + "id": 9, "x": 874.28, "y": 329.64, "action": "combat_script", @@ -92,7 +94,7 @@ "move_mode": "walk" }, { - "id": 8, + "id": 10, "x": 897.39, "y": 377.04, "action": "mining", @@ -101,6 +103,7 @@ "type": "path" }, { + "id": 11, "x": 897.39, "y": 377.04, "action": "combat_script", @@ -109,7 +112,7 @@ "move_mode": "dash" }, { - "id": 9, + "id": 12, "x": 903.56, "y": 417.11, "action": "", @@ -118,7 +121,7 @@ "type": "path" }, { - "id": 10, + "id": 13, "x": 902.77, "y": 428.73, "action": "stop_flying", @@ -127,7 +130,7 @@ "type": "path" }, { - "id": 11, + "id": 14, "x": 902.45, "y": 435.35, "action": "mining", @@ -136,6 +139,7 @@ "type": "path" }, { + "id": 15, "x": 902.45, "y": 435.35, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/11-绝云间南-3个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/11-绝云间南-3个.json index bf1d7f1a..b23ae5a5 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/11-绝云间南-3个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/11-绝云间南-3个.json @@ -49,6 +49,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 5, "x": 1152.41, "y": 649.02, "action": "combat_script", @@ -57,7 +58,7 @@ "move_mode": "walk" }, { - "id": 5, + "id": 6, "x": 1182.67, "y": 626.07, "type": "teleport", @@ -66,7 +67,7 @@ "action_params": "" }, { - "id": 6, + "id": 7, "x": 1179.77, "y": 645.75, "type": "path", @@ -75,7 +76,7 @@ "action_params": "" }, { - "id": 7, + "id": 8, "x": 1184.31, "y": 650.85, "type": "path", @@ -85,7 +86,7 @@ "locked": false }, { - "id": 8, + "id": 9, "x": 1184.31, "y": 650.85, "type": "path", @@ -94,6 +95,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 10, "x": 1184.31, "y": 650.85, "action": "combat_script", @@ -102,7 +104,7 @@ "move_mode": "walk" }, { - "id": 9, + "id": 11, "x": 1182.68, "y": 626.09, "type": "teleport", @@ -111,7 +113,7 @@ "action_params": "" }, { - "id": 10, + "id": 12, "x": 1196.03, "y": 606.07, "type": "path", @@ -120,7 +122,7 @@ "action_params": "" }, { - "id": 11, + "id": 13, "x": 1170.35, "y": 587.93, "type": "path", @@ -129,6 +131,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 14, "x": 1170.35, "y": 587.93, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/13-庆云顶南-3个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/13-庆云顶南-3个.json index b0e4a073..75e233c9 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/13-庆云顶南-3个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/13-庆云顶南-3个.json @@ -58,6 +58,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 6, "x": 1484.29, "y": 686.73, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 1488.34, "y": 681.91, "type": "path", @@ -75,7 +76,7 @@ "action_params": "" }, { - "id": 7, + "id": 8, "x": 1459.87, "y": 661.85, "type": "path", @@ -84,7 +85,7 @@ "action_params": "" }, { - "id": 8, + "id": 9, "x": 1440.58, "y": 668.9, "type": "path", @@ -93,6 +94,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 10, "x": 1440.58, "y": 668.9, "action": "combat_script", @@ -101,7 +103,7 @@ "move_mode": "dash" }, { - "id": 9, + "id": 11, "x": 1438.77, "y": 666.49, "type": "path", @@ -110,7 +112,7 @@ "action_params": "" }, { - "id": 10, + "id": 12, "x": 1395.7, "y": 672.63, "type": "path", @@ -119,7 +121,7 @@ "action_params": "" }, { - "id": 11, + "id": 13, "x": 1379.35, "y": 673.5, "type": "path", @@ -128,7 +130,7 @@ "action_params": "" }, { - "id": 12, + "id": 14, "x": 1377.46, "y": 673.59, "type": "path", @@ -137,7 +139,7 @@ "action_params": "" }, { - "id": 13, + "id": 15, "x": 1372.03, "y": 656.55, "type": "path", @@ -146,7 +148,7 @@ "action_params": "" }, { - "id": 14, + "id": 16, "x": 1373.98, "y": 658.9, "type": "path", @@ -155,6 +157,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 17, "x": 1373.98, "y": 658.9, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/14-庆云顶西-7个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/14-庆云顶西-7个.json index 9eb3d7b0..cefa304b 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/14-庆云顶西-7个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/14-庆云顶西-7个.json @@ -58,6 +58,7 @@ "type": "path" }, { + "id": 6, "x": 1445.89, "y": 818.06, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 1445.41, "y": 818.5, "action": "", @@ -75,7 +76,7 @@ "type": "path" }, { - "id": 7, + "id": 8, "x": 1450.56, "y": 842.35, "action": "stop_flying", @@ -84,7 +85,7 @@ "type": "path" }, { - "id": 8, + "id": 9, "x": 1451.47, "y": 843.01, "action": "mining", @@ -93,6 +94,7 @@ "type": "path" }, { + "id": 10, "x": 1451.47, "y": 843.01, "action": "combat_script", @@ -101,7 +103,7 @@ "move_mode": "walk" }, { - "id": 9, + "id": 11, "x": 1452.08, "y": 840.23, "action": "combat_script", @@ -110,7 +112,7 @@ "type": "path" }, { - "id": 10, + "id": 12, "x": 1452.73, "y": 844.63, "action": "", @@ -119,7 +121,7 @@ "type": "path" }, { - "id": 11, + "id": 13, "x": 1451.95, "y": 849.76, "action": "", @@ -128,7 +130,7 @@ "type": "path" }, { - "id": 12, + "id": 14, "x": 1451.05, "y": 854.06, "action": "", @@ -137,7 +139,7 @@ "type": "path" }, { - "id": 13, + "id": 15, "x": 1444.04, "y": 855.26, "action": "", @@ -146,7 +148,7 @@ "type": "path" }, { - "id": 14, + "id": 16, "x": 1443.96, "y": 858.23, "action": "mining", @@ -155,6 +157,7 @@ "type": "path" }, { + "id": 17, "x": 1443.96, "y": 858.23, "action": "combat_script", @@ -163,7 +166,7 @@ "move_mode": "walk" }, { - "id": 15, + "id": 18, "x": 1444.25, "y": 854.95, "action": "", @@ -172,7 +175,7 @@ "type": "path" }, { - "id": 16, + "id": 19, "x": 1568.15, "y": 824.71, "action": "stop_flying", @@ -181,7 +184,7 @@ "type": "path" }, { - "id": 17, + "id": 20, "x": 1571.01, "y": 822.42, "type": "path", @@ -190,7 +193,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.5)" }, { - "id": 18, + "id": 21, "x": 1576.99, "y": 827.07, "type": "path", @@ -199,7 +202,7 @@ "action_params": "" }, { - "id": 19, + "id": 22, "x": 1568.08, "y": 821.38, "type": "path", @@ -208,7 +211,7 @@ "action_params": "" }, { - "id": 20, + "id": 23, "x": 1572.16, "y": 825.86, "type": "path", @@ -217,7 +220,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.5)" }, { - "id": 21, + "id": 24, "x": 1568.85, "y": 826.48, "action": "mining", @@ -226,6 +229,7 @@ "type": "path" }, { + "id": 25, "x": 1568.85, "y": 826.48, "action": "combat_script", @@ -234,7 +238,7 @@ "move_mode": "walk" }, { - "id": 22, + "id": 26, "x": 1568.88, "y": 825.35, "type": "path", @@ -243,6 +247,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 27, "x": 1568.88, "y": 825.35, "action": "combat_script", @@ -251,7 +256,7 @@ "move_mode": "walk" }, { - "id": 23, + "id": 28, "x": 1548.81, "y": 846.24, "action": "mining", @@ -260,6 +265,7 @@ "type": "path" }, { + "id": 29, "x": 1548.81, "y": 846.24, "action": "combat_script", @@ -268,7 +274,7 @@ "move_mode": "dash" }, { - "id": 24, + "id": 30, "x": 1541.25, "y": 842.35, "action": "", @@ -277,7 +283,7 @@ "type": "path" }, { - "id": 25, + "id": 31, "x": 1538.81, "y": 840.04, "action": "", @@ -286,7 +292,7 @@ "type": "path" }, { - "id": 26, + "id": 32, "x": 1504.25, "y": 892.37, "action": "", @@ -295,7 +301,7 @@ "type": "path" }, { - "id": 27, + "id": 33, "x": 1502.08, "y": 893.42, "action": "", @@ -304,7 +310,7 @@ "type": "path" }, { - "id": 28, + "id": 34, "x": 1500.88, "y": 901.15, "action": "", @@ -313,7 +319,7 @@ "type": "path" }, { - "id": 29, + "id": 35, "x": 1501.99, "y": 906.43, "action": "", @@ -322,7 +328,7 @@ "type": "path" }, { - "id": 30, + "id": 36, "x": 1500.83, "y": 909.15, "action": "mining", @@ -331,6 +337,7 @@ "type": "path" }, { + "id": 37, "x": 1500.83, "y": 909.15, "action": "combat_script", @@ -339,7 +346,7 @@ "move_mode": "walk" }, { - "id": 31, + "id": 38, "x": 1474.57, "y": 763.66, "action": "", @@ -348,7 +355,7 @@ "type": "teleport" }, { - "id": 32, + "id": 39, "x": 1487.87, "y": 772.66, "action": "stop_flying", @@ -357,7 +364,7 @@ "type": "path" }, { - "id": 33, + "id": 40, "x": 1487.26, "y": 773.55, "action": "mining", @@ -366,6 +373,7 @@ "type": "path" }, { + "id": 41, "x": 1487.26, "y": 773.55, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/15-庆云顶北-6个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/15-庆云顶北-6个.json index fb3622fd..b25853c1 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/15-庆云顶北-6个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/15-庆云顶北-6个.json @@ -49,6 +49,7 @@ "type": "path" }, { + "id": 5, "x": 1363.9, "y": 925.08, "action": "combat_script", @@ -57,7 +58,7 @@ "move_mode": "walk" }, { - "id": 5, + "id": 6, "x": 1364.94, "y": 925.3, "action": "", @@ -66,7 +67,7 @@ "type": "path" }, { - "id": 6, + "id": 7, "x": 1384.6, "y": 938.43, "action": "stop_flying", @@ -75,7 +76,7 @@ "type": "path" }, { - "id": 7, + "id": 8, "x": 1383.69, "y": 938.77, "action": "mining", @@ -84,6 +85,7 @@ "type": "path" }, { + "id": 9, "x": 1383.69, "y": 938.77, "action": "combat_script", @@ -92,7 +94,7 @@ "move_mode": "walk" }, { - "id": 8, + "id": 10, "x": 1430.97, "y": 942.98, "action": "stop_flying", @@ -101,7 +103,7 @@ "type": "path" }, { - "id": 9, + "id": 11, "x": 1442.08, "y": 979.62, "action": "", @@ -110,7 +112,7 @@ "type": "path" }, { - "id": 10, + "id": 12, "x": 1435.41, "y": 965.65, "action": "fight", @@ -119,7 +121,7 @@ "type": "path" }, { - "id": 11, + "id": 13, "x": 1424.55, "y": 948.94, "action": "", @@ -128,7 +130,7 @@ "type": "path" }, { - "id": 12, + "id": 14, "x": 1418.4, "y": 970.04, "action": "mining", @@ -137,6 +139,7 @@ "type": "path" }, { + "id": 15, "x": 1418.4, "y": 970.04, "action": "combat_script", @@ -145,7 +148,7 @@ "move_mode": "walk" }, { - "id": 13, + "id": 16, "x": 1449.65, "y": 968.08, "action": "", @@ -154,7 +157,7 @@ "type": "path" }, { - "id": 14, + "id": 17, "x": 1463.5, "y": 982.34, "action": "mining", @@ -163,6 +166,7 @@ "type": "path" }, { + "id": 18, "x": 1463.5, "y": 982.34, "action": "combat_script", @@ -171,7 +175,7 @@ "move_mode": "walk" }, { - "id": 15, + "id": 19, "x": 1462.09, "y": 972.11, "action": "", @@ -180,7 +184,7 @@ "type": "path" }, { - "id": 16, + "id": 20, "x": 1499.19, "y": 965.09, "action": "", @@ -189,7 +193,7 @@ "type": "path" }, { - "id": 17, + "id": 21, "x": 1500.55, "y": 969.87, "action": "mining", @@ -198,6 +202,7 @@ "type": "path" }, { + "id": 22, "x": 1500.55, "y": 969.87, "action": "combat_script", @@ -206,7 +211,7 @@ "move_mode": "walk" }, { - "id": 18, + "id": 23, "x": 1433.4, "y": 837.1, "action": "", @@ -215,7 +220,7 @@ "type": "teleport" }, { - "id": 19, + "id": 24, "x": 1358.43, "y": 1019.26, "action": "stop_flying", @@ -224,7 +229,7 @@ "type": "path" }, { - "id": 20, + "id": 25, "x": 1358.53, "y": 1019.35, "action": "mining", @@ -233,6 +238,7 @@ "type": "path" }, { + "id": 26, "x": 1358.53, "y": 1019.35, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/16-庆云顶东-7个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/16-庆云顶东-7个.json index ba6e160c..840a1a27 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/16-庆云顶东-7个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/16-庆云顶东-7个.json @@ -58,6 +58,7 @@ "type": "path" }, { + "id": 6, "x": 1332.87, "y": 825.66, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 1332.56, "y": 826.25, "type": "path", @@ -75,7 +76,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.5)" }, { - "id": 7, + "id": 8, "x": 1328.67, "y": 826.93, "type": "path", @@ -84,7 +85,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.8)" }, { - "id": 8, + "id": 9, "x": 1347.87, "y": 808.63, "action": "", @@ -93,7 +94,7 @@ "type": "path" }, { - "id": 9, + "id": 10, "x": 1349.73, "y": 809.17, "action": "mining", @@ -102,6 +103,7 @@ "type": "path" }, { + "id": 11, "x": 1349.73, "y": 809.17, "action": "combat_script", @@ -110,7 +112,7 @@ "move_mode": "walk" }, { - "id": 10, + "id": 12, "x": 1347.68, "y": 807.42, "action": "", @@ -119,7 +121,7 @@ "type": "path" }, { - "id": 11, + "id": 13, "x": 1344.14, "y": 814.34, "type": "path", @@ -128,7 +130,7 @@ "action_params": "" }, { - "id": 12, + "id": 14, "x": 1343.18, "y": 815.03, "action": "mining", @@ -137,6 +139,7 @@ "type": "path" }, { + "id": 15, "x": 1343.18, "y": 815.03, "action": "combat_script", @@ -145,7 +148,7 @@ "move_mode": "walk" }, { - "id": 13, + "id": 16, "x": 1343.03, "y": 813.85, "action": "", @@ -154,7 +157,7 @@ "type": "path" }, { - "id": 14, + "id": 17, "x": 1336.28, "y": 819.76, "action": "", @@ -163,7 +166,7 @@ "type": "path" }, { - "id": 15, + "id": 18, "x": 1334.92, "y": 821.55, "action": "mining", @@ -172,6 +175,7 @@ "type": "path" }, { + "id": 19, "x": 1334.92, "y": 821.55, "action": "combat_script", @@ -180,7 +184,7 @@ "move_mode": "walk" }, { - "id": 16, + "id": 20, "x": 1333.62, "y": 812.38, "action": "", @@ -189,7 +193,7 @@ "type": "path" }, { - "id": 17, + "id": 21, "x": 1316.76, "y": 804.06, "action": "", @@ -198,7 +202,7 @@ "type": "path" }, { - "id": 18, + "id": 22, "x": 1275.28, "y": 757.45, "action": "stop_flying", @@ -207,7 +211,7 @@ "type": "path" }, { - "id": 19, + "id": 23, "x": 1276.35, "y": 757.44, "action": "mining", @@ -216,6 +220,7 @@ "type": "path" }, { + "id": 24, "x": 1276.35, "y": 757.44, "action": "combat_script", @@ -224,7 +229,7 @@ "move_mode": "walk" }, { - "id": 20, + "id": 25, "x": 1285.75, "y": 764.19, "action": "", @@ -233,7 +238,7 @@ "type": "path" }, { - "id": 21, + "id": 26, "x": 1276.22, "y": 832.34, "action": "", @@ -242,7 +247,7 @@ "type": "path" }, { - "id": 22, + "id": 27, "x": 1268.67, "y": 837.33, "action": "mining", @@ -251,6 +256,7 @@ "type": "path" }, { + "id": 28, "x": 1268.67, "y": 837.33, "action": "combat_script", @@ -259,7 +265,7 @@ "move_mode": "dash" }, { - "id": 23, + "id": 29, "x": 1261.56, "y": 837.7, "type": "path", @@ -268,6 +274,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 30, "x": 1261.56, "y": 837.7, "action": "combat_script", @@ -276,7 +283,7 @@ "move_mode": "walk" }, { - "id": 24, + "id": 31, "x": 1258.96, "y": 832.04, "action": "", @@ -285,7 +292,7 @@ "type": "path" }, { - "id": 25, + "id": 32, "x": 1244.78, "y": 822.2, "action": "", @@ -294,7 +301,7 @@ "type": "path" }, { - "id": 26, + "id": 33, "x": 1228.82, "y": 840.51, "action": "", @@ -303,7 +310,7 @@ "type": "path" }, { - "id": 27, + "id": 34, "x": 1233.34, "y": 885.09, "action": "", @@ -312,7 +319,7 @@ "type": "path" }, { - "id": 28, + "id": 35, "x": 1238.1, "y": 884.64, "action": "mining", @@ -321,6 +328,7 @@ "type": "path" }, { + "id": 36, "x": 1238.1, "y": 884.64, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/18-绝云间北-3个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/18-绝云间北-3个.json index 10d56b64..4b1a0f7e 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/18-绝云间北-3个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/18-绝云间北-3个.json @@ -85,6 +85,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 9, "x": 1062.82, "y": 914.78, "action": "combat_script", @@ -93,7 +94,7 @@ "move_mode": "walk" }, { - "id": 9, + "id": 10, "x": 1037.74, "y": 1008.5, "type": "path", @@ -102,7 +103,7 @@ "action_params": "" }, { - "id": 10, + "id": 11, "x": 1037.67, "y": 1008.52, "type": "path", @@ -111,6 +112,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 12, "x": 1037.67, "y": 1008.52, "action": "combat_script", @@ -119,7 +121,7 @@ "move_mode": "walk" }, { - "id": 11, + "id": 13, "x": 1037.38, "y": 1005.76, "type": "path", @@ -128,7 +130,7 @@ "action_params": "" }, { - "id": 12, + "id": 14, "x": 1002.76, "y": 954.03, "type": "path", @@ -137,7 +139,7 @@ "action_params": "" }, { - "id": 13, + "id": 15, "x": 1004.27, "y": 954.32, "type": "path", @@ -146,6 +148,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 16, "x": 1004.27, "y": 954.32, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/19-望舒客栈西-1个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/19-望舒客栈西-1个.json index c57b4289..008bc7fe 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/19-望舒客栈西-1个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/19-望舒客栈西-1个.json @@ -58,6 +58,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 6, "x": 698.42, "y": 981.83, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 698.35, "y": 981.71, "type": "path", @@ -75,7 +76,7 @@ "action_params": "" }, { - "id": 7, + "id": 8, "x": 700.14, "y": 977.8, "type": "path", @@ -84,6 +85,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 9, "x": 700.14, "y": 977.8, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/20-奥藏山东-2个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/20-奥藏山东-2个.json index e46e3937..95b81eb3 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/20-奥藏山东-2个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/20-奥藏山东-2个.json @@ -58,6 +58,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 6, "x": 1048.81, "y": 1202.86, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "dash" }, { - "id": 6, + "id": 7, "x": 1042.84, "y": 1204.49, "type": "path", @@ -75,6 +76,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 8, "x": 1042.84, "y": 1204.49, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/21-华池-2个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/21-华池-2个.json index 009f0f69..63ee05ac 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/21-华池-2个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/21-华池-2个.json @@ -76,6 +76,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 8, "x": 1376.06, "y": 1360.2, "action": "combat_script", @@ -84,7 +85,7 @@ "move_mode": "walk" }, { - "id": 8, + "id": 9, "x": 1375.09, "y": 1361.9, "type": "path", @@ -93,7 +94,7 @@ "action_params": "" }, { - "id": 9, + "id": 10, "x": 1377.64, "y": 1369.54, "type": "path", @@ -102,6 +103,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 11, "x": 1377.64, "y": 1369.54, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/22-轻策庄南-6个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/22-轻策庄南-6个.json index 46b2ea82..2975d489 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/22-轻策庄南-6个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/22-轻策庄南-6个.json @@ -58,6 +58,7 @@ "type": "path" }, { + "id": 6, "x": 780.97, "y": 1530.76, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 7, "x": 776.91, "y": 1530.13, "action": "mining", @@ -75,6 +76,7 @@ "type": "path" }, { + "id": 8, "x": 776.91, "y": 1530.13, "action": "combat_script", @@ -83,7 +85,7 @@ "move_mode": "walk" }, { - "id": 7, + "id": 9, "x": 751.72, "y": 1522.96, "type": "path", @@ -92,7 +94,7 @@ "action_params": "" }, { - "id": 8, + "id": 10, "x": 720.94, "y": 1540.12, "type": "path", @@ -101,7 +103,7 @@ "action_params": "" }, { - "id": 9, + "id": 11, "x": 725.13, "y": 1559.44, "type": "path", @@ -110,7 +112,7 @@ "action_params": "" }, { - "id": 10, + "id": 12, "x": 722.33, "y": 1567.2, "action": "mining", @@ -119,6 +121,7 @@ "type": "path" }, { + "id": 13, "x": 722.33, "y": 1567.2, "action": "combat_script", @@ -127,7 +130,7 @@ "move_mode": "walk" }, { - "id": 11, + "id": 14, "x": 721.77, "y": 1567.35, "action": "", @@ -136,7 +139,7 @@ "type": "path" }, { - "id": 12, + "id": 15, "x": 721.49, "y": 1566.23, "action": "mining", @@ -145,6 +148,7 @@ "type": "path" }, { + "id": 16, "x": 721.49, "y": 1566.23, "action": "combat_script", @@ -153,7 +157,7 @@ "move_mode": "walk" }, { - "id": 13, + "id": 17, "x": 719.51, "y": 1564.36, "action": "mining", @@ -162,6 +166,7 @@ "type": "path" }, { + "id": 18, "x": 719.51, "y": 1564.36, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/23-孤云阁北(定位不准)-5个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/23-孤云阁北(定位不准)-5个.json index 8693027b..fcb3a598 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/23-孤云阁北(定位不准)-5个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/璃月/23-孤云阁北(定位不准)-5个.json @@ -40,6 +40,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 4, "x": -695.5, "y": -81.2, "action": "combat_script", @@ -47,52 +48,19 @@ "type": "path", "move_mode": "walk" }, - { - "id": 4, - "x": -698.92, - "y": -81.8, - "type": "path", - "move_mode": "walk", - "action": "mining", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" - }, - { - "x": -698.92, - "y": -81.8, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 5, - "x": -700.56, - "y": -77.85, + "x": -698.92, + "y": -81.8, "type": "path", "move_mode": "walk", "action": "mining", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, - { - "x": -700.56, - "y": -77.85, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 6, - "x": -699.89, - "y": -73.57, - "type": "path", - "move_mode": "walk", - "action": "mining", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" - }, - { - "x": -699.89, - "y": -73.57, + "x": -698.92, + "y": -81.8, "action": "combat_script", "action_params": "wait(1)", "type": "path", @@ -100,33 +68,17 @@ }, { "id": 7, - "x": -698.08, - "y": -74.15, + "x": -700.56, + "y": -77.85, "type": "path", "move_mode": "walk", "action": "mining", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, - { - "x": -698.08, - "y": -74.15, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "walk" - }, { "id": 8, - "x": -695.5, - "y": -73.92, - "type": "path", - "move_mode": "walk", - "action": "mining", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" - }, - { - "x": -695.5, - "y": -73.92, + "x": -700.56, + "y": -77.85, "action": "combat_script", "action_params": "wait(1)", "type": "path", @@ -134,6 +86,60 @@ }, { "id": 9, + "x": -699.89, + "y": -73.57, + "type": "path", + "move_mode": "walk", + "action": "mining", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" + }, + { + "id": 10, + "x": -699.89, + "y": -73.57, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 11, + "x": -698.08, + "y": -74.15, + "type": "path", + "move_mode": "walk", + "action": "mining", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" + }, + { + "id": 12, + "x": -698.08, + "y": -74.15, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 13, + "x": -695.5, + "y": -73.92, + "type": "path", + "move_mode": "walk", + "action": "mining", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" + }, + { + "id": 14, + "x": -695.5, + "y": -73.92, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "walk" + }, + { + "id": 15, "x": -692.34, "y": -73.44, "type": "path", @@ -142,6 +148,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 16, "x": -692.34, "y": -73.44, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/01-望风山地-3个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/01-望风山地-3个.json index 66f639e3..cbeba7a9 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/01-望风山地-3个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/01-望风山地-3个.json @@ -49,6 +49,7 @@ "type": "path" }, { + "id": 5, "x": -1213.3, "y": 2691.69, "action": "combat_script", @@ -57,7 +58,7 @@ "move_mode": "walk" }, { - "id": 5, + "id": 6, "x": -1273.83, "y": 2721.7, "action": "", @@ -66,7 +67,7 @@ "type": "teleport" }, { - "id": 6, + "id": 7, "x": -1339.71, "y": 2704.84, "action": "", @@ -75,7 +76,7 @@ "type": "path" }, { - "id": 7, + "id": 8, "x": -1343.3, "y": 2700.92, "action": "combat_script", @@ -84,7 +85,7 @@ "type": "path" }, { - "id": 8, + "id": 9, "x": -1341.52, "y": 2697.75, "action": "combat_script", @@ -93,7 +94,7 @@ "type": "path" }, { - "id": 9, + "id": 10, "x": -1344.32, "y": 2694.21, "action": "combat_script", @@ -102,7 +103,7 @@ "type": "path" }, { - "id": 10, + "id": 11, "x": -1346.31, "y": 2698.28, "action": "mining", @@ -111,6 +112,7 @@ "type": "path" }, { + "id": 12, "x": -1346.31, "y": 2698.28, "action": "combat_script", @@ -119,7 +121,7 @@ "move_mode": "walk" }, { - "id": 11, + "id": 13, "x": -1345.99, "y": 2703.81, "type": "path", @@ -128,7 +130,7 @@ "action_params": "" }, { - "id": 12, + "id": 14, "x": -1348.24, "y": 2699.02, "action": "combat_script", @@ -137,7 +139,7 @@ "type": "path" }, { - "id": 13, + "id": 15, "x": -1351.73, "y": 2701.45, "action": "", @@ -146,7 +148,7 @@ "type": "path" }, { - "id": 14, + "id": 16, "x": -1350.7, "y": 2697.83, "action": "mining", @@ -155,6 +157,7 @@ "type": "path" }, { + "id": 17, "x": -1350.7, "y": 2697.83, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/02-铭记之谷-6个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/02-铭记之谷-6个.json index ea04d329..a05d8b8d 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/02-铭记之谷-6个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/02-铭记之谷-6个.json @@ -85,6 +85,7 @@ "type": "path" }, { + "id": 9, "x": -707.05, "y": 1676.41, "action": "combat_script", @@ -93,7 +94,7 @@ "move_mode": "run" }, { - "id": 9, + "id": 10, "x": -707.94, "y": 1674.9, "action": "", @@ -102,7 +103,7 @@ "type": "path" }, { - "id": 10, + "id": 11, "x": -710.8, "y": 1675.26, "action": "", @@ -111,7 +112,7 @@ "type": "path" }, { - "id": 11, + "id": 12, "x": -710.54, "y": 1678.45, "action": "mining", @@ -120,6 +121,7 @@ "type": "path" }, { + "id": 13, "x": -710.54, "y": 1678.45, "action": "combat_script", @@ -128,7 +130,7 @@ "move_mode": "run" }, { - "id": 12, + "id": 14, "x": -711.27, "y": 1680.13, "action": "", @@ -136,59 +138,62 @@ "action_params": "", "type": "path" }, - { - "id": 13, - "x": -720.14, - "y": 1675.06, - "action": "mining", - "move_mode": "run", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": -720.14, - "y": 1675.06, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "run" - }, - { - "id": 14, - "x": -719.15, - "y": 1672.1, - "action": "mining", - "move_mode": "run", - "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", - "type": "path" - }, - { - "x": -719.15, - "y": 1672.1, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "run" - }, { "id": 15, - "x": -719.7, - "y": 1668.07, + "x": -720.14, + "y": 1675.06, "action": "mining", "move_mode": "run", "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", "type": "path" }, - { - "x": -719.7, - "y": 1668.07, - "action": "combat_script", - "action_params": "wait(1)", - "type": "path", - "move_mode": "run" - }, { "id": 16, + "x": -720.14, + "y": 1675.06, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "run" + }, + { + "id": 17, + "x": -719.15, + "y": 1672.1, + "action": "mining", + "move_mode": "run", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 18, + "x": -719.15, + "y": 1672.1, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "run" + }, + { + "id": 19, + "x": -719.7, + "y": 1668.07, + "action": "mining", + "move_mode": "run", + "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)", + "type": "path" + }, + { + "id": 20, + "x": -719.7, + "y": 1668.07, + "action": "combat_script", + "action_params": "wait(1)", + "type": "path", + "move_mode": "run" + }, + { + "id": 21, "x": -719.61, "y": 1663.69, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/03-奔狼领-5个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/03-奔狼领-5个.json index 6a41d238..eb4602e5 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/03-奔狼领-5个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/03-奔狼领-5个.json @@ -49,6 +49,7 @@ "type": "path" }, { + "id": 5, "x": -582.18, "y": 2151.51, "action": "combat_script", @@ -57,7 +58,7 @@ "move_mode": "walk" }, { - "id": 5, + "id": 6, "x": -583.65, "y": 2148.86, "action": "mining", @@ -66,6 +67,7 @@ "type": "path" }, { + "id": 7, "x": -583.65, "y": 2148.86, "action": "combat_script", @@ -74,7 +76,7 @@ "move_mode": "walk" }, { - "id": 6, + "id": 8, "x": -581.96, "y": 2147.8, "type": "path", @@ -83,6 +85,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 9, "x": -581.96, "y": 2147.8, "action": "combat_script", @@ -91,7 +94,7 @@ "move_mode": "walk" }, { - "id": 7, + "id": 10, "x": -584.92, "y": 2145.81, "action": "mining", @@ -100,6 +103,7 @@ "type": "path" }, { + "id": 11, "x": -584.92, "y": 2145.81, "action": "combat_script", @@ -108,7 +112,7 @@ "move_mode": "walk" }, { - "id": 8, + "id": 12, "x": -587.75, "y": 2143.6, "action": "combat_script", @@ -117,7 +121,7 @@ "type": "path" }, { - "id": 9, + "id": 13, "x": -589.85, "y": 2145.07, "action": "mining", @@ -126,6 +130,7 @@ "type": "path" }, { + "id": 14, "x": -589.85, "y": 2145.07, "action": "combat_script", @@ -134,7 +139,7 @@ "move_mode": "walk" }, { - "id": 10, + "id": 15, "x": -521.59, "y": 2181.4, "action": "", @@ -143,7 +148,7 @@ "type": "teleport" }, { - "id": 11, + "id": 16, "x": -473.73, "y": 2180.97, "action": "", @@ -152,7 +157,7 @@ "type": "path" }, { - "id": 12, + "id": 17, "x": -472.92, "y": 2175.18, "action": "", @@ -161,7 +166,7 @@ "type": "path" }, { - "id": 13, + "id": 18, "x": -467.7, "y": 2171.62, "action": "mining", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/06-明冠峡-1个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/06-明冠峡-1个.json index 7ae25765..58b16809 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/06-明冠峡-1个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/06-明冠峡-1个.json @@ -50,6 +50,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 5, "x": -485.06, "y": 2670.78, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/07-风龙废墟南-6个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/07-风龙废墟南-6个.json index c5198a93..94b8e5bb 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/07-风龙废墟南-6个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/07-风龙废墟南-6个.json @@ -58,6 +58,7 @@ "type": "path" }, { + "id": 6, "x": 92.86, "y": 2387.66, "action": "combat_script", @@ -66,7 +67,7 @@ "move_mode": "dash" }, { - "id": 6, + "id": 7, "x": 101.51, "y": 2401.52, "action": "", @@ -75,7 +76,7 @@ "type": "path" }, { - "id": 7, + "id": 8, "x": 157.14, "y": 2409.22, "action": "mining", @@ -84,6 +85,7 @@ "type": "path" }, { + "id": 9, "x": 157.14, "y": 2409.22, "action": "combat_script", @@ -92,7 +94,7 @@ "move_mode": "dash" }, { - "id": 8, + "id": 10, "x": 158.19, "y": 2445.3, "type": "path", @@ -101,7 +103,7 @@ "action_params": "" }, { - "id": 9, + "id": 11, "x": 185.61, "y": 2435.83, "type": "path", @@ -110,6 +112,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 12, "x": 185.61, "y": 2435.83, "action": "combat_script", @@ -118,7 +121,7 @@ "move_mode": "dash" }, { - "id": 10, + "id": 13, "x": 193.28, "y": 2463.84, "type": "path", @@ -127,7 +130,7 @@ "action_params": "" }, { - "id": 11, + "id": 14, "x": 212.83, "y": 2476.25, "type": "path", @@ -136,6 +139,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 15, "x": 212.83, "y": 2476.25, "action": "combat_script", @@ -144,7 +148,7 @@ "move_mode": "walk" }, { - "id": 12, + "id": 16, "x": 219.11, "y": 2471.53, "type": "path", @@ -153,7 +157,7 @@ "action_params": "" }, { - "id": 13, + "id": 17, "x": 246.51, "y": 2440.62, "type": "path", @@ -162,7 +166,7 @@ "action_params": "" }, { - "id": 14, + "id": 18, "x": 249.06, "y": 2437.19, "type": "path", @@ -171,7 +175,7 @@ "action_params": "" }, { - "id": 15, + "id": 19, "x": 254.79, "y": 2429.96, "type": "path", @@ -180,6 +184,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 20, "x": 254.79, "y": 2429.96, "action": "combat_script", @@ -188,7 +193,7 @@ "move_mode": "walk" }, { - "id": 16, + "id": 21, "x": 353.36, "y": 2449.94, "type": "path", @@ -197,6 +202,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 22, "x": 353.36, "y": 2449.94, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/09-风龙废墟中央-2个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/09-风龙废墟中央-2个.json index 2b43e4e3..4a630647 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/09-风龙废墟中央-2个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/09-风龙废墟中央-2个.json @@ -139,6 +139,7 @@ "type": "path" }, { + "id": 15, "x": 220.95, "y": 2690.03, "action": "combat_script", @@ -147,7 +148,7 @@ "move_mode": "walk" }, { - "id": 15, + "id": 16, "x": 227.45, "y": 2694.5, "action": "", @@ -156,7 +157,7 @@ "type": "path" }, { - "id": 16, + "id": 17, "x": 246.95, "y": 2674.76, "action": "", @@ -165,7 +166,7 @@ "type": "path" }, { - "id": 17, + "id": 18, "x": 247.35, "y": 2671.56, "action": "stop_flying", @@ -174,7 +175,7 @@ "type": "path" }, { - "id": 18, + "id": 19, "x": 244.55, "y": 2669.38, "action": "mining", @@ -183,6 +184,7 @@ "type": "path" }, { + "id": 20, "x": 244.55, "y": 2669.38, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/10-风龙废墟中央-2个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/10-风龙废墟中央-2个.json index 9db2efc2..7eff4eb2 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/10-风龙废墟中央-2个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/10-风龙废墟中央-2个.json @@ -67,6 +67,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 7, "x": 209.38, "y": 2594.71, "action": "combat_script", @@ -75,7 +76,7 @@ "move_mode": "walk" }, { - "id": 7, + "id": 8, "x": 237.1, "y": 2600.82, "type": "path", @@ -84,7 +85,7 @@ "action_params": "" }, { - "id": 8, + "id": 9, "x": 244.41, "y": 2619.36, "type": "path", @@ -93,7 +94,7 @@ "action_params": "" }, { - "id": 9, + "id": 10, "x": 240.35, "y": 2605.08, "type": "path", @@ -102,7 +103,7 @@ "action_params": "" }, { - "id": 10, + "id": 11, "x": 238.65, "y": 2599.6, "type": "path", @@ -111,7 +112,7 @@ "action_params": "" }, { - "id": 11, + "id": 12, "x": 245.09, "y": 2599.49, "type": "path", @@ -120,6 +121,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 13, "x": 245.09, "y": 2599.49, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/11-风龙废墟中央-6个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/11-风龙废墟中央-6个.json index 2d96ae26..2e05c5f2 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/11-风龙废墟中央-6个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/11-风龙废墟中央-6个.json @@ -85,6 +85,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 9, "x": 104.15, "y": 2553.0, "action": "combat_script", @@ -93,7 +94,7 @@ "move_mode": "walk" }, { - "id": 9, + "id": 10, "x": 56.25, "y": 2564.1, "type": "path", @@ -102,7 +103,7 @@ "action_params": "" }, { - "id": 10, + "id": 11, "x": 30.64, "y": 2608.17, "type": "path", @@ -111,7 +112,7 @@ "action_params": "" }, { - "id": 11, + "id": 12, "x": 32.82, "y": 2613.64, "type": "path", @@ -120,6 +121,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 13, "x": 32.82, "y": 2613.64, "action": "combat_script", @@ -128,7 +130,7 @@ "move_mode": "walk" }, { - "id": 12, + "id": 14, "x": 22.66, "y": 2628.86, "type": "path", @@ -137,7 +139,7 @@ "action_params": "" }, { - "id": 13, + "id": 15, "x": 24.14, "y": 2665.92, "type": "path", @@ -146,7 +148,7 @@ "action_params": "" }, { - "id": 14, + "id": 16, "x": 38.78, "y": 2729.38, "type": "path", @@ -155,6 +157,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 17, "x": 38.78, "y": 2729.38, "action": "combat_script", @@ -163,7 +166,7 @@ "move_mode": "walk" }, { - "id": 15, + "id": 18, "x": 53.25, "y": 2719.58, "type": "path", @@ -172,7 +175,7 @@ "action_params": "" }, { - "id": 16, + "id": 19, "x": 55.15, "y": 2715.25, "type": "path", @@ -181,7 +184,7 @@ "action_params": "" }, { - "id": 17, + "id": 20, "x": 58.08, "y": 2715.8, "type": "path", @@ -190,7 +193,7 @@ "action_params": "" }, { - "id": 18, + "id": 21, "x": 69.69, "y": 2723.58, "type": "path", @@ -199,7 +202,7 @@ "action_params": "" }, { - "id": 19, + "id": 22, "x": 76.91, "y": 2727.04, "type": "path", @@ -208,7 +211,7 @@ "action_params": "" }, { - "id": 20, + "id": 23, "x": 86.34, "y": 2732.76, "type": "path", @@ -217,7 +220,7 @@ "action_params": "" }, { - "id": 21, + "id": 24, "x": 109.83, "y": 2746.2, "type": "path", @@ -226,7 +229,7 @@ "action_params": "" }, { - "id": 22, + "id": 25, "x": 104.33, "y": 2747.51, "type": "path", @@ -235,6 +238,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 26, "x": 104.33, "y": 2747.51, "action": "combat_script", @@ -243,7 +247,7 @@ "move_mode": "walk" }, { - "id": 23, + "id": 27, "x": 119.11, "y": 2750.98, "type": "path", @@ -252,7 +256,7 @@ "action_params": "" }, { - "id": 24, + "id": 28, "x": 142.49, "y": 2750.76, "type": "path", @@ -261,6 +265,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 29, "x": 142.49, "y": 2750.76, "action": "combat_script", @@ -269,7 +274,7 @@ "move_mode": "dash" }, { - "id": 25, + "id": 30, "x": 158.35, "y": 2757.25, "type": "path", @@ -278,7 +283,7 @@ "action_params": "" }, { - "id": 26, + "id": 31, "x": 171.51, "y": 2752.67, "type": "path", @@ -287,6 +292,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 32, "x": 171.51, "y": 2752.67, "action": "combat_script", diff --git a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/12-风龙废墟北-1个.json b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/12-风龙废墟北-1个.json index 4e70a2e6..624747a7 100644 --- a/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/12-风龙废墟北-1个.json +++ b/repo/pathing/矿物/水晶块/水晶块@火山/大剑的提瓦特矿闻录/蒙德/12-风龙废墟北-1个.json @@ -58,6 +58,7 @@ "action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)" }, { + "id": 6, "x": 128.62, "y": 3008.82, "action": "combat_script", diff --git a/repo/pathing/矿物/紫晶块/稻妻海祗岛05珊瑚宫.json b/repo/pathing/矿物/紫晶块/稻妻海祗岛05珊瑚宫.json index 8c0bfd86..656cd152 100644 --- a/repo/pathing/矿物/紫晶块/稻妻海祗岛05珊瑚宫.json +++ b/repo/pathing/矿物/紫晶块/稻妻海祗岛05珊瑚宫.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": -757.96, "y": -3815.18, "type": "teleport", diff --git a/repo/pathing/矿物/紫晶块/稻妻鸣神04绀田.json b/repo/pathing/矿物/紫晶块/稻妻鸣神04绀田.json index c551a5a0..8aa7efb5 100644 --- a/repo/pathing/矿物/紫晶块/稻妻鸣神04绀田.json +++ b/repo/pathing/矿物/紫晶块/稻妻鸣神04绀田.json @@ -163,7 +163,7 @@ "action": "" }, { - "id": 21, + "id": 20, "x": -4153.9, "y": -2622.73, "type": "path", diff --git a/repo/pathing/矿物/萃凝晶/纳塔万火之欧01.json b/repo/pathing/矿物/萃凝晶/纳塔万火之欧01.json index f786326f..c08f0425 100644 --- a/repo/pathing/矿物/萃凝晶/纳塔万火之欧01.json +++ b/repo/pathing/矿物/萃凝晶/纳塔万火之欧01.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": 8598.1, "y": -1925.07, "type": "teleport", diff --git a/repo/pathing/矿物/萃凝晶/纳塔坚岩缢谷04.json b/repo/pathing/矿物/萃凝晶/纳塔坚岩缢谷04.json index b172c826..3e69db6d 100644 --- a/repo/pathing/矿物/萃凝晶/纳塔坚岩缢谷04.json +++ b/repo/pathing/矿物/萃凝晶/纳塔坚岩缢谷04.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": 7633.79, "y": -1646.65, "type": "teleport", diff --git a/repo/pathing/矿物/萃凝晶/纳塔坚岩缢谷七天神像 (1).json b/repo/pathing/矿物/萃凝晶/纳塔坚岩缢谷七天神像 (1).json index bdfb1353..8cd5877c 100644 --- a/repo/pathing/矿物/萃凝晶/纳塔坚岩缢谷七天神像 (1).json +++ b/repo/pathing/矿物/萃凝晶/纳塔坚岩缢谷七天神像 (1).json @@ -300,7 +300,7 @@ "action_params": "" }, { - "id": 38, + "id": 37, "x": 7884.47, "y": -1465.88, "type": "path", @@ -308,7 +308,7 @@ "action": "" }, { - "id": 39, + "id": 38, "x": 7887.86, "y": -1466.33, "type": "path", @@ -316,7 +316,7 @@ "action": "" }, { - "id": 40, + "id": 39, "x": 7888.79, "y": -1463.98, "type": "path", @@ -324,7 +324,7 @@ "action": "" }, { - "id": 41, + "id": 40, "x": 7888.01, "y": -1462.58, "type": "path", @@ -332,7 +332,7 @@ "action": "" }, { - "id": 42, + "id": 41, "x": 7888.88, "y": -1459.8, "type": "path", @@ -340,7 +340,7 @@ "action": "" }, { - "id": 43, + "id": 42, "x": 7890.07, "y": -1461.31, "type": "path", @@ -348,7 +348,7 @@ "action": "" }, { - "id": 44, + "id": 43, "x": 7891.21, "y": -1462.12, "type": "path", @@ -356,7 +356,7 @@ "action": "" }, { - "id": 45, + "id": 44, "x": 7888.72, "y": -1463.33, "type": "path", @@ -364,7 +364,7 @@ "action": "" }, { - "id": 46, + "id": 45, "x": 7885.04, "y": -1460.27, "type": "path", @@ -372,7 +372,7 @@ "action": "" }, { - "id": 47, + "id": 46, "x": 7879.25, "y": -1456.67, "type": "path", @@ -380,7 +380,7 @@ "action": "" }, { - "id": 48, + "id": 47, "x": 7880.92, "y": -1448.18, "type": "path", @@ -388,7 +388,7 @@ "action": "" }, { - "id": 49, + "id": 48, "x": 7889.25, "y": -1449.24, "type": "path", @@ -397,7 +397,7 @@ "action_params": "" }, { - "id": 50, + "id": 49, "x": 7891.65, "y": -1451.35, "type": "path", @@ -405,7 +405,7 @@ "action": "" }, { - "id": 51, + "id": 50, "x": 7895.23, "y": -1450.04, "type": "path", @@ -413,7 +413,7 @@ "action": "" }, { - "id": 52, + "id": 51, "x": 7893.7, "y": -1449.0, "type": "path", @@ -421,7 +421,7 @@ "action": "" }, { - "id": 53, + "id": 52, "x": 7892.57, "y": -1449.69, "type": "path", @@ -429,7 +429,7 @@ "action": "" }, { - "id": 54, + "id": 53, "x": 7890.88, "y": -1450.38, "type": "path", diff --git a/repo/pathing/矿物/萃凝晶/纳塔花羽会003.json b/repo/pathing/矿物/萃凝晶/纳塔花羽会003.json index ad828637..0964a083 100644 --- a/repo/pathing/矿物/萃凝晶/纳塔花羽会003.json +++ b/repo/pathing/矿物/萃凝晶/纳塔花羽会003.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 3, + "id": 1, "x": 9548.28, "y": -1116.56, "type": "teleport", diff --git a/repo/pathing/矿物/萃凝晶/苍晶区南3.json b/repo/pathing/矿物/萃凝晶/苍晶区南3.json index b1fc5fff..c386036c 100644 --- a/repo/pathing/矿物/萃凝晶/苍晶区南3.json +++ b/repo/pathing/矿物/萃凝晶/苍晶区南3.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": 5048.6, "y": 2515.39, "type": "path", diff --git a/repo/pathing/食材与炼金/堇瓜/堇瓜(纳西妲采集)@起个名字好难的喵/堇瓜-05-鸣神岛-神里屋敷-9个.json b/repo/pathing/食材与炼金/堇瓜/堇瓜(纳西妲采集)@起个名字好难的喵/堇瓜-05-鸣神岛-神里屋敷-9个.json index 2d83a968..5f4d5794 100644 --- a/repo/pathing/食材与炼金/堇瓜/堇瓜(纳西妲采集)@起个名字好难的喵/堇瓜-05-鸣神岛-神里屋敷-9个.json +++ b/repo/pathing/食材与炼金/堇瓜/堇瓜(纳西妲采集)@起个名字好难的喵/堇瓜-05-鸣神岛-神里屋敷-9个.json @@ -45,7 +45,7 @@ "action_params": "" }, { - "id": 1, + "id": 5, "action": "", "move_mode": "walk", "type": "teleport", @@ -54,7 +54,7 @@ "action_params": "" }, { - "id": 2, + "id": 6, "x": -4559.7, "y": -2535.33, "type": "path", @@ -63,7 +63,7 @@ "action_params": "" }, { - "id": 3, + "id": 7, "x": -4555.75, "y": -2526.5, "type": "path", @@ -72,7 +72,7 @@ "action_params": "" }, { - "id": 4, + "id": 8, "x": -4553.16, "y": -2518.25, "type": "path", @@ -81,7 +81,7 @@ "action_params": "" }, { - "id": 5, + "id": 9, "x": -4541.09, "y": -2508.38, "type": "path", @@ -90,7 +90,7 @@ "action_params": "" }, { - "id": 6, + "id": 10, "x": -4536.13, "y": -2494.52, "type": "path", @@ -99,7 +99,7 @@ "action_params": "" }, { - "id": 7, + "id": 11, "x": -4517.01, "y": -2475.1, "type": "path", @@ -108,7 +108,7 @@ "action_params": "" }, { - "id": 8, + "id": 12, "x": -4501.7, "y": -2467.57, "type": "path", @@ -117,7 +117,7 @@ "action_params": "" }, { - "id": 9, + "id": 13, "x": -4496.45, "y": -2464.91, "type": "path", diff --git a/repo/pathing/食材与炼金/松果/松果4.json b/repo/pathing/食材与炼金/松果/松果4.json index 829fa482..c5b8bd3f 100644 --- a/repo/pathing/食材与炼金/松果/松果4.json +++ b/repo/pathing/食材与炼金/松果/松果4.json @@ -57,7 +57,7 @@ "action": "nahida_collect" }, { - "id": 8, + "id": 7, "x": -1833.62, "y": 1416.77, "action": "", @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 9, + "id": 8, "x": -1839.11, "y": 1416.36, "action": "nahida_collect", @@ -73,7 +73,7 @@ "type": "path" }, { - "id": 10, + "id": 9, "x": -1849.55, "y": 1432.77, "action": "", @@ -81,7 +81,7 @@ "type": "path" }, { - "id": 11, + "id": 10, "x": -1849.87, "y": 1435.51, "action": "nahida_collect", @@ -89,7 +89,7 @@ "type": "path" }, { - "id": 12, + "id": 11, "x": -1874.43, "y": 1438.87, "action": "", @@ -97,7 +97,7 @@ "type": "path" }, { - "id": 13, + "id": 12, "x": -1878.56, "y": 1439.44, "action": "nahida_collect", @@ -105,7 +105,7 @@ "type": "path" }, { - "id": 14, + "id": 13, "x": -1845.56, "y": 1456.78, "action": "", @@ -113,7 +113,7 @@ "type": "path" }, { - "id": 15, + "id": 14, "x": -1838.13, "y": 1456.08, "action": "nahida_collect", @@ -121,7 +121,7 @@ "type": "path" }, { - "id": 16, + "id": 15, "x": -1806.04, "y": 1440.92, "action": "", @@ -129,7 +129,7 @@ "type": "path" }, { - "id": 17, + "id": 16, "x": -1798.83, "y": 1438.62, "action": "nahida_collect", @@ -137,7 +137,7 @@ "type": "path" }, { - "id": 18, + "id": 17, "x": -1778.87, "y": 1452.29, "action": "", @@ -145,7 +145,7 @@ "type": "path" }, { - "id": 19, + "id": 18, "x": -1767.51, "y": 1459.73, "action": "", @@ -153,7 +153,7 @@ "type": "path" }, { - "id": 20, + "id": 19, "x": -1755.3, "y": 1473.24, "action": "nahida_collect", @@ -161,7 +161,7 @@ "type": "path" }, { - "id": 21, + "id": 20, "x": -1728.92, "y": 1459.61, "action": "", @@ -169,7 +169,7 @@ "type": "path" }, { - "id": 22, + "id": 21, "x": -1724.01, "y": 1457.39, "action": "nahida_collect", @@ -177,7 +177,7 @@ "type": "path" }, { - "id": 23, + "id": 22, "x": -1714.2, "y": 1440.9, "action": "", @@ -185,7 +185,7 @@ "type": "path" }, { - "id": 24, + "id": 23, "x": -1725.69, "y": 1440.5, "action": "nahida_collect", @@ -193,7 +193,7 @@ "type": "path" }, { - "id": 25, + "id": 24, "x": -1730.67, "y": 1438.41, "action": "nahida_collect", @@ -201,7 +201,7 @@ "type": "path" }, { - "id": 26, + "id": 25, "x": -1266.55, "y": 1933.58, "action": "", @@ -209,7 +209,7 @@ "type": "teleport" }, { - "id": 27, + "id": 26, "x": -1264.26, "y": 1929.46, "action": "nahida_collect", diff --git a/repo/pathing/食材与炼金/松果/松果7.json b/repo/pathing/食材与炼金/松果/松果7.json index c81b9e49..2b845fb6 100644 --- a/repo/pathing/食材与炼金/松果/松果7.json +++ b/repo/pathing/食材与炼金/松果/松果7.json @@ -41,7 +41,7 @@ "type": "path" }, { - "id": 6, + "id": 5, "x": 806.8, "y": 1845.54, "type": "path", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸13.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸13.json index d62a6147..8f6df965 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸13.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸13.json @@ -281,7 +281,7 @@ "action": "nahida_collect" }, { - "id": 37, + "id": 35, "x": 4545.51, "y": 4225.63, "type": "teleport", @@ -289,7 +289,7 @@ "action": "" }, { - "id": 39, + "id": 36, "x": 4541.01, "y": 4229.84, "type": "path", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸16.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸16.json index b673ca7c..982d458f 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸16.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸16.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": -1629.43, "y": 2834.38, "type": "teleport", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸19.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸19.json index 77614bad..e5119749 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸19.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸19.json @@ -145,7 +145,7 @@ "action": "" }, { - "id": 19, + "id": 18, "x": -1266.65, "y": 1933.8, "type": "teleport", @@ -153,7 +153,7 @@ "action": "" }, { - "id": 20, + "id": 19, "x": -1268.81, "y": 1927.49, "type": "path", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸2.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸2.json index d0ab326a..0f4aff34 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸2.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸2.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": 3843.23, "y": 4592.27, "type": "path", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸20.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸20.json index 156405f9..1b1670e7 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸20.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸20.json @@ -129,7 +129,7 @@ "type": "path" }, { - "id": 17, + "id": 16, "x": -1617.77, "y": 1632.76, "action": "", @@ -137,7 +137,7 @@ "type": "path" }, { - "id": 18, + "id": 17, "x": -1653.32, "y": 1602.93, "action": "", @@ -145,7 +145,7 @@ "type": "path" }, { - "id": 19, + "id": 18, "x": -1658.67, "y": 1598.59, "action": "nahida_collect", @@ -153,7 +153,7 @@ "type": "path" }, { - "id": 20, + "id": 19, "x": -1671.83, "y": 1602.88, "action": "", @@ -161,7 +161,7 @@ "type": "path" }, { - "id": 21, + "id": 20, "x": -1673.83, "y": 1603.44, "action": "nahida_collect", @@ -169,7 +169,7 @@ "type": "path" }, { - "id": 22, + "id": 21, "x": -1266.47, "y": 1933.56, "action": "", @@ -177,7 +177,7 @@ "type": "teleport" }, { - "id": 23, + "id": 22, "x": -1268.21, "y": 1928.08, "action": "nahida_collect", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸25.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸25.json index 15a018fb..eaf905b7 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸25.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸25.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": -255.06, "y": 630.12, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 3, + "id": 2, "x": -259.92, "y": 634.41, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 5, + "id": 3, "x": -263.89, "y": 640.29, "type": "path", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸26.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸26.json index 9f4c76bf..b74fd0f7 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸26.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸26.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": 897.83, "y": 583.5, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 3, + "id": 2, "x": 910.62, "y": 571.89, "type": "path", @@ -25,7 +25,7 @@ "action": "stop_flying" }, { - "id": 4, + "id": 3, "x": 910.62, "y": 571.89, "type": "path", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸28.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸28.json index 7d18e840..65492662 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸28.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸28.json @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 10, + "id": 8, "x": 259.48, "y": -14.03, "action": "", @@ -73,7 +73,7 @@ "type": "teleport" }, { - "id": 11, + "id": 9, "x": 254.22, "y": -10.46, "action": "nahida_collect", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸3.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸3.json index a7c05b03..f24bb7b8 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸3.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸3.json @@ -57,7 +57,7 @@ "action": "stop_flying" }, { - "id": 8, + "id": 7, "x": 4342.69, "y": 4727.12, "type": "path", @@ -65,7 +65,7 @@ "action": "nahida_collect" }, { - "id": 9, + "id": 8, "x": 4348.76, "y": 4686.97, "type": "path", @@ -73,7 +73,7 @@ "action": "" }, { - "id": 10, + "id": 9, "x": 4346.03, "y": 4681.34, "type": "path", @@ -81,7 +81,7 @@ "action": "nahida_collect" }, { - "id": 11, + "id": 10, "x": 4361.98, "y": 4650.41, "type": "path", @@ -89,7 +89,7 @@ "action": "" }, { - "id": 12, + "id": 11, "x": 4364.69, "y": 4631.4, "type": "path", @@ -97,7 +97,7 @@ "action": "nahida_collect" }, { - "id": 13, + "id": 12, "x": 4349.15, "y": 4623.35, "type": "path", @@ -105,7 +105,7 @@ "action": "nahida_collect" }, { - "id": 14, + "id": 13, "x": 4345.78, "y": 4621.02, "type": "path", diff --git a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸9.json b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸9.json index 8c7d9b6e..85e7c9b2 100644 --- a/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸9.json +++ b/repo/pathing/食材与炼金/松茸/松茸纳西妲版@未知作者/松茸9.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": 4984.82, "y": 4462.98, "type": "teleport", diff --git a/repo/pathing/食材与炼金/枣椰/枣椰05-饱饮之丘-须弥5个.json b/repo/pathing/食材与炼金/枣椰/枣椰05-饱饮之丘-须弥5个.json index 40804abe..d0fae9ba 100644 --- a/repo/pathing/食材与炼金/枣椰/枣椰05-饱饮之丘-须弥5个.json +++ b/repo/pathing/食材与炼金/枣椰/枣椰05-饱饮之丘-须弥5个.json @@ -25,7 +25,7 @@ "action": "stop_flying" }, { - "id": 2, + "id": 3, "x": 5086.77, "y": -1746.03, "type": "path", diff --git a/repo/pathing/食材与炼金/树莓/树莓3.json b/repo/pathing/食材与炼金/树莓/树莓3.json index 439eab7c..e816fcc5 100644 --- a/repo/pathing/食材与炼金/树莓/树莓3.json +++ b/repo/pathing/食材与炼金/树莓/树莓3.json @@ -57,7 +57,7 @@ "action": "" }, { - "id": 10, + "id": 7, "x": -1329.95, "y": 2563.9, "type": "teleport", diff --git a/repo/pathing/食材与炼金/树莓/树莓4.json b/repo/pathing/食材与炼金/树莓/树莓4.json index eb331498..2f4dcbc3 100644 --- a/repo/pathing/食材与炼金/树莓/树莓4.json +++ b/repo/pathing/食材与炼金/树莓/树莓4.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 8, + "id": 1, "x": -1505.9, "y": 2296.2, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 9, + "id": 2, "x": -1392.85, "y": 2266.16, "type": "target", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 10, + "id": 3, "x": -1348.73, "y": 2239.32, "type": "target", @@ -33,7 +33,7 @@ "action": "" }, { - "id": 11, + "id": 4, "x": -1361.56, "y": 2315.42, "type": "target", @@ -41,7 +41,7 @@ "action": "" }, { - "id": 12, + "id": 5, "x": -1296.57, "y": 2304.98, "type": "target", @@ -49,7 +49,7 @@ "action": "" }, { - "id": 13, + "id": 6, "x": -1276.07, "y": 2308.19, "type": "target", @@ -57,7 +57,7 @@ "action": "" }, { - "id": 14, + "id": 7, "x": -1242.84, "y": 2257.48, "type": "path", @@ -65,7 +65,7 @@ "action": "" }, { - "id": 15, + "id": 8, "x": -1230.44, "y": 2257.55, "type": "target", diff --git a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-灵濛山(一)-璃月1个.json b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-灵濛山(一)-璃月1个.json index c314bdf8..c9090662 100644 --- a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-灵濛山(一)-璃月1个.json +++ b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-灵濛山(一)-璃月1个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1977.28, "y": 2341.0, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1973.28, "y": 2341.93, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1962.57, "y": 2343.74, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1856.18, "y": 2346.41, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1853.08, "y": 2344.08, "type": "target", diff --git a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-灵濛山(二)-璃月1个.json b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-灵濛山(二)-璃月1个.json index fcda94e5..d69ff6ae 100644 --- a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-灵濛山(二)-璃月1个.json +++ b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-灵濛山(二)-璃月1个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2145.68, "y": 2412.95, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2141.61, "y": 2409.7, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2137.22, "y": 2406.14, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 2074.92, "y": 2320.0, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 2074.84, "y": 2319.91, "type": "target", diff --git a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-翘英庄-璃月9个.json b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-翘英庄-璃月9个.json index e2c9d1ef..479fa613 100644 --- a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-翘英庄-璃月9个.json +++ b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-翘英庄-璃月9个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1545.12, "y": 2246.08, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1550.9, "y": 2243.09, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1564.41, "y": 2240.41, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1577.29, "y": 2238.03, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1592.7, "y": 2228.18, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1580.3, "y": 2228.84, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1588.05, "y": 2209.14, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 1595.66, "y": 2209.74, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 1603.11, "y": 2204.93, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 1586.4, "y": 2194.36, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 1602.31, "y": 2189.89, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 1564.51, "y": 2191.38, "type": "path", diff --git a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-翘英庄-璃月X个.json b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-翘英庄-璃月X个.json index c05ccf12..bc90f259 100644 --- a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-翘英庄-璃月X个.json +++ b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-翘英庄-璃月X个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1545.14, "y": 2246.1, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1549.7, "y": 2259.8, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1547.88, "y": 2277.02, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1553.52, "y": 2302.08, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1570.13, "y": 2311.36, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1572.41, "y": 2319.53, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1580.71, "y": 2320.05, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 1593.65, "y": 2335.74, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 1583.25, "y": 2335.05, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 1578.7, "y": 2341.7, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 1575.61, "y": 2347.89, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 1572.73, "y": 2333.03, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 1559.63, "y": 2329.36, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 1559.21, "y": 2319.15, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 1541.1, "y": 2336.33, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 1534.81, "y": 2337.52, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 1534.22, "y": 2354.33, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 1541.76, "y": 2357.9, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 1524.5, "y": 2349.98, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 1516.81, "y": 2355.35, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 1501.49, "y": 2357.38, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 1500.48, "y": 2369.08, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 1502.09, "y": 2373.74, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": 1520.68, "y": 2388.08, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": 1496.25, "y": 2378.82, "type": "path", @@ -183,6 +208,7 @@ "action": "" }, { + "id": 26, "x": 1484.72, "y": 2375.46, "type": "path", @@ -190,6 +216,7 @@ "action": "" }, { + "id": 27, "x": 1485.22, "y": 2391.64, "type": "path", @@ -197,6 +224,7 @@ "action": "" }, { + "id": 28, "x": 1479.06, "y": 2390.39, "type": "path", @@ -204,6 +232,7 @@ "action": "" }, { + "id": 29, "x": 1464.77, "y": 2395.03, "type": "path", @@ -211,6 +240,7 @@ "action": "" }, { + "id": 30, "x": 1464.28, "y": 2400.69, "type": "path", @@ -218,6 +248,7 @@ "action": "" }, { + "id": 31, "x": 1455.05, "y": 2408.28, "type": "path", @@ -225,6 +256,7 @@ "action": "" }, { + "id": 32, "x": 1448.49, "y": 2415.92, "type": "path", @@ -232,6 +264,7 @@ "action": "" }, { + "id": 33, "x": 1454.37, "y": 2423.23, "type": "path", @@ -239,6 +272,7 @@ "action": "" }, { + "id": 34, "x": 1456.26, "y": 2428.78, "type": "path", @@ -246,6 +280,7 @@ "action": "" }, { + "id": 35, "x": 1443.2, "y": 2400.43, "type": "path", @@ -253,6 +288,7 @@ "action": "" }, { + "id": 36, "x": 1442.88, "y": 2389.34, "type": "path", @@ -260,6 +296,7 @@ "action": "" }, { + "id": 37, "x": 1446.73, "y": 2379.75, "type": "path", @@ -267,6 +304,7 @@ "action": "" }, { + "id": 38, "x": 1448.59, "y": 2374.8, "type": "path", @@ -274,6 +312,7 @@ "action": "" }, { + "id": 39, "x": 1445.18, "y": 2368.43, "type": "path", @@ -281,6 +320,7 @@ "action": "" }, { + "id": 40, "x": 1450.1, "y": 2359.1, "type": "path", @@ -288,6 +328,7 @@ "action": "" }, { + "id": 41, "x": 1458.97, "y": 2364.68, "type": "path", @@ -295,6 +336,7 @@ "action": "" }, { + "id": 42, "x": 1470.04, "y": 2357.99, "type": "path", @@ -302,6 +344,7 @@ "action": "" }, { + "id": 43, "x": 1475.79, "y": 2370.95, "type": "path", diff --git a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-药蝶谷-璃月2个.json b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-药蝶谷-璃月2个.json index e9a825b9..c4469d60 100644 --- a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-药蝶谷-璃月2个.json +++ b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-药蝶谷-璃月2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1689.4, "y": 1652.68, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1680.44, "y": 1659.49, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1675.5, "y": 1673.57, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1662.67, "y": 1689.28, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1634.86, "y": 1702.39, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1628.13, "y": 1696.15, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1624.62, "y": 1699.39, "type": "path", diff --git a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-遗珑埠(上)-璃月3个.json b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-遗珑埠(上)-璃月3个.json index 405bdd84..b170e5de 100644 --- a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-遗珑埠(上)-璃月3个.json +++ b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-遗珑埠(上)-璃月3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2358.48, "y": 2414.6, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2397.3, "y": 2418.64, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2398.07, "y": 2424.15, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 2409.55, "y": 2457.36, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 2409.3, "y": 2471.39, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 2418.36, "y": 2495.57, "type": "path", diff --git a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-遗珑埠(下)-璃月6个.json b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-遗珑埠(下)-璃月6个.json index adf25117..e2461d1a 100644 --- a/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-遗珑埠(下)-璃月6个.json +++ b/repo/pathing/食材与炼金/沉玉仙茗/沉玉仙茗-遗珑埠(下)-璃月6个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 2358.49, "y": 2414.6, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 2334.14, "y": 2421.18, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 2318.3, "y": 2388.43, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 2314.3, "y": 2386.26, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 2309.76, "y": 2383.01, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 2290.45, "y": 2360.25, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 2298.28, "y": 2342.53, "type": "path", @@ -57,6 +64,7 @@ "action": "stop_flying" }, { + "id": 8, "x": 2297.88, "y": 2342.9, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 2308.81, "y": 2349.31, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 2330.23, "y": 2331.19, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 2339.42, "y": 2336.0, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 2343.34, "y": 2329.92, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 2347.93, "y": 2315.09, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 2347.47, "y": 2301.67, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 2344.67, "y": 2302.48, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 2343.12, "y": 2304.13, "type": "path", diff --git a/repo/pathing/食材与炼金/泡泡桔/泡泡桔06-枫丹科学院-枫丹4个.json b/repo/pathing/食材与炼金/泡泡桔/泡泡桔06-枫丹科学院-枫丹4个.json index da826e14..d8f33d28 100644 --- a/repo/pathing/食材与炼金/泡泡桔/泡泡桔06-枫丹科学院-枫丹4个.json +++ b/repo/pathing/食材与炼金/泡泡桔/泡泡桔06-枫丹科学院-枫丹4个.json @@ -17,7 +17,7 @@ "y": 4710.78 }, { - "id": 3, + "id": 2, "x": 4509.05, "y": 4663.74, "type": "path", diff --git a/repo/pathing/食材与炼金/泡泡桔/泡泡桔11-茉洁站-枫丹9个.json b/repo/pathing/食材与炼金/泡泡桔/泡泡桔11-茉洁站-枫丹9个.json index 27894d09..7a24a449 100644 --- a/repo/pathing/食材与炼金/泡泡桔/泡泡桔11-茉洁站-枫丹9个.json +++ b/repo/pathing/食材与炼金/泡泡桔/泡泡桔11-茉洁站-枫丹9个.json @@ -17,7 +17,7 @@ "y": 3783.98 }, { - "id": 4, + "id": 2, "x": 3802.77, "y": 3759.81, "type": "path", diff --git a/repo/pathing/食材与炼金/海草/海草09-踏鞴砂-稻妻4个.json b/repo/pathing/食材与炼金/海草/海草09-踏鞴砂-稻妻4个.json index 5738300d..09775fe8 100644 --- a/repo/pathing/食材与炼金/海草/海草09-踏鞴砂-稻妻4个.json +++ b/repo/pathing/食材与炼金/海草/海草09-踏鞴砂-稻妻4个.json @@ -25,7 +25,7 @@ "action": "stop_flying" }, { - "id": 4, + "id": 3, "x": -3270.53, "y": -3487.0, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-中央实验室遗址-枫丹7个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-中央实验室遗址-枫丹7个.json index 05fa9ffa..f69dabea 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-中央实验室遗址-枫丹7个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-中央实验室遗址-枫丹7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 4001.12, "y": 4878.47, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 4010.03, "y": 4841.07, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 4046.52, "y": 4858.16, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 4021.35, "y": 4865.19, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 4031.29, "y": 4872.09, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 4030.1, "y": 4880.88, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 4034.5, "y": 4879.75, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 4035.88, "y": 4896.55, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(1)-璃月13个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(1)-璃月13个.json index d5b5b805..e86a2f49 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(1)-璃月13个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(1)-璃月13个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1153.38, "y": 139.86, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1097.76, "y": 88.08, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1091.39, "y": 73.35, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1086.44, "y": 55.88, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1074.16, "y": 46.63, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1065.85, "y": 55.35, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1059.28, "y": 65.78, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 1036.18, "y": 67.51, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 1033.27, "y": 74.3, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 1069.12, "y": 119.81, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 1065.59, "y": 136.26, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 1071.02, "y": 202.09, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 1042.15, "y": 206.84, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 1007.52, "y": 208.35, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 999.02, "y": 221.96, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 992.28, "y": 228.87, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 992.82, "y": 249.1, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 995.78, "y": 260.14, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 989.29, "y": 283.07, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 1018.65, "y": 263.53, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 1044.95, "y": 273.39, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 1067.34, "y": 257.41, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 1102.09, "y": 262.44, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": 1135.94, "y": 248.54, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": 1136.33, "y": 241.8, "type": "path", @@ -183,6 +208,7 @@ "action": "" }, { + "id": 26, "x": 1137.48, "y": 224.68, "type": "path", @@ -190,6 +216,7 @@ "action": "" }, { + "id": 27, "x": 1158.75, "y": 225.9, "type": "path", @@ -197,6 +224,7 @@ "action": "" }, { + "id": 28, "x": 1174.84, "y": 210.76, "type": "path", @@ -204,6 +232,7 @@ "action": "" }, { + "id": 29, "x": 1176.0, "y": 184.95, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(2)-璃月12个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(2)-璃月12个.json index b5881008..3e30283f 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(2)-璃月12个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(2)-璃月12个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1152.46, "y": 141.08, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1164.64, "y": 162.41, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1193.33, "y": 168.22, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1214.61, "y": 159.47, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1235.8, "y": 154.68, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1263.03, "y": 158.62, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1262.93, "y": 140.95, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 1252.82, "y": 120.71, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 1238.9, "y": 95.9, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 1231.47, "y": 87.19, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 1203.84, "y": 74.12, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 1222.11, "y": 58.54, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 1256.93, "y": 35.88, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 1264.96, "y": 36.18, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 1280.26, "y": 46.09, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 1301.12, "y": 82.7, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 1274.23, "y": 82.99, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 1278.67, "y": 108.01, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 1284.45, "y": 161.34, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 1278.35, "y": 181.95, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 1254.92, "y": 191.96, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 1223.47, "y": 221.72, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(3)-璃月11个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(3)-璃月11个.json index e4ddaf2e..0f730a61 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(3)-璃月11个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-天遒谷(3)-璃月11个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1152.76, "y": 143.15, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1160.91, "y": 133.48, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1151.57, "y": 100.41, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1172.38, "y": 101.01, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1185.22, "y": 97.27, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1157.28, "y": 67.26, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1158.07, "y": 43.17, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 1181.85, "y": 48.12, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 1205.62, "y": 21.42, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 1226.49, "y": 3.56, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 1228.87, "y": -3.96, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 1232.85, "y": -36.43, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 1299.41, "y": -4.88, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 1317.76, "y": 34.15, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 1375.67, "y": 61.18, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 1322.2, "y": 56.6, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-宗室本(上)-璃月15个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-宗室本(上)-璃月15个.json index e7c00368..c8514394 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-宗室本(上)-璃月15个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-宗室本(上)-璃月15个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 1271.17, "y": 1563.97, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 1272.03, "y": 1568.04, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 1233.22, "y": 1547.04, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 1253.9, "y": 1519.27, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 1272.2, "y": 1506.74, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 1274.69, "y": 1482.95, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 1240.7, "y": 1483.54, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 1219.41, "y": 1450.55, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 1228.82, "y": 1432.58, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 1233.96, "y": 1427.31, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 1230.24, "y": 1423.88, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 1171.79, "y": 1438.07, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 1169.74, "y": 1435.34, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 1164.84, "y": 1435.78, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 1157.1, "y": 1426.18, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 1153.77, "y": 1431.88, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 1143.89, "y": 1435.54, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 1143.8, "y": 1449.71, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 1159.2, "y": 1453.47, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 1171.39, "y": 1455.83, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-桓那兰那-须弥14个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-桓那兰那-须弥14个.json index 5c4c4d13..a4867e41 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-桓那兰那-须弥14个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-桓那兰那-须弥14个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 3453.33, "y": -98.18, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 3460.44, "y": -128.2, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 3480.71, "y": -142.21, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 3486.06, "y": -151.35, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 3481.67, "y": -182.8, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 3481.81, "y": -219.03, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 3503.05, "y": -197.68, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 3519.33, "y": -192.75, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 3528.4, "y": -188.65, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 3542.29, "y": -198.07, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 3547.26, "y": -214.84, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 3573.78, "y": -216.24, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 3602.15, "y": -233.98, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 3611.5, "y": -230.38, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 3618.95, "y": -225.9, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 3630.8, "y": -218.4, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 3647.79, "y": -214.9, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 3655.5, "y": -212.15, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 3657.12, "y": -214.6, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 3657.38, "y": -218.75, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 3660.08, "y": -221.46, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 3664.56, "y": -223.91, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 3663.96, "y": -219.89, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": 3663.34, "y": -215.8, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": 3660.99, "y": -213.96, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-清泉镇-蒙德11个(回血).json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-清泉镇-蒙德11个(回血).json index aecfd05d..db5725a0 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-清泉镇-蒙德11个(回血).json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-清泉镇-蒙德11个(回血).json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -578.67, "y": 1853.35, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -577.32, "y": 1856.11, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -591.23, "y": 1874.58, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -586.05, "y": 1911.34, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -583.48, "y": 1914.2, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -589.89, "y": 1916.92, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -609.28, "y": 1912.44, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -621.77, "y": 1870.29, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -657.69, "y": 1847.9, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -615.62, "y": 1799.12, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -627.81, "y": 1780.18, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -692.68, "y": 1781.72, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -694.43, "y": 1769.19, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -696.17, "y": 1764.51, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -692.13, "y": 1761.76, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -751.08, "y": 1772.91, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-苍白本-蒙德20个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-苍白本-蒙德20个.json index 9192e500..9f76b4cb 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-苍白本-蒙德20个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花-苍白本-蒙德20个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -321.58, "y": 1473.37, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -308.97, "y": 1477.53, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -284.46, "y": 1484.43, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -309.47, "y": 1518.77, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -337.09, "y": 1554.52, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -356.79, "y": 1564.75, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -294.01, "y": 1572.01, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -265.88, "y": 1520.25, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -250.37, "y": 1505.45, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -235.5, "y": 1519.58, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -216.55, "y": 1511.3, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -199.65, "y": 1515.44, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -180.88, "y": 1519.19, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -158.2, "y": 1505.75, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -146.31, "y": 1518.99, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -120.08, "y": 1532.55, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -100.42, "y": 1530.28, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -93.04, "y": 1512.7, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -79.73, "y": 1496.33, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": -98.8, "y": 1507.53, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": -110.16, "y": 1487.82, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": -109.34, "y": 1486.0, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": -112.31, "y": 1486.38, "type": "path", @@ -169,6 +192,7 @@ "action": "" }, { + "id": 24, "x": -130.01, "y": 1495.53, "type": "path", @@ -176,6 +200,7 @@ "action": "" }, { + "id": 25, "x": -157.05, "y": 1473.09, "type": "path", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花_中央实验室遗址_枫丹_7个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花_中央实验室遗址_枫丹_7个.json index acbbd7dc..f534fc10 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花_中央实验室遗址_枫丹_7个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花_中央实验室遗址_枫丹_7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 4001.12, "y": 4878.47, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 4010.03, "y": 4841.07, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 4046.52, "y": 4858.16, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 4021.35, "y": 4865.19, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 4031.29, "y": 4872.09, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 4030.1, "y": 4880.88, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 4034.5, "y": 4879.75, "type": "target", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 4035.88, "y": 4896.55, "type": "target", diff --git a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花_清泉镇_蒙德_11个.json b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花_清泉镇_蒙德_11个.json index d1071208..cfb1fc99 100644 --- a/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花_清泉镇_蒙德_11个.json +++ b/repo/pathing/食材与炼金/甜甜花/甜甜花@不瘦五十斤不改名&tignioj/甜甜花_清泉镇_蒙德_11个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -578.67, "y": 1853.35, "type": "teleport", @@ -15,36 +16,42 @@ "action": "" }, { + "id": 2, "x": -591.23, "y": 1874.58, "type": "target", "move_mode": "walk" }, { + "id": 3, "x": -586.05, "y": 1911.34, "type": "target", "move_mode": "walk" }, { + "id": 4, "x": -583.48, "y": 1914.2, "type": "target", "move_mode": "walk" }, { + "id": 5, "x": -589.89, "y": 1916.92, "type": "target", "move_mode": "walk" }, { + "id": 6, "x": -609.28, "y": 1912.44, "type": "target", "move_mode": "walk" }, { + "id": 7, "x": -621.77, "y": 1870.29, "type": "path", @@ -52,24 +59,28 @@ "action": "" }, { + "id": 8, "x": -657.69, "y": 1847.9, "type": "target", "move_mode": "walk" }, { + "id": 9, "x": -615.62, "y": 1799.12, "type": "target", "move_mode": "walk" }, { + "id": 10, "x": -627.81, "y": 1780.18, "type": "target", "move_mode": "walk" }, { + "id": 11, "x": -692.68, "y": 1781.72, "type": "path", @@ -77,12 +88,14 @@ "action": "" }, { + "id": 12, "x": -694.43, "y": 1769.19, "type": "target", "move_mode": "walk" }, { + "id": 13, "x": -696.17, "y": 1764.51, "type": "path", @@ -90,12 +103,14 @@ "action": "" }, { + "id": 14, "x": -692.13, "y": 1761.76, "type": "target", "move_mode": "walk" }, { + "id": 15, "x": -751.08, "y": 1772.91, "type": "target", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-奔狼岭(上)-蒙德8个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-奔狼岭(上)-蒙德8个.json index 3b811aaf..4b6366fb 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-奔狼岭(上)-蒙德8个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-奔狼岭(上)-蒙德8个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -386.22, "y": 2297.63, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -386.62, "y": 2300.77, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -368.14, "y": 2343.33, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -372.31, "y": 2363.44, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -368.89, "y": 2381.66, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -352.38, "y": 2383.46, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -359.16, "y": 2402.78, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -313.15, "y": 2389.95, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -317.21, "y": 2382.16, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -319.18, "y": 2380.03, "type": "target", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -318.47, "y": 2378.51, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -316.66, "y": 2378.86, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -303.45, "y": 2377.6, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -280.28, "y": 2319.62, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -270.86, "y": 2304.8, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -241.02, "y": 2278.64, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -239.83, "y": 2280.27, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -237.87, "y": 2279.25, "type": "target", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": -238.87, "y": 2277.36, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-奔狼岭(右)-蒙德4个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-奔狼岭(右)-蒙德4个.json index 618571e8..881195a0 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-奔狼岭(右)-蒙德4个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-奔狼岭(右)-蒙德4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -521.54, "y": 2181.37, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -495.58, "y": 2154.5, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -494.44, "y": 2146.61, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -493.13, "y": 2144.94, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -495.21, "y": 2144.96, "type": "target", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-归离原-璃月4个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-归离原-璃月4个.json index f93ae971..c5634946 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-归离原-璃月4个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-归离原-璃月4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 259.5, "y": -13.97, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 261.22, "y": -17.72, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 282.85, "y": -18.52, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 286.36, "y": -7.12, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 290.28, "y": -6.72, "type": "target", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 292.34, "y": -10.25, "type": "target", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-无相火-稻妻2个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-无相火-稻妻2个.json index 6ea82808..1f84cac5 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-无相火-稻妻2个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-无相火-稻妻2个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -3234.11, "y": -3155.48, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3241.17, "y": -3142.91, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3235.23, "y": -2995.38, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -3233.11, "y": -2991.89, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3235.99, "y": -2982.59, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3237.48, "y": -2981.39, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-明冠峡-蒙德4个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-明冠峡-蒙德4个.json index 87426404..468a28e4 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-明冠峡-蒙德4个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-明冠峡-蒙德4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -439.7, "y": 2579.87, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -423.88, "y": 2521.75, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -424.86, "y": 2512.27, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -423.8, "y": 2504.56, "type": "path", @@ -36,6 +40,7 @@ "action": "stop_flying" }, { + "id": 5, "x": -417.76, "y": 2479.84, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -416.25, "y": 2478.44, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -418.01, "y": 2475.38, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -419.01, "y": 2477.05, "type": "target", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-晨曦酒庄-蒙德12个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-晨曦酒庄-蒙德12个.json index 92c856c2..7d8c1021 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-晨曦酒庄-蒙德12个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-晨曦酒庄-蒙德12个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -578.79, "y": 1853.43, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -575.73, "y": 1846.85, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -564.77, "y": 1844.21, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -549.14, "y": 1829.89, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -516.24, "y": 1778.59, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -509.77, "y": 1726.86, "type": "path", @@ -50,6 +56,7 @@ "action": "stop_flying" }, { + "id": 7, "x": -509.38, "y": 1720.49, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -504.05, "y": 1705.46, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -492.75, "y": 1707.0, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -466.08, "y": 1707.69, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -463.38, "y": 1706.27, "type": "target", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -398.43, "y": 1681.13, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": -396.97, "y": 1682.52, "type": "target", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": -396.31, "y": 1683.25, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": -393.62, "y": 1697.71, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": -384.48, "y": 1702.69, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": -383.19, "y": 1701.37, "type": "target", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": -382.48, "y": 1699.5, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-望泷村-稻妻5个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-望泷村-稻妻5个.json index 0ce4cfe4..27e936fb 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-望泷村-稻妻5个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-望泷村-稻妻5个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -755.63, "y": -4001.07, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -759.4, "y": -4001.82, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -762.34, "y": -4001.79, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -806.02, "y": -4003.71, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -816.69, "y": -4004.22, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -830.2, "y": -4002.15, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -829.34, "y": -4005.02, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -826.91, "y": -4010.87, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -833.96, "y": -4012.11, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -835.71, "y": -4009.33, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -837.53, "y": -4005.8, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-望风山地-蒙德-4个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-望风山地-蒙德-4个.json index 83226344..effe0592 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-望风山地-蒙德-4个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-望风山地-蒙德-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -1273.72, "y": 2721.7, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -1226.62, "y": 2707.37, "type": "target", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -1233.88, "y": 2733.73, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -1263.32, "y": 2754.35, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -1255.87, "y": 2781.73, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -1260.26, "y": 2799.58, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -1251.5, "y": 2808.72, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-枫丹廷(上)-枫丹3个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-枫丹廷(上)-枫丹3个.json index f1c508ce..b38b57a1 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-枫丹廷(上)-枫丹3个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-枫丹廷(上)-枫丹3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 4865.53, "y": 3912.89, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 4880.61, "y": 3915.4, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 4915.81, "y": 3944.93, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 4924.27, "y": 3960.54, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 4969.91, "y": 3944.48, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 4966.58, "y": 3962.61, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 4967.2, "y": 3963.17, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 4975.93, "y": 3991.71, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 5002.74, "y": 3996.66, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 5006.44, "y": 4020.58, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 5034.69, "y": 4014.1, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": 5035.77, "y": 4013.64, "type": "path", @@ -92,6 +104,7 @@ "action": "" }, { + "id": 13, "x": 5045.12, "y": 3944.4, "type": "path", @@ -99,6 +112,7 @@ "action": "" }, { + "id": 14, "x": 5044.25, "y": 3942.43, "type": "path", @@ -106,6 +120,7 @@ "action": "" }, { + "id": 15, "x": 5041.89, "y": 3943.3, "type": "path", @@ -113,6 +128,7 @@ "action": "" }, { + "id": 16, "x": 5042.13, "y": 3944.35, "type": "path", @@ -120,6 +136,7 @@ "action": "" }, { + "id": 17, "x": 5028.7, "y": 3943.0, "type": "path", @@ -127,6 +144,7 @@ "action": "" }, { + "id": 18, "x": 4987.22, "y": 3934.59, "type": "path", @@ -134,6 +152,7 @@ "action": "" }, { + "id": 19, "x": 4986.41, "y": 3936.11, "type": "path", @@ -141,6 +160,7 @@ "action": "" }, { + "id": 20, "x": 4984.6, "y": 3936.8, "type": "path", @@ -148,6 +168,7 @@ "action": "" }, { + "id": 21, "x": 4983.12, "y": 3935.76, "type": "path", @@ -155,6 +176,7 @@ "action": "" }, { + "id": 22, "x": 4981.95, "y": 3933.35, "type": "path", @@ -162,6 +184,7 @@ "action": "" }, { + "id": 23, "x": 4983.96, "y": 3931.6, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-清泉镇-蒙德-8个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-清泉镇-蒙德-8个.json index 1ddde847..80693534 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-清泉镇-蒙德-8个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-清泉镇-蒙德-8个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -867.55, "y": 1992.21, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -916.59, "y": 1972.52, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -929.96, "y": 1964.1, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -952.02, "y": 1945.81, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -955.65, "y": 1936.11, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -955.62, "y": 1933.99, "type": "target", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -954.77, "y": 1927.95, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -953.21, "y": 1917.37, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -947.62, "y": 1909.08, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -942.07, "y": 1899.01, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": -938.68, "y": 1898.21, "type": "path", @@ -85,6 +96,7 @@ "action": "" }, { + "id": 12, "x": -939.61, "y": 1900.04, "type": "target", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-绯木村-稻妻3个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-绯木村-稻妻3个.json index 77e0599e..d2e4d1c3 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-绯木村-稻妻3个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-绯木村-稻妻3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2216.05, "y": -3709.45, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2215.66, "y": -3722.91, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2200.64, "y": -3729.12, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2174.57, "y": -3735.58, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -2157.28, "y": -3737.71, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2156.35, "y": -3737.57, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-蛇骨矿洞-稻妻3个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-蛇骨矿洞-稻妻3个.json index e6a2fec3..7cd039b4 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-蛇骨矿洞-稻妻3个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-蛇骨矿洞-稻妻3个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -2221.1, "y": -4006.94, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -2229.36, "y": -4037.52, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -2259.5, "y": -4042.56, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -2268.39, "y": -4043.55, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -2300.3, "y": -4034.73, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -2302.58, "y": -4037.68, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -2302.93, "y": -4038.73, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -2307.58, "y": -4046.31, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-越石村-稻妻4个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-越石村-稻妻4个.json index db49672e..c92529f4 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-越石村-稻妻4个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-越石村-稻妻4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": -4023.32, "y": -4428.77, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": -3987.57, "y": -4453.69, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": -3987.41, "y": -4454.72, "type": "target", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": -3986.89, "y": -4455.54, "type": "path", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": -3985.78, "y": -4455.15, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": -3986.91, "y": -4444.5, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": -3986.29, "y": -4436.61, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": -3983.39, "y": -4396.25, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": -4001.17, "y": -4389.26, "type": "path", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": -3972.59, "y": -4388.93, "type": "target", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-风龙废墟(上)-蒙德-7个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-风龙废墟(上)-蒙德-7个.json index 9129b3f6..ffccba4a 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-风龙废墟(上)-蒙德-7个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-风龙废墟(上)-蒙德-7个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 265.62, "y": 2914.83, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 210.23, "y": 2911.8, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 178.02, "y": 2932.84, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 176.33, "y": 2933.82, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 176.3, "y": 2932.89, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 183.41, "y": 2813.31, "type": "path", @@ -50,6 +56,7 @@ "action": "" }, { + "id": 7, "x": 160.11, "y": 2796.64, "type": "path", @@ -57,6 +64,7 @@ "action": "" }, { + "id": 8, "x": 157.48, "y": 2794.83, "type": "path", @@ -64,6 +72,7 @@ "action": "" }, { + "id": 9, "x": 155.53, "y": 2796.46, "type": "target", @@ -71,6 +80,7 @@ "action": "" }, { + "id": 10, "x": 154.71, "y": 2799.23, "type": "path", @@ -78,6 +88,7 @@ "action": "" }, { + "id": 11, "x": 142.72, "y": 2806.82, "type": "path", diff --git a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-风龙废墟(下)-蒙德-4个.json b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-风龙废墟(下)-蒙德-4个.json index 5adc68fe..24186cc9 100644 --- a/repo/pathing/食材与炼金/胡萝卜/胡萝卜-风龙废墟(下)-蒙德-4个.json +++ b/repo/pathing/食材与炼金/胡萝卜/胡萝卜-风龙废墟(下)-蒙德-4个.json @@ -8,6 +8,7 @@ }, "positions": [ { + "id": 1, "x": 338.23, "y": 2581.15, "type": "teleport", @@ -15,6 +16,7 @@ "action": "" }, { + "id": 2, "x": 348.53, "y": 2577.72, "type": "path", @@ -22,6 +24,7 @@ "action": "" }, { + "id": 3, "x": 365.0, "y": 2568.13, "type": "path", @@ -29,6 +32,7 @@ "action": "" }, { + "id": 4, "x": 364.43, "y": 2564.38, "type": "target", @@ -36,6 +40,7 @@ "action": "" }, { + "id": 5, "x": 369.19, "y": 2563.06, "type": "path", @@ -43,6 +48,7 @@ "action": "" }, { + "id": 6, "x": 370.28, "y": 2566.0, "type": "path", diff --git a/repo/pathing/食材与炼金/苦种/苦种17-烟谜主-纳塔8个.json b/repo/pathing/食材与炼金/苦种/苦种17-烟谜主-纳塔8个.json index 9f31c330..ffabfcff 100644 --- a/repo/pathing/食材与炼金/苦种/苦种17-烟谜主-纳塔8个.json +++ b/repo/pathing/食材与炼金/苦种/苦种17-烟谜主-纳塔8个.json @@ -121,7 +121,7 @@ "action": "" }, { - "id": 16, + "id": 15, "x": 9643.45, "y": -1677.93, "type": "path", diff --git a/repo/pathing/食材与炼金/苹果/苹果04-奔狼岭-蒙德3个.json b/repo/pathing/食材与炼金/苹果/苹果04-奔狼岭-蒙德3个.json index 315f0a39..1ea3ab8a 100644 --- a/repo/pathing/食材与炼金/苹果/苹果04-奔狼岭-蒙德3个.json +++ b/repo/pathing/食材与炼金/苹果/苹果04-奔狼岭-蒙德3个.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": -445.16, "y": 2213.8, "type": "path", diff --git a/repo/pathing/食材与炼金/苹果/苹果06-地中之盐-璃月3个.json b/repo/pathing/食材与炼金/苹果/苹果06-地中之盐-璃月3个.json index ac8ba01f..a82667b2 100644 --- a/repo/pathing/食材与炼金/苹果/苹果06-地中之盐-璃月3个.json +++ b/repo/pathing/食材与炼金/苹果/苹果06-地中之盐-璃月3个.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 5, + "id": 3, "x": -67.83, "y": 1050.79, "type": "path", diff --git a/repo/pathing/食材与炼金/苹果/苹果10-卡萨扎莱宫-须弥3个.json b/repo/pathing/食材与炼金/苹果/苹果10-卡萨扎莱宫-须弥3个.json index 95b581a6..85c5dbc8 100644 --- a/repo/pathing/食材与炼金/苹果/苹果10-卡萨扎莱宫-须弥3个.json +++ b/repo/pathing/食材与炼金/苹果/苹果10-卡萨扎莱宫-须弥3个.json @@ -25,7 +25,7 @@ "action": "stop_flying" }, { - "id": 4, + "id": 3, "x": 2437.44, "y": -264.29, "type": "path", diff --git a/repo/pathing/食材与炼金/苹果/苹果12-天臂池-须弥6个.json b/repo/pathing/食材与炼金/苹果/苹果12-天臂池-须弥6个.json index ef641987..40758594 100644 --- a/repo/pathing/食材与炼金/苹果/苹果12-天臂池-须弥6个.json +++ b/repo/pathing/食材与炼金/苹果/苹果12-天臂池-须弥6个.json @@ -41,7 +41,7 @@ "action": "" }, { - "id": 6, + "id": 5, "x": 3024.8, "y": -609.82, "type": "path", diff --git a/repo/pathing/食材与炼金/茉洁草/茉洁草07-厄里那斯右下-枫丹4个.json b/repo/pathing/食材与炼金/茉洁草/茉洁草07-厄里那斯右下-枫丹4个.json index f6e98fb4..3cb44e3a 100644 --- a/repo/pathing/食材与炼金/茉洁草/茉洁草07-厄里那斯右下-枫丹4个.json +++ b/repo/pathing/食材与炼金/茉洁草/茉洁草07-厄里那斯右下-枫丹4个.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": 4697.49, "y": 2464.92, "type": "path", diff --git a/repo/pathing/食材与炼金/茉洁草/茉洁草14-枫丹廷左上-枫丹4个.json b/repo/pathing/食材与炼金/茉洁草/茉洁草14-枫丹廷左上-枫丹4个.json index bf16845c..178d921b 100644 --- a/repo/pathing/食材与炼金/茉洁草/茉洁草14-枫丹廷左上-枫丹4个.json +++ b/repo/pathing/食材与炼金/茉洁草/茉洁草14-枫丹廷左上-枫丹4个.json @@ -49,7 +49,7 @@ "type": "target" }, { - "id": 8, + "id": 6, "x": 4679.3, "y": 3907.65, "action": "", @@ -57,7 +57,7 @@ "type": "path" }, { - "id": 9, + "id": 7, "x": 4691.54, "y": 3899.53, "action": "", @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 10, + "id": 8, "x": 4686.51, "y": 3880.41, "action": "", diff --git a/repo/pathing/食材与炼金/茉洁草/茉洁草20-枫丹科学院-枫丹5个.json b/repo/pathing/食材与炼金/茉洁草/茉洁草20-枫丹科学院-枫丹5个.json index 65a3fab2..965301c8 100644 --- a/repo/pathing/食材与炼金/茉洁草/茉洁草20-枫丹科学院-枫丹5个.json +++ b/repo/pathing/食材与炼金/茉洁草/茉洁草20-枫丹科学院-枫丹5个.json @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": 4368.23, "y": 4773.8, "type": "path", @@ -33,7 +33,7 @@ "action": "" }, { - "id": 5, + "id": 4, "x": 4374.32, "y": 4766.74, "type": "path", @@ -41,7 +41,7 @@ "action": "" }, { - "id": 6, + "id": 5, "x": 4412.89, "y": 4779.3, "type": "path", @@ -49,7 +49,7 @@ "action": "" }, { - "id": 7, + "id": 6, "x": 4382.01, "y": 4802.52, "type": "path", @@ -57,7 +57,7 @@ "action": "" }, { - "id": 8, + "id": 7, "x": 4342.2, "y": 4797.15, "type": "path", diff --git a/repo/pathing/食材与炼金/茉洁草/茉洁草24-中央实验室遗址西-枫丹6个.json b/repo/pathing/食材与炼金/茉洁草/茉洁草24-中央实验室遗址西-枫丹6个.json index c38a4f1c..2842e205 100644 --- a/repo/pathing/食材与炼金/茉洁草/茉洁草24-中央实验室遗址西-枫丹6个.json +++ b/repo/pathing/食材与炼金/茉洁草/茉洁草24-中央实验室遗址西-枫丹6个.json @@ -41,7 +41,7 @@ "action": "" }, { - "id": 7, + "id": 5, "x": 3715.52, "y": 4748.89, "type": "path", diff --git a/repo/pathing/食材与炼金/茉洁草/茉洁草26-优兰尼娅湖-枫丹3个.json b/repo/pathing/食材与炼金/茉洁草/茉洁草26-优兰尼娅湖-枫丹3个.json index 7d6f5bcb..8f459135 100644 --- a/repo/pathing/食材与炼金/茉洁草/茉洁草26-优兰尼娅湖-枫丹3个.json +++ b/repo/pathing/食材与炼金/茉洁草/茉洁草26-优兰尼娅湖-枫丹3个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 8, + "id": 1, "x": 3618.26, "y": 4057.98, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 9, + "id": 2, "x": 3563.76, "y": 4076.34, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 10, + "id": 3, "x": 3557.89, "y": 4093.8, "type": "path", @@ -33,7 +33,7 @@ "action": "" }, { - "id": 11, + "id": 4, "x": 3555.63, "y": 4106.54, "type": "path", @@ -41,7 +41,7 @@ "action": "" }, { - "id": 12, + "id": 5, "x": 3562.71, "y": 4117.21, "type": "path", @@ -49,7 +49,7 @@ "action": "" }, { - "id": 13, + "id": 6, "x": 3563.61, "y": 4120.5, "type": "path", diff --git a/repo/pathing/食材与炼金/莲蓬/莲蓬-有草神@不瘦五十斤不改名/06-莲蓬-归离原3-2个.json b/repo/pathing/食材与炼金/莲蓬/莲蓬-有草神@不瘦五十斤不改名/06-莲蓬-归离原3-2个.json index ac150347..640061eb 100644 --- a/repo/pathing/食材与炼金/莲蓬/莲蓬-有草神@不瘦五十斤不改名/06-莲蓬-归离原3-2个.json +++ b/repo/pathing/食材与炼金/莲蓬/莲蓬-有草神@不瘦五十斤不改名/06-莲蓬-归离原3-2个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 4, + "id": 1, "x": 173.94, "y": 389.45, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 5, + "id": 2, "x": 124.38, "y": 380.26, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 6, + "id": 3, "x": 91.75, "y": 344.18, "type": "path", diff --git a/repo/pathing/食材与炼金/金鱼草/金鱼草-地中之盐-3个.json b/repo/pathing/食材与炼金/金鱼草/金鱼草-地中之盐-3个.json index 5c8779e1..9bddb9e8 100644 --- a/repo/pathing/食材与炼金/金鱼草/金鱼草-地中之盐-3个.json +++ b/repo/pathing/食材与炼金/金鱼草/金鱼草-地中之盐-3个.json @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 5, + "id": 4, "x": -194.54, "y": 1384.16, "action": "stop_flying", @@ -41,7 +41,7 @@ "type": "path" }, { - "id": 6, + "id": 5, "x": -216.85, "y": 1392.35, "action": "", @@ -49,7 +49,7 @@ "type": "path" }, { - "id": 7, + "id": 6, "x": -248.33, "y": 1379.76, "action": "", @@ -57,7 +57,7 @@ "type": "target" }, { - "id": 8, + "id": 7, "x": -263.33, "y": 1380.42, "action": "", @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 9, + "id": 8, "x": -279.11, "y": 1363.06, "action": "", @@ -73,7 +73,7 @@ "type": "target" }, { - "id": 10, + "id": 9, "x": -295.34, "y": 1383.76, "action": "", diff --git a/repo/pathing/食材与炼金/金鱼草/金鱼草-庆云顶右侧-5个.json b/repo/pathing/食材与炼金/金鱼草/金鱼草-庆云顶右侧-5个.json index cd3eda04..53d17743 100644 --- a/repo/pathing/食材与炼金/金鱼草/金鱼草-庆云顶右侧-5个.json +++ b/repo/pathing/食材与炼金/金鱼草/金鱼草-庆云顶右侧-5个.json @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 3, + "id": 2, "x": 1355.83, "y": 827.45, "action": "stop_flying", @@ -25,7 +25,7 @@ "type": "path" }, { - "id": 4, + "id": 3, "x": 1372.24, "y": 801.16, "action": "stop_flying", @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 5, + "id": 4, "x": 1377.28, "y": 778.04, "action": "stop_flying", @@ -41,7 +41,7 @@ "type": "path" }, { - "id": 6, + "id": 5, "x": 1342.23, "y": 794.19, "action": "", @@ -49,7 +49,7 @@ "type": "target" }, { - "id": 7, + "id": 6, "x": 1323.0, "y": 810.93, "action": "", @@ -57,7 +57,7 @@ "type": "target" }, { - "id": 8, + "id": 7, "x": 1302.71, "y": 759.23, "action": "stop_flying", @@ -65,7 +65,7 @@ "type": "target" }, { - "id": 9, + "id": 8, "x": 1333.06, "y": 755.3, "action": "", @@ -73,7 +73,7 @@ "type": "target" }, { - "id": 10, + "id": 9, "x": 1330.42, "y": 750.81, "action": "", diff --git a/repo/pathing/食材与炼金/金鱼草/金鱼草-赤璋城桓02-2个.json b/repo/pathing/食材与炼金/金鱼草/金鱼草-赤璋城桓02-2个.json index b76ec1a7..36f99808 100644 --- a/repo/pathing/食材与炼金/金鱼草/金鱼草-赤璋城桓02-2个.json +++ b/repo/pathing/食材与炼金/金鱼草/金鱼草-赤璋城桓02-2个.json @@ -57,7 +57,7 @@ "type": "path" }, { - "id": 9, + "id": 7, "x": 2303.85, "y": 1254.09, "action": "", @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 10, + "id": 8, "x": 2310.01, "y": 1274.12, "action": "", @@ -73,7 +73,7 @@ "type": "path" }, { - "id": 11, + "id": 9, "x": 2322.61, "y": 1289.26, "action": "", @@ -81,7 +81,7 @@ "type": "path" }, { - "id": 12, + "id": 10, "x": 2342.47, "y": 1275.56, "action": "stop_flying", @@ -89,7 +89,7 @@ "type": "target" }, { - "id": 13, + "id": 11, "x": 2341.54, "y": 1277.08, "action": "", diff --git a/repo/pathing/食材与炼金/金鱼草/金鱼草-雪葬之都·近郊-2个.json b/repo/pathing/食材与炼金/金鱼草/金鱼草-雪葬之都·近郊-2个.json index 1af2821a..0867b69e 100644 --- a/repo/pathing/食材与炼金/金鱼草/金鱼草-雪葬之都·近郊-2个.json +++ b/repo/pathing/食材与炼金/金鱼草/金鱼草-雪葬之都·近郊-2个.json @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 3, + "id": 2, "x": -385.42, "y": 1147.98, "action": "", @@ -25,7 +25,7 @@ "type": "path" }, { - "id": 4, + "id": 3, "x": -359.23, "y": 1133.63, "action": "", @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 5, + "id": 4, "x": -327.37, "y": 1097.9, "action": "", @@ -41,7 +41,7 @@ "type": "path" }, { - "id": 6, + "id": 5, "x": -305.87, "y": 1074.36, "action": "", @@ -49,7 +49,7 @@ "type": "target" }, { - "id": 7, + "id": 6, "x": -294.54, "y": 1091.83, "action": "", diff --git a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇1-降诸魔山-须弥5个.json b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇1-降诸魔山-须弥5个.json index 877ae836..a150c21c 100644 --- a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇1-降诸魔山-须弥5个.json +++ b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇1-降诸魔山-须弥5个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 2246.05, "y": -1680.4, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 2246.45, "y": -1679.77, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 2349.68, "y": -1723.12, "type": "path", @@ -30,6 +33,7 @@ "action": "stop_flying" }, { + "id": 4, "x": 2361.56, "y": -1715.63, "type": "path", diff --git a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇2-化城郭(一)-须弥8个.json b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇2-化城郭(一)-须弥8个.json index 47292d98..5fabd2cd 100644 --- a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇2-化城郭(一)-须弥8个.json +++ b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇2-化城郭(一)-须弥8个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 2631.92, "y": -1016.86, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 2595.76, "y": -979.06, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 2556.85, "y": -962.96, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 2507.5, "y": -979.63, "type": "path", @@ -37,6 +41,7 @@ "action": "nahida_collect" }, { + "id": 5, "x": 2486.59, "y": -977.94, "type": "path", diff --git a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇3-化城郭(二)-须弥8个.json b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇3-化城郭(二)-须弥8个.json index dee9135f..e8c04e6d 100644 --- a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇3-化城郭(二)-须弥8个.json +++ b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇3-化城郭(二)-须弥8个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 2466.94, "y": -623.89, "type": "teleport", @@ -16,6 +17,7 @@ "action": "nahida_collect" }, { + "id": 2, "x": 2468.3, "y": -655.14, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 2442.69, "y": -674.39, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 2408.19, "y": -677.5, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": 2408.21, "y": -662.18, "type": "path", @@ -44,6 +49,7 @@ "action": "nahida_collect" }, { + "id": 6, "x": 2403.97, "y": -660.3, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": 2387.01, "y": -640.26, "type": "path", diff --git a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇4-天臂池-须弥9个.json b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇4-天臂池-须弥9个.json index 82f01423..005c9f79 100644 --- a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇4-天臂池-须弥9个.json +++ b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇4-天臂池-须弥9个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 3067.87, "y": -713.69, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 3056.01, "y": -725.99, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 3054.66, "y": -727.29, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 3020.58, "y": -739.56, "type": "path", @@ -37,6 +41,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 3021.52, "y": -739.79, "type": "path", @@ -44,6 +49,7 @@ "action": "nahida_collect" }, { + "id": 6, "x": 2974.44, "y": -728.89, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": 2965.62, "y": -707.86, "type": "path", diff --git a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇5-觉王之殿-须弥6个.json b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇5-觉王之殿-须弥6个.json index a157bcb3..5d126136 100644 --- a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇5-觉王之殿-须弥6个.json +++ b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇5-觉王之殿-须弥6个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 3591.7, "y": -787.67, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 3596.89, "y": -804.37, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 3597.98, "y": -807.62, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 3624.9, "y": -912.66, "type": "path", @@ -37,6 +41,7 @@ "action": "stop_flying" }, { + "id": 5, "x": 3624.51, "y": -911.97, "type": "path", @@ -44,6 +49,7 @@ "action": "nahida_collect" }, { + "id": 6, "x": 3642.0, "y": -897.91, "type": "path", diff --git a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇6-谒颂幽境-须弥8个.json b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇6-谒颂幽境-须弥8个.json index 64fb68d5..306abd82 100644 --- a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇6-谒颂幽境-须弥8个.json +++ b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇6-谒颂幽境-须弥8个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 3639.59, "y": -1417.48, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 3639.75, "y": -1406.58, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 3654.9, "y": -1380.68, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 3658.86, "y": -1374.58, "type": "path", @@ -37,6 +41,7 @@ "action": "nahida_collect" }, { + "id": 5, "x": 3617.08, "y": -1367.16, "type": "path", diff --git a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇7-奥摩斯港-须弥9个.json b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇7-奥摩斯港-须弥9个.json index f6f49b3a..8580a256 100644 --- a/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇7-奥摩斯港-须弥9个.json +++ b/repo/pathing/食材与炼金/须弥蔷薇/须弥蔷薇7-奥摩斯港-须弥9个.json @@ -9,6 +9,7 @@ }, "positions": [ { + "id": 1, "x": 2806.43, "y": -1790.54, "type": "teleport", @@ -16,6 +17,7 @@ "action": "" }, { + "id": 2, "x": 2823.03, "y": -1789.22, "type": "path", @@ -23,6 +25,7 @@ "action": "" }, { + "id": 3, "x": 2832.78, "y": -1741.52, "type": "path", @@ -30,6 +33,7 @@ "action": "" }, { + "id": 4, "x": 2843.3, "y": -1706.48, "type": "path", @@ -37,6 +41,7 @@ "action": "" }, { + "id": 5, "x": 2859.97, "y": -1693.57, "type": "path", @@ -44,6 +49,7 @@ "action": "" }, { + "id": 6, "x": 2861.83, "y": -1691.7, "type": "path", @@ -51,6 +57,7 @@ "action": "" }, { + "id": 7, "x": 2916.82, "y": -1651.53, "type": "path", @@ -58,6 +65,7 @@ "action": "stop_flying" }, { + "id": 8, "x": 2918.52, "y": -1650.19, "type": "path", @@ -65,6 +73,7 @@ "action": "nahida_collect" }, { + "id": 9, "x": 2934.62, "y": -1629.02, "type": "path", diff --git a/repo/pathing/食材与炼金/颗粒果/颗粒果11-花羽会-纳塔6个.json b/repo/pathing/食材与炼金/颗粒果/颗粒果11-花羽会-纳塔6个.json index fbaa0708..a6e3e94a 100644 --- a/repo/pathing/食材与炼金/颗粒果/颗粒果11-花羽会-纳塔6个.json +++ b/repo/pathing/食材与炼金/颗粒果/颗粒果11-花羽会-纳塔6个.json @@ -17,7 +17,7 @@ "y": -1279.26 }, { - "id": 3, + "id": 2, "x": 9610.03, "y": -1247.95, "type": "path", diff --git a/repo/pathing/食材与炼金/香辛果/香辛果(纳西妲采集)@玛卡巴卡/香辛果1.json b/repo/pathing/食材与炼金/香辛果/香辛果(纳西妲采集)@玛卡巴卡/香辛果1.json index 5b1e415a..fab97b6f 100644 --- a/repo/pathing/食材与炼金/香辛果/香辛果(纳西妲采集)@玛卡巴卡/香辛果1.json +++ b/repo/pathing/食材与炼金/香辛果/香辛果(纳西妲采集)@玛卡巴卡/香辛果1.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 2, + "id": 1, "x": 4693.97, "y": -261.98, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 3, + "id": 2, "x": 4706.97, "y": -262.29, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 4, + "id": 3, "x": 4717.82, "y": -256.56, "type": "path", @@ -33,7 +33,7 @@ "action": "stop_flying" }, { - "id": 5, + "id": 4, "x": 4719.09, "y": -254.91, "type": "path", @@ -41,7 +41,7 @@ "action": "nahida_collect" }, { - "id": 6, + "id": 5, "x": 4729.12, "y": -237.66, "type": "path", @@ -49,7 +49,7 @@ "action": "" }, { - "id": 7, + "id": 6, "x": 4707.8, "y": -234.17, "type": "path", @@ -57,7 +57,7 @@ "action": "" }, { - "id": 8, + "id": 7, "x": 4689.77, "y": -240.43, "type": "path", @@ -65,7 +65,7 @@ "action": "" }, { - "id": 9, + "id": 8, "x": 4691.4, "y": -242.7, "type": "path", @@ -73,7 +73,7 @@ "action": "" }, { - "id": 10, + "id": 9, "x": 4675.54, "y": -249.2, "type": "path", @@ -81,7 +81,7 @@ "action": "" }, { - "id": 11, + "id": 10, "x": 4672.62, "y": -250.17, "type": "target", @@ -89,7 +89,7 @@ "action": "" }, { - "id": 12, + "id": 11, "x": 4649.49, "y": -264.5, "type": "path", @@ -97,7 +97,7 @@ "action": "" }, { - "id": 13, + "id": 12, "x": 4643.7, "y": -268.29, "type": "path", diff --git a/repo/pathing/食材与炼金/香辛果/香辛果(纳西妲采集)@玛卡巴卡/香辛果3.json b/repo/pathing/食材与炼金/香辛果/香辛果(纳西妲采集)@玛卡巴卡/香辛果3.json index 19cd3c8e..a992cd57 100644 --- a/repo/pathing/食材与炼金/香辛果/香辛果(纳西妲采集)@玛卡巴卡/香辛果3.json +++ b/repo/pathing/食材与炼金/香辛果/香辛果(纳西妲采集)@玛卡巴卡/香辛果3.json @@ -161,7 +161,7 @@ "action": "" }, { - "id": 21, + "id": 20, "x": 3473.21, "y": -1708.59, "type": "path", @@ -169,7 +169,7 @@ "action": "nahida_collect" }, { - "id": 22, + "id": 21, "x": 2567.6, "y": -1424.06, "type": "teleport", @@ -177,7 +177,7 @@ "action": "" }, { - "id": 23, + "id": 22, "x": 2569.07, "y": -1420.24, "type": "path", diff --git a/repo/pathing/食材与炼金/马尾/马尾@玛卡巴卡/马尾3.json b/repo/pathing/食材与炼金/马尾/马尾@玛卡巴卡/马尾3.json index af9a94d5..edb1c533 100644 --- a/repo/pathing/食材与炼金/马尾/马尾@玛卡巴卡/马尾3.json +++ b/repo/pathing/食材与炼金/马尾/马尾@玛卡巴卡/马尾3.json @@ -49,7 +49,7 @@ "action": "nahida_collect" }, { - "id": 8, + "id": 6, "x": 316.8, "y": 616.29, "type": "path", @@ -73,7 +73,7 @@ "action": "" }, { - "id": 10, + "id": 9, "x": 321.07, "y": 633.96, "type": "path", diff --git a/repo/pathing/食材与炼金/鳅鳅宝玉/01-鳅鳅宝玉-荻花洲-13个.json b/repo/pathing/食材与炼金/鳅鳅宝玉/01-鳅鳅宝玉-荻花洲-13个.json index 336cf6e6..70076af2 100644 --- a/repo/pathing/食材与炼金/鳅鳅宝玉/01-鳅鳅宝玉-荻花洲-13个.json +++ b/repo/pathing/食材与炼金/鳅鳅宝玉/01-鳅鳅宝玉-荻花洲-13个.json @@ -65,7 +65,7 @@ "action": "" }, { - "id": 1, + "id": 8, "x": 253.15, "y": 1285.18, "action": "", @@ -73,7 +73,7 @@ "type": "teleport" }, { - "id": 2, + "id": 9, "x": 249.57, "y": 1284.89, "action": "", @@ -81,7 +81,7 @@ "type": "path" }, { - "id": 3, + "id": 10, "x": 201.16, "y": 1245.25, "action": "", @@ -89,7 +89,7 @@ "type": "path" }, { - "id": 4, + "id": 11, "x": 199.95, "y": 1247.63, "action": "", @@ -97,7 +97,7 @@ "type": "path" }, { - "id": 5, + "id": 12, "x": 198.92, "y": 1253.45, "action": "", @@ -105,7 +105,7 @@ "type": "path" }, { - "id": 6, + "id": 13, "x": 199.59, "y": 1255.43, "action": "", @@ -113,7 +113,7 @@ "type": "path" }, { - "id": 7, + "id": 14, "x": 210.4, "y": 1250.47, "type": "path", @@ -121,7 +121,7 @@ "action": "" }, { - "id": 8, + "id": 15, "x": 212.3, "y": 1214.87, "type": "path", @@ -129,7 +129,7 @@ "action": "" }, { - "id": 9, + "id": 16, "x": 238.31, "y": 1168.33, "type": "path", @@ -137,7 +137,7 @@ "action": "" }, { - "id": 10, + "id": 17, "x": 246.8, "y": 1142.12, "type": "path", @@ -145,7 +145,7 @@ "action": "" }, { - "id": 11, + "id": 18, "x": 265.81, "y": 1149.74, "type": "path", @@ -153,7 +153,7 @@ "action": "" }, { - "id": 12, + "id": 19, "x": 268.79, "y": 1151.31, "type": "path", @@ -161,7 +161,7 @@ "action": "" }, { - "id": 13, + "id": 20, "x": 277.67, "y": 1135.17, "type": "path", @@ -169,7 +169,7 @@ "action": "" }, { - "id": 14, + "id": 21, "x": 303.48, "y": 1097.9, "type": "path", @@ -177,7 +177,7 @@ "action": "" }, { - "id": 15, + "id": 22, "x": 320.01, "y": 1085.63, "type": "path", @@ -185,7 +185,7 @@ "action": "" }, { - "id": 16, + "id": 23, "x": 319.44, "y": 1080.4, "type": "path", @@ -193,7 +193,7 @@ "action": "" }, { - "id": 17, + "id": 24, "x": 318.1, "y": 1077.48, "type": "path", @@ -201,7 +201,7 @@ "action": "" }, { - "id": 18, + "id": 25, "x": 292.89, "y": 1074.04, "type": "path", @@ -209,7 +209,7 @@ "action": "" }, { - "id": 19, + "id": 26, "x": 254.67, "y": 1073.34, "type": "path", @@ -217,7 +217,7 @@ "action": "" }, { - "id": 20, + "id": 27, "x": 239.09, "y": 1066.27, "type": "path", @@ -225,7 +225,7 @@ "action": "" }, { - "id": 21, + "id": 28, "x": 237.19, "y": 1065.92, "type": "path", @@ -233,7 +233,7 @@ "action": "" }, { - "id": 22, + "id": 29, "x": 233.57, "y": 1067.22, "type": "path", @@ -241,7 +241,7 @@ "action": "" }, { - "id": 23, + "id": 30, "x": 230.55, "y": 1067.85, "type": "path", @@ -249,7 +249,7 @@ "action": "" }, { - "id": 24, + "id": 31, "x": 228.61, "y": 1068.24, "type": "path", @@ -257,7 +257,7 @@ "action": "" }, { - "id": 25, + "id": 32, "x": 221.5, "y": 1072.69, "type": "path", @@ -265,7 +265,7 @@ "action": "" }, { - "id": 26, + "id": 33, "x": 219.61, "y": 1073.27, "type": "path", @@ -273,7 +273,7 @@ "action": "" }, { - "id": 27, + "id": 34, "x": 217.73, "y": 1074.13, "type": "path", diff --git a/repo/pathing/食材与炼金/鳗肉/01-鳗肉-沙漠合集-17个.json b/repo/pathing/食材与炼金/鳗肉/01-鳗肉-沙漠合集-17个.json index 1bfc86b0..de557e35 100644 --- a/repo/pathing/食材与炼金/鳗肉/01-鳗肉-沙漠合集-17个.json +++ b/repo/pathing/食材与炼金/鳗肉/01-鳗肉-沙漠合集-17个.json @@ -17,7 +17,7 @@ "type": "teleport" }, { - "id": 3, + "id": 2, "x": 5588.91, "y": -403.06, "action": "stop_flying", @@ -25,7 +25,7 @@ "type": "path" }, { - "id": 4, + "id": 3, "x": 5625.5, "y": -365.2, "action": "", @@ -33,7 +33,7 @@ "type": "path" }, { - "id": 5, + "id": 4, "x": 5622.7, "y": -363.89, "action": "", @@ -41,7 +41,7 @@ "type": "target" }, { - "id": 6, + "id": 5, "x": 4272.89, "y": -520.65, "action": "", @@ -49,7 +49,7 @@ "type": "teleport" }, { - "id": 7, + "id": 6, "x": 4271.21, "y": -516.97, "action": "", @@ -57,7 +57,7 @@ "type": "path" }, { - "id": 8, + "id": 7, "x": 4264.21, "y": -501.25, "action": "", @@ -65,7 +65,7 @@ "type": "path" }, { - "id": 9, + "id": 8, "x": 4265.69, "y": -474.04, "action": "", @@ -73,7 +73,7 @@ "type": "path" }, { - "id": 10, + "id": 9, "x": 4268.78, "y": -459.39, "action": "", @@ -81,7 +81,7 @@ "type": "target" }, { - "id": 11, + "id": 10, "x": 4572.0, "y": -1072.03, "action": "", @@ -89,7 +89,7 @@ "type": "teleport" }, { - "id": 12, + "id": 11, "x": 4572.69, "y": -1085.14, "action": "", @@ -105,7 +105,7 @@ "type": "target" }, { - "id": 12, + "id": 13, "x": 4574.42, "y": -1079.99, "action": "", @@ -113,7 +113,7 @@ "type": "target" }, { - "id": 13, + "id": 14, "x": 4409.76, "y": -1874.62, "action": "", @@ -121,7 +121,7 @@ "type": "teleport" }, { - "id": 14, + "id": 15, "x": 4426.0, "y": -1834.42, "action": "", @@ -129,7 +129,7 @@ "type": "path" }, { - "id": 15, + "id": 16, "x": 4434.59, "y": -1828.89, "action": "", @@ -137,7 +137,7 @@ "type": "path" }, { - "id": 16, + "id": 17, "x": 4437.31, "y": -1824.94, "action": "", @@ -145,7 +145,7 @@ "type": "target" }, { - "id": 17, + "id": 18, "x": 4434.18, "y": -1823.43, "action": "", @@ -153,7 +153,7 @@ "type": "path" }, { - "id": 17, + "id": 19, "x": 4437.58, "y": -1824.57, "action": "", @@ -161,7 +161,7 @@ "type": "path" }, { - "id": 17, + "id": 20, "x": 4433.26, "y": -1823.16, "action": "", @@ -169,7 +169,7 @@ "type": "target" }, { - "id": 18, + "id": 21, "x": 4795.63, "y": -2576.37, "action": "", @@ -177,7 +177,7 @@ "type": "teleport" }, { - "id": 19, + "id": 22, "x": 4804.67, "y": -2588.16, "action": "", @@ -185,7 +185,7 @@ "type": "path" }, { - "id": 20, + "id": 23, "x": 4805.44, "y": -2603.35, "action": "", @@ -193,7 +193,7 @@ "type": "path" }, { - "id": 21, + "id": 24, "x": 4806.07, "y": -2625.23, "action": "", @@ -201,7 +201,7 @@ "type": "target" }, { - "id": 22, + "id": 25, "x": 4808.53, "y": -2638.67, "action": "", @@ -209,7 +209,7 @@ "type": "target" }, { - "id": 23, + "id": 26, "x": 4826.99, "y": -2654.48, "action": "", @@ -217,7 +217,7 @@ "type": "target" }, { - "id": 24, + "id": 27, "x": 4834.71, "y": -2657.75, "action": "", @@ -225,7 +225,7 @@ "type": "target" }, { - "id": 25, + "id": 28, "x": 4837.12, "y": -2663.14, "action": "", diff --git a/repo/pathing/食材与炼金/鳗肉/02-鳗肉-珊瑚宫北-9个.json b/repo/pathing/食材与炼金/鳗肉/02-鳗肉-珊瑚宫北-9个.json index 8140f957..1e4f62aa 100644 --- a/repo/pathing/食材与炼金/鳗肉/02-鳗肉-珊瑚宫北-9个.json +++ b/repo/pathing/食材与炼金/鳗肉/02-鳗肉-珊瑚宫北-9个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 7, + "id": 1, "x": -765.97, "y": -3557.39, "type": "teleport", diff --git a/repo/pathing/食材与炼金/鸟蛋/鸟蛋@呱呱z/08-鸟蛋-璃月-珉林-2个.json b/repo/pathing/食材与炼金/鸟蛋/鸟蛋@呱呱z/08-鸟蛋-璃月-珉林-2个.json index 86f9ebf2..784c3db5 100644 --- a/repo/pathing/食材与炼金/鸟蛋/鸟蛋@呱呱z/08-鸟蛋-璃月-珉林-2个.json +++ b/repo/pathing/食材与炼金/鸟蛋/鸟蛋@呱呱z/08-鸟蛋-璃月-珉林-2个.json @@ -9,7 +9,7 @@ }, "positions": [ { - "id": 3, + "id": 1, "x": 1121.11, "y": 1190.38, "type": "teleport", @@ -17,7 +17,7 @@ "action": "" }, { - "id": 4, + "id": 2, "x": 1102.38, "y": 1160.71, "type": "path", @@ -25,7 +25,7 @@ "action": "" }, { - "id": 5, + "id": 3, "x": 1100.21, "y": 1157.55, "type": "path", @@ -33,7 +33,7 @@ "action": "" }, { - "id": 6, + "id": 4, "x": 1093.18, "y": 1133.39, "type": "path", @@ -41,7 +41,7 @@ "action": "stop_flying" }, { - "id": 7, + "id": 5, "x": 1093.94, "y": 1133.5, "type": "path", diff --git a/repo/pathing/食材与炼金/鸟蛋/鸟蛋@呱呱z/40-鸟蛋-纳塔-回声之子下方锚点-2个.json b/repo/pathing/食材与炼金/鸟蛋/鸟蛋@呱呱z/40-鸟蛋-纳塔-回声之子下方锚点-2个.json index 653df480..51c15968 100644 --- a/repo/pathing/食材与炼金/鸟蛋/鸟蛋@呱呱z/40-鸟蛋-纳塔-回声之子下方锚点-2个.json +++ b/repo/pathing/食材与炼金/鸟蛋/鸟蛋@呱呱z/40-鸟蛋-纳塔-回声之子下方锚点-2个.json @@ -17,7 +17,7 @@ "y": -1646.67 }, { - "id": 3, + "id": 2, "x": 7637.47, "y": -1641.02, "type": "target",