diff --git a/repo/js/ArtifactsGroupPurchasing/README.md b/repo/js/ArtifactsGroupPurchasing/README.md index 4db7a7e5c1..258aadd6b7 100644 --- a/repo/js/ArtifactsGroupPurchasing/README.md +++ b/repo/js/ArtifactsGroupPurchasing/README.md @@ -24,6 +24,8 @@ * **预留足够的背包空间**:运行AAA狗粮批发将获取约150个圣遗物,运行本js将获取约230个圣遗物,请确保你的背包有足够的空间容纳这些圣遗物,建议在AAA狗粮批发中选择分解或摧毁,并预留380+的空间 ## 更新日志 +### 1.3.0(2025.09.17) +1.增加识别并点击复苏 ### 1.2.7(2025.09.16) 1.修几处路线624①②③,509① 2.新增304神无卓狸猫火炬 diff --git a/repo/js/ArtifactsGroupPurchasing/assets/RecognitionObject/revival1.png b/repo/js/ArtifactsGroupPurchasing/assets/RecognitionObject/revival1.png new file mode 100644 index 0000000000..90d6e7ca89 Binary files /dev/null and b/repo/js/ArtifactsGroupPurchasing/assets/RecognitionObject/revival1.png differ diff --git a/repo/js/ArtifactsGroupPurchasing/main.js b/repo/js/ArtifactsGroupPurchasing/main.js index 929d4813f8..ea8f817246 100644 --- a/repo/js/ArtifactsGroupPurchasing/main.js +++ b/repo/js/ArtifactsGroupPurchasing/main.js @@ -442,10 +442,7 @@ async function runGroupPurchasing(runExtra) { } if (!settings.runDebug) { for (const { fullPath } of files) { - log.info(`开始执行路线: ${fullPath}`); - await fakeLog(`${fullPath}`, false, true, 0); - await pathingScript.runFile(fullPath); - await fakeLog(`${fullPath}`, false, false, 0); + await runPath(fullPath, 1); } log.info(`${folderName} 的全部路线已完成`); @@ -469,10 +466,7 @@ async function runGroupPurchasing(runExtra) { if (!settings.runDebug) { for (const { fullPath } of files) { - log.info(`开始执行路线: ${fullPath}`); - await fakeLog(`${fullPath}`, false, true, 0); - await pathingScript.runFile(fullPath); - await fakeLog(`${fullPath}`, false, false, 0); + await runPath(fullPath, 1); } log.info(`额外 的全部路线已完成`); @@ -508,101 +502,12 @@ async function runGroupPurchasing(runExtra) { } for (const { fullPath } of files) { - log.info(`开始执行路线: ${fullPath}`); - await fakeLog(`${fullPath}`, false, true, 0); - await pathingScript.runFile(fullPath); - await fakeLog(`${fullPath}`, false, false, 0); + await runPath(fullPath, 1); } log.info(`${folderName} 的全部路线已完成`); } - - // fakeLog 函数,使用方法:将本函数放在主函数前,调用时请务必使用await,否则可能出现v8白框报错 - //在js开头处伪造该js结束运行的日志信息,如 await fakeLog("js脚本", true, true, 0); - //在js结尾处伪造该js开始运行的日志信息,如 await fakeLog("js脚本", true, false, 2333); - //duration项目仅在伪造结束信息时有效,且无实际作用,可以任意填写,当你需要在日志中输出特定值时才需要,单位为毫秒 - //在调用地图追踪前伪造该地图追踪开始运行的日志信息,如 await fakeLog(`地图追踪.json`, false, true, 0); - //在调用地图追踪后伪造该地图追踪结束运行的日志信息,如 await fakeLog(`地图追踪.json`, false, false, 0); - //如此便可以在js运行过程中伪造地图追踪的日志信息,可以在日志分析等中查看 - - async function fakeLog(name, isJs, isStart, duration) { - await sleep(10); - const currentTime = Date.now(); - // 参数检查 - if (typeof name !== 'string') { - log.error("参数 'name' 必须是字符串类型!"); - return; - } - if (typeof isJs !== 'boolean') { - log.error("参数 'isJs' 必须是布尔型!"); - return; - } - if (typeof isStart !== 'boolean') { - log.error("参数 'isStart' 必须是布尔型!"); - return; - } - if (typeof currentTime !== 'number' || !Number.isInteger(currentTime)) { - log.error("参数 'currentTime' 必须是整数!"); - return; - } - if (typeof duration !== 'number' || !Number.isInteger(duration)) { - log.error("参数 'duration' 必须是整数!"); - return; - } - - // 将 currentTime 转换为 Date 对象并格式化为 HH:mm:ss.sss - const date = new Date(currentTime); - const hours = String(date.getHours()).padStart(2, '0'); - const minutes = String(date.getMinutes()).padStart(2, '0'); - const seconds = String(date.getSeconds()).padStart(2, '0'); - const milliseconds = String(date.getMilliseconds()).padStart(3, '0'); - const formattedTime = `${hours}:${minutes}:${seconds}.${milliseconds}`; - - // 将 duration 转换为分钟和秒,并保留三位小数 - const durationInSeconds = duration / 1000; // 转换为秒 - const durationMinutes = Math.floor(durationInSeconds / 60); - const durationSeconds = (durationInSeconds % 60).toFixed(3); // 保留三位小数 - - // 使用四个独立的 if 语句处理四种情况 - if (isJs && isStart) { - // 处理 isJs = true 且 isStart = true 的情况 - const logMessage = `正在伪造js开始的日志记录\n\n` + - `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + - `------------------------------\n\n` + - `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + - `→ 开始执行JS脚本: "${name}"`; - log.debug(logMessage); - } - if (isJs && !isStart) { - // 处理 isJs = true 且 isStart = false 的情况 - const logMessage = `正在伪造js结束的日志记录\n\n` + - `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + - `→ 脚本执行结束: "${name}", 耗时: ${durationMinutes}分${durationSeconds}秒\n\n` + - `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + - `------------------------------`; - log.debug(logMessage); - } - if (!isJs && isStart) { - // 处理 isJs = false 且 isStart = true 的情况 - const logMessage = `正在伪造地图追踪开始的日志记录\n\n` + - `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + - `------------------------------\n\n` + - `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + - `→ 开始执行地图追踪任务: "${name}"`; - log.debug(logMessage); - } - if (!isJs && !isStart) { - // 处理 isJs = false 且 isStart = false 的情况 - const logMessage = `正在伪造地图追踪结束的日志记录\n\n` + - `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + - `→ 脚本执行结束: "${name}", 耗时: ${durationMinutes}分${durationSeconds}秒\n\n` + - `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + - `------------------------------`; - log.debug(logMessage); - } - } } - /** * 自动联机脚本(整体打包为一个函数) * @param {Object} autoEnterSettings 配置对象 @@ -676,7 +581,8 @@ async function autoEnter(autoEnterSettings) { await sleep(1000); inputText(enteringUID); await sleep(1000); if (!await findAndClick(searchRo)) { await genshin.returnMainUi(); continue; } - if (await confirmSearchResult()) { await genshin.returnMainUi(); continue; } + await sleep(500); + if (!await confirmSearchResult()) { await genshin.returnMainUi(); log.warn("无搜索结果"); continue; } await sleep(500); if (!await findAndClick(requestEnterRo)) { await genshin.returnMainUi(); continue; } @@ -744,7 +650,7 @@ async function autoEnter(autoEnterSettings) { } async function confirmSearchResult() { - for (let i = 0; i < 5; i++) { + for (let i = 0; i < 4; i++) { const gameRegion = captureGameRegion(); const res = gameRegion.find(requestEnter2Ro); gameRegion.dispose(); @@ -965,6 +871,91 @@ async function findTotalNumber() { return count; } +// fakeLog 函数,使用方法:将本函数放在主函数前,调用时请务必使用await,否则可能出现v8白框报错 +//在js开头处伪造该js结束运行的日志信息,如 await fakeLog("js脚本", true, true, 0); +//在js结尾处伪造该js开始运行的日志信息,如 await fakeLog("js脚本", true, false, 2333); +//duration项目仅在伪造结束信息时有效,且无实际作用,可以任意填写,当你需要在日志中输出特定值时才需要,单位为毫秒 +//在调用地图追踪前伪造该地图追踪开始运行的日志信息,如 await fakeLog(`地图追踪.json`, false, true, 0); +//在调用地图追踪后伪造该地图追踪结束运行的日志信息,如 await fakeLog(`地图追踪.json`, false, false, 0); +//如此便可以在js运行过程中伪造地图追踪的日志信息,可以在日志分析等中查看 + +async function fakeLog(name, isJs, isStart, duration) { + await sleep(10); + const currentTime = Date.now(); + // 参数检查 + if (typeof name !== 'string') { + log.error("参数 'name' 必须是字符串类型!"); + return; + } + if (typeof isJs !== 'boolean') { + log.error("参数 'isJs' 必须是布尔型!"); + return; + } + if (typeof isStart !== 'boolean') { + log.error("参数 'isStart' 必须是布尔型!"); + return; + } + if (typeof currentTime !== 'number' || !Number.isInteger(currentTime)) { + log.error("参数 'currentTime' 必须是整数!"); + return; + } + if (typeof duration !== 'number' || !Number.isInteger(duration)) { + log.error("参数 'duration' 必须是整数!"); + return; + } + + // 将 currentTime 转换为 Date 对象并格式化为 HH:mm:ss.sss + const date = new Date(currentTime); + const hours = String(date.getHours()).padStart(2, '0'); + const minutes = String(date.getMinutes()).padStart(2, '0'); + const seconds = String(date.getSeconds()).padStart(2, '0'); + const milliseconds = String(date.getMilliseconds()).padStart(3, '0'); + const formattedTime = `${hours}:${minutes}:${seconds}.${milliseconds}`; + + // 将 duration 转换为分钟和秒,并保留三位小数 + const durationInSeconds = duration / 1000; // 转换为秒 + const durationMinutes = Math.floor(durationInSeconds / 60); + const durationSeconds = (durationInSeconds % 60).toFixed(3); // 保留三位小数 + + // 使用四个独立的 if 语句处理四种情况 + if (isJs && isStart) { + // 处理 isJs = true 且 isStart = true 的情况 + const logMessage = `正在伪造js开始的日志记录\n\n` + + `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + + `------------------------------\n\n` + + `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + + `→ 开始执行JS脚本: "${name}"`; + log.debug(logMessage); + } + if (isJs && !isStart) { + // 处理 isJs = true 且 isStart = false 的情况 + const logMessage = `正在伪造js结束的日志记录\n\n` + + `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + + `→ 脚本执行结束: "${name}", 耗时: ${durationMinutes}分${durationSeconds}秒\n\n` + + `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + + `------------------------------`; + log.debug(logMessage); + } + if (!isJs && isStart) { + // 处理 isJs = false 且 isStart = true 的情况 + const logMessage = `正在伪造地图追踪开始的日志记录\n\n` + + `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + + `------------------------------\n\n` + + `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + + `→ 开始执行地图追踪任务: "${name}"`; + log.debug(logMessage); + } + if (!isJs && !isStart) { + // 处理 isJs = false 且 isStart = false 的情况 + const logMessage = `正在伪造地图追踪结束的日志记录\n\n` + + `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + + `→ 脚本执行结束: "${name}", 耗时: ${durationMinutes}分${durationSeconds}秒\n\n` + + `[${formattedTime}] [INF] BetterGenshinImpact.Service.ScriptService\n` + + `------------------------------`; + log.debug(logMessage); + } +} + // 定义 readFolder 函数 async function readFolder(folderPath, onlyJson) { // 新增一个堆栈,初始时包含 folderPath @@ -1018,3 +1009,47 @@ async function readFolder(folderPath, onlyJson) { return files; } + +async function runPath(fullPath, targetItemPath) { + const state = { running: true }; + + /* ---------- 主任务 ---------- */ + const pathingTask = (async () => { + log.info(`开始执行路线: ${fullPath}`); + await fakeLog(fullPath, false, true, 0); + await pathingScript.runFile(fullPath); + await fakeLog(fullPath, false, false, 0); + state.running = false; + })(); + + /* ---------- 伴随任务 ---------- */ + + const pickupTask = (async () => { + //if (!targetItemPath) return; // 没有拾取目录直接跳过 + //dispatcher.addTimer(new RealtimeTimer("AutoPick")); + while (state.running) { + await sleep(1000); + } + //dispatcher.ClearAllTriggers(); + + })(); + + const errorProcessTask = (async () => { + const revivalRo1 = RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/RecognitionObject/revival1.png")); + let errorCheckCount = 9; + while (state.running) { + await sleep(100); + errorCheckCount++; + if (errorCheckCount > 50) { + errorCheckCount = 0; + //log.info("尝试识别并点击复苏按钮"); + if (await findAndClick(revivalRo1,2)) { + //log.info("识别到复苏按钮,点击复苏"); + } + } + } + })(); + + /* ---------- 并发等待 ---------- */ + await Promise.allSettled([pathingTask, pickupTask, errorProcessTask]); +} \ No newline at end of file diff --git a/repo/js/ArtifactsGroupPurchasing/manifest.json b/repo/js/ArtifactsGroupPurchasing/manifest.json index 08f16ed4c0..7e66a4307c 100644 --- a/repo/js/ArtifactsGroupPurchasing/manifest.json +++ b/repo/js/ArtifactsGroupPurchasing/manifest.json @@ -1,13 +1,14 @@ { "manifest_version": 1, "name": "AAA狗粮联机团购", - "version": "1.2.7", + "version": "1.3.0", "tags": [ "狗粮" ], "description": "配合AAA狗粮批发使用,联机运行多条收尾路线", "saved_files": [ - "records/*.txt" + "records/*.txt", + "targets/*.png" ], "authors": [ { @@ -21,4 +22,4 @@ ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoHoeingOneDragon/README.md b/repo/js/AutoHoeingOneDragon/README.md index 68f5107d08..7c28bbd298 100644 --- a/repo/js/AutoHoeingOneDragon/README.md +++ b/repo/js/AutoHoeingOneDragon/README.md @@ -94,6 +94,8 @@ --- ### 更新日志 +### 1.6.3(2025.09.17) +1.修正汐佬乱填的路线信息 ### 1.6.2(2025.09.16) 1.增加路线:挪德卡莱精英 ### 1.6.1(2025.09.15) diff --git a/repo/js/AutoHoeingOneDragon/assets/index1.json b/repo/js/AutoHoeingOneDragon/assets/index1.json index 67f24b802e..36ffd59c52 100644 --- a/repo/js/AutoHoeingOneDragon/assets/index1.json +++ b/repo/js/AutoHoeingOneDragon/assets/index1.json @@ -1272,125 +1272,5 @@ "小怪数量": 0, "精英摩拉": 400, "小怪摩拉": 0 - }, - { - "fileName": "701挪德卡莱蛋卷工坊西(400_1,200_2).json", - "时间": 75, - "精英数量": 3, - "小怪数量": 0, - "精英摩拉": 800, - "小怪摩拉": 0 - }, - { - "fileName": "702挪德卡莱蛋卷工坊北(200_4).json", - "时间": 43, - "精英数量": 4, - "小怪数量": 0, - "精英摩拉": 800, - "小怪摩拉": 0 - }, - { - "fileName": "703挪德卡莱苔骨荒原南(200_1).json", - "时间": 48, - "精英数量": 1, - "小怪数量": 0, - "精英摩拉": 200, - "小怪摩拉": 0 - }, - { - "fileName": "704挪德卡莱苔骨荒原东(400_1,200_5).json", - "时间": 148, - "精英数量": 6, - "小怪数量": 0, - "精英摩拉": 1400, - "小怪摩拉": 0 - }, - { - "fileName": "705挪德卡莱苔骨荒原北(200_1).json", - "时间": 45, - "精英数量": 1, - "小怪数量": 0, - "精英摩拉": 200, - "小怪摩拉": 0 - }, - { - "fileName": "706挪德卡莱星砂滩北(400_2).json", - "时间": 105, - "精英数量": 2, - "小怪数量": 10, - "精英摩拉": 800, - "小怪摩拉": 855 - }, - { - "fileName": "707挪德卡莱蓝珀湖西北(200_1).json", - "时间": 53, - "精英数量": 1, - "小怪数量": 0, - "精英摩拉": 200, - "小怪摩拉": 0 - }, - { - "fileName": "708挪德卡莱蓝珀湖南(200_1).json", - "时间": 65, - "精英数量": 1, - "小怪数量": 0, - "精英摩拉": 200, - "小怪摩拉": 0 - }, - { - "fileName": "709挪德卡莱蓝珀湖东南(200_3).json", - "时间": 150, - "精英数量": 3, - "小怪数量": 2, - "精英摩拉": 600, - "小怪摩拉": 81 - }, - { - "fileName": "710挪德卡莱空寂走廊刻拉蒂之眼(200_1).json", - "时间": 50, - "精英数量": 1, - "小怪数量": 0, - "精英摩拉": 200, - "小怪摩拉": 0 - }, - { - "fileName": "711挪德卡莱空寂走廊东(200_2).json", - "时间": 156, - "精英数量": 2, - "小怪数量": 0, - "精英摩拉": 400, - "小怪摩拉": 0 - }, - { - "fileName": "712挪德卡莱空寂走廊南(200_1).json", - "时间": 50, - "精英数量": 1, - "小怪数量": 0, - "精英摩拉": 200, - "小怪摩拉": 0 - }, - { - "fileName": "713挪德卡莱空寂走廊北(200_5).json", - "时间": 124, - "精英数量": 5, - "小怪数量": 5, - "精英摩拉": 1000, - "小怪摩拉": 225 - }, - { - "fileName": "714挪德卡莱月矩力设计局北(400_2,200_5).json", - "时间": 130, - "精英数量": 7, - "小怪数量": 2, - "精英摩拉": 1800, - "小怪摩拉": 90 - }, - { - "fileName": "715挪德卡莱月矩力设计局东北(400_1,200_5).json", - "时间": 134, - "精英数量": 6, - "小怪数量": 0, - "精英摩拉": 1400, - "小怪摩拉": 0 - }, + } ] \ No newline at end of file diff --git a/repo/js/AutoHoeingOneDragon/main.js b/repo/js/AutoHoeingOneDragon/main.js index 8bac2c7cad..4271b128f2 100644 --- a/repo/js/AutoHoeingOneDragon/main.js +++ b/repo/js/AutoHoeingOneDragon/main.js @@ -1,4 +1,4 @@ -//当前js版本 1.6.2 +//当前js版本 1.6.3 //拾取时上下滑动的时间 let timeMoveUp; diff --git a/repo/js/AutoHoeingOneDragon/manifest.json b/repo/js/AutoHoeingOneDragon/manifest.json index e9530ca51d..0e64c574a1 100644 --- a/repo/js/AutoHoeingOneDragon/manifest.json +++ b/repo/js/AutoHoeingOneDragon/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "锄地一条龙", - "version": "1.6.2", + "version": "1.6.3", "description": "一站式解决自动化锄地,支持只拾取狗粮,请仔细阅读README.md后使用", "authors": [ { diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/701\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\350\245\277\357\274\210400_1\357\274\214200_2\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/701\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\350\245\277\357\274\210400_1\357\274\214200_2\357\274\211.json" index c2ca0bc17f..64bb221545 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/701\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\350\245\277\357\274\210400_1\357\274\214200_2\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/701\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\350\245\277\357\274\210400_1\357\274\214200_2\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时75秒,包含3只精英,预计收入800摩拉,包含以下怪物:1荒野狂狩士、2只荒野幽徒。", + "description": " 路线信息:该路线预计用时107.7秒,包含以下怪物:2只荒野幽徒、1只荒野狂狩士。", "enable_monster_loot_split": false, "last_modified_time": 1758032685107, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/702\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\345\214\227\357\274\210200_4\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/702\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\345\214\227\357\274\210200_4\357\274\211.json" index 50c1427959..9a68ef676e 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/702\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\345\214\227\357\274\210200_4\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/702\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\345\214\227\357\274\210200_4\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时43秒,包含4只精英,预计收入800摩拉,包含以下怪物:4只荒野幽徒。", + "description": " 路线信息:该路线预计用时52.47秒,包含以下怪物:4只荒野幽徒。", "enable_monster_loot_split": false, "last_modified_time": 1758032746592, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/704\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\344\270\234\357\274\210400_1\357\274\214200_5\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/704\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\344\270\234\357\274\210400_1\357\274\214200_5\357\274\211.json" index cc6a8e358f..0079ec3c3d 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/704\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\344\270\234\357\274\210400_1\357\274\214200_5\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/704\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\344\270\234\357\274\210400_1\357\274\214200_5\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时149秒,包含6只精英,预计收入1400摩拉,包含以下怪物:1荒野狂狩士、4只荒野幽徒、1只蕴光刃犀。", + "description": " 路线信息:该路线预计用时161.64秒,包含以下怪物:4只荒野幽徒、1只荒野狂狩士、1只蕴光刃犀。", "enable_monster_loot_split": false, "last_modified_time": 1758032900510, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/706\346\214\252\345\276\267\345\215\241\350\216\261\346\230\237\347\240\202\346\273\251\345\214\227\357\274\210400_2\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/706\346\214\252\345\276\267\345\215\241\350\216\261\346\230\237\347\240\202\346\273\251\345\214\227\357\274\210400_2\357\274\211.json" index 88b5b9773b..a0aba7df80 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/706\346\214\252\345\276\267\345\215\241\350\216\261\346\230\237\347\240\202\346\273\251\345\214\227\357\274\210400_2\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/706\346\214\252\345\276\267\345\215\241\350\216\261\346\230\237\347\240\202\346\273\251\345\214\227\357\274\210400_2\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时105秒,包含2只精英,预计收入1355摩拉,包含以下怪物:2只荒野狂狩士、2只愚人众特辖队·火刃突击队、6只愚人众特辖队·线列军、1只水史莱姆、1只大型水史莱姆。", + "description": " 路线信息:该路线预计用时148.22秒,包含以下怪物:2只荒野狂狩士、1只愚人众特辖队·线列军、2只愚人众特辖队·支援兵、1只愚人众特辖队·榴铳手、1只愚人众特辖队·先锋士、1只愚人众特辖队·疗愈师、2只愚人众特辖队·火刃突击队、1只水史莱姆、1只大型水史莱姆。。", "enable_monster_loot_split": false, "last_modified_time": 1758033606625, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/714\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\345\214\227\357\274\210400_2\357\274\214200_5\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/714\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\345\214\227\357\274\210400_2\357\274\214200_5\357\274\211.json" index c78e6f8efb..3a9ad27451 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/714\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\345\214\227\357\274\210400_2\357\274\214200_5\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/714\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\345\214\227\357\274\210400_2\357\274\214200_5\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时130秒,包含7只精英,预计收入1890摩拉,包含以下怪物:2只荒野狂狩士、4只荒野幽徒、1只蕴光璇蛸、2只愚人众特辖队·先锋士。", + "description": " 路线信息:该路线预计用时153.59秒,包含以下怪物:4只荒野幽徒、2只荒野狂狩士、1只愚人众特辖队·线列军、1只愚人众特辖队·疗愈师、1只蕴光璇蛸。", "enable_monster_loot_split": false, "last_modified_time": 1758034625139, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/715\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\344\270\234\345\214\227\357\274\210400_1\357\274\214200_5\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/715\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\344\270\234\345\214\227\357\274\210400_1\357\274\214200_5\357\274\211.json" index 0cc9dbbad8..b6cc8809f5 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/715\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\344\270\234\345\214\227\357\274\210400_1\357\274\214200_5\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/1-\347\262\276\350\213\261/715\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\344\270\234\345\214\227\357\274\210400_1\357\274\214200_5\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时134秒,包含6只精英,预计收入1400摩拉,包含以下怪物:1只荒野狂狩士、4只荒野幽徒、1只霜叶灵嗣。", + "description": " 路线信息:该路线预计用时127.88秒,包含以下怪物:1只荒野狂狩士、4只荒野幽徒、1只蔓结·霜夜灵嗣。", "enable_monster_loot_split": false, "last_modified_time": 1758034788120, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/703\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\215\227\357\274\210200_1\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/703\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\215\227\357\274\210200_1\357\274\211.json" index 1e1eebb170..17c1005c1c 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/703\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\215\227\357\274\210200_1\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/703\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\215\227\357\274\210200_1\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时48秒,包含1只精英,预计收入200摩拉,包含以下怪物:1只蕴光刃犀。", + "description": " 路线信息:该路线预计用时41.85秒,包含以下怪物:1只蕴光刃犀。", "enable_monster_loot_split": false, "last_modified_time": 1758032824534, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/705\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\214\227\357\274\210200_1\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/705\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\214\227\357\274\210200_1\357\274\211.json" index d39f76d8ec..2e80f5cf23 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/705\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\214\227\357\274\210200_1\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/705\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\214\227\357\274\210200_1\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时42秒,包含1只精英,预计收入200摩拉,包含以下怪物:1只蕴光奇羊。", + "description": " 路线信息:该路线预计用时38.54秒,包含以下怪物:1只蕴光奇羊。", "enable_monster_loot_split": false, "last_modified_time": 1758032955501, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/707\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\350\245\277\345\214\227\357\274\210200_1\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/707\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\350\245\277\345\214\227\357\274\210200_1\357\274\211.json" index 953792cf98..7307716e7a 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/707\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\350\245\277\345\214\227\357\274\210200_1\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/707\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\350\245\277\345\214\227\357\274\210200_1\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时53秒,包含1只精英,预计收入200摩拉,包含以下怪物:1只辉电·霜叶灵嗣。", + "description": " 路线信息:该路线预计用时55.07秒,包含以下怪物:1只辉电·霜夜灵嗣。", "enable_monster_loot_split": false, "last_modified_time": 1758033707380, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/708\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\345\215\227\357\274\210200_1\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/708\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\345\215\227\357\274\210200_1\357\274\211.json" index b39a9a4da2..60604009aa 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/708\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\345\215\227\357\274\210200_1\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/708\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\345\215\227\357\274\210200_1\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时68秒,包含1只精英,预计收入200摩拉,包含以下怪物:1只蕴光奇羊。", + "description": " 路线信息:该路线预计用时63.33秒,包含以下怪物:1只蕴光奇羊。", "enable_monster_loot_split": false, "last_modified_time": 1758033843194, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/709\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\344\270\234\345\215\227\357\274\210200_3\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/709\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\344\270\234\345\215\227\357\274\210200_3\357\274\211.json" index 0c4337bcdf..136f4228a7 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/709\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\344\270\234\345\215\227\357\274\210200_3\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/709\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\344\270\234\345\215\227\357\274\210200_3\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时150秒,包含3只精英,预计收入600摩拉,包含以下怪物:1只蕴光奇羊、2只蕴光璇蛸。", + "description": " 路线信息:该路线预计用时135.7秒,包含以下怪物:2只水史莱姆、1只蕴光奇羊、2只蕴光璇蛸。", "enable_monster_loot_split": false, "last_modified_time": 1758033985518, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/710\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\210\273\346\213\211\350\222\202\344\271\213\347\234\274\357\274\210200_1\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/710\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\210\273\346\213\211\350\222\202\344\271\213\347\234\274\357\274\210200_1\357\274\211.json" index c8c12e6433..27a459d3d7 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/710\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\210\273\346\213\211\350\222\202\344\271\213\347\234\274\357\274\210200_1\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/710\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\210\273\346\213\211\350\222\202\344\271\213\347\234\274\357\274\210200_1\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时50秒,包含1只精英,预计收入200摩拉,包含以下怪物:1只霜叶灵嗣。", + "description": " 路线信息:该路线预计用时42.79秒,包含以下怪物:1只蔓结·霜夜灵嗣。", "enable_monster_loot_split": false, "last_modified_time": 1758034047013, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/711\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\344\270\234\357\274\210200_2\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/711\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\344\270\234\357\274\210200_2\357\274\211.json" index faff4f06f5..8c67870c58 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/711\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\344\270\234\357\274\210200_2\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/711\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\344\270\234\357\274\210200_2\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时156秒,包含2只精英,预计收入400摩拉,包含以下怪物:1只霜叶灵嗣、1只蕴光璇蛸。", + "description": " 路线信息:该路线预计用时108.06秒,包含以下怪物:1只凌晶·霜夜灵嗣、1只蕴光璇蛸。", "enable_monster_loot_split": false, "last_modified_time": 1758034179890, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/712\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\215\227\357\274\210200_1\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/712\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\215\227\357\274\210200_1\357\274\211.json" index f438314eee..a723233205 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/712\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\215\227\357\274\210200_1\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/712\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\215\227\357\274\210200_1\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时50秒,包含1只精英,预计收入200摩拉,包含以下怪物:1只蕴光奇羊。", + "description": " 路线信息:该路线预计用时47.42秒,包含以下怪物:1只蕴光奇羊。", "enable_monster_loot_split": false, "last_modified_time": 1758034237316, "map_match_method": "", diff --git "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/713\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\214\227\357\274\210200_5\357\274\211.json" "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/713\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\214\227\357\274\210200_5\357\274\211.json" index 9063f1605f..de4aef5856 100644 --- "a/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/713\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\214\227\357\274\210200_5\357\274\211.json" +++ "b/repo/js/AutoHoeingOneDragon/pathing/0-\347\262\276\350\213\261400/3-\344\275\216\346\225\210/713\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\214\227\357\274\210200_5\357\274\211.json" @@ -1,4 +1,4 @@ -{ +{ "info": { "authors": [ { @@ -7,7 +7,7 @@ } ], "bgi_version": "0.45.0", - "description": " 路线信息:该路线预计用时124秒,包含5只精英,预计收入1000摩拉,包含以下怪物:1只蕴光奇羊、1只霜叶灵嗣、3只荒野幽徒。", + "description": " 路线信息:该路线预计用时103.91秒,包含以下怪物:2只火史莱姆、3只雷史莱姆、1只灼烜·霜夜灵嗣、1只蕴光奇羊、3只荒野幽徒。", "enable_monster_loot_split": false, "last_modified_time": 1758034424975, "map_match_method": "", diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\345\260\217\346\200\2522000@mno/control.json5" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\345\260\217\346\200\2522000@mno/control.json5" deleted file mode 100644 index 15495af4e4..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\345\260\217\346\200\2522000@mno/control.json5" +++ /dev/null @@ -1,1960 +0,0 @@ -{ - "global_cover": { - "farming_info": { - "allow_farming_count": true, - "primary_target": "normal" - } - }, - "json_list": [ - { - "name": "6101--纳塔_镜璧山_西海岸1_(8-13)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 6, - "elite_mob_count": 0, - "duration_seconds": 204.0, - "elite_details": "", - "total_mora": 270 - } - } - }, - { - "name": "6102--纳塔_镜璧山_西海岸2_(8-6)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 12, - "elite_mob_count": 0, - "duration_seconds": 300.0, - "elite_details": "", - "total_mora": 691 - } - } - }, - { - "name": "6103--纳塔_镜璧山_西海岸3_(5-3)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 7, - "elite_mob_count": 0, - "duration_seconds": 133.0, - "elite_details": "", - "total_mora": 465 - } - } - }, - { - "name": "6104--纳塔_镜璧山_中部1_(8-6)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 15, - "elite_mob_count": 0, - "duration_seconds": 338.0, - "elite_details": "", - "total_mora": 977 - } - } - }, - { - "name": "6105--纳塔_镜璧山_神像1_(4-0)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 3, - "elite_mob_count": 0, - "duration_seconds": 65.0, - "elite_details": "", - "total_mora": 256 - } - } - }, - { - "name": "6106--纳塔_镜璧山_中部2", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 13, - "elite_mob_count": 0, - "duration_seconds": 181.0, - "elite_details": "", - "total_mora": 776 - } - } - }, - { - "name": "6107--纳塔_镜璧山_神像2_(9-6)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 15, - "elite_mob_count": 0, - "duration_seconds": 243.0, - "elite_details": "", - "total_mora": 949 - } - } - }, - { - "name": "6201--纳塔_奥奇_西北海岸_(8-1)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 12, - "elite_mob_count": 0, - "duration_seconds": 295.0, - "elite_details": "", - "total_mora": 739 - } - } - }, - { - "name": "6203--纳塔_奥奇_中层悬崖_11-2)", - "cover": { - "info": {}, - "farming_info": { - "normal_mob_count": 12, - "elite_mob_count": 1, - "duration_seconds": 375.0, - "elite_details": "200*1", - "total_mora": 1110 - } - } - }, - { - "name": "6204--纳塔_奥奇_神像_(7-1)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 154.0, - "elite_details": "", - "total_mora": 563 - } - } - }, - { - "name": "6205--纳塔_奥奇_东北岛屿_(5-1)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 6, - "elite_mob_count": 0, - "duration_seconds": 165.0, - "elite_details": "", - "total_mora": 421 - } - } - }, - { - "name": "6301--纳塔_翘枝崖_神像_(8-3)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 255.0, - "elite_details": "", - "total_mora": 758 - } - } - }, - { - "name": "6302--纳塔_翘枝崖_北海岸_(3-5)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 164.0, - "elite_details": "", - "total_mora": 463 - } - } - }, - { - "name": "6303--纳塔_翘枝崖_花语会南_(3-6)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 174.0, - "elite_details": "", - "total_mora": 526 - } - } - }, - { - "name": "6304--纳塔_翘枝崖_花语会南2_(3-9)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 10, - "elite_mob_count": 0, - "duration_seconds": 181.0, - "elite_details": "", - "total_mora": 562 - } - } - }, - { - "name": "6305--纳塔_翘枝崖_花语会南3_(4-4)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 170.0, - "elite_details": "", - "total_mora": 457 - } - } - }, - { - "name": "6306--纳塔_翘枝崖_柴薪之丘_(11-18)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 15, - "elite_mob_count": 0, - "duration_seconds": 303.0, - "elite_details": "", - "total_mora": 801 - } - } - }, - { - "name": "6401--纳塔_万火之瓯_竞技场_(14-17)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 31, - "elite_mob_count": 0, - "duration_seconds": 407.0, - "elite_details": "", - "total_mora": 1874 - } - } - }, - { - "name": "6402--纳塔_万火之瓯_竞技场2_(3-4)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 7, - "elite_mob_count": 0, - "duration_seconds": 139.0, - "elite_details": "", - "total_mora": 362 - } - } - }, - { - "name": "6403--纳塔_万火之瓯_竞技场3_(4-3)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 3, - "elite_mob_count": 0, - "duration_seconds": 71.0, - "elite_details": "", - "total_mora": 166 - } - } - }, - { - "name": "6404--纳塔_万火之瓯_竞技场4_(12-11)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 23, - "elite_mob_count": 0, - "duration_seconds": 302.0, - "elite_details": "", - "total_mora": 1328 - } - } - }, - { - "name": "6406--纳塔_万火之瓯_悬木人_(6-6)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 170.0, - "elite_details": "", - "total_mora": 719 - } - } - }, - { - "name": "6407--纳塔_万火之瓯_悬木人_(5-4)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 147.0, - "elite_details": "", - "total_mora": 498 - } - } - }, - { - "name": "6501--纳塔_坚岩隘谷_硫晶支脉_(6-4)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 12, - "elite_mob_count": 0, - "duration_seconds": 246.0, - "elite_details": "", - "total_mora": 772 - } - } - }, - { - "name": "6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 13, - "elite_mob_count": 0, - "duration_seconds": 214.0, - "elite_details": "", - "total_mora": 673 - } - } - }, - { - "name": "6503--纳塔_坚岩隘谷_隆崛坡_(6-1)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 201.0, - "elite_details": "", - "total_mora": 535 - } - } - }, - { - "name": "6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 4, - "elite_mob_count": 0, - "duration_seconds": 229.0, - "elite_details": "", - "total_mora": 262 - } - } - }, - { - "name": "6505--纳塔_坚岩隘谷_回声之子_(7-13)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 12, - "elite_mob_count": 0, - "duration_seconds": 198.0, - "elite_details": "", - "total_mora": 587 - } - } - }, - { - "name": "6506--纳塔_坚岩隘谷_回声之子_(8-9)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 17, - "elite_mob_count": 0, - "duration_seconds": 216.0, - "elite_details": "", - "total_mora": 1095 - } - } - }, - { - "name": "6507--纳塔_坚岩隘谷_中部河流_(15-9)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 26, - "elite_mob_count": 0, - "duration_seconds": 321.0, - "elite_details": "", - "total_mora": 1594 - } - } - }, - { - "name": "6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 199.0, - "elite_details": "", - "total_mora": 616 - } - } - }, - { - "name": "6509--纳塔_坚岩隘谷_南侧崖壁_(5-5)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 182.0, - "elite_details": "", - "total_mora": 554 - } - } - }, - { - "name": "6510--纳塔_坚岩隘谷_南侧崖壁_(8-13)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 16, - "elite_mob_count": 0, - "duration_seconds": 268.0, - "elite_details": "", - "total_mora": 961 - } - } - }, - { - "name": "6511--纳塔_坚岩隘谷_隆崛坡2_(2-3)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 5, - "elite_mob_count": 0, - "duration_seconds": 107.0, - "elite_details": "", - "total_mora": 312 - } - } - }, - { - "name": "6601--纳塔_涌流地_北侧山脉_(2-4)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 6, - "elite_mob_count": 0, - "duration_seconds": 62.0, - "elite_details": "", - "total_mora": 300 - } - } - }, - { - "name": "6602--纳塔_涌流地_北侧山脉2_(11-7)", - "cover": { - "info": {}, - "farming_info": { - "normal_mob_count": 26, - "elite_mob_count": 1, - "duration_seconds": 585.0, - "elite_details": "200*1", - "total_mora": 1656 - } - } - }, - { - "name": "6603--纳塔_涌流地_秘境西侧_(2-7)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 140.0, - "elite_details": "", - "total_mora": 447 - } - } - }, - { - "name": "6604--纳塔_涌流地_秘境南侧_(2-7)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 184.0, - "elite_details": "", - "total_mora": 712 - } - } - }, - { - "name": "6605--纳塔_涌流地_溶水域_(6-0)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 3, - "elite_mob_count": 0, - "duration_seconds": 120.0, - "elite_details": "", - "total_mora": 218 - } - } - }, - { - "name": "6606--纳塔_涌流地_溶水域2_(4-3)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 7, - "elite_mob_count": 0, - "duration_seconds": 116.0, - "elite_details": "", - "total_mora": 403 - } - } - }, - { - "name": "6607--纳塔_涌流地_溶水域3_(11-5)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 223.0, - "elite_details": "", - "total_mora": 776 - } - } - }, - { - "name": "6608--纳塔_涌流地_溶水域4_(2-3)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 5, - "elite_mob_count": 0, - "duration_seconds": 112.0, - "elite_details": "", - "total_mora": 280 - } - } - }, - { - "name": "6609--纳塔_涌流地_南侧小岛_(5-8)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 137.0, - "elite_details": "", - "total_mora": 520 - } - } - }, - { - "name": "6610--纳塔_涌流地_东侧小岛_(10-14)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 18, - "elite_mob_count": 0, - "duration_seconds": 317.0, - "elite_details": "", - "total_mora": 1091 - } - } - }, - { - "name": "6611--纳塔_涌流地_中央神像_(9-8)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 222.0, - "elite_details": "", - "total_mora": 835 - } - } - }, - { - "name": "6701--纳塔_踞石山_庙宇北侧_(3-5)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 140.0, - "elite_details": "", - "total_mora": 428 - } - } - }, - { - "name": "6703--纳塔_踞石山_北侧主峰_(10-9)", - "cover": { - "info": {}, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 1, - "duration_seconds": 399.0, - "elite_details": "200*1", - "total_mora": 991 - } - } - }, - { - "name": "6704--纳塔_踞石山_东侧海边_(3-7)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 10, - "elite_mob_count": 0, - "duration_seconds": 100.0, - "elite_details": "", - "total_mora": 499 - } - } - }, - { - "name": "6706--纳塔_踞石山_彩石顶2_(7-16)", - "cover": { - "info": {}, - "farming_info": { - "normal_mob_count": 20, - "elite_mob_count": 1, - "duration_seconds": 463.0, - "elite_details": "200*1", - "total_mora": 1156 - } - } - }, - { - "name": "6707--纳塔_踞石山_庙宇_(9-11)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 19, - "elite_mob_count": 0, - "duration_seconds": 340.0, - "elite_details": "", - "total_mora": 1129 - } - } - }, - { - "name": "6708--纳塔_踞石山_彩石顶3_(6-9)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 204.0, - "elite_details": "", - "total_mora": 700 - } - } - }, - { - "name": "6801--纳塔_安饶之野_镜壁山东南_(20)", - "cover": { - "info": {}, - "farming_info": { - "normal_mob_count": 17, - "elite_mob_count": 1, - "duration_seconds": 459.0, - "elite_details": "200*1", - "total_mora": 1252 - } - } - }, - { - "name": "6802--纳塔_安饶之野_镜壁山西南_(23)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 23, - "elite_mob_count": 0, - "duration_seconds": 431.0, - "elite_details": "", - "total_mora": 1746 - } - } - }, - { - "name": "6803--纳塔_熔岩辉龙像东南_(5)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 5, - "elite_mob_count": 0, - "duration_seconds": 244.0, - "elite_details": "", - "total_mora": 421 - } - } - }, - { - "name": "6804--纳塔_安饶之野东北海岸_(8)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 3, - "elite_mob_count": 0, - "duration_seconds": 206.0, - "elite_details": "", - "total_mora": 264 - } - } - }, - { - "name": "6805--纳塔_安饶之野东岩浆池_(5)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 6, - "elite_mob_count": 0, - "duration_seconds": 87.0, - "elite_details": "", - "total_mora": 316 - } - } - }, - { - "name": "6806--纳塔_安饶之野东斜坡_(16)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 204.0, - "elite_details": "", - "total_mora": 775 - } - } - }, - { - "name": "6807--纳塔_安饶之野神像_(8)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 136.0, - "elite_details": "", - "total_mora": 467 - } - } - }, - { - "name": "6808--纳塔_安饶之野_沃陆之邦北小岛_(14)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 10, - "elite_mob_count": 0, - "duration_seconds": 229.0, - "elite_details": "", - "total_mora": 571 - } - } - }, - { - "name": "6809--纳塔_安饶之野_石火坠陨处_(12)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 113.0, - "elite_details": "", - "total_mora": 569 - } - } - }, - { - "name": "6810--纳塔_安饶之野西南_(21)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 19, - "elite_mob_count": 0, - "duration_seconds": 397.0, - "elite_details": "", - "total_mora": 1248 - } - } - }, - { - "name": "6811--纳塔_安饶之野_荒废弃造坞_(10)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 198.0, - "elite_details": "", - "total_mora": 449 - } - } - }, - { - "name": "6812--纳塔_安饶之野_孑遗的留迹东南_(20)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 19, - "elite_mob_count": 0, - "duration_seconds": 304.0, - "elite_details": "", - "total_mora": 832 - } - } - }, - { - "name": "6813--纳塔_安饶之野西北_(8)", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 139.0, - "elite_details": "", - "total_mora": 426 - } - } - }, - { - "name": "5102枫丹廷北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 16, - "elite_mob_count": 0, - "duration_seconds": 358.0, - "elite_details": "", - "total_mora": 804 - } - } - }, - { - "name": "5201枫丹优兰湖西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 291.0, - "elite_details": "", - "total_mora": 603 - } - } - }, - { - "name": "5203枫丹垂柳东南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 12, - "elite_mob_count": 0, - "duration_seconds": 154.0, - "elite_details": "", - "total_mora": 486 - } - } - }, - { - "name": "5204(水免)枫丹垂柳东南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 121.0, - "elite_details": "", - "total_mora": 529 - } - } - }, - { - "name": "5207枫丹柔灯港北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 13, - "elite_mob_count": 0, - "duration_seconds": 302.0, - "elite_details": "", - "total_mora": 541 - } - } - }, - { - "name": "5208枫丹幽林东北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 194.0, - "elite_details": "", - "total_mora": 442 - } - } - }, - { - "name": "5209枫丹露景泉东", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 2, - "elite_mob_count": 0, - "duration_seconds": 98.0, - "elite_details": "", - "total_mora": 122 - } - } - }, - { - "name": "5210枫丹幽林东北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 133.0, - "elite_details": "", - "total_mora": 337 - } - } - }, - { - "name": "5301枫丹卡布堡南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 10, - "elite_mob_count": 0, - "duration_seconds": 109.0, - "elite_details": "", - "total_mora": 396 - } - } - }, - { - "name": "5401枫丹秋分东南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 5, - "elite_mob_count": 0, - "duration_seconds": 70.0, - "elite_details": "", - "total_mora": 316 - } - } - }, - { - "name": "5501枫丹螃蟹西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 21, - "elite_mob_count": 0, - "duration_seconds": 345.0, - "elite_details": "", - "total_mora": 1026 - } - } - }, - { - "name": "5502枫丹苍晶南山峰西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 15, - "elite_mob_count": 0, - "duration_seconds": 325.0, - "elite_details": "", - "total_mora": 690 - } - } - }, - { - "name": "5603枫丹场力北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 302.0, - "elite_details": "", - "total_mora": 671 - } - } - }, - { - "name": "5608枫丹新科学院", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 428.0, - "elite_details": "", - "total_mora": 596 - } - } - }, - { - "name": "5609(高危)枫丹千年骏麟", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 13, - "elite_mob_count": 0, - "duration_seconds": 231.0, - "elite_details": "", - "total_mora": 709 - } - } - }, - { - "name": "2101璃月无妄坡西南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 35, - "elite_mob_count": 0, - "duration_seconds": 549.0, - "elite_details": "", - "total_mora": 1914 - } - } - }, - { - "name": "2201璃月明蕴镇西北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 2, - "elite_mob_count": 0, - "duration_seconds": 55.0, - "elite_details": "", - "total_mora": 233 - } - } - }, - { - "name": "2202璃月瑶光滩西北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 20, - "elite_mob_count": 0, - "duration_seconds": 500.0, - "elite_details": "", - "total_mora": 1214 - } - } - }, - { - "name": "2301璃月太山府", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 7, - "elite_mob_count": 0, - "duration_seconds": 54.0, - "elite_details": "", - "total_mora": 324 - } - } - }, - { - "name": "2302璃月珉林", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 7, - "elite_mob_count": 0, - "duration_seconds": 54.0, - "elite_details": "", - "total_mora": 312 - } - } - }, - { - "name": "2303璃月琥牢山", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 212.0, - "elite_details": "", - "total_mora": 498 - } - } - }, - { - "name": "2401(高危)璃月地面矿区", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 173.0, - "elite_details": "", - "total_mora": 572 - } - } - }, - { - "name": "2501璃月遁玉陵", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 233.0, - "elite_details": "", - "total_mora": 971 - } - } - }, - { - "name": "2502璃月群玉阁西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 24, - "elite_mob_count": 0, - "duration_seconds": 423.0, - "elite_details": "", - "total_mora": 984 - } - } - }, - { - "name": "2601(水免)璃月港东北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 26, - "elite_mob_count": 0, - "duration_seconds": 631.0, - "elite_details": "", - "total_mora": 1422 - } - } - }, - { - "name": "2601地下水泽西南三飞萤", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 3, - "elite_mob_count": 0, - "duration_seconds": 76.0, - "elite_details": "", - "total_mora": 401 - } - } - }, - { - "name": "2602层岩地下主矿道东", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 5, - "elite_mob_count": 0, - "duration_seconds": 109.0, - "elite_details": "", - "total_mora": 206 - } - } - }, - { - "name": "2605璃月临时主矿道西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 5, - "elite_mob_count": 0, - "duration_seconds": 129.0, - "elite_details": "", - "total_mora": 297 - } - } - }, - { - "name": "2608璃月巨渊主矿区", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 5, - "elite_mob_count": 0, - "duration_seconds": 191.0, - "elite_details": "", - "total_mora": 217 - } - } - }, - { - "name": "3101(高危)稻妻白狐之野南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 12, - "elite_mob_count": 0, - "duration_seconds": 179.0, - "elite_details": "", - "total_mora": 463 - } - } - }, - { - "name": "3102稻妻绀田村南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 16, - "elite_mob_count": 0, - "duration_seconds": 209.0, - "elite_details": "", - "total_mora": 637 - } - } - }, - { - "name": "3105(水免)稻妻镇守之森", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 13, - "elite_mob_count": 0, - "duration_seconds": 168.0, - "elite_details": "", - "total_mora": 746 - } - } - }, - { - "name": "3106(水免)稻妻神里屋敷", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 230.0, - "elite_details": "", - "total_mora": 536 - } - } - }, - { - "name": "3107稻妻绀田村", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 175.0, - "elite_details": "", - "total_mora": 375 - } - } - }, - { - "name": "3108稻妻荒海南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 14, - "elite_mob_count": 0, - "duration_seconds": 231.0, - "elite_details": "", - "total_mora": 647 - } - } - }, - { - "name": "3201稻妻九条阵屋", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 25, - "elite_mob_count": 0, - "duration_seconds": 492.0, - "elite_details": "", - "total_mora": 1177 - } - } - }, - { - "name": "3202稻妻踏鞴东北", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 6, - "elite_mob_count": 0, - "duration_seconds": 54.0, - "elite_details": "", - "total_mora": 240 - } - } - }, - { - "name": "3204稻妻踏鞴神像2", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 6, - "elite_mob_count": 0, - "duration_seconds": 117.0, - "elite_details": "", - "total_mora": 363 - } - } - }, - { - "name": "3205(高危)稻妻踏鞴反应炉东三骗骗花", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 136.0, - "elite_details": "", - "total_mora": 443 - } - } - }, - { - "name": "3207稻妻踏鞴浪船", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 5, - "elite_mob_count": 0, - "duration_seconds": 87.0, - "elite_details": "", - "total_mora": 270 - } - } - }, - { - "name": "3208稻妻借景之馆", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 4, - "elite_mob_count": 0, - "duration_seconds": 45.0, - "elite_details": "", - "total_mora": 216 - } - } - }, - { - "name": "3209稻妻踏鞴公义东南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 13, - "elite_mob_count": 0, - "duration_seconds": 196.0, - "elite_details": "", - "total_mora": 647 - } - } - }, - { - "name": "3210稻妻公义飞萤", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 2, - "elite_mob_count": 0, - "duration_seconds": 54.0, - "elite_details": "", - "total_mora": 211 - } - } - }, - { - "name": "3211稻妻名椎滩东", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 20, - "elite_mob_count": 0, - "duration_seconds": 378.0, - "elite_details": "", - "total_mora": 973 - } - } - }, - { - "name": "3212稻妻名椎滩西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 9, - "elite_mob_count": 0, - "duration_seconds": 102.0, - "elite_details": "", - "total_mora": 411 - } - } - }, - { - "name": "3301稻妻绯木村神像", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 23, - "elite_mob_count": 0, - "duration_seconds": 310.0, - "elite_details": "", - "total_mora": 1093 - } - } - }, - { - "name": "3302稻妻蛇骨矿洞南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 4, - "elite_mob_count": 0, - "duration_seconds": 49.0, - "elite_details": "", - "total_mora": 168 - } - } - }, - { - "name": "3303(水免)稻妻剑鬼东2", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 13, - "elite_mob_count": 0, - "duration_seconds": 162.0, - "elite_details": "", - "total_mora": 636 - } - } - }, - { - "name": "3304稻妻剑鬼东3", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 168.0, - "elite_details": "", - "total_mora": 442 - } - } - }, - { - "name": "3305稻妻剑鬼东1", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 23, - "elite_mob_count": 0, - "duration_seconds": 298.0, - "elite_details": "", - "total_mora": 1104 - } - } - }, - { - "name": "3306稻妻藤兜砦西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 19, - "elite_mob_count": 0, - "duration_seconds": 389.0, - "elite_details": "", - "total_mora": 925 - } - } - }, - { - "name": "3501稻妻渊下蛇肠之路", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 13, - "elite_mob_count": 0, - "duration_seconds": 197.0, - "elite_details": "", - "total_mora": 603 - } - } - }, - { - "name": "3502稻妻狭间之街西南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 7, - "elite_mob_count": 0, - "duration_seconds": 39.0, - "elite_details": "", - "total_mora": 288 - } - } - }, - { - "name": "3506稻妻大日御舆西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 162.0, - "elite_details": "", - "total_mora": 356 - } - } - }, - { - "name": "3607稻妻大日御舆南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 4, - "elite_mob_count": 0, - "duration_seconds": 67.0, - "elite_details": "", - "total_mora": 166 - } - } - }, - { - "name": "3610稻妻大日御舆东", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 6, - "elite_mob_count": 0, - "duration_seconds": 56.0, - "elite_details": "", - "total_mora": 235 - } - } - }, - { - "name": "3702稻妻鹤观东", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 10, - "elite_mob_count": 0, - "duration_seconds": 166.0, - "elite_details": "", - "total_mora": 435 - } - } - }, - { - "name": "3803稻妻平海砦", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 4, - "elite_mob_count": 0, - "duration_seconds": 69.0, - "elite_details": "", - "total_mora": 166 - } - } - }, - { - "name": "3804稻妻平海砦", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 11, - "elite_mob_count": 0, - "duration_seconds": 204.0, - "elite_details": "", - "total_mora": 592 - } - } - }, - { - "name": "3805稻妻平海砦东", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 8, - "elite_mob_count": 0, - "duration_seconds": 98.0, - "elite_details": "", - "total_mora": 299 - } - } - }, - { - "name": "3806稻妻平海砦南", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 12, - "elite_mob_count": 0, - "duration_seconds": 167.0, - "elite_details": "", - "total_mora": 469 - } - } - }, - { - "name": "1101(1-23)蒙德望风角", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 20, - "elite_mob_count": 0, - "duration_seconds": 358.0, - "elite_details": "", - "total_mora": 819 - } - } - }, - { - "name": "1103(0-22)蒙德望风山地", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 23, - "elite_mob_count": 0, - "duration_seconds": 239.0, - "elite_details": "", - "total_mora": 1005 - } - } - }, - { - "name": "1104(0-18)蒙德千风西", - "cover": { - "info": { - "enable_monster_loot_split": true - }, - "farming_info": { - "normal_mob_count": 18, - "elite_mob_count": 0, - "duration_seconds": 190.0, - "elite_details": "", - "total_mora": 719 - } - } - }, - { - "name": "1202(1-27)蒙德奔狼领", - "cover": { - "info": {}, - "farming_info": { - "normal_mob_count": 26, - "elite_mob_count": 1, - "duration_seconds": 257.0, - "elite_details": "200*1", - "total_mora": 1305 - } - } - }, - { - "name": "1203(2-26)蒙德塞西莉亚苗圃", - "cover": { - "info": {}, - "farming_info": { - "normal_mob_count": 26, - "elite_mob_count": 2, - "duration_seconds": 361.0, - "elite_details": "200*2", - "total_mora": 1503 - } - } - }, - { - "name": "4101(高危)须弥二净甸", - "cover": { - "info": {}, - "farming_info": { - "normal_mob_count": 49, - "elite_mob_count": 2, - "duration_seconds": 821.0, - "elite_details": "200*2", - "total_mora": 2446 - } - } - } - ] -} - \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/02\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\345\260\217\346\200\252\357\274\2103\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/02\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\345\260\217\346\200\252\357\274\2103\357\274\211.json" deleted file mode 100644 index 77cf81f87f..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/02\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\345\260\217\346\200\252\357\274\2103\357\274\211.json" +++ /dev/null @@ -1,49 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757900918169, - "map_match_method": "", - "map_name": "Teyvat", - "name": "02挪德卡莱伦波岛小怪(3)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 9186.25, - "y": 2847.5 - }, - { - "action": "stop_flying", - "action_params": "", - "id": 2, - "move_mode": "fly", - "type": "path", - "x": 9199.5, - "y": 2873.5 - }, - { - "action": "fight", - "action_params": "", - "id": 3, - "move_mode": "walk", - "type": "path", - "x": 9199.5, - "y": 2873.5 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/02\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/02\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" deleted file mode 100644 index 074b44a122..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/02\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" +++ /dev/null @@ -1,40 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833973448, - "map_match_method": "", - "map_name": "Teyvat", - "name": "02挪德卡莱伦波岛(200_1)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 9359.75, - "y": 1853.5 - }, - { - "action": "fight", - "action_params": "", - "id": 2, - "move_mode": "fly", - "type": "path", - "x": 9346.75, - "y": 1833.25 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/03\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/03\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" deleted file mode 100644 index eb23dc24df..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/03\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" +++ /dev/null @@ -1,49 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833970809, - "map_match_method": "", - "map_name": "Teyvat", - "name": "03挪德卡莱伦波岛(200_1)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 9356.5, - "y": 2108.75 - }, - { - "action": "", - "action_params": "", - "id": 2, - "move_mode": "dash", - "type": "path", - "x": 9329.5, - "y": 2123.5 - }, - { - "action": "fight", - "action_params": "", - "id": 3, - "move_mode": "dash", - "type": "path", - "x": 9341.5, - "y": 2153.5 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/04\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_2\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/04\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_2\357\274\211.json" deleted file mode 100644 index 785e82afb0..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/04\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_2\357\274\211.json" +++ /dev/null @@ -1,49 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757901692744, - "map_match_method": "", - "map_name": "Teyvat", - "name": "04挪德卡莱伦波岛(400_2)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 9558.25, - "y": 2134.75 - }, - { - "action": "stop_flying", - "action_params": "", - "id": 2, - "move_mode": "fly", - "type": "path", - "x": 9531.3, - "y": 2229.2 - }, - { - "action": "fight", - "action_params": "", - "id": 3, - "move_mode": "dash", - "type": "path", - "x": 9646, - "y": 2383.75 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/06\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_1\357\274\214200_10\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/06\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_1\357\274\214200_10\357\274\211.json" deleted file mode 100644 index 11c316c313..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/06\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_1\357\274\214200_10\357\274\211.json" +++ /dev/null @@ -1,265 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833965600, - "map_match_method": "", - "map_name": "Teyvat", - "name": "06挪德卡莱伦波岛(400_1,200_10)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 9215.5, - "y": 1899.25 - }, - { - "action": "fight", - "action_params": "", - "id": 2, - "move_mode": "dash", - "type": "path", - "x": 9187.5, - "y": 1922.1 - }, - { - "action": "", - "action_params": "", - "id": 3, - "move_mode": "dash", - "type": "path", - "x": 9226.5, - "y": 1952.2 - }, - { - "action": "", - "action_params": "", - "id": 4, - "move_mode": "dash", - "type": "path", - "x": 9230.0, - "y": 1975.25 - }, - { - "action": "", - "action_params": "", - "id": 5, - "move_mode": "dash", - "type": "path", - "x": 9238.5, - "y": 1989.25 - }, - { - "action": "", - "action_params": "", - "id": 6, - "move_mode": "dash", - "type": "path", - "x": 9237.0, - "y": 2004.75 - }, - { - "action": "fight", - "action_params": "", - "id": 7, - "move_mode": "dash", - "type": "path", - "x": 9228.5, - "y": 2020.0 - }, - { - "action": "", - "action_params": "", - "id": 8, - "move_mode": "walk", - "type": "path", - "x": 9228.5, - "y": 2020.0 - }, - { - "action": "", - "action_params": "", - "id": 9, - "move_mode": "dash", - "type": "path", - "x": 9220.5, - "y": 2022.7 - }, - { - "action": "", - "action_params": "", - "id": 10, - "move_mode": "dash", - "type": "path", - "x": 9192.5, - "y": 2072.0 - }, - { - "action": "fight", - "action_params": "", - "id": 11, - "move_mode": "dash", - "type": "path", - "x": 9193.0, - "y": 2088.5 - }, - { - "action": "", - "action_params": "", - "id": 12, - "move_mode": "walk", - "type": "path", - "x": 9193.0, - "y": 2088.5 - }, - { - "action": "", - "action_params": "", - "id": 13, - "move_mode": "dash", - "type": "path", - "x": 9178.5, - "y": 2069.5 - }, - { - "action": "", - "action_params": "", - "id": 14, - "move_mode": "dash", - "type": "path", - "x": 9154.75, - "y": 2071.75 - }, - { - "action": "", - "action_params": "", - "id": 15, - "move_mode": "dash", - "type": "path", - "x": 9131.0, - "y": 2087.5 - }, - { - "action": "", - "action_params": "", - "id": 16, - "move_mode": "dash", - "type": "path", - "x": 9091.5813, - "y": 2067.7983 - }, - { - "action": "fight", - "action_params": "", - "id": 17, - "move_mode": "dash", - "type": "path", - "x": 9091.2, - "y": 2048.7 - }, - { - "action": "", - "action_params": "", - "id": 18, - "move_mode": "walk", - "type": "path", - "x": 9091.2, - "y": 2048.7 - }, - { - "action": "", - "action_params": "", - "id": 19, - "move_mode": "dash", - "type": "path", - "x": 9091.75, - "y": 2076.25 - }, - { - "action": "", - "action_params": "", - "id": 20, - "move_mode": "dash", - "type": "path", - "x": 9054.5, - "y": 2083.5 - }, - { - "action": "fight", - "action_params": "", - "id": 21, - "move_mode": "dash", - "type": "path", - "x": 9037.1, - "y": 2100.5 - }, - { - "action": "", - "action_params": "", - "id": 22, - "move_mode": "walk", - "type": "path", - "x": 9037.1, - "y": 2100.5 - }, - { - "action": "", - "action_params": "", - "id": 23, - "move_mode": "dash", - "type": "path", - "x": 9042.75, - "y": 2125.5 - }, - { - "action": "fight", - "action_params": "", - "id": 24, - "move_mode": "dash", - "type": "path", - "x": 9003.2, - "y": 2161.5 - }, - { - "action": "", - "action_params": "", - "id": 25, - "move_mode": "walk", - "type": "path", - "x": 8999.5, - "y": 2155.25 - }, - { - "action": "", - "action_params": "", - "id": 26, - "move_mode": "dash", - "type": "path", - "x": 8981.75, - "y": 2173.25 - }, - { - "action": "fight", - "action_params": "", - "id": 27, - "move_mode": "dash", - "type": "path", - "x": 8922.1, - "y": 2174.6 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/10\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_2\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/10\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_2\357\274\211.json" deleted file mode 100644 index 8de71376de..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/10\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_2\357\274\211.json" +++ /dev/null @@ -1,67 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833957129, - "map_match_method": "", - "map_name": "Teyvat", - "name": "10挪德卡莱希汐岛(200_2)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 10552.0, - "y": 1779.0 - }, - { - "action": "", - "action_params": "", - "id": 2, - "move_mode": "dash", - "type": "path", - "x": 10572.4375, - "y": 1795.25 - }, - { - "action": "fight", - "action_params": "", - "id": 3, - "move_mode": "dash", - "type": "path", - "x": 10579.2896, - "y": 1736.6086 - }, - { - "action": "", - "action_params": "", - "id": 4, - "move_mode": "walk", - "type": "teleport", - "x": 10552.0, - "y": 1779.0 - }, - { - "action": "fight", - "action_params": "", - "id": 5, - "move_mode": "run", - "type": "path", - "x": 10492.0875, - "y": 1807.4733 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/11\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/11\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" deleted file mode 100644 index 0cb0ee022e..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/11\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" +++ /dev/null @@ -1,67 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833955100, - "map_match_method": "", - "map_name": "Teyvat", - "name": "11挪德卡莱希汐岛(200_1)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 10528.75, - "y": 1915.75 - }, - { - "action": "", - "action_params": "", - "id": 2, - "move_mode": "run", - "type": "path", - "x": 10544.2, - "y": 1915.5 - }, - { - "action": "", - "action_params": "", - "id": 3, - "move_mode": "run", - "type": "path", - "x": 10603.75, - "y": 1888.75 - }, - { - "action": "combat_script", - "action_params": "wait(0.3),keypress(VK_SPACE),wait(1.0),click", - "id": 4, - "move_mode": "fly", - "type": "path", - "x": 10641.75, - "y": 1905.75 - }, - { - "action": "fight", - "action_params": "", - "id": 5, - "move_mode": "walk", - "type": "path", - "x": 10641.75, - "y": 1905.75 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/12\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/12\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" deleted file mode 100644 index 65fee92c7b..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/12\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" +++ /dev/null @@ -1,67 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833953327, - "map_match_method": "", - "map_name": "Teyvat", - "name": "12挪德卡莱希汐岛(200_1)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 11058, - "y": 1590 - }, - { - "action": "", - "action_params": "", - "id": 2, - "move_mode": "run", - "type": "path", - "x": 11048.75, - "y": 1575.25 - }, - { - "action": "", - "action_params": "", - "id": 3, - "move_mode": "fly", - "type": "path", - "x": 11031.5, - "y": 1550.75 - }, - { - "action": "stop_flying", - "action_params": "", - "id": 4, - "move_mode": "fly", - "type": "path", - "x": 11072.5, - "y": 1533.5 - }, - { - "action": "fight", - "action_params": "", - "id": 5, - "move_mode": "run", - "type": "path", - "x": 11072.5, - "y": 1533.5 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/17\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/17\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_1\357\274\211.json" deleted file mode 100644 index 3dbe8b5b0d..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/17\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_1\357\274\211.json" +++ /dev/null @@ -1,58 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833940063, - "map_match_method": "", - "map_name": "Teyvat", - "name": "17挪德卡莱帕哈岛(200_1)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 9597.5, - "y": 3386.5 - }, - { - "action": "", - "action_params": "", - "id": 2, - "move_mode": "run", - "type": "path", - "x": 9625.5, - "y": 3389 - }, - { - "action": "stop_flying", - "action_params": "", - "id": 3, - "move_mode": "fly", - "type": "path", - "x": 9699.875, - "y": 3383.5 - }, - { - "action": "fight", - "action_params": "", - "id": 4, - "move_mode": "walk", - "type": "path", - "x": 9699.875, - "y": 3383.5 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/19\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_5\357\274\214400_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/19\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_5\357\274\214400_1\357\274\211.json" deleted file mode 100644 index 6c574f8cde..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/19\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_5\357\274\214400_1\357\274\211.json" +++ /dev/null @@ -1,76 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833935352, - "map_match_method": "", - "map_name": "Teyvat", - "name": "19挪德卡莱帕哈岛(200_5,400_1)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 9597.5, - "y": 3386.5 - }, - { - "action": "", - "action_params": "", - "id": 2, - "move_mode": "dash", - "type": "path", - "x": 9504.5, - "y": 3463.5 - }, - { - "action": "fight", - "action_params": "", - "id": 3, - "move_mode": "dash", - "type": "path", - "x": 9469.8, - "y": 3463.7 - }, - { - "action": "", - "action_params": "", - "id": 4, - "move_mode": "dash", - "type": "path", - "x": 9455.5, - "y": 3491.5 - }, - { - "action": "stop_flying", - "action_params": "", - "id": 5, - "move_mode": "fly", - "type": "path", - "x": 9515.5, - "y": 3535 - }, - { - "action": "fight", - "action_params": "", - "id": 6, - "move_mode": "walk", - "type": "path", - "x": 9515.5, - "y": 3535 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/20\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_2\357\274\214400_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/20\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_2\357\274\214400_1\357\274\211.json" deleted file mode 100644 index f4c611adb2..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/20\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_2\357\274\214400_1\357\274\211.json" +++ /dev/null @@ -1,58 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "", - "name": "半夏" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757833936680, - "map_match_method": "", - "map_name": "Teyvat", - "name": "20挪德卡莱帕哈岛(200_2,400_1)", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 9868.5, - "y": 3594.5 - }, - { - "action": "", - "action_params": "", - "id": 2, - "move_mode": "fly", - "type": "path", - "x": 9865.5, - "y": 3577 - }, - { - "action": "stop_flying", - "action_params": "", - "id": 3, - "move_mode": "fly", - "type": "path", - "x": 9847.5, - "y": 3566 - }, - { - "action": "fight", - "action_params": "", - "id": 4, - "move_mode": "dash", - "type": "path", - "x": 9805, - "y": 3526 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210 \344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210-\344\273\273\346\204\217\345\274\223+\347\210\261\345\217\257\350\217\262.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210 \344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210-\344\273\273\346\204\217\345\274\223+\347\210\261\345\217\257\350\217\262.json" deleted file mode 100644 index 6c5599c9ed..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210 \344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210-\344\273\273\346\204\217\345\274\223+\347\210\261\345\217\257\350\217\262.json" +++ /dev/null @@ -1,176 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "https://github.com/jiegedabaobei", - "name": "汐" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757186308610, - "map_match_method": "", - "map_name": "Teyvat", - "name": "003枫丹药剂师-任意弓+爱可菲", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 3032.4014, - "y": 3728.3259 - }, - { - "action": "log_output", - "action_params": "[注意]此版本依靠长枪/大剑角色下落削韧击飞+药剂师会后退几步保持距离攻击来淹他;尽量使用\"爱可菲\"做行走位", - "id": 2, - "locked": false, - "move_mode": "dash", - "type": "orientation", - "x": 3011.5957, - "y": 3735.3333 - }, - { - "action": "", - "action_params": "", - "id": 3, - "move_mode": "dash", - "type": "path", - "x": 3011.5957, - "y": 3735.3333 - }, - { - "action": "combat_script", - "action_params": "attack(0.3)", - "id": 4, - "move_mode": "fly", - "type": "path", - "x": 3004.2021, - "y": 3744.5266 - }, - { - "action": "", - "action_params": "", - "id": 5, - "move_mode": "dash", - "type": "path", - "x": 2978.4414, - "y": 3751.4048 - }, - { - "action": "combat_script", - "action_params": "keypress(f);芙宁娜 e;爱可菲 e;伊涅芙 e;钟离 a(0.1),e(hold);茜特菈莉 e;莱依拉 e;绮良良 e;", - "id": 6, - "move_mode": "dash", - "type": "path", - "x": 2953.0293, - "y": 3761.783 - }, - { - "action": "combat_script", - "action_params": "click(middle);恰斯卡 j;欧洛伦 j;希格雯 j;林尼 j;珐露珊 j;提纳里 j;柯莱 j;夜兰 j;五郎 j;九条裟罗 j;肖宫 j;甘雨 j;达达利亚 j;迪奥娜 j;温迪 j;菲谢尔 j;", - "id": 7, - "move_mode": "dash", - "type": "target", - "x": 2943.2002, - "y": 3768.0991 - }, - { - "action": "combat_script", - "action_params": "wait(0.2),keypress(R),wait(0.3),moveby(0,350),wait(0.3),click,wait(0.3),moveby(0,55),wait(0.3),click,wait(0.3),moveby(0,55),wait(0.3),click,wait(0.3),moveby(0,0),wait(0.3),click,wait(0.3),moveby(0,0),wait(0.3),click,keypress(R),wait(1.8)", - "id": 8, - "move_mode": "walk", - "type": "orientation", - "x": 2839.25, - "y": 3801.7538 - }, - { - "action": "combat_script", - "action_params": "wait(1),attack(0.5);爱可菲 keydown(d),attack(0.05),e,wait(0.15),attack(0.15),charge(1),attack(0.15),charge(1),keyup(d);", - "id": 9, - "move_mode": "fly", - "type": "path", - "x": 2919.6279, - "y": 3788.4829 - }, - { - "action": "", - "action_params": "", - "id": 10, - "move_mode": "walk", - "type": "teleport", - "x": 3032.4014, - "y": 3728.3259 - }, - { - "action": "", - "action_params": "", - "id": 11, - "move_mode": "dash", - "type": "path", - "x": 3011.5957, - "y": 3735.3333 - }, - { - "action": "combat_script", - "action_params": "attack(0.3)", - "id": 12, - "move_mode": "fly", - "type": "path", - "x": 3004.2021, - "y": 3744.5266 - }, - { - "action": "", - "action_params": "", - "id": 13, - "move_mode": "dash", - "type": "path", - "x": 2978.4414, - "y": 3751.4048 - }, - { - "action": "combat_script", - "action_params": "keypress(f);芙宁娜 e;爱可菲 e;伊涅芙 e;钟离 a(0.1),e(hold);茜特菈莉 e;莱依拉 e;绮良良 e;", - "id": 14, - "move_mode": "dash", - "type": "path", - "x": 2953.0293, - "y": 3761.783 - }, - { - "action": "combat_script", - "action_params": "click(middle);恰斯卡 j;欧洛伦 j;希格雯 j;林尼 j;珐露珊 j;提纳里 j;柯莱 j;夜兰 j;五郎 j;九条裟罗 j;肖宫 j;甘雨 j;达达利亚 j;迪奥娜 j;温迪 j;菲谢尔 j;", - "id": 15, - "move_mode": "dash", - "type": "target", - "x": 2943.2002, - "y": 3768.0991 - }, - { - "action": "combat_script", - "action_params": "wait(0.2),keypress(R),wait(0.3),moveby(0,350),wait(0.3),click,wait(0.3),moveby(0,55),wait(0.3),click,wait(0.3),moveby(0,55),wait(0.3),click,wait(0.3),moveby(0,0),wait(0.3),click,wait(0.3),moveby(0,0),wait(0.3),click,keypress(R),wait(1.8)", - "id": 16, - "move_mode": "walk", - "type": "orientation", - "x": 2839.25, - "y": 3801.7538 - }, - { - "action": "combat_script", - "action_params": "wait(1),attack(0.5);爱可菲 keydown(d),attack(0.05),e,wait(0.15),attack(0.15),charge(1),attack(0.15),charge(1),keyup(d);", - "id": 17, - "move_mode": "fly", - "type": "path", - "x": 2919.6279, - "y": 3788.4829 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210 \344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210-\347\224\230\351\233\250.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210 \344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210-\347\224\230\351\233\250.json" deleted file mode 100644 index ba49fbc9e4..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210 \344\274\240\345\245\207/003\346\236\253\344\270\271\350\215\257\345\211\202\345\270\210-\347\224\230\351\233\250.json" +++ /dev/null @@ -1,177 +0,0 @@ -{ - "info": { - "authors": [ - { - "links": "https://github.com/jiegedabaobei", - "name": "汐" - } - ], - "bgi_version": "0.45.0", - "description": "", - "enable_monster_loot_split": false, - "last_modified_time": 1757186738457, - "map_match_method": "", - "map_name": "Teyvat", - "name": "003枫丹药剂师-甘雨", - "tags": [], - "type": "collect", - "version": "1.0" - }, - "positions": [ - { - "action": "", - "action_params": "", - "id": 1, - "move_mode": "walk", - "type": "teleport", - "x": 3032.4014, - "y": 3728.3259 - }, - { - "action": "log_output", - "action_params": "[注意]此版本史莱姆会干扰甘雨射箭;\n①带后台C角色打死史莱姆\n②带盾硬抗\n③避免甘雨射歪,游戏默认灵敏度默认全3;win鼠标灵敏度默认10", - "id": 2, - "locked": false, - "move_mode": "dash", - "type": "orientation", - "x": 3011.5957, - "y": 3735.3333 - }, - { - "action": "", - "action_params": "", - "id": 3, - "move_mode": "dash", - "type": "path", - "x": 3011.5957, - "y": 3735.3333 - }, - { - "action": "combat_script", - "action_params": "attack(0.3)", - "id": 4, - "move_mode": "fly", - "type": "path", - "x": 3004.2021, - "y": 3744.5266 - }, - { - "action": "", - "action_params": "", - "id": 5, - "move_mode": "dash", - "type": "path", - "x": 2978.4414, - "y": 3751.4048 - }, - { - "action": "combat_script", - "action_params": "keypress(f);芙宁娜 e;爱可菲 e;伊涅芙 e;菲谢尔 e;钟离 a(0.1),e(hold);茜特菈莉 e;莱依拉 e;伊涅芙 e;绮良良 e;", - "id": 6, - "locked": false, - "move_mode": "dash", - "type": "path", - "x": 2953.0293, - "y": 3761.783 - }, - { - "action": "combat_script", - "action_params": "click(middle);甘雨 j;", - "id": 7, - "move_mode": "dash", - "type": "target", - "x": 2943.2002, - "y": 3768.0991 - }, - { - "action": "combat_script", - "action_params": "甘雨 wait(0.2),keypress(R),wait(0.3),moveby(0,350),wait(0.3),click,wait(0.3),moveby(0,55),wait(0.3),click,wait(0.3),moveby(0,55),wait(0.3),click,wait(0.3),moveby(0,0),wait(0.3),click,wait(0.3),moveby(-235,0),wait(0.3),click,wait(0.3),moveby(0,240),wait(2.8),click,wait(0.1),keypress(R);", - "id": 8, - "move_mode": "walk", - "type": "orientation", - "x": 2839.25, - "y": 3801.7538 - }, - { - "action": "combat_script", - "action_params": "wait(2),s(3),keypress(m)", - "id": 9, - "move_mode": "fly", - "type": "path", - "x": 2931.1211, - "y": 3780.5957 - }, - { - "action": "", - "action_params": "", - "id": 10, - "move_mode": "walk", - "type": "teleport", - "x": 3032.4014, - "y": 3728.3259 - }, - { - "action": "", - "action_params": "", - "id": 11, - "move_mode": "dash", - "type": "path", - "x": 3011.5957, - "y": 3735.3333 - }, - { - "action": "combat_script", - "action_params": "attack(0.3)", - "id": 12, - "move_mode": "fly", - "type": "path", - "x": 3004.2021, - "y": 3744.5266 - }, - { - "action": "", - "action_params": "", - "id": 13, - "move_mode": "dash", - "type": "path", - "x": 2978.4414, - "y": 3751.4048 - }, - { - "action": "combat_script", - "action_params": "keypress(f);爱可菲 e;伊涅芙 e;钟离 a(0.1),e(hold);茜特菈莉 e;莱依拉 e;伊涅芙 e;绮良良 e;", - "id": 14, - "move_mode": "dash", - "type": "path", - "x": 2953.0293, - "y": 3761.783 - }, - { - "action": "combat_script", - "action_params": "click(middle);甘雨 j;", - "id": 15, - "move_mode": "dash", - "type": "target", - "x": 2943.2002, - "y": 3768.0991 - }, - { - "action": "combat_script", - "action_params": "甘雨 wait(0.2),keypress(R),wait(0.3),moveby(0,350),wait(0.3),click,wait(0.3),moveby(0,55),wait(0.3),click,wait(0.3),moveby(0,55),wait(0.3),click,wait(0.3),moveby(0,0),wait(0.3),click,wait(0.3),moveby(-235,0),wait(0.3),click,wait(0.3),moveby(0,240),wait(2.8),click,wait(0.1),keypress(R);", - "id": 16, - "move_mode": "walk", - "type": "orientation", - "x": 2839.25, - "y": 3801.7538 - }, - { - "action": "combat_script", - "action_params": "wait(2),s(3),keypress(m)", - "id": 17, - "move_mode": "fly", - "type": "path", - "x": 2931.1211, - "y": 3780.5957 - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/control.json5" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/control.json5" deleted file mode 100644 index cc15b2d4bc..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/0\344\274\240\345\245\207/control.json5" +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ref":".." -} - \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/241\347\222\203\346\234\210\345\261\202\345\262\251\345\234\260\344\270\213\347\213\255\345\205\211\351\201\223\357\274\210600_2\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/241\347\222\203\346\234\210\345\261\202\345\262\251\345\234\260\344\270\213\347\213\255\345\205\211\351\201\223\357\274\210600_2\357\274\211.json" index b5e2a76c6a..e1f072b5a8 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/241\347\222\203\346\234\210\345\261\202\345\262\251\345\234\260\344\270\213\347\213\255\345\205\211\351\201\223\357\274\210600_2\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/241\347\222\203\346\234\210\345\261\202\345\262\251\345\234\260\344\270\213\347\213\255\345\205\211\351\201\223\357\274\210600_2\357\274\211.json" @@ -1,140 +1,107 @@ { "info": { - "name": "241璃月层岩地下狭光道(600_2)", - "type": "collect", "author": "汐", - "version": "1.0", - "description": " 路线信息:该路线预计用时113.15秒,包含2只精英与3只小怪,预计收入1321.5摩拉,包含以下怪物:1只黯色空壳·破阵、1只岩龙蜥、3只浮游水蕈兽。", - "map_name": "TheChasm", - "bgi_version": "0.45.0", - "tags": [], - "last_modified_time": 1755541642302, "authors": [ { "name": "汐", "links": "https://github.com/jiegedabaobei" } ], + "bgi_version": "0.45.0", + "description": " 路线信息:该路线预计用时113.15秒,包含2只精英与3只小怪,预计收入1321.5摩拉,包含以下怪物:1只黯色空壳·破阵、1只岩龙蜥。", "enable_monster_loot_split": false, - "map_match_method": "" + "last_modified_time": 1757931791530, + "map_match_method": "", + "map_name": "TheChasm", + "name": "241璃月层岩地下狭光道(600_2)", + "tags": [], + "type": "collect", + "version": "1.0" }, "positions": [ { - "id": 1, - "x": 808.73, - "y": 339.39, "action": "", - "move_mode": "walk", "action_params": "", - "type": "teleport" + "id": 1, + "locked": false, + "move_mode": "walk", + "type": "teleport", + "x": 808.73, + "y": 339.39 }, { - "id": 2, - "x": 814.07, - "y": 294.64, "action": "", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 2, + "move_mode": "dash", + "type": "path", + "x": 814.07, + "y": 294.64 }, { - "id": 3, - "x": 818.71, - "y": 293.39, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 3, + "move_mode": "dash", + "type": "path", + "x": 818.71, + "y": 293.39 }, { - "id": 4, - "x": 814.07, - "y": 294.64, "action": "", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 4, + "locked": false, + "move_mode": "walk", + "type": "teleport", + "x": 808.73, + "y": 339.39 }, { - "id": 5, - "x": 769.69, - "y": 293.13, - "action": "stop_flying", - "move_mode": "fly", + "action": "", "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 735.9062, - "y": 302.3437, - "action": "combat_script", + "id": 5, "move_mode": "dash", - "action_params": "keypress(f);钟离 d(0.1),wait(0.2),e(hold);茜特菈莉 e;莱依拉 e;伊涅芙 e;", - "type": "path" - }, - { - "id": 7, - "x": 730.22, - "y": 309.94, - "action": "combat_script", - "move_mode": "walk", - "action_params": "w(0.5),dash,wait(0.5),s(0.2),dash", - "type": "orientation" - }, - { - "id": 8, - "x": 730.22, - "y": 309.94, - "action": "combat_script", - "move_mode": "climb", - "action_params": "keypress(x),wait(0.2),keypress(x)", - "type": "target" + "type": "path", + "x": 783.751, + "y": 314.0 }, { - "id": 9, - "x": 729.0938, - "y": 322.6871, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keydown(w),wait(0.2),dash,wait(0.5),dash,keyup(w)", - "type": "orientation" + "action": "", + "action_params": "", + "id": 6, + "move_mode": "fly", + "type": "path", + "x": 762.2283, + "y": 291.156 }, { - "id": 10, - "x": 729.281, - "y": 323.4363, "action": "", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 7, + "move_mode": "fly", + "type": "path", + "x": 726.5004, + "y": 321.25 }, { - "id": 11, - "x": 735.56, - "y": 350.31, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 8, + "locked": false, + "move_mode": "dash", + "type": "path", + "x": 733.8708, + "y": 352.2474 }, { - "id": 12, - "x": 735.56, - "y": 350.31, "action": "combat_script", - "move_mode": "walk", "action_params": "wait(1)", - "type": "orientation" - }, - { - "id": 13, - "x": 729.3, - "y": 323.4, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" + "id": 9, + "move_mode": "dash", + "type": "orientation", + "x": 733.8708, + "y": 352.2474 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/242\347\222\203\346\234\210\345\261\202\345\262\251\345\234\260\344\270\213\346\227\240\345\220\215\351\201\227\350\277\271\357\274\210600_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/242\347\222\203\346\234\210\345\261\202\345\262\251\345\234\260\344\270\213\346\227\240\345\220\215\351\201\227\350\277\271\357\274\210600_1\357\274\211.json" index 3149ec25be..3068030d4a 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/242\347\222\203\346\234\210\345\261\202\345\262\251\345\234\260\344\270\213\346\227\240\345\220\215\351\201\227\350\277\271\357\274\210600_1\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/242\347\222\203\346\234\210\345\261\202\345\262\251\345\234\260\344\270\213\346\227\240\345\220\215\351\201\227\350\277\271\357\274\210600_1\357\274\211.json" @@ -1,65 +1,69 @@ { "info": { - "name": "242璃月层岩地下无名遗迹(600_1)", - "type": "collect", "author": "汐", - "version": "1.0", - "description": " 路线信息:该路线预计用时76.93秒,包含1只精英,预计收入600摩拉,包含以下怪物:1只黯色空壳·近卫。", - "map_name": "TheChasm", - "bgi_version": "0.45.0", "authors": [ { "name": "汐", "links": "https://github.com/jiegedabaobei" } - ] + ], + "bgi_version": "0.45.0", + "description": " 路线信息:该路线预计用时76.93秒,包含1只精英,预计收入600摩拉,包含以下怪物:1只黯色空壳·近卫。", + "enable_monster_loot_split": false, + "last_modified_time": 1758036392767, + "map_match_method": "", + "map_name": "TheChasm", + "name": "242璃月层岩地下无名遗迹(600_1)", + "tags": [], + "type": "collect", + "version": "1.0" }, "positions": [ { - "id": 1, - "x": 522.56, - "y": 528.85, "action": "", - "move_mode": "walk", "action_params": "", - "type": "teleport" + "id": 1, + "move_mode": "walk", + "type": "teleport", + "x": 522.56, + "y": 528.85 }, { - "id": 2, - "x": 533.5, - "y": 508.75, "action": "", - "move_mode": "run", "action_params": "", - "type": "path" + "id": 2, + "move_mode": "dash", + "type": "path", + "x": 538.5325, + "y": 502.4441 }, { - "id": 3, - "x": 590.13, - "y": 410.32, "action": "stop_flying", + "action_params": "", + "id": 3, "move_mode": "fly", - "action_params": "300", - "type": "path" + "type": "path", + "x": 590.5135, + "y": 419.4242 }, { - "id": 4, - "x": 595.07, - "y": 406.65, - "type": "path", - "move_mode": "walk", "action": "fight", "action_params": "", - "locked": false + "id": 4, + "locked": false, + "move_mode": "dash", + "type": "path", + "x": 598.1407, + "y": 406.8447 }, { + "action": "combat_script", + "action_params": "wait(1)", "id": 5, - "x": 595.07, - "y": 406.65, + "move_mode": "dash", "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" + "x": 598.1407, + "y": 406.8447 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/330\343\200\220\346\260\264\345\205\215\343\200\221\343\200\220\351\253\230\345\215\261\343\200\221\347\250\273\345\246\273\346\270\212\344\270\213\345\256\253\345\244\247\346\227\245\345\276\241\350\210\206\350\245\277\357\274\210600_1\357\274\214200_7\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/330\343\200\220\346\260\264\345\205\215\343\200\221\343\200\220\351\253\230\345\215\261\343\200\221\347\250\273\345\246\273\346\270\212\344\270\213\345\256\253\345\244\247\346\227\245\345\276\241\350\210\206\350\245\277\357\274\210600_1\357\274\214200_7\357\274\211.json" index 58e8fedd33..8725722757 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/330\343\200\220\346\260\264\345\205\215\343\200\221\343\200\220\351\253\230\345\215\261\343\200\221\347\250\273\345\246\273\346\270\212\344\270\213\345\256\253\345\244\247\346\227\245\345\276\241\350\210\206\350\245\277\357\274\210600_1\357\274\214200_7\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/330\343\200\220\346\260\264\345\205\215\343\200\221\343\200\220\351\253\230\345\215\261\343\200\221\347\250\273\345\246\273\346\270\212\344\270\213\345\256\253\345\244\247\346\227\245\345\276\241\350\210\206\350\245\277\357\274\210600_1\357\274\214200_7\357\274\211.json" @@ -1,137 +1,139 @@ { "info": { - "name": "330【水免】【高危】稻妻渊下宫大日御舆西(600_1,200_7)", - "type": "collect", - "author": "汐", - "version": "1.0", - "description": "", - "map_name": "Enkanomiya", - "bgi_version": "0.45.0", "authors": [ { - "name": "汐", - "links": "https://github.com/jiegedabaobei" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } - ] + ], + "bgi_version": "0.45.0", + "description": " 路线信息:该路线预计用时234秒,包含8只精英,预计收入2360摩拉,包含以下怪物:1只深渊使徒·激流、5只遗迹守卫、1只火斧丘丘暴徒。", + "enable_monster_loot_split": false, + "last_modified_time": 1758031318838, + "map_match_method": "", + "map_name": "Enkanomiya", + "name": "330【水免】【高危】稻妻渊下宫大日御舆西(600_1,200_7)", + "tags": [], + "type": "collect", + "version": "1.0" }, "positions": [ { - "id": 1, - "x": 378.1423, - "y": 370.7635, "action": "", - "move_mode": "walk", "action_params": "", - "type": "teleport" + "id": 1, + "move_mode": "walk", + "type": "teleport", + "x": 378.1423, + "y": 370.7635 }, { - "id": 2, - "x": 368.4269, - "y": 355.1685, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 2, + "move_mode": "dash", + "type": "path", + "x": 368.4269, + "y": 355.1685 }, { - "id": 3, - "x": 285.2601, - "y": 277.3914, "action": "", - "move_mode": "walk", "action_params": "", - "type": "teleport" + "id": 3, + "move_mode": "walk", + "type": "teleport", + "x": 285.2601, + "y": 277.3914 }, { - "id": 4, - "x": 301.4364, - "y": 277.8604, "action": "", - "move_mode": "run", "action_params": "", - "type": "path" + "id": 4, + "move_mode": "run", + "type": "path", + "x": 301.4364, + "y": 277.8604 }, { - "id": 5, - "x": 281.2238, - "y": 276.6216, "action": "combat_script", - "move_mode": "dash", "action_params": "wait(3)", - "type": "path" + "id": 5, + "move_mode": "dash", + "type": "path", + "x": 281.2238, + "y": 276.6216 }, { - "id": 6, - "x": 281.2238, - "y": 276.6216, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 6, + "move_mode": "dash", + "type": "path", + "x": 281.2238, + "y": 276.6216 }, { - "id": 7, - "x": 358.875, - "y": 290.2496, "action": "stop_flying", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 7, + "move_mode": "dash", + "type": "path", + "x": 361.7188, + "y": 290.8127 }, { - "id": 8, - "x": 351.125, - "y": 289.2494, "action": "fight", - "move_mode": "dash", "action_params": "", + "id": 8, + "move_mode": "dash", "type": "path", - "locked": false + "x": 351.125, + "y": 289.2494 }, { - "id": 9, - "x": 351.125, - "y": 289.2494, "action": "", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 9, + "move_mode": "dash", + "type": "path", + "x": 351.125, + "y": 289.2494 }, { - "id": 10, - "x": 389.6139, - "y": 298.3223, "action": "combat_script", - "move_mode": "fly", "action_params": "attack(0.3),wait(3)", - "type": "path" + "id": 10, + "move_mode": "fly", + "type": "path", + "x": 389.6139, + "y": 298.3223 }, { - "id": 11, - "x": 389.6139, - "y": 298.3223, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 11, + "move_mode": "dash", + "type": "path", + "x": 389.6139, + "y": 298.3223 }, { - "id": 12, - "x": 372.9194, - "y": 107.2444, "action": "", - "move_mode": "walk", "action_params": "", - "type": "teleport" + "id": 12, + "move_mode": "walk", + "type": "teleport", + "x": 372.9194, + "y": 107.2444 }, { - "id": 13, - "x": 362.125, - "y": 149.4989, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 13, + "move_mode": "dash", + "type": "path", + "x": 362.125, + "y": 149.4989 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/416\343\200\220\346\262\231\346\232\264\343\200\221\351\241\273\345\274\245\346\262\231\346\274\240\344\272\224\347\273\277\346\264\262\347\232\204\345\255\220\351\201\227\345\234\260\344\270\213\357\274\210600_1\357\274\214200_3\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/416\343\200\220\346\262\231\346\232\264\343\200\221\351\241\273\345\274\245\346\262\231\346\274\240\344\272\224\347\273\277\346\264\262\347\232\204\345\255\220\351\201\227\345\234\260\344\270\213\357\274\210600_1\357\274\214200_3\357\274\211.json" deleted file mode 100644 index f1611b4968..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/416\343\200\220\346\262\231\346\232\264\343\200\221\351\241\273\345\274\245\346\262\231\346\274\240\344\272\224\347\273\277\346\264\262\347\232\204\345\255\220\351\201\227\345\234\260\344\270\213\357\274\210600_1\357\274\214200_3\357\274\211.json" +++ /dev/null @@ -1,275 +0,0 @@ -{ - "info": { - "name": "416【沙暴】须弥沙漠五绿洲的子遗地下(600_1,200_3)", - "type": "collect", - "author": "汐", - "version": "1.0", - "description": " 路线信息:该路线预计用时133.89秒,包含4只精英,预计收入1200摩拉,包含以下怪物:1只遗迹重机、1只元能构装体·力场发生器、1只元能构装体·重塑仪、1只元能构装体·勘探机。", - "bgi_version": "0.45.0", - "authors": [ - { - "name": "汐", - "links": "https://github.com/jiegedabaobei" - } - ], - "map_name": "Teyvat", - "tags": [], - "last_modified_time": 1755366797881, - "enable_monster_loot_split": false, - "map_match_method": "" - }, - "positions": [ - { - "id": 1, - "x": 4693.95, - "y": -262.04, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4715.4, - "y": -268.52, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4746.63, - "y": -263.02, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4746.63, - "y": -263.02, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4765.6289, - "y": -285.8115, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4781.4297, - "y": -295.4619, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4780.1875, - "y": -301.5937, - "action": "", - "move_mode": "climb", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4782.9688, - "y": -310.1252, - "action": "combat_script", - "move_mode": "climb", - "action_params": "keypress(F),wait(0.2),keypress(F),w(0.2),keypress(F),wait(0.2),keypress(F)", - "type": "path" - }, - { - "id": 9, - "x": 4766.91, - "y": -290.08, - "action": "combat_script", - "move_mode": "walk", - "action_params": "w(0.2),wait(8)", - "type": "orientation" - }, - { - "id": 10, - "x": 4766.91, - "y": -290.08, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4771.91, - "y": -285.08, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4589.0122, - "y": -652.938, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 13, - "x": 4570.2773, - "y": -670.4438, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4550.2236, - "y": -719.0088, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4540.377, - "y": -740.5068, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(t),wait(0.2),keypress(t)", - "type": "path" - }, - { - "id": 16, - "x": 4525.1328, - "y": -769.8774, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(t),wait(0.2),keypress(t),moveby(0,1000),keydown(w),wait(0.5),keypress(t),wait(0.2),keypress(t),wait(0.5),keypress(t),keyup(w)", - "type": "orientation" - }, - { - "id": 17, - "x": 4503.7456, - "y": -794.5059, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4513.002, - "y": -786.5063, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(f),wait(0.2),keypress(f),w(0.2),keypress(f)", - "type": "path" - }, - { - "id": 19, - "x": 4693.95, - "y": -262.04, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 20, - "x": 4715.4, - "y": -268.52, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 4746.63, - "y": -263.02, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 4765.6289, - "y": -285.8115, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 4781.4297, - "y": -295.4619, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 4780.1875, - "y": -301.5937, - "action": "", - "move_mode": "climb", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 4782.9688, - "y": -310.1252, - "action": "combat_script", - "move_mode": "climb", - "action_params": "keypress(F),wait(0.2),keypress(F),w(0.2),keypress(F),wait(0.2),keypress(F)", - "type": "path" - }, - { - "id": 26, - "x": 4766.91, - "y": -290.08, - "action": "combat_script", - "move_mode": "walk", - "action_params": "w(0.2),wait(8)", - "type": "orientation" - }, - { - "id": 27, - "x": 4766.91, - "y": -290.08, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 4771.91, - "y": -285.08, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/08\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_1\357\274\214200_3\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/701\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\350\245\277\357\274\210400_1\357\274\214200_2\357\274\211.json" similarity index 57% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/08\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_1\357\274\214200_3\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/701\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\350\245\277\357\274\210400_1\357\274\214200_2\357\274\211.json" index ec0ae3faab..99107ef5b5 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/08\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210400_1\357\274\214200_3\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/701\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\350\245\277\357\274\210400_1\357\274\214200_2\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时107.7秒,包含以下怪物:2只荒野幽徒、1只荒野狂狩士。", "enable_monster_loot_split": false, - "last_modified_time": 1757899167301, + "last_modified_time": 1758032685107, "map_match_method": "", "map_name": "Teyvat", - "name": "08挪德卡莱伦波岛(400_1,200_3)", + "name": "701挪德卡莱蛋卷工坊西(400_1,200_2)", "tags": [], "type": "collect", "version": "1.0" @@ -24,62 +24,53 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 10022.0, - "y": 1537.3 + "x": 10408.8545, + "y": 1653.4341 }, { - "action": "", + "action": "stop_flying", "action_params": "", "id": 2, "move_mode": "fly", "type": "path", - "x": 10043.5, - "y": 1531.0 + "x": 10395.2285, + "y": 1662.2554 }, { - "action": "fight", + "action": "", "action_params": "", "id": 3, "move_mode": "dash", "type": "path", - "x": 10106.2, - "y": 1572.7 + "x": 10335.4424, + "y": 1666.4023 }, { "action": "", "action_params": "", "id": 4, - "move_mode": "walk", + "move_mode": "dash", "type": "path", - "x": 10106.2, - "y": 1572.7 + "x": 10257.2217, + "y": 1653.9512 }, { - "action": "", + "action": "fight", "action_params": "", "id": 5, "move_mode": "dash", "type": "path", - "x": 10111.0, - "y": 1637.75 + "x": 10193.5078, + "y": 1651.043 }, { - "action": "stop_flying", - "action_params": "", + "action": "combat_script", + "action_params": "wait(1)", "id": 6, - "move_mode": "fly", - "type": "path", - "x": 10156.0, - "y": 1663.25 - }, - { - "action": "fight", - "action_params": "", - "id": 7, "move_mode": "dash", - "type": "path", - "x": 10194.8, - "y": 1653.5 + "type": "orientation", + "x": 10193.5078, + "y": 1651.043 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/15\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/702\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\345\214\227\357\274\210200_4\357\274\211.json" similarity index 58% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/15\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/702\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\345\214\227\357\274\210200_4\357\274\211.json" index 0b31a3e610..db827de33e 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/15\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/702\346\214\252\345\276\267\345\215\241\350\216\261\350\233\213\345\215\267\345\267\245\345\235\212\345\214\227\357\274\210200_4\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时52.47秒,包含以下怪物:4只荒野幽徒。", "enable_monster_loot_split": false, - "last_modified_time": 1757898355548, + "last_modified_time": 1758032746592, "map_match_method": "", "map_name": "Teyvat", - "name": "15挪德卡莱希汐岛(200_1)", + "name": "702挪德卡莱蛋卷工坊北(200_4)", "tags": [], "type": "collect", "version": "1.0" @@ -24,8 +24,8 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 10789.75, - "y": 2283.5 + "x": 9745.1328, + "y": 1915.0435 }, { "action": "fight", @@ -33,8 +33,8 @@ "id": 2, "move_mode": "dash", "type": "path", - "x": 10754.4, - "y": 2316 + "x": 9721.9297, + "y": 1952.1299 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/07\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_5\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/704\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\344\270\234\357\274\210400_1\357\274\214200_5\357\274\211.json" similarity index 61% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/07\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_5\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/704\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\344\270\234\357\274\210400_1\357\274\214200_5\357\274\211.json" index fe738a92ce..493039f495 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/07\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_5\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/704\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\344\270\234\357\274\210400_1\357\274\214200_5\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时161.64秒,包含以下怪物:4只荒野幽徒、1只荒野狂狩士、1只蕴光刃犀。", "enable_monster_loot_split": false, - "last_modified_time": 1757833963815, + "last_modified_time": 1758032900510, "map_match_method": "", "map_name": "Teyvat", - "name": "07挪德卡莱伦波岛(200_5)", + "name": "704挪德卡莱苔骨荒原东(400_1,200_5)", "tags": [], "type": "collect", "version": "1.0" @@ -24,17 +24,17 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 9186.25, - "y": 2847.5 + "x": 9222.2812, + "y": 1900.9121 }, { - "action": "", + "action": "fight", "action_params": "", "id": 2, "move_mode": "dash", "type": "path", - "x": 9186.8, - "y": 2845.2 + "x": 9195.9941, + "y": 1916.1406 }, { "action": "", @@ -42,8 +42,8 @@ "id": 3, "move_mode": "dash", "type": "path", - "x": 9173.4, - "y": 2841.7 + "x": 9206.1631, + "y": 1958.4009 }, { "action": "", @@ -51,26 +51,26 @@ "id": 4, "move_mode": "dash", "type": "path", - "x": 9141, - "y": 2845.5 + "x": 9220.873, + "y": 1992.4043 }, { - "action": "fight", - "action_params": "", + "action": "stop_flying", + "action_params": "800", "id": 5, - "move_mode": "dash", + "move_mode": "fly", "type": "path", - "x": 9124, - "y": 2869.25 + "x": 9229.9775, + "y": 2017.9204 }, { - "action": "", + "action": "fight", "action_params": "", "id": 6, - "move_mode": "dash", - "type": "path", - "x": 9124, - "y": 2869.25 + "move_mode": "walk", + "type": "orientation", + "x": 9229.9775, + "y": 2017.9204 }, { "action": "", @@ -78,62 +78,44 @@ "id": 7, "move_mode": "dash", "type": "path", - "x": 9080.875, - "y": 2847.375 + "x": 9207.8682, + "y": 2045.8672 }, { - "action": "fight", + "action": "", "action_params": "", "id": 8, "move_mode": "dash", "type": "path", - "x": 9059.5, - "y": 2767 + "x": 9184.375, + "y": 2067.4965 }, { "action": "", "action_params": "", "id": 9, - "move_mode": "walk", + "move_mode": "dash", "type": "path", - "x": 9059.5, - "y": 2767 + "x": 9151.8848, + "y": 2057.5349 }, { - "action": "", + "action": "fight", "action_params": "", "id": 10, "move_mode": "dash", "type": "path", - "x": 9091.1, - "y": 2779.8 + "x": 9091.998, + "y": 2048.1382 }, { "action": "combat_script", - "action_params": "keypress(t)", + "action_params": "wait(1)", "id": 11, - "move_mode": "walk", - "type": "path", - "x": 9091.1, - "y": 2779.8 - }, - { - "action": "stop_flying", - "action_params": "", - "id": 12, - "move_mode": "fly", - "type": "path", - "x": 9161.5, - "y": 2793.75 - }, - { - "action": "fight", - "action_params": "", - "id": 13, - "move_mode": "walk", - "type": "path", - "x": 9161.5, - "y": 2793.75 + "move_mode": "dash", + "type": "orientation", + "x": 9091.998, + "y": 2048.1382 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/706\346\214\252\345\276\267\345\215\241\350\216\261\346\230\237\347\240\202\346\273\251\345\214\227\357\274\210400_2\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/706\346\214\252\345\276\267\345\215\241\350\216\261\346\230\237\347\240\202\346\273\251\345\214\227\357\274\210400_2\357\274\211.json" new file mode 100644 index 0000000000..5b3285412e --- /dev/null +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/706\346\214\252\345\276\267\345\215\241\350\216\261\346\230\237\347\240\202\346\273\251\345\214\227\357\274\210400_2\357\274\211.json" @@ -0,0 +1,76 @@ +{ + "info": { + "authors": [ + { + "links": "https://github.com/jiegedabaobei", + "name": "汐" + } + ], + "bgi_version": "0.45.0", + "description": " 路线信息:该路线预计用时148.22秒,包含以下怪物:2只荒野狂狩士、1只愚人众特辖队·线列军、2只愚人众特辖队·支援兵、1只愚人众特辖队·榴铳手、1只愚人众特辖队·先锋士、1只愚人众特辖队·疗愈师、2只愚人众特辖队·火刃突击队、1只水史莱姆、1只大型水史莱姆。。", + "enable_monster_loot_split": false, + "last_modified_time": 1758033606625, + "map_match_method": "", + "map_name": "Teyvat", + "name": "706挪德卡莱星砂滩北(400_2)", + "tags": [], + "type": "collect", + "version": "1.0" + }, + "positions": [ + { + "action": "", + "action_params": "", + "id": 1, + "move_mode": "walk", + "type": "teleport", + "x": 9560.4287, + "y": 2134.2742 + }, + { + "action": "stop_flying", + "action_params": "", + "id": 2, + "move_mode": "fly", + "type": "path", + "x": 9556.4785, + "y": 2166.8408 + }, + { + "action": "fight", + "action_params": "", + "id": 3, + "move_mode": "dash", + "type": "path", + "x": 9549.1172, + "y": 2245.3127 + }, + { + "action": "fight", + "action_params": "", + "id": 4, + "move_mode": "dash", + "type": "path", + "x": 9607.2393, + "y": 2310.0378 + }, + { + "action": "fight", + "action_params": "", + "id": 5, + "move_mode": "dash", + "type": "path", + "x": 9649.4746, + "y": 2386.4888 + }, + { + "action": "combat_script", + "action_params": "wait(1)", + "id": 6, + "move_mode": "dash", + "type": "orientation", + "x": 9649.4746, + "y": 2386.4888 + } + ] +} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/01\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\345\260\217\346\200\252\357\274\21016\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/714\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\345\214\227\357\274\210400_2\357\274\214200_5\357\274\211.json" similarity index 62% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/01\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\345\260\217\346\200\252\357\274\21016\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/714\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\345\214\227\357\274\210400_2\357\274\214200_5\357\274\211.json" index 59e938aebc..6bb5c312fa 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/01\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\345\260\217\346\200\252\357\274\21016\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/714\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\345\214\227\357\274\210400_2\357\274\214200_5\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时153.59秒,包含以下怪物:4只荒野幽徒、2只荒野狂狩士、1只愚人众特辖队·线列军、1只愚人众特辖队·疗愈师、1只蕴光璇蛸。", "enable_monster_loot_split": false, - "last_modified_time": 1757901415294, + "last_modified_time": 1758034625139, "map_match_method": "", "map_name": "Teyvat", - "name": "01挪德卡莱伦波岛小怪(16)", + "name": "714挪德卡莱月矩力设计局北(400_2,200_5)", "tags": [], "type": "collect", "version": "1.0" @@ -24,26 +24,26 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 9558.25, - "y": 2134.75 + "x": 9874.0449, + "y": 3593.0449 }, { - "action": "stop_flying", + "action": "", "action_params": "", "id": 2, - "move_mode": "fly", + "move_mode": "dash", "type": "path", - "x": 9513.7, - "y": 2201.2 + "x": 9865.3105, + "y": 3578.2285 }, { - "action": "fight", + "action": "stop_flying", "action_params": "", "id": 3, - "move_mode": "dash", + "move_mode": "fly", "type": "path", - "x": 9513.7, - "y": 2201.2 + "x": 9850.9365, + "y": 3567.9802 }, { "action": "", @@ -51,8 +51,8 @@ "id": 4, "move_mode": "dash", "type": "path", - "x": 9490.6, - "y": 2215.3 + "x": 9799.3008, + "y": 3519.9707 }, { "action": "fight", @@ -60,44 +60,35 @@ "id": 5, "move_mode": "dash", "type": "path", - "x": 9468.6, - "y": 2254.5 + "x": 9793.4199, + "y": 3528.3713 }, { "action": "", "action_params": "", "id": 6, - "move_mode": "walk", - "type": "path", - "x": 9468.6, - "y": 2254.5 - }, - { - "action": "", - "action_params": "", - "id": 7, "move_mode": "dash", "type": "path", - "x": 9506.2, - "y": 2281.5 + "x": 9759.3115, + "y": 3516.3384 }, { "action": "fight", "action_params": "", - "id": 8, + "id": 7, "move_mode": "dash", "type": "path", - "x": 9542.5, - "y": 2251.75 + "x": 9680.6328, + "y": 3470.3623 }, { "action": "fight", "action_params": "", - "id": 9, + "id": 8, "move_mode": "dash", "type": "path", - "x": 9595.75, - "y": 2314.25 + "x": 9693.0449, + "y": 3379.7988 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/715\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\344\270\234\345\214\227\357\274\210400_1\357\274\214200_5\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/715\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\344\270\234\345\214\227\357\274\210400_1\357\274\214200_5\357\274\211.json" new file mode 100644 index 0000000000..2431f92b10 --- /dev/null +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/1\347\262\276\350\213\261/715\346\214\252\345\276\267\345\215\241\350\216\261\346\234\210\347\237\251\345\212\233\350\256\276\350\256\241\345\261\200\344\270\234\345\214\227\357\274\210400_1\357\274\214200_5\357\274\211.json" @@ -0,0 +1,103 @@ +{ + "info": { + "authors": [ + { + "links": "https://github.com/jiegedabaobei", + "name": "汐" + } + ], + "bgi_version": "0.45.0", + "description": " 路线信息:该路线预计用时127.88秒,包含以下怪物:1只荒野狂狩士、4只荒野幽徒、1只蔓结·霜夜灵嗣。", + "enable_monster_loot_split": false, + "last_modified_time": 1758034788120, + "map_match_method": "", + "map_name": "Teyvat", + "name": "715挪德卡莱月矩力设计局东北(400_1,200_5)", + "tags": [], + "type": "collect", + "version": "1.0" + }, + "positions": [ + { + "action": "", + "action_params": "", + "id": 1, + "move_mode": "walk", + "type": "teleport", + "x": 9593.4414, + "y": 3398.0659 + }, + { + "action": "", + "action_params": "", + "id": 2, + "move_mode": "dash", + "type": "path", + "x": 9529.7499, + "y": 3436.8759 + }, + { + "action": "fight", + "action_params": "", + "id": 3, + "move_mode": "dash", + "type": "path", + "x": 9467.5195, + "y": 3459.4912 + }, + { + "action": "", + "action_params": "", + "id": 4, + "move_mode": "dash", + "type": "path", + "x": 9455.1768, + "y": 3480.7051 + }, + { + "action": "", + "action_params": "", + "id": 5, + "move_mode": "dash", + "type": "path", + "x": 9484.1875, + "y": 3516.0996 + }, + { + "action": "stop_flying", + "action_params": "", + "id": 6, + "move_mode": "fly", + "type": "path", + "x": 9518.7012, + "y": 3540.2134 + }, + { + "action": "fight", + "action_params": "", + "id": 7, + "move_mode": "dash", + "type": "path", + "x": 9523.2217, + "y": 3543.2546 + }, + { + "action": "fight", + "action_params": "", + "id": 8, + "move_mode": "dash", + "type": "path", + "x": 9523.2217, + "y": 3543.2546 + }, + { + "action": "combat_script", + "action_params": "wait(1)", + "id": 9, + "move_mode": "dash", + "type": "orientation", + "x": 9523.2217, + "y": 3543.2546 + } + ] +} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/2\346\224\266\345\260\276/316\347\250\273\345\246\273\345\244\251\344\272\221\345\263\240\357\274\210200_20\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/2\346\224\266\345\260\276/316\347\250\273\345\246\273\345\244\251\344\272\221\345\263\240\357\274\210200_20\357\274\211.json" index ec002bb25b..c46b0a9765 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/2\346\224\266\345\260\276/316\347\250\273\345\246\273\345\244\251\344\272\221\345\263\240\357\274\210200_20\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/2\346\224\266\345\260\276/316\347\250\273\345\246\273\345\244\251\344\272\221\345\263\240\357\274\210200_20\357\274\211.json" @@ -1,297 +1,306 @@ { "info": { - "name": "316稻妻天云峠(200_20)", - "type": "collect", "author": "汐", - "version": "1.0", - "description": " 路线信息:该路线预计用时369.52秒,包含20只精英,预计收入4000摩拉,包含以下怪物:4只遗迹巡弋者、1只遗迹歼击者、13只遗迹防卫者、2只遗迹侦察者。", - "map_name": "Teyvat", - "bgi_version": "0.45.0", "authors": [ { "name": "汐", "links": "https://github.com/jiegedabaobei" } ], - "tags": [], - "last_modified_time": 1754769656858, + "bgi_version": "0.45.0", + "description": " 路线信息:该路线预计用时369.52秒,包含20只精英,预计收入4000摩拉,包含以下怪物:4只遗迹巡弋者、1只遗迹歼击者、13只遗迹防卫者、2只遗迹侦察者。", "enable_monster_loot_split": false, - "map_match_method": "" + "last_modified_time": 1755963715450, + "map_match_method": "", + "map_name": "Teyvat", + "name": "316稻妻天云峠(200_20)", + "tags": [], + "type": "collect", + "version": "1.0" }, "positions": [ { - "id": 1, - "x": -4170.55, - "y": -4571.36, "action": "", - "move_mode": "walk", "action_params": "", - "type": "teleport" + "id": 1, + "move_mode": "walk", + "type": "teleport", + "x": -4170.55, + "y": -4571.36 }, { - "id": 2, - "x": -4170.55, - "y": -4574.36, "action": "combat_script", - "move_mode": "walk", "action_params": "keydown(w),wait(0.1),keydown(VK_LSHIFT),wait(7),keyup(VK_LSHIFT),keyup(w),click", - "type": "path" + "id": 2, + "move_mode": "walk", + "type": "path", + "x": -4170.55, + "y": -4574.36 }, { - "id": 3, - "x": -4172.47, - "y": -4646.09, "action": "", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 3, + "move_mode": "dash", + "type": "path", + "x": -4172.47, + "y": -4646.09 }, { - "id": 4, - "x": -4185.14, - "y": -4674.96, "action": "fight", + "id": 4, "move_mode": "run", - "type": "path" + "type": "path", + "x": -4185.14, + "y": -4674.96 }, { - "id": 5, - "x": -4208.5, - "y": -4701.69, "action": "", - "move_mode": "run", "action_params": "", - "type": "path" + "id": 5, + "move_mode": "run", + "type": "path", + "x": -4208.5, + "y": -4701.69 }, { - "id": 6, - "x": -4225.81, - "y": -4733.19, "action": "combat_script", - "move_mode": "run", "action_params": "keypress(f);玛薇卡 e;芙宁娜 e;伊涅芙 e;钟离 a(0.1),e(hold);茜特菈莉 e;莱依拉 e;", - "type": "path" + "id": 6, + "move_mode": "run", + "type": "path", + "x": -4225.81, + "y": -4733.19 }, { - "id": 7, - "x": -4268.81, - "y": -4751.31, "action": "fight", + "id": 7, "move_mode": "run", - "type": "path" + "type": "path", + "x": -4268.81, + "y": -4751.31 }, { - "id": 8, - "x": -4301.5, - "y": -4733.38, "action": "", - "move_mode": "run", "action_params": "", - "type": "path" + "id": 8, + "move_mode": "run", + "type": "path", + "x": -4301.5, + "y": -4733.38 }, { - "id": 9, - "x": -4315.06, - "y": -4718.57, "action": "combat_script", - "move_mode": "run", "action_params": "keypress(f);玛薇卡 e;芙宁娜 e;伊涅芙 e;钟离 a(0.1),e(hold);茜特菈莉 e;莱依拉 e;", - "type": "path" + "id": 9, + "move_mode": "run", + "type": "path", + "x": -4315.06, + "y": -4718.57 }, { - "id": 10, - "x": -4321.62, - "y": -4664.75, "action": "fight", + "id": 10, "move_mode": "run", - "type": "path" + "type": "path", + "x": -4321.62, + "y": -4664.75 }, { - "id": 11, - "x": -4308.88, - "y": -4651.06, "action": "", - "move_mode": "run", "action_params": "", - "type": "path" + "id": 11, + "move_mode": "run", + "type": "path", + "x": -4308.88, + "y": -4651.06 }, { - "id": 12, - "x": -4248.25, - "y": -4644.63, "action": "", - "move_mode": "run", "action_params": "", - "type": "path" + "id": 12, + "move_mode": "run", + "type": "path", + "x": -4248.25, + "y": -4644.63 }, { - "id": 13, - "x": -4229.0625, - "y": -4635.5008, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 13, + "move_mode": "dash", + "type": "path", + "x": -4226.5625, + "y": -4640.1266 }, { - "id": 14, - "x": -4235.0, - "y": -4650.4359, "action": "", - "move_mode": "dash", "action_params": "", - "type": "target" + "id": 14, + "move_mode": "dash", + "type": "target", + "x": -4230.2344, + "y": -4661.4717 }, { - "id": 15, - "x": -4258.0625, - "y": -4659.312, "action": "combat_script", - "move_mode": "jump", "action_params": "wait(0.6)", - "type": "path" + "id": 15, + "move_mode": "fly", + "type": "path", + "x": -4249.5312, + "y": -4658.9067 }, { - "id": 16, - "x": -4273.5352, - "y": -4665.1699, "action": "combat_script", - "move_mode": "jump", "action_params": "attack(0.3)", - "type": "path" + "id": 16, + "move_mode": "fly", + "type": "path", + "x": -4275.7676, + "y": -4655.4336 }, { - "id": 17, - "x": -4275.7832, - "y": -4675.665, "action": "", - "move_mode": "dash", "action_params": "", + "id": 17, + "move_mode": "dash", "type": "path", - "locked": false + "x": -4275.7832, + "y": -4675.665 }, { - "id": 18, - "x": -4271.6328, - "y": -4688.1348, "action": "", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 18, + "move_mode": "dash", + "type": "path", + "x": -4271.6328, + "y": -4688.1348 }, { - "id": 19, - "x": -4278.88, - "y": -4672.03, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 19, + "move_mode": "dash", + "type": "path", + "x": -4278.88, + "y": -4672.03 }, { - "id": 20, - "x": -4275.34, - "y": -4661.47, "action": "", - "move_mode": "walk", "action_params": "", - "type": "path" + "id": 20, + "move_mode": "walk", + "type": "path", + "x": -4275.34, + "y": -4661.47 }, { + "action": "", + "action_params": "", "id": 21, + "locked": false, + "move_mode": "walk", + "type": "orientation", "x": -4254.41, - "y": -4672.12, - "action": "combat_script", - "move_mode": "fly", - "action_params": "attack(0.3),wait(1),keypress(x)", - "type": "path" + "y": -4672.12 }, { + "action": "combat_script", + "action_params": "attack(0.3),wait(1),keypress(x)", "id": 22, + "move_mode": "fly", + "type": "path", "x": -4254.41, - "y": -4670.12, + "y": -4672.12 + }, + { "action": "combat_script", - "move_mode": "climb", "action_params": "keypress(x)", - "type": "target" + "id": 23, + "move_mode": "climb", + "type": "target", + "x": -4254.41, + "y": -4670.12 }, { - "id": 23, - "x": -4254.75, - "y": -4659.0, "action": "combat_script", - "move_mode": "fly", "action_params": "wait(0.5),keydown(w),wait(3),keyup(w),keypress(x)", - "type": "path" + "id": 24, + "move_mode": "fly", + "type": "path", + "x": -4254.75, + "y": -4659.0 }, { - "id": 24, - "x": -4254.0, - "y": -4639.8128, "action": "combat_script", - "move_mode": "fly", "action_params": "keypress(x)", - "type": "path" + "id": 25, + "move_mode": "fly", + "type": "path", + "x": -4254.0, + "y": -4639.8128 }, { - "id": 25, - "x": -4272.25, - "y": -4644.5, "action": "", + "id": 26, "move_mode": "run", - "type": "path" + "type": "path", + "x": -4272.25, + "y": -4644.5 }, { - "id": 26, - "x": -4286.62, - "y": -4656.5, "action": "", + "id": 27, "move_mode": "run", - "type": "path" + "type": "path", + "x": -4286.62, + "y": -4656.5 }, { - "id": 27, - "x": -4285.38, - "y": -4674.31, "action": "fight", - "move_mode": "run", "action_params": "", - "type": "path" + "id": 28, + "move_mode": "run", + "type": "path", + "x": -4285.38, + "y": -4674.31 }, { - "id": 28, - "x": -4285.31, - "y": -4660.13, "action": "", + "id": 29, "move_mode": "run", - "type": "path" + "type": "path", + "x": -4285.31, + "y": -4660.13 }, { - "id": 29, - "x": -4280.06, - "y": -4654.87, "action": "", - "move_mode": "walk", "action_params": "", - "type": "path" + "id": 30, + "move_mode": "walk", + "type": "path", + "x": -4280.06, + "y": -4654.87 }, { - "id": 30, - "x": -4261.62, - "y": -4653.12, "action": "stop_flying", - "move_mode": "fly", "action_params": "", - "type": "path" + "id": 31, + "move_mode": "fly", + "type": "path", + "x": -4261.62, + "y": -4653.12 }, { - "id": 31, - "x": -4235.0, - "y": -4648.37, "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "id": 32, + "move_mode": "dash", + "type": "path", + "x": -4235.0, + "y": -4648.37 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/09\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_2\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/703\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\215\227\357\274\210200_1\357\274\211.json" similarity index 58% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/09\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_2\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/703\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\215\227\357\274\210200_1\357\274\211.json" index 322db3f2e4..c9519ebd37 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/09\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_2\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/703\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\215\227\357\274\210200_1\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时41.85秒,包含以下怪物:1只蕴光刃犀。", "enable_monster_loot_split": false, - "last_modified_time": 1757833960699, + "last_modified_time": 1758032824534, "map_match_method": "", "map_name": "Teyvat", - "name": "09挪德卡莱希汐岛(200_2)", + "name": "703挪德卡莱苔骨荒原南(200_1)", "tags": [], "type": "collect", "version": "1.0" @@ -24,26 +24,26 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 10409.75, - "y": 1645.25 + "x": 9359.3516, + "y": 1856.3516 }, { - "action": "stop_flying", + "action": "", "action_params": "", "id": 2, - "move_mode": "fly", + "move_mode": "dash", "type": "path", - "x": 10465.5, - "y": 1698.7 + "x": 9356.417, + "y": 1845.7969 }, { "action": "", "action_params": "", "id": 3, - "move_mode": "dash", + "move_mode": "jump", "type": "path", - "x": 10460.6, - "y": 1718.2 + "x": 9351.8906, + "y": 1837.2798 }, { "action": "fight", @@ -51,8 +51,8 @@ "id": 4, "move_mode": "dash", "type": "path", - "x": 10431.7, - "y": 1732.7 + "x": 9342.6094, + "y": 1830.063 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/01\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_3\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/705\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\214\227\357\274\210200_1\357\274\211.json" similarity index 58% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/01\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_3\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/705\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\214\227\357\274\210200_1\357\274\211.json" index d1536007cf..1e88783081 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/01\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_3\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/705\346\214\252\345\276\267\345\215\241\350\216\261\350\213\224\351\252\250\350\215\222\345\216\237\345\214\227\357\274\210200_1\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时38.54秒,包含以下怪物:1只蕴光奇羊。", "enable_monster_loot_split": false, - "last_modified_time": 1757833975246, + "last_modified_time": 1758032955501, "map_match_method": "", "map_name": "Teyvat", - "name": "01挪德卡莱伦波岛(200_3)", + "name": "705挪德卡莱苔骨荒原北(200_1)", "tags": [], "type": "collect", "version": "1.0" @@ -24,8 +24,8 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 9744.5, - "y": 1911 + "x": 9353.8184, + "y": 2108.6267 }, { "action": "fight", @@ -33,8 +33,8 @@ "id": 2, "move_mode": "dash", "type": "path", - "x": 9723, - "y": 1947.5 + "x": 9340.4375, + "y": 2149.946 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/18\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_2\357\274\214400_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/707\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\350\245\277\345\214\227\357\274\210200_1\357\274\211.json" similarity index 62% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/18\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_2\357\274\214400_1\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/707\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\350\245\277\345\214\227\357\274\210200_1\357\274\211.json" index fa38239ace..0fc45613d7 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/18\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_2\357\274\214400_1\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/707\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\350\245\277\345\214\227\357\274\210200_1\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时55.07秒,包含以下怪物:1只辉电·霜夜灵嗣。", "enable_monster_loot_split": false, - "last_modified_time": 1757833938386, + "last_modified_time": 1758033707380, "map_match_method": "", "map_name": "Teyvat", - "name": "18挪德卡莱帕哈岛(200_2,400_1)", + "name": "707挪德卡莱蓝珀湖西北(200_1)", "tags": [], "type": "collect", "version": "1.0" @@ -24,8 +24,8 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 9597.5, - "y": 3386.5 + "x": 9249.1465, + "y": 2349.7795 }, { "action": "", @@ -33,8 +33,8 @@ "id": 2, "move_mode": "dash", "type": "path", - "x": 9606.75, - "y": 3439.75 + "x": 9273.0098, + "y": 2355.8376 }, { "action": "", @@ -42,8 +42,8 @@ "id": 3, "move_mode": "dash", "type": "path", - "x": 9652.25, - "y": 3470.75 + "x": 9336.1973, + "y": 2380.8364 }, { "action": "fight", @@ -51,8 +51,8 @@ "id": 4, "move_mode": "dash", "type": "path", - "x": 9677.25, - "y": 3477.5 + "x": 9362.3779, + "y": 2379.9685 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/05\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/708\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\345\215\227\357\274\210200_1\357\274\211.json" similarity index 61% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/05\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/708\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\345\215\227\357\274\210200_1\357\274\211.json" index 8a62a563bd..a90448aaf6 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/05\346\214\252\345\276\267\345\215\241\350\216\261\344\274\246\346\263\242\345\262\233\357\274\210200_1\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/708\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\345\215\227\357\274\210200_1\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时63.33秒,包含以下怪物:1只蕴光奇羊。", "enable_monster_loot_split": false, - "last_modified_time": 1757833967279, + "last_modified_time": 1758033843194, "map_match_method": "", "map_name": "Teyvat", - "name": "05挪德卡莱伦波岛(200_1)", + "name": "708挪德卡莱蓝珀湖南(200_1)", "tags": [], "type": "collect", "version": "1.0" @@ -24,8 +24,8 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 9210.25, - "y": 2510 + "x": 9229.5635, + "y": 2239.8596 }, { "action": "", @@ -33,8 +33,8 @@ "id": 2, "move_mode": "dash", "type": "path", - "x": 9174.5, - "y": 2558 + "x": 9218.9531, + "y": 2217.5486 }, { "action": "fight", @@ -42,8 +42,8 @@ "id": 3, "move_mode": "dash", "type": "path", - "x": 9168, - "y": 2590 + "x": 9192.2832, + "y": 2153.3206 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/709\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\344\270\234\345\215\227\357\274\210200_3\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/709\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\344\270\234\345\215\227\357\274\210200_3\357\274\211.json" new file mode 100644 index 0000000000..a36d0c039f --- /dev/null +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/709\346\214\252\345\276\267\345\215\241\350\216\261\350\223\235\347\217\200\346\271\226\344\270\234\345\215\227\357\274\210200_3\357\274\211.json" @@ -0,0 +1,112 @@ +{ + "info": { + "authors": [ + { + "links": "https://github.com/jiegedabaobei", + "name": "汐" + } + ], + "bgi_version": "0.45.0", + "description": " 路线信息:该路线预计用时135.7秒,包含以下怪物:2只水史莱姆、1只蕴光奇羊、2只蕴光璇蛸。", + "enable_monster_loot_split": false, + "last_modified_time": 1758033985518, + "map_match_method": "", + "map_name": "Teyvat", + "name": "709挪德卡莱蓝珀湖东南(200_3)", + "tags": [], + "type": "collect", + "version": "1.0" + }, + "positions": [ + { + "action": "", + "action_params": "", + "id": 1, + "move_mode": "walk", + "type": "teleport", + "x": 9097.6318, + "y": 2296.7136 + }, + { + "action": "", + "action_params": "", + "id": 2, + "move_mode": "fly", + "type": "path", + "x": 9093.2783, + "y": 2280.0088 + }, + { + "action": "", + "action_params": "", + "id": 3, + "move_mode": "dash", + "type": "path", + "x": 9069.125, + "y": 2269.7048 + }, + { + "action": "", + "action_params": "", + "id": 4, + "move_mode": "dash", + "type": "path", + "x": 9055.9795, + "y": 2224.7256 + }, + { + "action": "fight", + "action_params": "", + "id": 5, + "move_mode": "dash", + "type": "path", + "x": 9041.0693, + "y": 2211.6194 + }, + { + "action": "", + "action_params": "", + "id": 6, + "move_mode": "dash", + "type": "path", + "x": 9029.7502, + "y": 2197.2501 + }, + { + "action": "stop_flying", + "action_params": "1300", + "id": 7, + "move_mode": "fly", + "type": "path", + "x": 8999.8749, + "y": 2161.2507 + }, + { + "action": "fight", + "action_params": "", + "id": 8, + "move_mode": "dash", + "type": "path", + "x": 8997.0244, + "y": 2158.0278 + }, + { + "action": "combat_script", + "action_params": "attack(0.5)", + "id": 9, + "move_mode": "dash", + "type": "path", + "x": 8922.8008, + "y": 2178.5564 + }, + { + "action": "fight", + "action_params": "", + "id": 10, + "move_mode": "dash", + "type": "path", + "x": 8942.5664, + "y": 2175.9553 + } + ] +} \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/16\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_3\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/710\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\210\273\346\213\211\350\222\202\344\271\213\347\234\274\357\274\210200_1\357\274\211.json" similarity index 59% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/16\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_3\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/710\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\210\273\346\213\211\350\222\202\344\271\213\347\234\274\357\274\210200_1\357\274\211.json" index c9c9684c81..b79094b257 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/16\346\214\252\345\276\267\345\215\241\350\216\261\345\270\225\345\223\210\345\262\233\357\274\210200_3\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/710\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\210\273\346\213\211\350\222\202\344\271\213\347\234\274\357\274\210200_1\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时42.79秒,包含以下怪物:1只蔓结·霜夜灵嗣。", "enable_monster_loot_split": false, - "last_modified_time": 1757833941649, + "last_modified_time": 1758034047013, "map_match_method": "", "map_name": "Teyvat", - "name": "16挪德卡莱帕哈岛(200_3)", + "name": "710挪德卡莱空寂走廊刻拉蒂之眼(200_1)", "tags": [], "type": "collect", "version": "1.0" @@ -24,8 +24,8 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 9372.2982, - "y": 3154.479 + "x": 8836.8652, + "y": 2206.4937 }, { "action": "", @@ -33,8 +33,8 @@ "id": 2, "move_mode": "dash", "type": "path", - "x": 9337.2982, - "y": 3162.479 + "x": 8762.4492, + "y": 2168.1304 }, { "action": "fight", @@ -42,8 +42,8 @@ "id": 3, "move_mode": "dash", "type": "path", - "x": 9320.25, - "y": 3207.75 + "x": 8736.0498, + "y": 2146.8286 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/03\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\345\260\217\346\200\252\357\274\2108\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/711\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\344\270\234\357\274\210200_2\357\274\211.json" similarity index 62% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/03\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\345\260\217\346\200\252\357\274\2108\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/711\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\344\270\234\357\274\210200_2\357\274\211.json" index 3329723686..d4e58a65c1 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\345\260\217\346\200\252/03\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\345\260\217\346\200\252\357\274\2108\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/711\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\344\270\234\357\274\210200_2\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时108.06秒,包含以下怪物:1只凌晶·霜夜灵嗣、1只蕴光璇蛸。", "enable_monster_loot_split": false, - "last_modified_time": 1757900964712, + "last_modified_time": 1758034179890, "map_match_method": "", "map_name": "Teyvat", - "name": "03挪德卡莱希汐岛小怪(8)", + "name": "711挪德卡莱空寂走廊东(200_2)", "tags": [], "type": "collect", "version": "1.0" @@ -24,71 +24,62 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 10412.25, - "y": 1648.25 + "x": 8953.2383, + "y": 2504.5049 }, { - "action": "stop_flying", + "action": "", "action_params": "", "id": 2, - "move_mode": "fly", + "move_mode": "dash", "type": "path", - "x": 10440, - "y": 1651.5 + "x": 8913.5215, + "y": 2513.6343 }, { - "action": "fight", - "action_params": "", + "action": "stop_flying", + "action_params": "3000", "id": 3, - "move_mode": "walk", + "move_mode": "fly", "type": "path", - "x": 10440, - "y": 1651.5 + "x": 8824.1895, + "y": 2491.1865 }, { - "action": "", + "action": "fight", "action_params": "", "id": 4, - "move_mode": "walk", - "type": "teleport", - "x": 10790, - "y": 2280.5 - }, - { - "action": "", - "action_params": "", - "id": 5, "move_mode": "dash", "type": "path", - "x": 10743, - "y": 2328.5 + "x": 8821.2734, + "y": 2491.6812 }, { - "action": "fight", + "action": "", "action_params": "", - "id": 6, + "id": 5, "move_mode": "dash", "type": "path", - "x": 10734.1, - "y": 2409.3 + "x": 8801.4736, + "y": 2494.8486 }, { "action": "", "action_params": "", - "id": 7, + "id": 6, "move_mode": "dash", "type": "path", - "x": 10709, - "y": 2478.5 + "x": 8782.1953, + "y": 2438.7351 }, { "action": "fight", "action_params": "", - "id": 8, + "id": 7, "move_mode": "dash", "type": "path", - "x": 10687.5, - "y": 2479 + "x": 8750.1016, + "y": 2401.6147 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/13\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/712\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\215\227\357\274\210200_1\357\274\211.json" similarity index 60% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/13\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/712\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\215\227\357\274\210200_1\357\274\211.json" index abdde043d7..fab61cec4c 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/13\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_1\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/712\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\215\227\357\274\210200_1\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时47.42秒,包含以下怪物:1只蕴光奇羊。", "enable_monster_loot_split": false, - "last_modified_time": 1757833951549, + "last_modified_time": 1758034237316, "map_match_method": "", "map_name": "Teyvat", - "name": "13挪德卡莱希汐岛(200_1)", + "name": "712挪德卡莱空寂走廊南(200_1)", "tags": [], "type": "collect", "version": "1.0" @@ -24,8 +24,8 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 10958, - "y": 1689 + "x": 9211.6367, + "y": 2522.6865 }, { "action": "", @@ -33,8 +33,8 @@ "id": 2, "move_mode": "dash", "type": "path", - "x": 11016, - "y": 1685.5 + "x": 9185.5479, + "y": 2545.3569 }, { "action": "fight", @@ -42,8 +42,8 @@ "id": 3, "move_mode": "dash", "type": "path", - "x": 11073, - "y": 1712.75 + "x": 9166.0518, + "y": 2591.4453 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/14\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_5\357\274\214400_1\357\274\211.json" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/713\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\214\227\357\274\210200_5\357\274\211.json" similarity index 56% rename from "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/14\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_5\357\274\214400_1\357\274\211.json" rename to "repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/713\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\214\227\357\274\210200_5\357\274\211.json" index ccf9e3cd82..9756b73a67 100644 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\346\214\252\345\276\267\345\215\241\350\216\261\351\224\204\345\234\260\347\262\276\350\213\261/14\346\214\252\345\276\267\345\215\241\350\216\261\345\270\214\346\261\220\345\262\233\357\274\210200_5\357\274\214400_1\357\274\211.json" +++ "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/3\344\275\216\346\225\210/713\346\214\252\345\276\267\345\215\241\350\216\261\347\251\272\345\257\202\350\265\260\345\273\212\345\214\227\357\274\210200_5\357\274\211.json" @@ -2,17 +2,17 @@ "info": { "authors": [ { - "links": "", - "name": "半夏" + "links": "https://github.com/jiegedabaobei", + "name": "汐" } ], "bgi_version": "0.45.0", - "description": "", + "description": " 路线信息:该路线预计用时103.91秒,包含以下怪物:2只火史莱姆、3只雷史莱姆、1只灼烜·霜夜灵嗣、1只蕴光奇羊、3只荒野幽徒。", "enable_monster_loot_split": false, - "last_modified_time": 1757833949972, + "last_modified_time": 1758034424975, "map_match_method": "", "map_name": "Teyvat", - "name": "14挪德卡莱希汐岛(200_5,400_1)", + "name": "713挪德卡莱空寂走廊北(200_5)", "tags": [], "type": "collect", "version": "1.0" @@ -24,8 +24,8 @@ "id": 1, "move_mode": "walk", "type": "teleport", - "x": 10821.75, - "y": 1943.5 + "x": 9188.4307, + "y": 2846.7722 }, { "action": "", @@ -33,44 +33,44 @@ "id": 2, "move_mode": "dash", "type": "path", - "x": 10923.5, - "y": 1909.25 + "x": 9178.8047, + "y": 2838.3516 }, { - "action": "fight", + "action": "", "action_params": "", "id": 3, "move_mode": "dash", "type": "path", - "x": 10932.25, - "y": 1918 + "x": 9149.5, + "y": 2849.7847 }, { - "action": "", + "action": "fight", "action_params": "", "id": 4, - "move_mode": "walk", + "move_mode": "dash", "type": "path", - "x": 10932.25, - "y": 1918 + "x": 9119.6699, + "y": 2870.2712 }, { - "action": "fight", + "action": "", "action_params": "", "id": 5, "move_mode": "dash", "type": "path", - "x": 10890.75, - "y": 2014.25 + "x": 9072.4209, + "y": 2832.4436 }, { - "action": "", + "action": "fight", "action_params": "", "id": 6, - "move_mode": "walk", + "move_mode": "dash", "type": "path", - "x": 10890.75, - "y": 2014.25 + "x": 9068.4014, + "y": 2773.6401 }, { "action": "", @@ -78,17 +78,26 @@ "id": 7, "move_mode": "dash", "type": "path", - "x": 10890.5, - "y": 2045.25 + "x": 9103.0459, + "y": 2777.5845 }, { - "action": "fight", + "action": "", "action_params": "", "id": 8, + "move_mode": "fly", + "type": "path", + "x": 9133.5215, + "y": 2790.2219 + }, + { + "action": "fight", + "action_params": "", + "id": 9, "move_mode": "dash", "type": "path", - "x": 10916, - "y": 2068.75 + "x": 9154.9072, + "y": 2793.5222 } ] } \ No newline at end of file diff --git "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/control.json5" "b/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/control.json5" deleted file mode 100644 index f75e4ca44c..0000000000 --- "a/repo/pathing/\351\224\204\345\234\260\344\270\223\345\214\272/\347\262\276\350\213\261400@\346\261\220/control.json5" +++ /dev/null @@ -1,1728 +0,0 @@ -{ - "global_cover": { - "farming_info": { - "allow_farming_count": true, - "primary_target": "elite" - } - }, - "json_list": [ - { - "name": "001璃月沉玉谷南陵 传奇", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 300.0, - "elite_details": "1200*2", - "total_mora": 2400.0 - } - } - }, - { - "name": "002枫丹湖中垂柳拳王艾威尔森 传奇", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 300.0, - "elite_details": "3000", - "total_mora": 3000.0 - } - } - }, - { - "name": "101蒙德雪山(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 7.0, - "elite_mob_count": 3.0, - "duration_seconds": 117.0, - "elite_details": "600*1,200*2", - "total_mora": 1315.0 - } - } - }, - { - "name": "102蒙德雪山(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 1.0, - "duration_seconds": 61.0, - "elite_details": "600*1", - "total_mora": 735.0 - } - } - }, - { - "name": "103蒙德雪山(600_2,200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 6.0, - "elite_mob_count": 6.0, - "duration_seconds": 181.0, - "elite_details": "600*2,200*4", - "total_mora": 2270.0 - } - } - }, - { - "name": "104蒙德奔狼领(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 4.0, - "duration_seconds": 51.0, - "elite_details": "200*4", - "total_mora": 845.0 - } - } - }, - { - "name": "105蒙德望风山地(200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 7.0, - "elite_mob_count": 1.0, - "duration_seconds": 33.0, - "elite_details": "200*1", - "total_mora": 515.0 - } - } - }, - { - "name": "107蒙德风龙废墟南(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 5.0, - "elite_mob_count": 3.0, - "duration_seconds": 133.0, - "elite_details": "600*1,200*2", - "total_mora": 1225.0 - } - } - }, - { - "name": "201璃月离沙郊(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 6.0, - "elite_mob_count": 3.0, - "duration_seconds": 91.0, - "elite_details": "600*1,200*2", - "total_mora": 1270.0 - } - } - }, - { - "name": "204璃月天衡山(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 2.0, - "duration_seconds": 85.0, - "elite_details": "600*1,200*1", - "total_mora": 935.0 - } - } - }, - { - "name": "206璃月孤云阁北(200_5)", - "cover": { - "farming_info": { - "normal_mob_count": 13.0, - "elite_mob_count": 5.0, - "duration_seconds": 137.0, - "elite_details": "200*5", - "total_mora": 1585.0 - } - } - }, - { - "name": "209璃月天遒谷(600_1,200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 7.0, - "elite_mob_count": 5.0, - "duration_seconds": 107.0, - "elite_details": "600*1,200*4", - "total_mora": 1715.0 - } - } - }, - { - "name": "210璃月南天门(600_2,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 6.0, - "elite_mob_count": 4.0, - "duration_seconds": 143.0, - "elite_details": "600*2,200*2", - "total_mora": 1870.0 - } - } - }, - { - "name": "211璃月虎牢山(600_1,200_5)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 6.0, - "duration_seconds": 161.0, - "elite_details": "600*1,200*5", - "total_mora": 1735.0 - } - } - }, - { - "name": "212璃月绝云间南(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 3.0, - "duration_seconds": 93.0, - "elite_details": "600*1,200*2", - "total_mora": 1045.0 - } - } - }, - { - "name": "213璃月庆云顶(600_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 107.0, - "elite_details": "600*3", - "total_mora": 1800.0 - } - } - }, - { - "name": "214璃月奥藏山北(600_3,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 5.0, - "duration_seconds": 110.0, - "elite_details": "600*3,200*2", - "total_mora": 2200.0 - } - } - }, - { - "name": "215璃月奥藏山下(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 40.0, - "elite_details": "600*1,200*1", - "total_mora": 800.0 - } - } - }, - { - "name": "216璃月珉林北(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 10.0, - "elite_mob_count": 1.0, - "duration_seconds": 64.0, - "elite_details": "600*1", - "total_mora": 1050.0 - } - } - }, - { - "name": "217璃月珉林南(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 4.0, - "elite_mob_count": 1.0, - "duration_seconds": 52.0, - "elite_details": "600*1", - "total_mora": 780.0 - } - } - }, - { - "name": "218璃月碧水原(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 4.0, - "elite_mob_count": 2.0, - "duration_seconds": 95.0, - "elite_details": "600*1,200*1", - "total_mora": 980.0 - } - } - }, - { - "name": "220璃月地中之盐(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 2.0, - "elite_mob_count": 1.0, - "duration_seconds": 51.0, - "elite_details": "600*1", - "total_mora": 690.0 - } - } - }, - { - "name": "221璃月震雷宫(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 1.0, - "duration_seconds": 39.0, - "elite_details": "600*1", - "total_mora": 645.0 - } - } - }, - { - "name": "222璃月层岩北(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 53.0, - "elite_details": "600*1,200*2", - "total_mora": 1000.0 - } - } - }, - { - "name": "223璃月层岩南(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 47.0, - "elite_details": "600*1,200*1", - "total_mora": 800.0 - } - } - }, - { - "name": "224璃月沉玉谷南陵浅滩(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 55.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "225璃月沉玉谷隐山猊兽南(200_6)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 6.0, - "duration_seconds": 95.0, - "elite_details": "200*6", - "total_mora": 1245.0 - } - } - }, - { - "name": "226璃月沉玉谷赤望台(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 73.0, - "elite_details": "600*1,200*2", - "total_mora": 1000.0 - } - } - }, - { - "name": "227璃月沉玉谷宝决口南(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 6.0, - "elite_mob_count": 4.0, - "duration_seconds": 80.0, - "elite_details": "200*4", - "total_mora": 1070.0 - } - } - }, - { - "name": "228璃月沉玉谷神像(200_8)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 8.0, - "duration_seconds": 160.0, - "elite_details": "200*8", - "total_mora": 1600.0 - } - } - }, - { - "name": "229璃月沉玉谷宝决口东(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 70.0, - "elite_details": "600*1,200*2", - "total_mora": 1000.0 - } - } - }, - { - "name": "230璃月沉玉谷药蝶谷西(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 4.0, - "elite_mob_count": 1.0, - "duration_seconds": 68.0, - "elite_details": "600*1", - "total_mora": 780.0 - } - } - }, - { - "name": "232璃月沉玉谷灵濛山南(600_1,200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 5.0, - "duration_seconds": 128.0, - "elite_details": "600*1,200*4", - "total_mora": 1400.0 - } - } - }, - { - "name": "233璃月沉玉谷灵濛山东北(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 5.0, - "elite_mob_count": 2.0, - "duration_seconds": 85.0, - "elite_details": "600*1,200*1", - "total_mora": 1025.0 - } - } - }, - { - "name": "234璃月沉玉谷上灵濛山东(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 3.0, - "duration_seconds": 55.0, - "elite_details": "200*3", - "total_mora": 735.0 - } - } - }, - { - "name": "235璃月层岩南山顶丘丘王(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 106.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "236璃月层岩地下临时矿道(600_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 85.0, - "elite_details": "600*2", - "total_mora": 1200.0 - } - } - }, - { - "name": "237璃月层岩地下巨蛇岩洞(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 42.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "238璃月层岩地下巨蛇岩洞(200_6)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 6.0, - "duration_seconds": 80.0, - "elite_details": "200*6", - "total_mora": 1200.0 - } - } - }, - { - "name": "239璃月层岩水泽南(600_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 108.0, - "elite_details": "600*2", - "total_mora": 1200.0 - } - } - }, - { - "name": "240璃月层岩水泽(600_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 79.0, - "elite_details": "600*2", - "total_mora": 1200.0 - } - } - }, - { - "name": "241璃月层岩地下狭光道(600_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 80.0, - "elite_details": "600*2", - "total_mora": 1200.0 - } - } - }, - { - "name": "242璃月层岩地下无名遗迹(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 54.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "243璃月层岩地下崎岖石厅北(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 59.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "244璃月层岩地下崎岖石厅南(600_4)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 4.0, - "duration_seconds": 130.0, - "elite_details": "600*4", - "total_mora": 2445.0 - } - } - }, - { - "name": "245璃月层岩地下狭光道东(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 67.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "246璃月层岩地下狭光道西(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 92.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "301稻妻镇守之森(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 7.0, - "elite_mob_count": 2.0, - "duration_seconds": 80.0, - "elite_details": "600*1,200*1", - "total_mora": 1115.0 - } - } - }, - { - "name": "302稻妻荒海(600_1,200_5)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 6.0, - "duration_seconds": 136.0, - "elite_details": "600*1,200*5", - "total_mora": 1600.0 - } - } - }, - { - "name": "303稻妻砂流之庭(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 30.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "304稻妻九条海滩(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 17.0, - "elite_mob_count": 3.0, - "duration_seconds": 184.0, - "elite_details": "600*1,200*2", - "total_mora": 1765.0 - } - } - }, - { - "name": "305稻妻相之火旁(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 5.0, - "elite_mob_count": 1.0, - "duration_seconds": 76.0, - "elite_details": "600*1", - "total_mora": 825.0 - } - } - }, - { - "name": "306稻妻踏鞴砂(600_1,200_19)", - "cover": { - "farming_info": { - "normal_mob_count": 15.0, - "elite_mob_count": 20.0, - "duration_seconds": 400.0, - "elite_details": "600*1,200*19", - "total_mora": 5075.0 - } - } - }, - { - "name": "307稻妻绝缘本后山洞(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 60.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "310稻妻珊瑚宫(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 1.0, - "duration_seconds": 55.0, - "elite_details": "600*1", - "total_mora": 645.0 - } - } - }, - { - "name": "311稻妻萌云神社(600_1,200_5)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 6.0, - "duration_seconds": 128.0, - "elite_details": "600*1,200*5", - "total_mora": 1735.0 - } - } - }, - { - "name": "312稻妻清赖丸(600_1,200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 4.0, - "elite_mob_count": 5.0, - "duration_seconds": 156.0, - "elite_details": "600*1,200*4", - "total_mora": 1580.0 - } - } - }, - { - "name": "313稻妻越石村(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 24.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "314稻妻平海砦北(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 32.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "315稻妻平海砦南(200_6)", - "cover": { - "farming_info": { - "normal_mob_count": 2.0, - "elite_mob_count": 6.0, - "duration_seconds": 100.0, - "elite_details": "200*6", - "total_mora": 1290.0 - } - } - }, - { - "name": "318稻妻鹤观知比山(200_5)", - "cover": { - "farming_info": { - "normal_mob_count": 4.0, - "elite_mob_count": 5.0, - "duration_seconds": 117.0, - "elite_details": "200*5", - "total_mora": 1180.0 - } - } - }, - { - "name": "320稻妻鹤馆惑饲滩(600_1,400_2,200_8~15)", - "cover": { - "farming_info": { - "normal_mob_count": 8.0, - "elite_mob_count": 11.0, - "duration_seconds": 420.0, - "elite_details": "600*1,400*2,200*8", - "total_mora": 3360.0 - } - } - }, - { - "name": "321稻妻鹤馆(400_3,200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 7.0, - "duration_seconds": 117.0, - "elite_details": "400*3,200*4", - "total_mora": 2135.0 - } - } - }, - { - "name": "322稻妻渊下宫蛇肠之路南(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 37.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "323稻妻渊下宫蛇肠之路东(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 54.0, - "elite_details": "200*4", - "total_mora": 800.0 - } - } - }, - { - "name": "326稻妻渊下宫狭间之街西北(600_2,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 4.0, - "duration_seconds": 148.0, - "elite_details": "600*2,200*2", - "total_mora": 1735.0 - } - } - }, - { - "name": "328稻妻渊下宫狭间之街到东北(600_1,200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 4.0, - "duration_seconds": 100.0, - "elite_details": "600*1,200*3", - "total_mora": 1335.0 - } - } - }, - { - "name": "329稻妻渊下宫大日御舆北小岛(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 8.0, - "elite_mob_count": 2.0, - "duration_seconds": 101.0, - "elite_details": "600*1,200*1", - "total_mora": 1160.0 - } - } - }, - { - "name": "330【水免】【高危】稻妻渊下宫大日御舆西(600_1,200_7)", - "cover": { - "farming_info": { - "normal_mob_count": 8.0, - "elite_mob_count": 8.0, - "duration_seconds": 234.0, - "elite_details": "600*1,200*7", - "total_mora": 2360.0 - } - } - }, - { - "name": "332稻妻渊下宫常夜灵庙东北(600_2,200_7)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 9.0, - "duration_seconds": 139.0, - "elite_details": "600*2,200*7", - "total_mora": 2600.0 - } - } - }, - { - "name": "334稻妻渊下宫常夜灵庙南(600_1,200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 2.0, - "elite_mob_count": 4.0, - "duration_seconds": 85.0, - "elite_details": "600*1,200*3", - "total_mora": 1290.0 - } - } - }, - { - "name": "335【高危】稻妻渊下宫蛇心之地西北(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 59.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "336稻妻渊下宫蛇心之地(600_2,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 112.0, - "elite_details": "600*2,200*2", - "total_mora": 1600.0 - } - } - }, - { - "name": "337【高危】稻妻渊下宫蛇心之地东(600_1,200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 5.0, - "duration_seconds": 120.0, - "elite_details": "600*1,200*4", - "total_mora": 1400.0 - } - } - }, - { - "name": "338【水免】【高危】稻妻渊下宫蛇心之地南小岛(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 143.0, - "elite_details": "600*1,200*1", - "total_mora": 800.0 - } - } - }, - { - "name": "401须弥降诸魔山神像(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 36.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "406须弥往昔的桓那兰那(400_2,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 60.0, - "elite_details": "400*2,200*2", - "total_mora": 1200.0 - } - } - }, - { - "name": "407须弥善见地(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 8.0, - "elite_mob_count": 2.0, - "duration_seconds": 97.0, - "elite_details": "600*1,200*1", - "total_mora": 1160.0 - } - } - }, - { - "name": "408须弥茶诃之座2丘丘王(600_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 43.0, - "elite_details": "600*2", - "total_mora": 1200.0 - } - } - }, - { - "name": "411须弥沙漠饱饮之丘东(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 4.0, - "elite_mob_count": 1.0, - "duration_seconds": 56.0, - "elite_details": "600*1", - "total_mora": 780.0 - } - } - }, - { - "name": "412须弥沙漠圣显厅北(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 103.0, - "elite_details": "600*1,200*1", - "total_mora": 800.0 - } - } - }, - { - "name": "413须弥沙漠圣显厅门口(200_7)", - "cover": { - "farming_info": { - "normal_mob_count": 8.0, - "elite_mob_count": 7.0, - "duration_seconds": 131.0, - "elite_details": "200*7", - "total_mora": 1760.0 - } - } - }, - { - "name": "414须弥沙漠沙虫隧道(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 47.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "416须弥沙漠五绿洲的子遗地下(600_1,200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 114.0, - "elite_details": "600*1,200*3", - "total_mora": 1200.0 - } - } - }, - { - "name": "417须弥沙漠三运河之地北(600_1)", - "cover": { - "farming_info": { - "normal_mob_count": 7.0, - "elite_mob_count": 1.0, - "duration_seconds": 79.0, - "elite_details": "600*1", - "total_mora": 915.0 - } - } - }, - { - "name": "503枫丹实验室遗址东(600_1,200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 23.0, - "elite_mob_count": 5.0, - "duration_seconds": 244.0, - "elite_details": "600*1,200*4", - "total_mora": 2435.0 - } - } - }, - { - "name": "504枫丹茉洁站(200_7)", - "cover": { - "farming_info": { - "normal_mob_count": 6.0, - "elite_mob_count": 7.0, - "duration_seconds": 131.0, - "elite_details": "200*7", - "total_mora": 1670.0 - } - } - }, - { - "name": "507枫丹幽林雾道(600_1,200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 7.0, - "elite_mob_count": 3.0, - "duration_seconds": 89.0, - "elite_details": "600*1,200*2", - "total_mora": 1315.0 - } - } - }, - { - "name": "508枫丹厄里那斯北(600_2,400_4,200_7)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 13.0, - "duration_seconds": 313.0, - "elite_details": "600*2,400*4,200*7", - "total_mora": 4335.0 - } - } - }, - { - "name": "509枫丹厄里那斯西(600_1,400_1,200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 6.0, - "duration_seconds": 144.0, - "elite_details": "600*1,400*1,200*4", - "total_mora": 1800.0 - } - } - }, - { - "name": "510枫丹厄里那斯南(400_2,200_5)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 7.0, - "duration_seconds": 96.0, - "elite_details": "400*2,200*5", - "total_mora": 1800.0 - } - } - }, - { - "name": "511枫丹苍晶区f6(600_1,200_10)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 11.0, - "duration_seconds": 262.0, - "elite_details": "600*1,200*10", - "total_mora": 2645.0 - } - } - }, - { - "name": "516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 2.0, - "elite_mob_count": 2.0, - "duration_seconds": 90.0, - "elite_details": "600*1,200*1", - "total_mora": 890.0 - } - } - }, - { - "name": "518枫丹佩特莉可镇 浊水幻灵(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 55.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "601纳塔奥奇(600_1,400_1)次数盾", - "cover": { - "farming_info": { - "normal_mob_count": 4.0, - "elite_mob_count": 2.0, - "duration_seconds": 124.0, - "elite_details": "600*1,400*1", - "total_mora": 1180.0 - } - } - }, - { - "name": "602纳塔奥奇(600_3)次数盾", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 3.0, - "duration_seconds": 149.0, - "elite_details": "600*3", - "total_mora": 2005.0 - } - } - }, - { - "name": "603纳塔奥奇(600_4)次数盾", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 218.0, - "elite_details": "600*4", - "total_mora": 2400.0 - } - } - }, - { - "name": "604纳塔奥奇(400_3,200_9)次数盾", - "cover": { - "farming_info": { - "normal_mob_count": 10.0, - "elite_mob_count": 12.0, - "duration_seconds": 402.0, - "elite_details": "400*3,200*9", - "total_mora": 3450.0 - } - } - }, - { - "name": "605纳塔奥奇(600_1)次数盾", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 61.0, - "elite_details": "600*1", - "total_mora": 600.0 - } - } - }, - { - "name": "606纳塔奥奇(400_2,200_2)次数盾", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 4.0, - "duration_seconds": 186.0, - "elite_details": "600*1,400*1,200*2", - "total_mora": 1445.0 - } - } - }, - { - "name": "607纳塔奥奇东南岛(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 40.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "611纳塔火山安饶之野东北边缘(200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 7.0, - "elite_mob_count": 1.0, - "duration_seconds": 61.0, - "elite_details": "200*1", - "total_mora": 655.0 - } - } - }, - { - "name": "612纳塔火山安饶之野入口(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 5.0, - "elite_mob_count": 2.0, - "duration_seconds": 80.0, - "elite_details": "600*1,200*1", - "total_mora": 1025.0 - } - } - }, - { - "name": "316稻妻天云峠(200_20)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 20.0, - "duration_seconds": 306.0, - "elite_details": "200*20", - "total_mora": 4000.0 - } - } - }, - { - "name": "317稻妻鹤观千来神祠(200_12~16)", - "cover": { - "farming_info": { - "normal_mob_count": 7.0, - "elite_mob_count": 12.0, - "duration_seconds": 250.0, - "elite_details": "200*12", - "total_mora": 2715.0 - } - } - }, - { - "name": "319稻妻鹤观茂知祭场(200_9)", - "cover": { - "farming_info": { - "normal_mob_count": 6.0, - "elite_mob_count": 9.0, - "duration_seconds": 184.0, - "elite_details": "200*9", - "total_mora": 2070.0 - } - } - }, - { - "name": "106蒙德风龙废墟北(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 87.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "202【高危】璃月灵矩关(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 151.0, - "elite_details": "200*4", - "total_mora": 800.0 - } - } - }, - { - "name": "203璃月遁玉陵f4(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 141.0, - "elite_details": "200*4", - "total_mora": 800.0 - } - } - }, - { - "name": "205【高危】璃月孤云阁f4(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 99.0, - "elite_details": "200*4", - "total_mora": 800.0 - } - } - }, - { - "name": "207【高危】璃月孤云阁山顶(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 103.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "208璃月渌华池(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 3.0, - "duration_seconds": 80.0, - "elite_details": "200*3", - "total_mora": 735.0 - } - } - }, - { - "name": "219璃月轻策庄 浊水幻灵(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 41.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "231璃月沉玉谷暝垣山(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 86.0, - "elite_details": "200*4", - "total_mora": 800.0 - } - } - }, - { - "name": "308稻妻水月池(200_8)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 8.0, - "duration_seconds": 252.0, - "elite_details": "200*8", - "total_mora": 1600.0 - } - } - }, - { - "name": "309稻妻海祇岛北(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 39.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "324稻妻渊下宫狭间之街西南(200_5)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 5.0, - "duration_seconds": 106.0, - "elite_details": "200*5", - "total_mora": 1000.0 - } - } - }, - { - "name": "325稻妻渊下宫狭间之街西(200_9)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 9.0, - "duration_seconds": 183.0, - "elite_details": "200*9", - "total_mora": 1800.0 - } - } - }, - { - "name": "327稻妻渊下宫狭间之街到东南(200_6)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 6.0, - "duration_seconds": 219.0, - "elite_details": "200*6", - "total_mora": 1200.0 - } - } - }, - { - "name": "331稻妻渊下宫大日御舆东(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 73.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "333稻妻渊下宫常夜灵庙西南(200_7)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 7.0, - "duration_seconds": 144.0, - "elite_details": "200*7", - "total_mora": 1400.0 - } - } - }, - { - "name": "402须弥香醉坡(200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 41.0, - "elite_details": "200*1", - "total_mora": 200.0 - } - } - }, - { - "name": "403须弥茸蕈窟(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 4.0, - "duration_seconds": 122.0, - "elite_details": "200*4", - "total_mora": 800.0 - } - } - }, - { - "name": "404须弥二净甸(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 136.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "405须弥觉王之殿南(600_1,200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 5.0, - "elite_mob_count": 2.0, - "duration_seconds": 121.0, - "elite_details": "600*1,200*1", - "total_mora": 1025.0 - } - } - }, - { - "name": "409须弥茶诃之座(200_9)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 9.0, - "duration_seconds": 224.0, - "elite_details": "200*9", - "total_mora": 1800.0 - } - } - }, - { - "name": "410须弥沙漠丰饶绿洲(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 46.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "415须弥沙漠避让之丘(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 46.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "501枫丹城 浊水幻灵(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 3.0, - "duration_seconds": 60.0, - "elite_details": "200*3", - "total_mora": 645.0 - } - } - }, - { - "name": "502【高危】枫丹芒索斯山东麓(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 130.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "505枫丹茉洁站北 浊水幻灵(200_6)", - "cover": { - "farming_info": { - "normal_mob_count": 9.0, - "elite_mob_count": 6.0, - "duration_seconds": 195.0, - "elite_details": "200*6", - "total_mora": 1605.0 - } - } - }, - { - "name": "506枫丹湖中垂柳 浊水幻灵(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 87.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "512枫丹苍晶区神像(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 45.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "513枫丹厄里那斯东 浊水幻灵(200_2)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 2.0, - "duration_seconds": 50.0, - "elite_details": "200*2", - "total_mora": 400.0 - } - } - }, - { - "name": "514枫丹秋分山西侧 浊水幻灵(200_6)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 6.0, - "duration_seconds": 175.0, - "elite_details": "200*6", - "total_mora": 1335.0 - } - } - }, - { - "name": "515枫丹秋分山东 浊水幻灵(200_6)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 6.0, - "duration_seconds": 130.0, - "elite_details": "200*6", - "total_mora": 1200.0 - } - } - }, - { - "name": "517枫丹莫尔泰区 浊水幻灵(200_4)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 4.0, - "duration_seconds": 106.0, - "elite_details": "200*4", - "total_mora": 935.0 - } - } - }, - { - "name": "608纳塔城(200_5)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 5.0, - "duration_seconds": 185.0, - "elite_details": "200*5", - "total_mora": 1000.0 - } - } - }, - { - "name": "609纳塔溶水域南(200_3)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 3.0, - "duration_seconds": 134.0, - "elite_details": "200*3", - "total_mora": 600.0 - } - } - }, - { - "name": "610纳塔硫晶支脉(200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 43.0, - "elite_details": "200*1", - "total_mora": 200.0 - } - } - }, - { - "name": "613纳塔火山孑遗的留迹 炉壳山鼬(200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 0.0, - "elite_mob_count": 1.0, - "duration_seconds": 94.0, - "elite_details": "200*1", - "total_mora": 200.0 - } - } - }, - { - "name": "614纳塔火山安饶之野南 炉壳山鼬(200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 3.0, - "elite_mob_count": 1.0, - "duration_seconds": 61.0, - "elite_details": "200*1", - "total_mora": 335.0 - } - } - }, - { - "name": "615纳塔火山安饶之野西 炉壳山鼬(200_1)", - "cover": { - "farming_info": { - "normal_mob_count": 1.0, - "elite_mob_count": 1.0, - "duration_seconds": 65.0, - "elite_details": "200*1", - "total_mora": 280.0 - } - } - }, - { - } - ] -} \ No newline at end of file