diff --git a/repo/js/消耗复活料理/main.js b/repo/js/消耗复活料理/main.js index daa9d003..0d43270b 100644 --- a/repo/js/消耗复活料理/main.js +++ b/repo/js/消耗复活料理/main.js @@ -1,4 +1,12 @@ (async function () { + // 定义六个运行时变量,初始值分别为 2000、1000、0、0、0、0 + let runtime1 = 2000; + let runtime2 = 1000; + let runtime3 = 0; + let runtime4 = 0; + let runtime5 = 0; + let runtime6 = 0; + // 从 settings 中获取最大循环次数,如果未配置则默认为 2000 const maxLoopCount = parseInt(settings.maxLoopCount || 2000, 10); @@ -27,6 +35,24 @@ const currentHour = now.getHours(); // 获取当前时间的小时数 const currentTime = now.toLocaleString(); // 获取完整的当前时间字符串 + // 更新 runtime 变量 + runtime6 = runtime5; + runtime5 = runtime4; + runtime4 = runtime3; + runtime3 = runtime2; + runtime2 = runtime1; + runtime1 = now.getTime(); + + // 检查时间差条件 + if ((runtime1 - runtime2) < 500 && + (runtime2 - runtime3) < 500 && + (runtime3 - runtime4) < 500 && + (runtime4 - runtime5) < 500 && + (runtime5 - runtime6) < 500) { + log.info(`连续五次时间差小于 500 毫秒,循环终止。`); + break; // 如果连续五次时间差小于 500 毫秒,退出循环 + } + // 如果当前时间的小时数与排除时间相同,则退出循环 if (currentHour === excludeHour) { log.info(`当前时间是 ${currentTime},与排除时间小时数相同,将退出循环`); @@ -36,14 +62,7 @@ // 记录当前时间 log.info(`正在执行循环第 ${i + 1} 次,总共 ${maxLoopCount} 次,当前时间: ${currentTime}`); - try { - // 运行路径追踪任务 - await pathingScript.runFile(pathFileName); - } catch (error) { - // 捕获并处理路径追踪任务中的错误 - log.error(`在第 ${i + 1} 次循环中运行路径追踪任务时发生错误: ${error.message}`); - log.error("由于发生错误,将退出整个程序"); - return; // 退出整个程序 - } + // 运行路径追踪任务 + await pathingScript.runFile(pathFileName); } })(); diff --git a/repo/js/自动小怪锄地规划/main.js b/repo/js/自动小怪锄地规划/main.js index baca6a7c..eadc35c2 100644 --- a/repo/js/自动小怪锄地规划/main.js +++ b/repo/js/自动小怪锄地规划/main.js @@ -17,6 +17,15 @@ let failCount = 0; // 失败复制的文件数量 let routeIndex = 0; // 当前筛选的路线序号 + // 定义六个运行时变量,初始值分别为 2000、1000、0、0、0、0 + let runtime1 = 2000; + let runtime2 = 1000; + let runtime3 = 0; + let runtime4 = 0; + let runtime5 = 0; + let runtime6 = 0; + + // 日志输出配置参数 log.info( `自动小怪锄地规划 - 配置信息:` + @@ -66,8 +75,28 @@ if (operationMode === "执行路径文件") { log.info(`当前任务为第 ${i + 1}/${savedRoutes.length} 个`); const now = new Date(); // 获取开始时间 const startTime = now.toISOString(); + +// 更新 runtime 变量 + runtime6 = runtime5; + runtime5 = runtime4; + runtime4 = runtime3; + runtime3 = runtime2; + runtime2 = runtime1; + runtime1 = now.getTime(); + + // 检查时间差条件 + if ((runtime1 - runtime2) < 500 && + (runtime2 - runtime3) < 500 && + (runtime3 - runtime4) < 500 && + (runtime4 - runtime5) < 500 && + (runtime5 - runtime6) < 500) { + log.info(`连续五次时间差小于 500 毫秒,循环终止。`); + break; // 如果连续五次时间差小于 500 毫秒,退出循环 + } + if (enableCooldownCheck && startTime < routeTimestamp) { log.info(`当前路线 ${routeName} 未刷新,跳过任务`); + await sleep(500); continue; // 跳过当前循环 } log.info(`当前路线 ${routeName} 已刷新或未启用CD检测,执行任务`); diff --git a/repo/js/自动精英锄地规划/main.js b/repo/js/自动精英锄地规划/main.js index 96a05daf..e3f852de 100644 --- a/repo/js/自动精英锄地规划/main.js +++ b/repo/js/自动精英锄地规划/main.js @@ -9,6 +9,15 @@ const requiredMonsterCount = parseInt(settings.requiredMonsterCount, 10) || 405; // 目标怪物数量 const minSecPerMonster = parseFloat(settings.minSecPerMonster) || 0.1; // 最低秒均 + // 定义六个运行时变量,初始值分别为 2000、1000、0、0、0、0 + let runtime1 = 2000; + let runtime2 = 1000; + let runtime3 = 0; + let runtime4 = 0; + let runtime5 = 0; + let runtime6 = 0; + + // 初始化文件路径(直接内置生成) const indexPath = 'index.txt'; const pathingDir = 'pathing/'; @@ -77,11 +86,30 @@ try { const now = new Date(); const startTime = now.toISOString(); // 获取开始时间 +// 更新 runtime 变量 + runtime6 = runtime5; + runtime5 = runtime4; + runtime4 = runtime3; + runtime3 = runtime2; + runtime2 = runtime1; + runtime1 = now.getTime(); + + // 检查时间差条件 + if ((runtime1 - runtime2) < 500 && + (runtime2 - runtime3) < 500 && + (runtime3 - runtime4) < 500 && + (runtime4 - runtime5) < 500 && + (runtime5 - runtime6) < 500) { + log.info(`连续五次时间差小于 500 毫秒,循环终止。`); + break; // 如果连续五次时间差小于 500 毫秒,退出循环 + } + // 如果启用了路线CD检测,检查当前时间是否不早于附加时间戳 if (enableRouteCdCheck) { const pathCDDate = new Date(pathCD); // 将附加时间戳转换为Date对象 if (now < pathCDDate) { log.info(`当前路线 ${pathName} 为第 ${i + 1}/${pathLines.length} 个,当前路线未刷新,放弃该路径`); + await sleep(500); continue; // 放弃该路径 } } diff --git a/repo/js/采集cd管理/main.js b/repo/js/采集cd管理/main.js index c705493c..0329a7a9 100644 --- a/repo/js/采集cd管理/main.js +++ b/repo/js/采集cd管理/main.js @@ -2,6 +2,14 @@ const recordFolder = "record"; // 存储记录文件的文件夹路径 const timestamp = "::2000-01-01T00:00:00.000Z"; // 固定的时间戳 + // 定义六个运行时变量,初始值分别为 2000、1000、0、0、0、0 + let runtime1 = 2000; + let runtime2 = 1000; + let runtime3 = 0; + let runtime4 = 0; + let runtime5 = 0; + let runtime6 = 0; + // 从 settings 中读取用户配置,并设置默认值 const userSettings = { operationMode: settings.operationMode || "执行任务(若不存在索引文件则自动创建)", @@ -172,10 +180,29 @@ try { // 获取开始时间 const startTime = new Date(); +// 更新 runtime 变量 + runtime6 = runtime5; + runtime5 = runtime4; + runtime4 = runtime3; + runtime3 = runtime2; + runtime2 = runtime1; + runtime1 = startTime.getTime(); + + // 检查时间差条件 + if ((runtime1 - runtime2) < 500 && + (runtime2 - runtime3) < 500 && + (runtime3 - runtime4) < 500 && + (runtime4 - runtime5) < 500 && + (runtime5 - runtime6) < 500) { + log.info(`连续五次时间差小于 500 毫秒,循环终止。`); + break; // 如果连续五次时间差小于 500 毫秒,退出循环 + } + // 比较当前时间戳与任务的时间戳 const entryDate = new Date(entryTimestamp); if (startTime <= entryDate) { log.info(`当前任务 ${entryName} 未刷新,跳过任务 ${i + 1}/${pathGroupEntries.length} 个`); + await sleep(500); continue; // 跳过当前任务 } diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json deleted file mode 100644 index 2a0f6191..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json +++ /dev/null @@ -1,202 +0,0 @@ -{ - "info": { - "name": "6101--纳塔_镜璧山_西海岸1_(8-13)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.5", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9989.5859375, - "y": -1607.810546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 10009.81307868715, - "y": -1623.655302627284, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 10017.0009765625, - "y": -1614.3408203125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10018.8076171875, - "y": -1608.7412109375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10099.248046875, - "y": -1593.97119140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 10109.7578125, - "y": -1585.60791015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 10155.79296875, - "y": -1589.97998046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 10166.468730249586, - "y": -1585.9061590522197, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(2)", - "type": "path" - }, - { - "id": 9, - "x": 10203.250379207962, - "y": -1571.873332624019, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keydown(s),wait(0.2),keydown(LSHIFT),wait(9),keyup(s),keyup(LSHIFT)", - "type": "path" - }, - { - "id": 10, - "x": 10155.062247194692, - "y": -1580.3749696840732, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 10142.74971559403, - "y": -1548.375909477808, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 10171.8955078125, - "y": -1532.7001953125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1.5),keydown(s),wait(0.2),keydown(LSHIFT),wait(6),keyup(s),keyup(LSHIFT)", - "type": "path" - }, - { - "id": 13, - "x": 10133.187270895189, - "y": -1553.5620149451688, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 10126.353515625, - "y": -1543.330078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 10124.2646484375, - "y": -1520.7216796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 10127.267578125, - "y": -1514.0390625, - "action": "combat_script", - "move_mode": "fly", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 17, - "x": 10101.166015625, - "y": -1495.7109375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 18, - "x": 10108.8754858602, - "y": -1505.6252576853785, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 10090.771484374998, - "y": -1541.08935546875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 20, - "x": 10068.359375, - "y": -1518.49560546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 21, - "x": 10068.359375, - "y": -1518.49560546875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json deleted file mode 100644 index 406f08fe..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "info": { - "name": "6102--纳塔_镜璧山_西海岸2_(8-6)", - "type": "collect", - "author": "Demo&汐", - "version": "1.2", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9989.5439453125, - "y": -1607.8603515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9920.437527650582, - "y": -1542.1876667375982, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9909.874996049917, - "y": -1532.3751818955616, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9893.333984375, - "y": -1509.58544921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9893.333984375, - "y": -1509.58544921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9908.5927734375, - "y": -1475.96044921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9899.921875, - "y": -1458.42626953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9960.318359375, - "y": -1451.52783203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9989.5439453125, - "y": -1607.8603515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 10, - "x": 9906.72265625, - "y": -1569.7939453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9898.843755925125, - "y": -1566.6875909477803, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 9873.250023700497, - "y": -1556.7504850548312, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 9857.23046875, - "y": -1550.548828125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 14, - "x": 9855.8603515625, - "y": -1549.86328125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 9830.666015625, - "y": -1507.94921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 9836.500110602323, - "y": -1490.9376061057446, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 9848.874940748756, - "y": -1452.2493785234983, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 9850.312456549087, - "y": -1447.6866208381189, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 9815.353515625, - "y": -1435.1533203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json deleted file mode 100644 index a8dd2b47..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "info": { - "name": "6103--纳塔_镜璧山_西海岸3_(5-3)", - "type": "collect", - "author": "Demo&mno", - "version": "1.4", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9783.6728515625, - "y": -1764.541015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9840.595703125, - "y": -1762.09765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9905.39453125, - "y": -1759.53662109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9908.1494140625, - "y": -1701.0185546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9968.9453125, - "y": -1690.4970703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 6, - "x": 9969.6337890625, - "y": -1721.8720703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 7, - "x": 9969.6337890625, - "y": -1721.8720703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json deleted file mode 100644 index c9995d21..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json +++ /dev/null @@ -1,238 +0,0 @@ -{ - "info": { - "name": "6104--纳塔_镜璧山_中部1_(8-6)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.2", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9638.84765625, - "y": -1855.60302734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9647.1171875, - "y": -1856.28515625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9621.6689453125, - "y": -1775.3916015625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 4, - "x": 9622.259765625, - "y": -1783.12744140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9627.01953125, - "y": -1792.43798828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9637.4091796875, - "y": -1781.15478515625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9654.271484375, - "y": -1754.931640625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5),", - "type": "path" - }, - { - "id": 8, - "x": 9661.750015800331, - "y": -1747.5629850548312, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9652.187563201327, - "y": -1724.968871263708, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9671.84375, - "y": -1701.7568359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9644.937586901824, - "y": -1673.4379547389035, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 9623.7236328125, - "y": -1650.015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 9632.4736328125, - "y": -1596.1435546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 9646.187563201327, - "y": -1547.375197053525, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 9631.26171875, - "y": -1534.52734375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 16, - "x": 9634.749905198008, - "y": -1526.7512126370766, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 9669.4970703125, - "y": -1494.357421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 9671.9970703125, - "y": -1489.80224609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 9674.62495852413, - "y": -1484.6250606318536, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 9670.156093971724, - "y": -1481.4070306351186, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 9668.187571101493, - "y": -1477.93706041906, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 9685.562448648921, - "y": -1459.6876061057446, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 9688.875031600663, - "y": -1454.562575789817, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 9718.250027650582, - "y": -1407.8753031592696, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 25, - "x": 9718.250027650582, - "y": -1407.8753031592696, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json deleted file mode 100644 index 707f3ce0..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "info": { - "name": "6105--纳塔_镜璧山_神像1_(4-0)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.4", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9481.5595703125, - "y": -1931.47119140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9441.021484375, - "y": -1944.1137695312505, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9403.625118502488, - "y": -1958.1241511540466, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9379.80078126, - "y": -1970.63720703126, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9379.80078126, - "y": -1970.63720703126, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6106--纳塔_镜璧山_中部2.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6106--纳塔_镜璧山_中部2.json deleted file mode 100644 index 7e5f79f6..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6106--纳塔_镜璧山_中部2.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "info": { - "name": "6106--纳塔_镜璧山_中部2", - "type": "collect", - "author": "Demo&汐", - "version": "1.3", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9481.6318359375, - "y": -1931.466796875, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9485.5263671875, - "y": -1877.5947265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9511.806640625, - "y": -1893.5791015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9511.806640625, - "y": -1893.5791015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9528.140625, - "y": -1888.69482421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9537.0849609375, - "y": -1939.61865234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9481.6318359375, - "y": -1931.466796875, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "teleport" - }, - { - "id": 8, - "x": 9462.000118502488, - "y": -1905.7479082010423, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9462.000118502488, - "y": -1905.7479082010423, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9429.6435546875, - "y": -1875.8095703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9429.6435546875, - "y": -1872.8095703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 9394.0986328125, - "y": -1869.40625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json deleted file mode 100644 index fb4eb77d..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "info": { - "name": "6107--纳塔_镜璧山_神像2_(9-6)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.6", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9395.392578125, - "y": -1810.55126953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9436.650390625, - "y": -1813.9853515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9430.3349609375, - "y": -1807.5244140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9441.249936798673, - "y": -1761.378092224546, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9442.437610602323, - "y": -1741.875318317233, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9451.813072762026, - "y": -1727.126743165798, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9452.8388671875, - "y": -1701.43701171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9456.65611372214, - "y": -1679.2806815763706, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1000", - "type": "path" - }, - { - "id": 9, - "x": 9458.8056640625, - "y": -1671.92431640625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9458.8056640625, - "y": -1671.92431640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9432.115234375, - "y": -1655.1220703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 9389.390625, - "y": -1660.4619140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 13, - "x": 9389.390625, - "y": -1660.4619140625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json deleted file mode 100644 index 17c178b8..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "info": { - "name": "6201--纳塔_奥奇_西北海岸_(8-1)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.7", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 10275.4326171875, - "y": -202.51513671875, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 10313.312705404313, - "y": -194.87446947127864, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 10315.063005610617, - "y": -188.1250151579634, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10261.7255859375, - "y": -146.59716796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10285.68760665224, - "y": -100.93762126370802, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3),keydown(d),keydown(w),wait(2),keyup(d),keyup(w)", - "type": "path" - }, - { - "id": 6, - "x": 10268.687756755391, - "y": -84.1239237845939, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 10201.1796875, - "y": -48.8779296875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 10268.187389397677, - "y": -85.40691695039277, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 10355.068359375, - "y": -83.44873046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 10372.2470703125, - "y": -118.30419921875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 11, - "x": 10384.500663613933, - "y": -124.99884799477695, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 12, - "x": 10381.562685653898, - "y": -134.31290926501333, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 13, - "x": 10380.3349609375, - "y": -165.1162109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 14, - "x": 10380.3349609375, - "y": -165.1162109375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json deleted file mode 100644 index ac7847a7..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "info": { - "name": "6203--纳塔_奥奇_中层悬崖_11-2)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.6", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 10018.7099609375, - "y": -338.068359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9996.687511850248, - "y": -334.87566695039277, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9995.281198648921, - "y": -304.62493936814644, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10011.384765625, - "y": -283.57470703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10018.500321931759, - "y": -274.93902337532745, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 10060.968728274544, - "y": -260.6250378949089, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 10105.515625, - "y": -266.7685546875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 8, - "x": 10097.344255610617, - "y": -281.4367117859001, - "action": "stop_flying", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 10093.344255610617, - "y": -277.4367117859001, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 10088.12890625, - "y": -273.54248046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 10114.25, - "y": -253.5, - "action": "", - "move_mode": "dash", - "type": "path" - }, - { - "id": 12, - "x": 10134.5078125, - "y": -238.7099609375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 13, - "x": 10142.781273700497, - "y": -213.15625757898215, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 10142.781273700497, - "y": -213.15625757898215, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 10174.87575051576, - "y": -182.72154664425852, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 10168.87575051576, - "y": -191.72154664425852, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 10142.781346777032, - "y": -213.15578768211435, - "action": "", - "move_mode": "dash", - "type": "path" - }, - { - "id": 18, - "x": 10095.781283575705, - "y": -234.56238631527413, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 19, - "x": 10087.718933678856, - "y": -228.62644000652926, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(2.5)", - "type": "path" - }, - { - "id": 20, - "x": 10078.969026505805, - "y": -241.12584884595344, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 21, - "x": 10063.498046875, - "y": -253.29443359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 22, - "x": 10063.498046875, - "y": -253.29443359375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json deleted file mode 100644 index b5b49536..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "info": { - "name": "6204--纳塔_奥奇_神像_(7-1)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.2", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9757.9482421875, - "y": -613.650390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9766.5576171875, - "y": -604.68017578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9761.093728274544, - "y": -577.1561590522197, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 4, - "x": 9752.44140626, - "y": -572.77099609376, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9756.124454888555, - "y": -542.124484629242, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9750.281220374378, - "y": -513.3751667375982, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9734.874762995023, - "y": -520.1252804223241, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9745.844145008294, - "y": -490.9077506383828, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9751.49940748756, - "y": -444.00051537075797, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9743.794921875, - "y": -433.16943359375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 11, - "x": 9743.794921875, - "y": -433.16943359375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json deleted file mode 100644 index c375dc11..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "info": { - "name": "6205--纳塔_奥奇_东北岛屿_(5-1)", - "type": "collect", - "author": "Demo&汐", - "version": "1.2", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9676.9794921875, - "y": 235.7958984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9677.078125, - "y": 243.4345703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9666.7099609375, - "y": 259.62158203125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1500", - "type": "path" - }, - { - "id": 4, - "x": 9666.7099609376, - "y": 259.62158203126, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9670.068359375, - "y": 171.36962890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 6, - "x": 9704.031228274544, - "y": 155.31268947454282, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9711.562551351079, - "y": 150.15598473563932, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9710.953125, - "y": 162.60107421875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9698.9296875, - "y": 168.240234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9687.2587890625, - "y": 162.67236328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json deleted file mode 100644 index d3058a28..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "info": { - "name": "6301--纳塔_翘枝崖_神像_(8-3)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.4", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9847.06640625, - "y": -1290.92578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9827.46484375, - "y": -1266.90576171875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 3, - "x": 9826.8056640625, - "y": -1297.8203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9785.3515625, - "y": -1250.80859375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 5, - "x": 9778.123046875, - "y": -1257.15625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9771.2734375, - "y": -1266.61474609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9764.1630859375, - "y": -1316.5986328125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 8, - "x": 9740.6962890625, - "y": -1313.9580078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9722.9326171875, - "y": -1290.5595703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 10, - "x": 9719.728515625, - "y": -1285.9248046875, - "action": "combat_script", - "move_mode": "jump", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 11, - "x": 9714.224609375, - "y": -1281.7724609375, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 9695.490234375, - "y": -1270.677734375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 13, - "x": 9691.462890625, - "y": -1283.5458984375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 14, - "x": 9691.462890625, - "y": -1283.5458984375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json deleted file mode 100644 index b5f9582a..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "info": { - "name": "6302--纳塔_翘枝崖_北海岸_(3-5)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9548.26171875, - "y": -1116.56103515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9550.65625, - "y": -1113.59033203125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(t),wait(2.5),keydown(d),wait(2),keyup(d),keypress(VK_SPACE),wait(0.5),keypress(VK_SPACE)", - "type": "path" - }, - { - "id": 3, - "x": 9444.033203125, - "y": -1170.794921875, - "action": "combat_script", - "move_mode": "run", - "action_params": "charge(4.5),keydown(q),wait(1.5),keyup(q),attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 9440.2421875, - "y": -1172.59130859375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9400.470703125, - "y": -1201.66845703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9408.9892578125, - "y": -1210.98876953125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 7, - "x": 9390.240234375, - "y": -1199.36083984375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9354.937503950083, - "y": -1222.1250303159268, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9255.0986328125, - "y": -1128.2724609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 10, - "x": 9255.0986328125, - "y": -1128.2724609375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json deleted file mode 100644 index bcb0a3aa..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "info": { - "name": "6303--纳塔_翘枝崖_花语会南_(3-6)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.2", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9587.40625, - "y": -1279.27294921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9593.84372432446, - "y": -1340.594500319191, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1000", - "type": "path" - }, - { - "id": 3, - "x": 9583.531433678856, - "y": -1345.7167415698414, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9576.056640625, - "y": -1350.1640625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9492.0615234375, - "y": -1366.2900390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9396.4951171875, - "y": -1376.82080078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9368.312468399337, - "y": -1376.500075789817, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9312.783203125, - "y": -1345.3798828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9307.94921875, - "y": -1357.4443359375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 10, - "x": 9287.048828125, - "y": -1318.8984375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 11, - "x": 9292.697265625, - "y": -1329.22998046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 12, - "x": 9292.697265625, - "y": -1329.22998046875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json deleted file mode 100644 index ab815665..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "info": { - "name": "6305--纳塔_翘枝崖_花语会南3_(4-4)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.2", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9229.48828125, - "y": -1729.55517578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9246.6865234375, - "y": -1734.0107421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9254.7333984375, - "y": -1709.0126953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9256.1318359375, - "y": -1703.59423828125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9276.8232421875, - "y": -1667.62646484375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 6, - "x": 9299.06640625, - "y": -1631.59423828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9301.5, - "y": -1622.7705078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9364.552734375, - "y": -1564.642578125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 9, - "x": 9348.041015625, - "y": -1567.9970703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9338.60546875, - "y": -1562.56982421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9367.2763671875, - "y": -1581.62744140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 9387.208984375, - "y": -1591.7197265625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 13, - "x": 9384.111328125, - "y": -1593.216796875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 14, - "x": 9384.111328125, - "y": -1593.216796875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json deleted file mode 100644 index d351a7ce..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json +++ /dev/null @@ -1,274 +0,0 @@ -{ - "info": { - "name": "6306--纳塔_翘枝崖_柴薪之丘_(11-18)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.5", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9033.37109375, - "y": -1373.115234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9029.250063201327, - "y": -1429.0304011540466, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 3, - "x": 9069.125165903482, - "y": -1472.248726731069, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 4, - "x": 9056.499816321144, - "y": -1463.9380077917758, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8981.1826171875, - "y": -1466.13232421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8989.3974609375, - "y": -1470.41162109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8966.669921875, - "y": -1511.31005859375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 8, - "x": 8961.302734375, - "y": -1512.78857421875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 9, - "x": 8939.3671875, - "y": -1538.8828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8834.7724609375, - "y": -1436.27783203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8841.750047400996, - "y": -1386.8124090522197, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8853.437531600663, - "y": -1375.0620755770233, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 8834.82421875, - "y": -1367.533203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 8823.875177753733, - "y": -1354.781052946475, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8787.0146484375, - "y": -1366.22607421875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 16, - "x": 8814.529296875, - "y": -1349.07763671875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 8856.3115234375, - "y": -1319.67529296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 8940.75045820962, - "y": -1302.0008640039177, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 8949.092952083247, - "y": -1293.874962105091, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 20, - "x": 8940.75045820962, - "y": -1302.0008640039177, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 8916.750211329438, - "y": -1266.3737039941243, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 8902.750189603981, - "y": -1281.502061483031, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 8890.375039500828, - "y": -1279.3762126370766, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 24, - "x": 8883.468738149752, - "y": -1319.0003865280687, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 8852.748656971802, - "y": -1310.2508791618811, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 8839.169921875, - "y": -1303.45458984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 8829.39453125, - "y": -1298.10595703125, - "action": "", - "move_mode": "climb", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 8785.935546875, - "y": -1308.20947265625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 29, - "x": 8785.935546875, - "y": -1308.20947265625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json deleted file mode 100644 index 70ef6bf9..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "info": { - "name": "6401--纳塔_万火之瓯_竞技场_(14-17)", - "type": "collect", - "author": "Demo&汐", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8909.6650390625, - "y": -1639.06884765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8941.5224609375, - "y": -1640.7080078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8964.580078125, - "y": -1616.6328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8986.0498046875, - "y": -1613.6533203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9008.8232421875, - "y": -1609.80712890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9010.36328125, - "y": -1605.0576171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9011.5390625, - "y": -1595.99658203125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8974.0966796875, - "y": -1590.099609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8988.595703125, - "y": -1592.8818359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9042.658203125, - "y": -1600.86474609375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9105.0625, - "y": -1639.861328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 9105.0625, - "y": -1640.861328125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click(middle),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),wait(2),keypress(e),wait(0.5)", - "type": "orientation" - }, - { - "id": 13, - "x": 9100.16015625, - "y": -1648.96240234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 9092.687464449253, - "y": -1657.3749696840732, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 9090.43752567554, - "y": -1656.0625227369455, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(E),wait(1.5),keydown(Q),wait(1.5),keyup(Q),attack(0.3)", - "type": "path" - }, - { - "id": 16, - "x": 9089.031090021641, - "y": -1656.1566213701044, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 9098.98828125, - "y": -1707.396484375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2500", - "type": "path" - }, - { - "id": 18, - "x": 9074.0732421875, - "y": -1712.41455078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 9059.750079001658, - "y": -1720.7510913733695, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 9037.390625, - "y": -1730.96923828125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 9033.390626, - "y": -1732.96923828126, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 8996.86328125, - "y": -1775.3447265625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 23, - "x": 8975.29296875, - "y": -1810.0185546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 8978.3154296875, - "y": -1872.341796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 25, - "x": 8949.9482421875, - "y": -1877.0283203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 8934.263671875, - "y": -1882.60400390625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 8907.05859375, - "y": -1895.1953125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 28, - "x": 8901.880859375, - "y": -1883.70751953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json deleted file mode 100644 index febfac9f..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "info": { - "name": "6404--纳塔_万火之瓯_竞技场4_(12-11)", - "type": "collect", - "author": "Demo&汐", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8706.4228515625, - "y": -1575.01416015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8693.724609375, - "y": -1654.640625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8642.9990234375, - "y": -1665.65283203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8642.9990234375, - "y": -1665.65283203125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click(middle),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T)", - "type": "path" - }, - { - "id": 5, - "x": 8628.4375, - "y": -1677.763671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8615.109375, - "y": -1679.521484375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(e),wait(0.2),keypress(e),,wait(1.5),keypress(e)", - "type": "path" - }, - { - "id": 7, - "x": 8541.402343750002, - "y": -1676.99951171875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(e),wait(0.2),keypress(e)", - "type": "path" - }, - { - "id": 8, - "x": 8499.314453125, - "y": -1670.90380859375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(e),wait(0.2),keypress(e)", - "type": "path" - }, - { - "id": 9, - "x": 8470.8876953125, - "y": -1664.9716796875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keydown(q),wait(1.5),keyup(q),attack(0.3)", - "type": "path" - }, - { - "id": 10, - "x": 8458.21902058068, - "y": -1662.0935605254572, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8511.2880859375, - "y": -1606.28662109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8513.6875, - "y": -1590.04736328125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "click", - "type": "path" - }, - { - "id": 13, - "x": 8510.847656249998, - "y": -1609.39111328125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 8510.847656249998, - "y": -1609.39111328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8541.031261850248, - "y": -1602.1874469471277, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 8569.6796875, - "y": -1601.06494140625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,", - "type": "path" - }, - { - "id": 17, - "x": 8595.250292306137, - "y": -1605.623969258485, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 8706.4228515625, - "y": -1575.01416015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 19, - "x": 8670.478515625, - "y": -1542.06396484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 8639.091796875, - "y": -1423.95654296875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json deleted file mode 100644 index 224b9278..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "info": { - "name": "6405--纳塔_万火之瓯_竞技场5_(3-5)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9084.142578125, - "y": -1965.3291015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9074.2177734375, - "y": -1974.69970703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9076.146484375, - "y": -2019.005859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9050.75390625, - "y": -2029.556640625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1500", - "type": "path" - }, - { - "id": 5, - "x": 9015.00390625, - "y": -2049.71875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9015.00390625, - "y": -2049.71875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json deleted file mode 100644 index 0bd1147d..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "info": { - "name": "6406--纳塔_万火之瓯_悬木人_(6-6)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8674.15625, - "y": -2063.5595703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8656.562063515836, - "y": -2069.406212105092, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8613.031082121475, - "y": -2093.2506821083552, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8602.279296875, - "y": -2085.29296875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8674.15625, - "y": -2063.5595703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 6, - "x": 8666.1318359375, - "y": -2033.0986328125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8711.43806486186, - "y": -2003.3119694712786, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 8, - "x": 8684.5634765625, - "y": -2016.7734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8732.19921875, - "y": -2023.47802734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8780.968866527446, - "y": -1995.1878031592696, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 11, - "x": 8780.968866527446, - "y": -1995.1878031592696, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json deleted file mode 100644 index 9af590dd..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "info": { - "name": "6407--纳塔_万火之瓯_悬木人_(5-4)", - "type": "collect", - "author": "Demo&汐", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8664.69921875, - "y": -2220.8515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8684.130859375, - "y": -2188.763671875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8705.6240234375, - "y": -2129.3056640625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8664.69921875, - "y": -2220.8515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 5, - "x": 8642.3388671875, - "y": -2202.7060546875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8589.5458984375, - "y": -2194.7470703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 7, - "x": 8612.951171875, - "y": -2189.7646484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8612.951171875, - "y": -2189.7646484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8544.5263671875, - "y": -2209.4931640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8546.931640625, - "y": -2191.5283203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8539.896484375, - "y": -2194.955078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json deleted file mode 100644 index 86acd67b..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "info": { - "name": "6501--纳塔_坚岩隘谷_硫晶支脉_(6-4)", - "type": "collect", - "author": "Demo&汐", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8671.0107421875, - "y": -1270.62109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8678.740234375, - "y": -1253.92138671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8692.234375, - "y": -1252.84716796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8671.0107421875, - "y": -1270.62109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 5, - "x": 8657.7841796875, - "y": -1296.02099609375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 6, - "x": 8670.146484375, - "y": -1348.6962890625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 7, - "x": 8658.287109375, - "y": -1324.16455078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8605.720703125, - "y": -1308.50244140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8605.720703125, - "y": -1308.50244140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8523.8388671875, - "y": -1370.0615234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8495.187464449253, - "y": -1403.1244997872054, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "4000", - "type": "path" - }, - { - "id": 12, - "x": 8512.052734375, - "y": -1408.34521484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json deleted file mode 100644 index 01c0fe27..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "info": { - "name": "6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8400.537109375, - "y": -1221.384765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8433.0107421875, - "y": -1298.90771484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8433.0107421875, - "y": -1298.90771484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8469.197265625, - "y": -1287.7822265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8504.2744140625, - "y": -1310.490234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8504.2744140625, - "y": -1310.490234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8528.8447265625, - "y": -1287.45751953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8517.275390625, - "y": -1240.54296875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8400.537109375, - "y": -1221.384765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 10, - "x": 8343.103515625, - "y": -1356.853515625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 11, - "x": 8334.2626953125, - "y": -1378.11083984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "3000", - "type": "path" - }, - { - "id": 12, - "x": 8334.2626953126, - "y": -1378.11083984376, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 13, - "x": 8334.2626953126, - "y": -1378.11083984376, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json deleted file mode 100644 index 6dddbe57..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "info": { - "name": "6503--纳塔_坚岩隘谷_隆崛坡_(6-1)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7857.51953125, - "y": -1751.26416015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7863.1572265625, - "y": -1744.076171875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 7897.37548828125, - "y": -1695.04931640625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 7948.27685546875, - "y": -1651.30126953125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 5, - "x": 7923.6396484375, - "y": -1672.7919921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 7906.63037109375, - "y": -1620.0673828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 7858.626287727037, - "y": -1601.4991359960823, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 8, - "x": 7846.685546875, - "y": -1568.37548828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(2),click,wait(0.5),click,wait(0.5),click", - "type": "path" - }, - { - "id": 9, - "x": 7827.50537109375, - "y": -1588.92578125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 10, - "x": 7827.50537109375, - "y": -1588.92578125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 7802.57958984375, - "y": -1583.51806640625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 12, - "x": 7789.46630859375, - "y": -1561.33544921875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 13, - "x": 7760.40966796875, - "y": -1551.04638671875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 7742.263671875, - "y": -1586.00048828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 15, - "x": 7723.29443359375, - "y": -1587.091796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 16, - "x": 7723.29443359375, - "y": -1587.091796875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json deleted file mode 100644 index 8bb881a7..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json +++ /dev/null @@ -1,337 +0,0 @@ -{ - "info": { - "name": "6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7759.29150390625, - "y": -1401.458984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7810.79833984375, - "y": -1388.0078125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 7866.625, - "y": -1406.375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 7874.625, - "y": -1395.375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 7956.984863281249, - "y": -1415.7099609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 7956.984863281249, - "y": -1414.7099609375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click(middle),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),wait(2),keypress(e)", - "type": "path" - }, - { - "id": 7, - "x": 7925.313270266172, - "y": -1340.9371968407304, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 7914.374644492536, - "y": -1293.877137272848, - "action": "combat_script", - "move_mode": "walk", - "action_params": "attack(0.5),wait(0.5),keypress(E),wait(1.5),keydown(Q),wait(1.5),keyup(Q),attack(1)", - "type": "path" - }, - { - "id": 9, - "x": 7944.45068359375, - "y": -1249.701171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8069.57861328125, - "y": -1261.33544921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8089.18017578125, - "y": -1267.6845703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8171.9560546875, - "y": -1347.7685546875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(0.2)", - "type": "path" - }, - { - "id": 13, - "x": 8165.1845703125, - "y": -1364.1435546875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 8164.1845703125, - "y": -1367.1435546875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8163.1845703125, - "y": -1368.1435546875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "click(middle),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),wait(2),keypress(e)", - "type": "orientation" - }, - { - "id": 16, - "x": 8161.0078125, - "y": -1366.79638671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 8150.75, - "y": -1364.6252434638727, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(0.3)", - "type": "path" - }, - { - "id": 18, - "x": 8149.75, - "y": -1365.6252434638727, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - }, - { - "id": 19, - "x": 8139.09375, - "y": -1376.875177064635, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keydown(w),wait(0.5),keyup(w),keypress(VK_SPACE),wait(0.2),keypress(VK_SPACE),wait(0.2),keypress(VK_SPACE),wait(0.2),keypress(VK_SPACE),wait(0.2),keypress(VK_SPACE)", - "type": "path" - }, - { - "id": 20, - "x": 8120.250130352737, - "y": -1396.56166631201, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(E),wait(1.5),keydown(Q),wait(1.5),keyup(Q),attack(0.3)", - "type": "path" - }, - { - "id": 21, - "x": 8117.1396484375, - "y": -1412.3974609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 8099.626953125, - "y": -1431.06396484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 8118.249490439302, - "y": -1464.6299414960886, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 8146.249715594028, - "y": -1476.4998635783286, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 8153.062104991706, - "y": -1485.0007882140999, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 8183.124853846932, - "y": -1534.8742117859001, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 8193.499656342785, - "y": -1544.313136634465, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 8211.68700228955, - "y": -1601.8750606318536, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 8217.939029680318, - "y": -1630.3641696087097, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": 8223.343777650582, - "y": -1627.6251818955616, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": 8224.65622432446, - "y": -1614.0935756834206, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": 8224.46877567554, - "y": -1615.375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": 8251.1640625, - "y": -1616.49169921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": 8304.15234375, - "y": -1638.50927734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": 8350.4375, - "y": -1662.312057338413, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 36, - "x": 8350.4375, - "y": -1662.312057338413, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json deleted file mode 100644 index 423ce3da..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "info": { - "name": "6505--纳塔_坚岩隘谷_回声之子_(7-13)", - "type": "collect", - "author": "Demo&汐", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7761.3056640625, - "y": -1402.583984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7733.013671875, - "y": -1409.802734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 7753.2666015625, - "y": -1436.95751953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 7768.53125, - "y": -1434.0923224163826, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 7769.771484375, - "y": -1432.21875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 7632.1728515625, - "y": -1645.97119140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 7, - "x": 7660.01171875, - "y": -1645.52587890625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1800", - "type": "path" - }, - { - "id": 8, - "x": 7660.01171875, - "y": -1645.52587890625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 7632.1728515625, - "y": -1645.97119140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 10, - "x": 7623.986328125, - "y": -1616.52294921875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1800", - "type": "path" - }, - { - "id": 11, - "x": 7618.49560546875, - "y": -1570.06103515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 7580.625, - "y": -1559.2517706463468, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 7491.55126953125, - "y": -1616.98046875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 14, - "x": 7511.6201171875, - "y": -1575.3125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json deleted file mode 100644 index 0e18c37a..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "info": { - "name": "6506--纳塔_坚岩隘谷_回声之子_(8-9)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7973.623046875, - "y": -1557.5517578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8018.5400390625, - "y": -1568.076171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8053.8115234375, - "y": -1591.12646484375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 8019.19921875, - "y": -1590.8427734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8019.19921875, - "y": -1590.8427734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8065.64794921875, - "y": -1535.97216796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8080.5830078125, - "y": -1527.25634765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8095.19921875, - "y": -1510.21337890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8115.25, - "y": -1493.0648191684095, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8116.625225154728, - "y": -1531.5008033720633, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8143.70751953125, - "y": -1511.560546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8164.966796875, - "y": -1498.02685546875, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 8182.125, - "y": -1442.4990040114299, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 14, - "x": 8158.93505859375, - "y": -1414.0546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 15, - "x": 8158.93505859375, - "y": -1414.0546875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json deleted file mode 100644 index 72bbd16a..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json +++ /dev/null @@ -1,210 +0,0 @@ -{ - "info": { - "name": "6507--纳塔_坚岩隘谷_中部河流_(15-9)", - "type": "collect", - "author": "Demo&汐", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8597.248046875, - "y": -1928.6201171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8610.5771484375, - "y": -1939.235595703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8623.90625, - "y": -1949.85107421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8623.90625, - "y": -1949.85107421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8605.0458984375, - "y": -2003.14013671875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 6, - "x": 8564.705078125, - "y": -2000.935546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8562.7216796875, - "y": -1952.97314453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8505.8310546875, - "y": -1947.70068359375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 9, - "x": 8488.187871307797, - "y": -1908.0629850548312, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8565.2880859375, - "y": -1878.232421875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 11, - "x": 8525.9609375, - "y": -1842.29638671875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8454.3603515625, - "y": -1771.26416015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 8415.02734375, - "y": -1770.4990234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 8400.53515625, - "y": -1766.3076171875, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8400.412109375, - "y": -1792.97119140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 8406.55859375, - "y": -1784.4462890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 8244.984375, - "y": -1738.71630859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 18, - "x": 8230.765625, - "y": -1715.2294921875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 19, - "x": 8259.169921875, - "y": -1718.09619140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 8262.060546875, - "y": -1738.21337890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 8285.7978515625, - "y": -1762.6640625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 22, - "x": 8307.61328125, - "y": -1776.6298828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json deleted file mode 100644 index 6dead5ef..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "info": { - "name": "6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8452.517578125, - "y": -1477.2607421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8520.791015625, - "y": -1489.01611328125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 3, - "x": 8526.188756126374, - "y": -1472.9988176788502, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8445.6796875, - "y": -1518.6328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8406.6435546875, - "y": -1469.65087890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8401.8251953125, - "y": -1468.095703125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keydown(w),wait(0.1),keydown(VK_LSHIFT),wait(3.5),keyup(VK_LSHIFT),keyup(w),attack(0.3)", - "type": "path" - }, - { - "id": 7, - "x": 8353.687047715504, - "y": -1464.1243406285894, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8332.437472349418, - "y": -1503.4376515796348, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.6)", - "type": "path" - }, - { - "id": 9, - "x": 8327.875079001658, - "y": -1479.8129850548312, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8305.67578125, - "y": -1493.9970703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 11, - "x": 8305.67578125, - "y": -1493.9970703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json deleted file mode 100644 index 1841ac2d..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "info": { - "name": "6509--纳塔_坚岩隘谷_南侧崖壁_(5-5)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8179.40087890625, - "y": -1868.0791015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8160.8447265625, - "y": -1836.93994140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8058.21923828125, - "y": -1792.87353515625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.4)", - "type": "path" - }, - { - "id": 4, - "x": 8030.1708984375, - "y": -1808.0185546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8041.18779625622, - "y": -1824.6839075626594, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 7996.312654053235, - "y": -1861.4989844164484, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 7997.312654053235, - "y": -1851.4989844164484, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 7983.069824218751, - "y": -1807.45166015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 7983.4091796875, - "y": -1781.39501953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8000.88330078125, - "y": -1742.720703125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1200", - "type": "path" - }, - { - "id": 11, - "x": 8002.883300781252, - "y": -1742.720703125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 12, - "x": 8002.883300781252, - "y": -1742.720703125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json deleted file mode 100644 index 84698f21..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "info": { - "name": "6510--纳塔_坚岩隘谷_南侧崖壁_(8-13)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8180.58935546875, - "y": -1869.115234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8193.6484375, - "y": -1841.06494140625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 3, - "x": 8241.1865234375, - "y": -1883.33544921875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 8226.9296875, - "y": -1871.9189453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8229.748720173127, - "y": -1919.7452707153998, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8210.0283203125, - "y": -1956.3134765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8222.0771484375, - "y": -1951.20849609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8206.750122452571, - "y": -1939.3751364216714, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8185.374676093199, - "y": -1933.6255305287214, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8185.24462890625, - "y": -1955.06298828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8177.843842826949, - "y": -1946.281325789817, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8192.8056640625, - "y": -1935.5849609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 8318.781961014929, - "y": -1900.4069927402097, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 14, - "x": 8352.751953125, - "y": -1891.93115234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8353.177734375, - "y": -1877.96337890625, - "action": "combat_script", - "move_mode": "jump", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 16, - "x": 8352.751953125, - "y": -1891.93115234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 8368.9609375, - "y": -1928.99755859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 18, - "x": 8368.9609375, - "y": -1928.99755859375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json deleted file mode 100644 index b77635c7..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "info": { - "name": "6511--纳塔_坚岩隘谷_隆崛坡2_(2-3)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7857.4833984375, - "y": -1751.28173828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7799.58447265625, - "y": -1749.67822265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 7776.84716796875, - "y": -1743.9775390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 7773.87939453125, - "y": -1736.95703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 7736.1904296875, - "y": -1733.5341796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 7730.19384765625, - "y": -1741.09033203125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 7734.2607421875, - "y": -1748.03125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 7748.53759765625, - "y": -1758.77099609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 9, - "x": 7748.53759765625, - "y": -1758.77099609375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json deleted file mode 100644 index 761f0ebd..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "info": { - "name": "6601--纳塔_涌流地_北侧山脉_(2-4)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8940.359375, - "y": -2306.568359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8984.275390625, - "y": -2310.7890625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8980.275390626, - "y": -2313.7890626, - "action": "combat_script", - "move_mode": "walk", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 4, - "x": 8992.2822265625, - "y": -2320.0673828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9004.6005859375, - "y": -2306.8203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9015.21875, - "y": -2290.2802734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 7, - "x": 9015.21875, - "y": -2290.2802734375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json deleted file mode 100644 index 3c0e25bf..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json +++ /dev/null @@ -1,229 +0,0 @@ -{ - "info": { - "name": "6602--纳塔_涌流地_北侧山脉2_(11-7)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8939.71484375, - "y": -2307.4736328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8929.6806640625, - "y": -2292.2587890625, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8885.00390625, - "y": -2249.8095703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8881.0966796875, - "y": -2239.8154296875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8874.7421875, - "y": -2255.7734375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8869.9736328125, - "y": -2249.9208984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8835.499762995023, - "y": -2221.0010913733695, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8805.125221204644, - "y": -2218.375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8796.75143783019, - "y": -2215.9902989033835, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8765.4853515625, - "y": -2158.61328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8778.126319327701, - "y": -2119.378607595303, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8841.000205404313, - "y": -2082.6231507284574, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 8879.197265625, - "y": -2124.060546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 8886.2265625, - "y": -2167.2060546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8894.0234375, - "y": -2168.9541015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 8903.250189603981, - "y": -2164.218871263707, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 8931.875505610617, - "y": -2167.872938516968, - "action": "combat_script", - "move_mode": "fly", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 18, - "x": 8964.343712474212, - "y": -2157.687227156657, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 9033.6357421875, - "y": -2186.34375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 9058.2998046875, - "y": -2185.28515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 9096.122847204799, - "y": -2176.684407775454, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 22, - "x": 9137.08203125, - "y": -2168.1787109375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 23, - "x": 9171.611328125, - "y": -2136.529296875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 24, - "x": 9171.611328125, - "y": -2136.529296875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json deleted file mode 100644 index f272b733..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "info": { - "name": "6603--纳塔_涌流地_秘境西侧_(2-7)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9038.837890625, - "y": -2429.35546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9086.3125, - "y": -2454.861328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9086.3125, - "y": -2454.861328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9125.3779296875, - "y": -2483.6044921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9121.68750197504, - "y": -2488.656128736293, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9156.874956549087, - "y": -2477.0622498936027, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9160.562563201327, - "y": -2470.313204845301, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 8, - "x": 9160.562563201327, - "y": -2470.313204845301, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json deleted file mode 100644 index fc6e1440..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "info": { - "name": "6604--纳塔_涌流地_秘境南侧_(2-7)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9025.982421875, - "y": -2436.115234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8991.908203125, - "y": -2431.974609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8997.734375, - "y": -2410.98828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8980.6875, - "y": -2466.373046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8998.4912109375, - "y": -2470.5771484375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 6, - "x": 9023.349609375, - "y": -2509.3681640625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9027.4677734375, - "y": -2528.6455078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8981.845703125, - "y": -2537.93359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8875.359375, - "y": -2487.943359375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 10, - "x": 8907.500537211281, - "y": -2489.500970109661, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 11, - "x": 8875.234375, - "y": -2458.21484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 12, - "x": 8875.234375, - "y": -2458.21484375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json deleted file mode 100644 index 031132cd..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "info": { - "name": "6605--纳塔_涌流地_溶水域_(6-0)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8940.3271484375, - "y": -2306.5283203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8931.874881497512, - "y": -2314.9993027336805, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8902.126953125, - "y": -2344.240234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8890.8701171875, - "y": -2327.3115234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8871.499644492535, - "y": -2325.7510610574427, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8840.374439088224, - "y": -2331.4949827140954, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keydown(a),wait(0.2),keydown(LSHIFT),wait(4.5),keyup(a),keyup(LSHIFT)", - "type": "path" - }, - { - "id": 7, - "x": 8830.794921875, - "y": -2319.072265625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8789.500229104811, - "y": -2318.1276071697157, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8745.216796875, - "y": -2327.9619140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 10, - "x": 8745.216796875, - "y": -2327.9619140625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json deleted file mode 100644 index 15438940..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "info": { - "name": "6606--纳塔_涌流地_溶水域2_(4-3)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8637.6943359375, - "y": -2446.6455078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8636.9052734375, - "y": -2473.8349609375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8634.06640625, - "y": -2512.3798828125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8634.06640626, - "y": -2512.3798828126, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8666.124510189715, - "y": -2499.003607595303, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8693.937381497512, - "y": -2476.0311893681464, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8705.89453125, - "y": -2477.8271484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8725.412109375, - "y": -2477.5703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 9, - "x": 8725.412109375, - "y": -2477.5703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json deleted file mode 100644 index c269a182..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "info": { - "name": "6607--纳塔_涌流地_溶水域3_(11-5)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8637.697265625, - "y": -2446.63671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8613.3388671875, - "y": -2438.7265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8548.750225154727, - "y": -2394.5626061057446, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 8560.874838046599, - "y": -2424.8128334751964, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8548.312823906801, - "y": -2432.688485267625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8537.500466109786, - "y": -2439.7520463250676, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8507.718789500828, - "y": -2500.3748938942554, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8484.125015800331, - "y": -2531.9061590522197, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 9, - "x": 8494.656913613933, - "y": -2523.4071897937356, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8441.750219229603, - "y": -2531.3756896873383, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8420.062442723798, - "y": -2556.0315152643598, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8406.749920998342, - "y": -2621.0924691520886, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 13, - "x": 8412.1005859375, - "y": -2661.373046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 14, - "x": 8412.1005859375, - "y": -2661.373046875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json deleted file mode 100644 index 3f19f9f5..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "info": { - "name": "6608--纳塔_涌流地_溶水域4_(2-3)", - "type": "collect", - "author": "Demo&汐", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8285.0869140625, - "y": -2521.6240234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8283.84375, - "y": -2480.974609375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8283.84376, - "y": -2480.974609376, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8283.84376, - "y": -2480.974609376, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8251.771484375, - "y": -2481.3876953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8225.3984375, - "y": -2454.8017578125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8285.0869140625, - "y": -2521.6240234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 8, - "x": 8277.0732421875, - "y": -2540.216796875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8288.2060546876, - "y": -2588.787109376, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json deleted file mode 100644 index b46cabd9..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "info": { - "name": "6609--纳塔_涌流地_南侧小岛_(5-8)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8744.70703125, - "y": -3009.5615234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8732.916015625, - "y": -2969.48828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 3, - "x": 8746.072265625, - "y": -2975.880859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8770.892578125, - "y": -3005.71484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8787.9296875, - "y": -3017.7451171875, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8840.828125, - "y": -3018.798828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 7, - "x": 8840.828125, - "y": -3018.798828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json deleted file mode 100644 index 72784fcc..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json +++ /dev/null @@ -1,203 +0,0 @@ -{ - "info": { - "name": "6610--纳塔_涌流地_东侧小岛_(10-14)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8291.626953125, - "y": -2922.3984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8295.169921875, - "y": -2996.890625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 3, - "x": 8320.828125, - "y": -3005.923828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8340.7275390625, - "y": -2996.91796875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 5, - "x": 8333.968384617328, - "y": -3014.718469577676, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8372.810546875, - "y": -2981.46484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8410.8291015625, - "y": -2994.1572265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8421.8447265625, - "y": -2989.69921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8291.626953125, - "y": -2922.3984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 10, - "x": 8243.974609375, - "y": -2918.953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8168.64453125, - "y": -2931.0341796875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "orientation" - }, - { - "id": 12, - "x": 8168.64453125, - "y": -2931.0341796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 13, - "x": 8168.64453125, - "y": -2931.0341796875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - }, - { - "id": 14, - "x": 8291.626953125, - "y": -2922.3984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 15, - "x": 8309.968597921807, - "y": -2910.999128417101, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 8369.970703125, - "y": -2853.705078125, - "action": "combat_script", - "move_mode": "fly", - "action_params": "attack(0.2),wait(3),keydown(a),wait(0.2),keydown(LSHIFT),wait(4),keyup(a),keydown(s),wait(7),keyup(LSHIFT),keyup(s)", - "type": "path" - }, - { - "id": 17, - "x": 8358.44140625, - "y": -2879.669921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 8315.892578125, - "y": -2837.9189453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 8326.5576171875, - "y": -2813.564453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 8328.2666015625, - "y": -2808.953125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 21, - "x": 8328.2666015625, - "y": -2808.953125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json deleted file mode 100644 index bf416f34..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "info": { - "name": "6611--纳塔_涌流地_中央神像_(9-8)", - "type": "collect", - "author": "Demo&汐", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8581.2578125, - "y": -2675.9345703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8599.750663613933, - "y": -2660.997029039161, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8651.000059251244, - "y": -2638.8756972663195, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 8642.6728515625, - "y": -2638.7705078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8665.999885447594, - "y": -2667.4989086266305, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8676.20703125, - "y": -2697.6748046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8582.013671875, - "y": -2675.2099609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 8, - "x": 8548.25390625, - "y": -2679.78515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8542.2529296875, - "y": -2696.513671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8510.06267380365, - "y": -2714.125363791123, - "action": "combat_script", - "move_mode": "run", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 11, - "x": 8499.7060546875, - "y": -2721.0576171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8489.625023700497, - "y": -2685.5618482075715, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 8489.125, - "y": -2720.5687450809455, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 8431.562428898507, - "y": -2791.0001515796357, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 15, - "x": 8439.31640625, - "y": -2772.8408203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json deleted file mode 100644 index dae27ee2..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "info": { - "name": "6701--纳塔_踞石山_庙宇北侧_(3-5)", - "type": "collect", - "author": "Demo&汐", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7746.546875, - "y": -2250.5771484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7779.1142578125, - "y": -2231.935546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 7746.546875, - "y": -2250.5771484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 4, - "x": 7727.2499683993365, - "y": -2177.500469896866, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 7695.3896484375, - "y": -2155.73828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 6, - "x": 7690.26025390625, - "y": -2120.359375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 7, - "x": 7689.625023700498, - "y": -2133.3750909477803, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 7662.02099609375, - "y": -2107.732421875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 7660.02099609376, - "y": -2107.7324218760004, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json deleted file mode 100644 index 11b1e45f..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "info": { - "name": "6702--纳塔_踞石山_庙宇北侧_(1-11)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7845.052734375, - "y": -2047.359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7824.87060546875, - "y": -2101.78125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 7814.78662109375, - "y": -2105.671875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 7773.69189453125, - "y": -2091.4951171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 7780.7500316006635, - "y": -2072.8771524308104, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 7724.8779296875, - "y": -2035.82470703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 7784.999683993365, - "y": -2005.3760913733695, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 8, - "x": 7807.531255925124, - "y": -1971.2510231625338, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 7771.30615234375, - "y": -1942.31689453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 7751.02978515625, - "y": -1943.99072265625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 7748.4677734375, - "y": -1957.93310546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 7738.97509765625, - "y": -1994.01611328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 13, - "x": 7738.97509765625, - "y": -1994.01611328125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json deleted file mode 100644 index 815c8a2c..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "info": { - "name": "6703--纳塔_踞石山_北侧主峰_(10-9)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7633.76708984375, - "y": -1646.65087890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7619.719387938394, - "y": -1673.4050752578314, - "action": "combat_script", - "move_mode": "run", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 3, - "x": 7617.88037109375, - "y": -1723.6708984375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(f),wait(0.2),keypress(f),keydown(s),wait(0.1),keydown(LSHIFT),wait(2),keyup(s),keyup(LSHIFT)", - "type": "path" - }, - { - "id": 4, - "x": 7621.0576171875, - "y": -1696.1943359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 7588.5001185024885, - "y": -1776.2491511540466, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 7595.01171875, - "y": -1807.8896484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 7556.89599609375, - "y": -1889.37353515625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 8, - "x": 7567.749431188057, - "y": -1879.373529677544, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 7532.2744140625, - "y": -1904.6298828125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 7531.2744140626, - "y": -1900.6298828126, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 7526.9064554043125, - "y": -1896.4679617859001, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 7538.87353515625, - "y": -1847.5966796875, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 7508.20068359375, - "y": -1782.7451171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 7501.00634765625, - "y": -1756.96826171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 15, - "x": 7501.00634765625, - "y": -1756.96826171875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json deleted file mode 100644 index 2ff0c63a..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "info": { - "name": "6704--纳塔_踞石山_东侧海边_(3-7)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7746.55419921875, - "y": -2250.6083984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7661.03466796875, - "y": -2306.724609375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 7668.0263671875, - "y": -2297.15625, - "action": "", - "move_mode": "walk", - "type": "path" - }, - { - "id": 4, - "x": 7675.01806640625, - "y": -2287.587890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 7678.15478515625, - "y": -2291.5703125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 6, - "x": 7689.968556445936, - "y": -2278.281083262402, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 7, - "x": 7681.8037109375, - "y": -2285.982421875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 7679.3359375, - "y": -2270.3681640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 7658.63916015625, - "y": -2260.83203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 10, - "x": 7658.63916015625, - "y": -2260.83203125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json deleted file mode 100644 index 94c867cb..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "info": { - "name": "6705--纳塔_踞石山_彩石顶_(10-4)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8372.13671875, - "y": -2196.2255859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8362.982421875, - "y": -2240.6923828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 3, - "x": 8314.65625, - "y": -2225.5312389334613, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8309.7255859375, - "y": -2226.662109375, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8327.0966796875, - "y": -2221.1201171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 6, - "x": 8327.0966796875, - "y": -2221.1201171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8305.5703125, - "y": -2215.4970703125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8286.499970374378, - "y": -2185.437697053525, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(F),wait(0.1),keypress(F),wait(0.1),dash", - "type": "path" - }, - { - "id": 9, - "x": 8249.062389397677, - "y": -2145.0617724177537, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 10, - "x": 8273.78117988603, - "y": -2163.24973473564, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 11, - "x": 8273.78117988603, - "y": -2163.24973473564, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8271.78117988603, - "y": -2162.24973473564, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 8185.81982421875, - "y": -2116.6865234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 14, - "x": 8185.81982421875, - "y": -2116.6865234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8157.125292306137, - "y": -2101.496907775454, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 8099.54638671875, - "y": -2068.87109375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 8060.5625, - "y": -2036.04052734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 8023.093767775374, - "y": -2010.0311590522197, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 8023.093767775374, - "y": -2010.0311590522197, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 20, - "x": 8023.093767775374, - "y": -2010.0311590522197, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 8012.7685546875, - "y": -2006.8564453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 22, - "x": 8012.7685546875, - "y": -2006.8564453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 7999.152832031249, - "y": -1996.30517578125, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 8002.50341796875, - "y": -1987.94189453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 8002.50341796875, - "y": -1987.94189453125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json deleted file mode 100644 index 3ed37acf..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "info": { - "name": "6706--纳塔_踞石山_彩石顶2_(7-16)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8201.93359375, - "y": -2288.771484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8245.00041870879, - "y": -2294.8747574725858, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8279.736328125, - "y": -2268.1298828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8279.736328125, - "y": -2268.1298828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8290.966796875, - "y": -2255.9609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8306.96875, - "y": -2256.3743360076187, - "action": "combat_script", - "move_mode": "jump", - "action_params": "attack(0.4)", - "type": "path" - }, - { - "id": 7, - "x": 8322.78515625, - "y": -2265.0419921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 8315.5966796875, - "y": -2291.162109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8315.406131497512, - "y": -2317.3442805287214, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 10, - "x": 8308.468520895189, - "y": -2298.5310302095295, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8273.15635862728, - "y": -2364.906015051565, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 12, - "x": 8307.1259765625, - "y": -2393.8408203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 8300.5, - "y": -2404.8388671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 8291.1259765625, - "y": -2381.8408203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8293.1259765625, - "y": -2381.8408203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 8386.7578125, - "y": -2375.865234375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 17, - "x": 8365.419921875, - "y": -2381.021484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 8413.392578125, - "y": -2383.4169921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 8448.958984375, - "y": -2375.2548828125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 8443.998046875, - "y": -2364.5859375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 8441.572265626, - "y": -2369.8134765626, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 8437.814453125, - "y": -2382.51171875, - "action": "combat_script", - "move_mode": "fly", - "action_params": "keypress(VK_SPACE)", - "type": "path" - }, - { - "id": 23, - "x": 8459.947265625, - "y": -2404.22265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 8482.646484375, - "y": -2421.390625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 8484.646484375, - "y": -2422.390625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 26, - "x": 8484.646484375, - "y": -2422.390625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json deleted file mode 100644 index 8e10c4d0..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json +++ /dev/null @@ -1,238 +0,0 @@ -{ - "info": { - "name": "6707--纳塔_踞石山_庙宇_(9-11)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 7845.11083984375, - "y": -2047.35498046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 7864.810546875, - "y": -2064.365234375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 7866.46875, - "y": -2065.8435618688254, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 7887.7900390625, - "y": -2085.6103515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 7909.94775390625, - "y": -2094.044921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 7929.93017578125, - "y": -2093.8349609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 7932.625, - "y": -2077.0615704106676, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 7940.9892578125, - "y": -2073.2646484375, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 7976.1923828125, - "y": -2087.0732421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 7976.79638671875, - "y": -2097.9873046875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 11, - "x": 7991.78125, - "y": -2093.562643865016, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 7998.9560546875, - "y": -2106.861328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 7997.50634765625, - "y": -2120.3681640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 7990.23193359375, - "y": -2146.90625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 7990.23193359375, - "y": -2146.90625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 8004.71875, - "y": -2156.781814393522, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "3000", - "type": "path" - }, - { - "id": 17, - "x": 7972.15625, - "y": -2132.18682494108, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 18, - "x": 7970.875, - "y": -2145.217897876446, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 7936.15625, - "y": -2168.9374336007622, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 7899.25, - "y": -2207.8349609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 7893.92333984375, - "y": -2248.0244140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 7886.72705078125, - "y": -2257.375, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 7868.1044921875, - "y": -2255.1103515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 7843.7041015625, - "y": -2257.2353515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 25, - "x": 7843.7041015625, - "y": -2257.2353515625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json deleted file mode 100644 index afc3e886..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "info": { - "name": "6708--纳塔_踞石山_彩石顶3_(6-9)", - "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 8201.818359375, - "y": -2288.8037109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 8174.830078125, - "y": -2266.564453125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8174.830078125, - "y": -2265.564453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 8176.21240234375, - "y": -2243.9169921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8214.6005859375, - "y": -2216.1533203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 8187.0166015625, - "y": -2212.92578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 8151, - "y": -2208.0030986311067, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3),keydown(a),wait(1.5),keyup(a)", - "type": "path" - }, - { - "id": 8, - "x": 8113.46875, - "y": -2210.9078767813317, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 8119.150390625, - "y": -2207.908203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 8106.7626953125, - "y": -2151.2705078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 8130.7177734375, - "y": -2143.146484375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 8128.7177734376, - "y": -2145.1464843760004, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 13, - "x": 8128.7177734376, - "y": -2145.1464843760004, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json deleted file mode 100644 index 172028c2..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json +++ /dev/null @@ -1,256 +0,0 @@ -{ - "info": { - "name": "6801--纳塔_安饶之野_镜壁山东南_(20)", - "type": "collect", - "author": "汐&mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9282.810546875, - "y": -2162.181640625, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9241.939453125, - "y": -2210.5615234375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 3, - "x": 9210.3037109375, - "y": -2249.9482421875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 9202.908203125, - "y": -2248.0615234375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 5, - "x": 9235.185546875, - "y": -2230.1064453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9245.365234375, - "y": -2226.2138671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9288.6630859375, - "y": -2246.0263671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9302.076171875, - "y": -2233.1591796875, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9339.021484375, - "y": -2223.4716796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9346.021484375, - "y": -2233.4716796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9413.9873046875, - "y": -2273.5712890625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 12, - "x": 9394.80078125, - "y": -2295.6845703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 9383.1962890625, - "y": -2305.80859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 9377.900390625, - "y": -2311.646484375, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 9362.7021484375, - "y": -2328.4091796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 9380.84375, - "y": -2379.8369140625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.5)", - "type": "path" - }, - { - "id": 17, - "x": 9392.5322265625, - "y": -2403.5009765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 9378.5166015625, - "y": -2401.6357421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 9342.468846777032, - "y": -2365.687772843343, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 20, - "x": 9345.062476299503, - "y": -2358.3126364216714, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 21, - "x": 9308.951171875, - "y": -2367.607421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 9304.625, - "y": -2389.58203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 9300.625, - "y": -2393.58203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 9294.8095703125, - "y": -2428.220703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 25, - "x": 9289.5595703125, - "y": -2432.4462890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 9352.259765625, - "y": -2446.8447265625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 27, - "x": 9352.259765625, - "y": -2446.8447265625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json deleted file mode 100644 index f6b4128d..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "info": { - "name": "6804--纳塔_安饶之野东北海岸_(8)", - "type": "collect", - "author": "汐", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9711.201171875, - "y": -2418.4599609375, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9724.6298828125, - "y": -2479.8349609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9711.201171875, - "y": -2418.4599609375, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 4, - "x": 9645.0693359375, - "y": -2395.7724609375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9626.3203125, - "y": -2398.6337890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9622.3203125, - "y": -2399.6337890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9512.4306640625, - "y": -2442.5126953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 9513.6875, - "y": -2433.970703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 9513.6875, - "y": -2432.970703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click(middle),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),", - "type": "orientation" - }, - { - "id": 10, - "x": 9505.71875, - "y": -2432.062643865016, - "action": "", - "move_mode": "climb", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9507.923828125, - "y": -2441.0322265625, - "action": "", - "move_mode": "climb", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 9535.6201171875, - "y": -2547.0224609375, - "action": "combat_script", - "move_mode": "climb", - "action_params": "keydown(Q),wait(1.5),keyup(Q),attack(0.3)", - "type": "path" - }, - { - "id": 13, - "x": 9542.34375, - "y": -2547.907102123554, - "action": "combat_script", - "move_mode": "walk", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 14, - "x": 9534.0712890625, - "y": -2571.2060546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json deleted file mode 100644 index 057cca71..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "info": { - "name": "6805--纳塔_安饶之野东岩浆池_(5)", - "type": "collect", - "author": "汐&mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9807.2001953125, - "y": -2668.251953125, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9798.404296875, - "y": -2644.6748046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9749.37109375, - "y": -2621.2626953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9725.103515625, - "y": -2637.5439453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 9694.4609375, - "y": -2651.2490234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9733.4619140625, - "y": -2681.9697265625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 9733.187488149752, - "y": -2683.6251061057446, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 8, - "x": 9733.187488149752, - "y": -2683.6251061057446, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json deleted file mode 100644 index 92ad700a..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "info": { - "name": "6806--纳塔_安饶之野东斜坡_(16)", - "type": "collect", - "author": "汐", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 9808.404296875, - "y": -2847.994140625, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9807.986328125, - "y": -2863.345703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9847.9296875, - "y": -2867.9619140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 9871.8896484375, - "y": -2905.48828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 5, - "x": 9874.96875, - "y": -2913.3330078125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 9878.533203125, - "y": -2926.2734375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 7, - "x": 9902.68359375, - "y": -2913.595703125, - "type": "path", - "move_mode": "dash", - "action": "fight", - "action_params": "" - }, - { - "id": 8, - "x": 9808.404296875, - "y": -2847.994140625, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 9, - "x": 9774.388671875, - "y": -2805.00390625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 10, - "x": 9756.728515625, - "y": -2822.9814453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 9720.912109375, - "y": -2757.3701171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json deleted file mode 100644 index d6db1904..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "info": { - "name": "6808--纳塔_安饶之野_沃陆之邦北小岛_(14)", - "type": "collect", - "author": "汐&mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 10261.6494140625, - "y": -2529.599609375, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 10277.3388671875, - "y": -2513.6123046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 10300.1865234375, - "y": -2494.6513671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10295.2099609375, - "y": -2424.58203125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10285.0625, - "y": -2316.2109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 10285.0625, - "y": -2316.2109375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "click(middle),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),moveby(1200,0),wait(0.5),keypress(T),", - "type": "path" - }, - { - "id": 7, - "x": 10317.505859375, - "y": -2178.25, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(0.5),keypress(E),wait(1.5),keydown(Q),wait(1.5),keyup(Q),attack(0.3)", - "type": "path" - }, - { - "id": 8, - "x": 10296.0029296875, - "y": -2175.7880859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 10357.6142578125, - "y": -2159.2880859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 10358.98046875, - "y": -2081.8291015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 10410.94921875, - "y": -2048.7236328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 12, - "x": 10410.94921875, - "y": -2048.7236328125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json deleted file mode 100644 index 877a455c..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "info": { - "name": "6809--纳塔_安饶之野_石火坠陨处_(12)", - "type": "collect", - "author": "汐&mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 10595.94140625, - "y": -2665.2509765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 10581.9599609375, - "y": -2589.3125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 10532.1201171875, - "y": -2554.5712890625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 10510.4521484375, - "y": -2571.8828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10503.857421875, - "y": -2584.2353515625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 10514.24609375, - "y": -2568.8134765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 10489.2587890625, - "y": -2553.068359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 10431.5224609375, - "y": -2524.94921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 10431.5224609375, - "y": -2524.94921875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json deleted file mode 100644 index 788c23fe..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "info": { - "name": "6810--纳塔_安饶之野西南_(21)", - "type": "collect", - "author": "汐", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 10790.892578125, - "y": -3064.0341796875, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 10828.67578125, - "y": -3036.3369140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 10832.666015625, - "y": -3048.3759765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10832.666015625, - "y": -3048.3759765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10877.6494140625, - "y": -3029.7958984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1000", - "type": "path" - }, - { - "id": 6, - "x": 10884.68684033615, - "y": -3024.435195989554, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 10790.892578125, - "y": -3064.0341796875, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 8, - "x": 10820.50390625, - "y": -3122.9873046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 10828.3935546875, - "y": -3139.83984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 10837.658203125, - "y": -3178.00390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 10816.70703125, - "y": -3171.974609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 10769.6279296875, - "y": -3174.828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 13, - "x": 10761.384765625, - "y": -3196.1943359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 10738.1259765625, - "y": -3240.720703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.2)", - "type": "path" - }, - { - "id": 15, - "x": 10707.3857421875, - "y": -3250.9677734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 10704.892578125, - "y": -3248.001953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 10662.02734375, - "y": -3264.0615234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 10631.822265625, - "y": -3288.41015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 10630.544921875, - "y": -3317.513671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 10622.681640625, - "y": -3343.763671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 10634.208984375, - "y": -3387.7626953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json deleted file mode 100644 index b7c681e5..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "info": { - "name": "6811--纳塔_安饶之野_荒废弃造坞_(10)", - "type": "collect", - "author": "汐&mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 10363.763671875, - "y": -3315.8740234375, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 10377.21875, - "y": -3352.564453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 3, - "x": 10377.21875, - "y": -3352.564453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10410.64453125, - "y": -3390.16796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10417.8486328125, - "y": -3412.3056640625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 6, - "x": 10417.8486328125, - "y": -3412.3056640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 10405.5126953125, - "y": -3436.30078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 10365.021484375, - "y": -3517.12109375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 10384.89453125, - "y": -3538.2587890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 10, - "x": 10384.89453125, - "y": -3538.2587890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 10320.4130859375, - "y": -3500.7734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 10281.8525390625, - "y": -3487.720703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 10281.8525390625, - "y": -3487.720703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json deleted file mode 100644 index 41b316eb..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json +++ /dev/null @@ -1,166 +0,0 @@ -{ - "info": { - "name": "6812--纳塔_安饶之野_孑遗的留迹东南_(20)", - "type": "collect", - "author": "汐", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 10171.787109375, - "y": -3021.78515625, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 10175.9140625, - "y": -3039.5888671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 10233.5908203125, - "y": -3083.966796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10271.06640625, - "y": -3124.5224609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10287.798828125, - "y": -3136.6884765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 10311.6103515625, - "y": -3162.9345703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 10335.7646484375, - "y": -3175.6455078125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 10337.7646484375, - "y": -3176.6455078125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 10363.134765625, - "y": -3192.8056640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 10391.4853515625, - "y": -3199.9208984375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 10171.787109375, - "y": -3021.78515625, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 12, - "x": 9917.955078125, - "y": -3275.8310546875, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp", - "action_params": "" - }, - { - "id": 13, - "x": 9956.34375, - "y": -3264.0927734375, - "type": "path", - "move_mode": "dash", - "action": "", - "action_params": "" - }, - { - "id": 14, - "x": 9957.6142578125, - "y": -3210.7763671875, - "type": "path", - "move_mode": "dash", - "action": "fight", - "action_params": "", - "locked": false - }, - { - "id": 15, - "x": 9958.6142578125, - "y": -3210.7763671875, - "type": "path", - "move_mode": "dash", - "action": "", - "action_params": "" - }, - { - "id": 16, - "x": 10018.4208984375, - "y": -3213.65625, - "type": "path", - "move_mode": "dash", - "action": "fight", - "action_params": "" - }, - { - "id": 17, - "x": 10002.1875, - "y": -3163.1826171875, - "type": "path", - "move_mode": "dash", - "action": "fight", - "action_params": "" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json deleted file mode 100644 index 43a54f4c..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "info": { - "name": "6813--纳塔_安饶之野西北_(8)", - "type": "collect", - "author": "汐&mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 10928.74609375, - "y": -2366.3583984375, - "action": "force_tp", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 10923.251953125, - "y": -2428.525390625, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 10936.8125, - "y": -2429.8113712129525, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10913.62109375, - "y": -2434.6923828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 10825.44921875, - "y": -2463.0205078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 10814.564453125, - "y": -2523.8330078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 7, - "x": 10814.564453125, - "y": -2523.8330078125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1101(1-23)蒙德望风角.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1101(1-23)蒙德望风角.json deleted file mode 100644 index 0a4454f5..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1101(1-23)蒙德望风角.json +++ /dev/null @@ -1,219 +0,0 @@ -{ - "info": { - "name": "1101(1-23)蒙德望风角", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -1628.3994140625, - "y": 2834.3740234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -1672.2978515625, - "y": 2816.209228515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -1672.2978515625, - "y": 2816.209228515625, - "action": "log_output", - "move_mode": "walk", - "action_params": "本线路预计 精英200*1 小怪*23", - "type": "path" - }, - { - "id": 4, - "x": -1667.4013671875, - "y": 2880.460693359375, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -1655.5302734375, - "y": 2892.4267578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -1650.4482421875, - "y": 2905.87939453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -1650.4482421875, - "y": 2905.87939453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -1664.416015625, - "y": 2938.386474609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -1675.775390625, - "y": 2951.203369140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -1675.775390625, - "y": 2951.203369140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -1691.6591796875, - "y": 2949.15576171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -1697.4990234375, - "y": 2929.597412109375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -1697.4990234375, - "y": 2929.597412109375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -1697.4990234375, - "y": 2929.597412109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -1694.734375, - "y": 2910.00634765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -1727.05078125, - "y": 2914.3115234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -1732.779296875, - "y": 2946.018798828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -1732.779296875, - "y": 2946.018798828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -1727.05078125, - "y": 2914.3115234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -1784.4345703125, - "y": 2910.040283203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -1806.2177734375, - "y": 2911.05615234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -1813.0791015625, - "y": 2913.35791015625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -1813.0791015625, - "y": 2913.35791015625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1102(1-16)蒙德望风角.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1102(1-16)蒙德望风角.json deleted file mode 100644 index bf35ac6d..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1102(1-16)蒙德望风角.json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "info": { - "name": "1102(1-16)蒙德望风角", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -1628.583984375, - "y": 2843.85546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -1587.439453125, - "y": 2851.265380859375, - "action": "log_output", - "move_mode": "dash", - "action_params": "本线路预计 精英200*1 小怪*16", - "type": "path" - }, - { - "id": 3, - "x": -1555.2919921875, - "y": 2851.684326171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -1519.05859375, - "y": 2814.2265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -1509.4814453125, - "y": 2795.85107421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -1490.0751953125, - "y": 2800.931884765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -1485.0751953125, - "y": 2807.931884765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -1451.4248046875, - "y": 2822.689453125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(0.5)", - "type": "path" - }, - { - "id": 9, - "x": -1470.4751953125, - "y": 2812.761884765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -1470.4751953125, - "y": 2812.761884765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -1482.0751953125, - "y": 2811.931884765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -1505.89453125, - "y": 2783.569091796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -1487.99609375, - "y": 2756.44482421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -1463.5244140625, - "y": 2774.493896484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -1460.6171875, - "y": 2745.05126953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -1435.091796875, - "y": 2733.646728515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -1435.091796875, - "y": 2733.646728515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -1378.80078125, - "y": 2747.552734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -1378.80078125, - "y": 2747.552734375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1103(0-22)蒙德望风山地.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1103(0-22)蒙德望风山地.json deleted file mode 100644 index ae833fc0..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1103(0-22)蒙德望风山地.json +++ /dev/null @@ -1,327 +0,0 @@ -{ - "info": { - "name": "1103(0-22)蒙德望风山地", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -1273.7490234375, - "y": 2721.67333984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -1278.08203125, - "y": 2679.677734375, - "action": "log_output", - "move_mode": "dash", - "action_params": "本线路预计 小怪*22", - "type": "path" - }, - { - "id": 3, - "x": -1291.5, - "y": 2678.4, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -1277.369140625, - "y": 2658.291259765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -1266.369140625, - "y": 2648.291259765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -1235.2568359375, - "y": 2639.375244140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -1235.2568359375, - "y": 2639.375244140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -1227.953125, - "y": 2657.877197265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -1219.765625, - "y": 2678.180908203125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -1219.765626, - "y": 2678.180908203126, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -1219.765626, - "y": 2678.180908203126, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -1206.806640625, - "y": 2681.305419921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -1191.37109375, - "y": 2677.0751953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -1177.6240234375, - "y": 2683.637939453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -1151.98046875, - "y": 2702.3193359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -1151.98046875, - "y": 2702.3193359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -1127.1025390625, - "y": 2664.409423828125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -1127.1025390626, - "y": 2664.409423828126, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -1127.1025390626, - "y": 2664.409423828126, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -1271.5732421875, - "y": 2724.694580078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 21, - "x": -1262.681640625, - "y": 2755.527587890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -1272.1279296875, - "y": 2779.388916015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -1272.1279296875, - "y": 2779.388916015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": -1251.4912109375, - "y": 2776.62451171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": -1230.48046875, - "y": 2771.06494140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": -1221.9833984375, - "y": 2780.493408203125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": -1221.9833984375, - "y": 2780.493408203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": -1186.8837890625, - "y": 2754.42138671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": -1162.994140625, - "y": 2759.685791015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": -1160.1337890625, - "y": 2732.940673828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": -1169.8818359375, - "y": 2730.030517578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "target" - }, - { - "id": 32, - "x": -1170.4169921875, - "y": 2730.04150390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": -1173.2958984375, - "y": 2731.14501953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": -1173.9646484375, - "y": 2735.8306640625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": -1173.9646484375, - "y": 2735.8306640625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1104(0-18)蒙德千风西.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1104(0-18)蒙德千风西.json deleted file mode 100644 index 6bb5f753..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1104(0-18)蒙德千风西.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "info": { - "name": "1104(0-18)蒙德千风西", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -1529.716796875, - "y": 2274.874755859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -1509.966796875, - "y": 2268.6123046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -1509.966796875, - "y": 2268.6123046875, - "action": "log_output", - "move_mode": "walk", - "action_params": "本线路预计 小怪*18", - "type": "path" - }, - { - "id": 4, - "x": -1522.9560546875, - "y": 2262.7275390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -1565.2783203125, - "y": 2210.22509765625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -1548.466796875, - "y": 2157.092041015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -1548.466796875, - "y": 2157.092041015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -1526.94921875, - "y": 2143.801025390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -1494.17578125, - "y": 2100.358642578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -1521.447265625, - "y": 2081.0283203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -1521.447265625, - "y": 2081.0283203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -1494.17578125, - "y": 2100.358642578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -1475.328125, - "y": 2106.676513671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -1474.375, - "y": 2169.241455078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -1478.4638671875, - "y": 2192.164306640625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -1478.4638671875, - "y": 2192.164306640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -1509.5244140625, - "y": 2187.8369140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -1521.0322265625, - "y": 2213.70849609375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 19, - "x": -1511.0224609375, - "y": 2195.4609375, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -1511.0224609375, - "y": 2195.4609375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1202(1-27)蒙德奔狼领.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1202(1-27)蒙德奔狼领.json deleted file mode 100644 index f8194929..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1202(1-27)蒙德奔狼领.json +++ /dev/null @@ -1,282 +0,0 @@ -{ - "info": { - "name": "1202(1-27)蒙德奔狼领", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -521.55078125, - "y": 2181.35302734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -495.5234375, - "y": 2181.4580078125, - "action": "log_output", - "move_mode": "walk", - "action_params": "本线路预计 精英200*1 小怪*27", - "type": "path" - }, - { - "id": 3, - "x": -494.08984375, - "y": 2176.235595703125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 4, - "x": -510.0068359375, - "y": 2201.4541015625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 5, - "x": -500.537109375, - "y": 2186.1474609375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -500.537109375, - "y": 2186.1474609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -479.3984375, - "y": 2179.89501953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -468.6123046875, - "y": 2170.511474609375, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -461.857421875, - "y": 2166.10595703125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -447.86328125, - "y": 2172.9326171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -428.0302734375, - "y": 2155.160888671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -439.130859375, - "y": 2120.7099609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -443.8427734375, - "y": 2112.15771484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -449.1396484375, - "y": 2132.968505859375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -449.1396484376, - "y": 2132.968505859376, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -449.1396484376, - "y": 2132.968505859376, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -430.8935546875, - "y": 2163.4560546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -464.685546875, - "y": 2178.78564453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -457.0712890625, - "y": 2208.35498046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -458.03515625, - "y": 2225.776123046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -458.03515625, - "y": 2225.776123046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -476.794921875, - "y": 2252.0673828125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -495.40625, - "y": 2262.917724609375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "click,wait(0.5),click", - "type": "path" - }, - { - "id": 24, - "x": -496.4169921875, - "y": 2282.221435546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": -480.0537109375, - "y": 2290.255126953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": -480.0537109375, - "y": 2290.255126953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": -463.63671875, - "y": 2303.020751953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": -461.50390625, - "y": 2304.8681640625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": -452.857421875, - "y": 2315.725830078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": -452.857421875, - "y": 2315.725830078125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1203(2-26)蒙德塞西莉亚苗圃.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1203(2-26)蒙德塞西莉亚苗圃.json deleted file mode 100644 index 26d415f3..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1203(2-26)蒙德塞西莉亚苗圃.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "info": { - "name": "1203(2-26)蒙德塞西莉亚苗圃", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -251.6591796875, - "y": 2256.58154296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -270.818359375, - "y": 2230.03173828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -270.818359375, - "y": 2230.03173828125, - "action": "log_output", - "move_mode": "walk", - "action_params": "本线路预计 精英200*2 小怪*26", - "type": "path" - }, - { - "id": 4, - "x": -270.4853515625, - "y": 2280.428955078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -270.4853515625, - "y": 2280.428955078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -267.98046875, - "y": 2294.620361328125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -277.24671875, - "y": 2337.211767578125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -277.24671875, - "y": 2337.211767578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -334.7578125, - "y": 2350.265869140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -339.138671875, - "y": 2367.227294921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -339.138671875, - "y": 2367.227294921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -352.21875, - "y": 2376.52001953125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -350.146484375, - "y": 2412.908935546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -370.53125, - "y": 2428.4423828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -401.7373046875, - "y": 2427.285400390625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1000", - "type": "path" - }, - { - "id": 16, - "x": -403.001953125, - "y": 2436.948486328125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -403.001953125, - "y": 2436.948486328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -404.1789453125, - "y": 2445.6742578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -392.4189453125, - "y": 2499.6142578125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -392.4189453125, - "y": 2499.6142578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -413.962890625, - "y": 2490.500732421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -421.791015625, - "y": 2469.6162109375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -421.791015626, - "y": 2469.6162109376, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": -421.791015626, - "y": 2469.6162109376, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2101璃月无妄坡西南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2101璃月无妄坡西南.json deleted file mode 100644 index 74aa7326..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2101璃月无妄坡西南.json +++ /dev/null @@ -1,345 +0,0 @@ -{ - "info": { - "name": "2101璃月无妄坡西南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 489.7763671875, - "y": 1435.1318359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 436.544921875, - "y": 1461.74609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 461.974609375, - "y": 1478.7890625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 490.44140625, - "y": 1482.95947265625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 490.44140625, - "y": 1482.95947265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 505.1328125, - "y": 1482.22314453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 524.1328125, - "y": 1474.22314453125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 524.1328125, - "y": 1474.22314453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 574.626953125, - "y": 1487.5146484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 570.9306640625, - "y": 1547.8984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 555.9306640625, - "y": 1543.0984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 538.6706640625, - "y": 1542.5884375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 526.1689453125, - "y": 1537.890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 522.1796875, - "y": 1529.05029296875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 522.1796875, - "y": 1529.05029296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 477.98866353050107, - "y": 1454.25, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "teleport" - }, - { - "id": 17, - "x": 465.50688285648175, - "y": 1441, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 460.78125, - "y": 1436.7626953125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 422.08203125, - "y": 1403.416015625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "200", - "type": "path" - }, - { - "id": 20, - "x": 422.08203125, - "y": 1403.416015625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 422.08203125, - "y": 1403.416015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 392.337890625, - "y": 1408.9443359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 384.166015625, - "y": 1419.8828125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 384.166015625, - "y": 1419.8828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 489.78125, - "y": 1435.14794921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 26, - "x": 503.07421875, - "y": 1365.9228515625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 528.798828125, - "y": 1362.0283203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 556.7216796875, - "y": 1353.623046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 556.7216796875, - "y": 1353.623046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": 564.2392578125, - "y": 1332.0478515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": 594.056640625, - "y": 1341.732421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": 606.5205078125, - "y": 1360.125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": 642.083984375, - "y": 1381.080078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": 642.083984375, - "y": 1381.080078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": 674.3623046875, - "y": 1373.03076171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 36, - "x": 707.8486328125, - "y": 1365.2373046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 37, - "x": 707.8486328125, - "y": 1365.2373046875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2201璃月明蕴镇西北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2201璃月明蕴镇西北.json deleted file mode 100644 index 00fec104..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2201璃月明蕴镇西北.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "info": { - "name": "2201璃月明蕴镇西北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -188.515625, - "y": 972.49951171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -218.830078125, - "y": 965.3525390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -227.1240234375, - "y": 975.533203125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 4, - "x": -215.6669921875, - "y": 1000.78955078125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -228.1650390625, - "y": 1006.7890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -203.3759765625, - "y": 985.966796875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2202璃月瑶光滩西北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2202璃月瑶光滩西北.json deleted file mode 100644 index 59cc6dc0..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2202璃月瑶光滩西北.json +++ /dev/null @@ -1,345 +0,0 @@ -{ - "info": { - "name": "2202璃月瑶光滩西北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -57.40234375, - "y": 656.935546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -41.46875, - "y": 613.51708984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -64.953125, - "y": 549.39404296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -94.1708984375, - "y": 540.86376953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -127.1708984375, - "y": 517.86376953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -106.1708984375, - "y": 500.86376953125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 7, - "x": -128.0859375, - "y": 508.27978515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -128.0859375, - "y": 508.27978515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -152.0859375, - "y": 497.27978515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -187.838671875, - "y": 490.58056640625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -178.138671875, - "y": 485.58056640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -135.4453125, - "y": 487.69140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -112.6337890625, - "y": 475.4208984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -82.7541796875, - "y": 444.7529296875, - "action": "fight", - "move_mode": "swim", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -89.5341796875, - "y": 446.7529296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -88.5869140625, - "y": 425.28857421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -75.0419921875, - "y": 409.052734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -75.0419921875, - "y": 409.052734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -71.1982421875, - "y": 376.6513671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -88.3017578125, - "y": 366.28857421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -88.3017578125, - "y": 366.28857421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -131.4638671875, - "y": 360.35302734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -129.4638671875, - "y": 360.35302734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": -169.7626953125, - "y": 332.00927734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": -169.7626953125, - "y": 332.00927734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": -129.4638671875, - "y": 360.35302734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": -133.6938671875, - "y": 418.93302734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": -148.9738671875, - "y": 438.69302734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": -125.0738671875, - "y": 460.81302734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": -125.0738671875, - "y": 460.81302734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": -148.9738671875, - "y": 438.69302734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": -90.7838671875, - "y": 421.02302734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": -90.7838671875, - "y": 421.02302734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": -75.044921875, - "y": 427.3142578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": -45.4287109375, - "y": 461.06640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 36, - "x": -44.2041015625, - "y": 470.1123046875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 37, - "x": -44.2041015625, - "y": 470.1123046875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2301璃月太山府.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2301璃月太山府.json deleted file mode 100644 index 256c91a4..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2301璃月太山府.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "info": { - "name": "2301璃月太山府", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 1167.72265625, - "y": 662.39990234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 1147.22265625, - "y": 664.78466796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 1120.9013671875, - "y": 689.02587890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 1129.158203125, - "y": 662.99267578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 1145.099609375, - "y": 645.4296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 1144.5322265625, - "y": 640.712890625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 1144.5322265625, - "y": 640.712890625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2302璃月珉林.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2302璃月珉林.json deleted file mode 100644 index 35ac4c5c..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2302璃月珉林.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "info": { - "name": "2302璃月珉林", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 1389.0068359375, - "y": 516.470703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 1353.376953125, - "y": 535.7900390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 1361.8388671875, - "y": 562.4541015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 1375.1064453125, - "y": 596.66552734375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "500", - "type": "path" - }, - { - "id": 5, - "x": 1375.1064453125, - "y": 596.66552734375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 1375.1064453125, - "y": 596.66552734375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2303璃月琥牢山.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2303璃月琥牢山.json deleted file mode 100644 index de134c3c..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2303璃月琥牢山.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "info": { - "name": "2303璃月琥牢山", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 1793.529296875, - "y": 717.65380859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 1761.9775390625, - "y": 692.5556640625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "3000", - "type": "path" - }, - { - "id": 3, - "x": 1761.9775390625, - "y": 692.5556640625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 1761.9775390625, - "y": 692.5556640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 1760.99609375, - "y": 716.72509765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 1748.947265625, - "y": 736.0556640625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 1710.8076171875, - "y": 683.24365234375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 8, - "x": 1710.8076171875, - "y": 683.24365234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 1710.8076171875, - "y": 683.24365234375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2401(高危)璃月地面矿区.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2401(高危)璃月地面矿区.json deleted file mode 100644 index 6ca82571..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2401(高危)璃月地面矿区.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "info": { - "name": "2401(高危)璃月地面矿区", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 1701.4921875, - "y": -582.373046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 1694.3857421875, - "y": -581.51611328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 1687.6181640625, - "y": -610.34228515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 1687.6181640625, - "y": -610.34228515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 1692.388671875, - "y": -582.82763671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 1668.9296875, - "y": -584.3740234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 1651.16796875, - "y": -584.40625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 1651.16796875, - "y": -584.40625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 1638.513671875, - "y": -599.89892578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 1610.3447265625, - "y": -615.2099609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 1607.7969578125, - "y": -628.85452890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 1571.73125, - "y": -649.3380859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 1600.53125, - "y": -640.5380859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 1641.71484375, - "y": -667.07958984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 1639.8685546875, - "y": -675.7359375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(F),wait(0.2),dash", - "type": "path" - }, - { - "id": 16, - "x": 1638.8685546875, - "y": -679.7359375, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 1638.8685546875, - "y": -679.7359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 1640.9921875, - "y": -694.10107421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 1639.2685546875, - "y": -711.3359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 1618.650390625, - "y": -742.8505859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 1618.650390625, - "y": -742.8505859375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2501璃月遁玉陵.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2501璃月遁玉陵.json deleted file mode 100644 index c1ac7819..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2501璃月遁玉陵.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "info": { - "name": "2501璃月遁玉陵", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 978.7109375, - "y": -353.55810546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 965.2353515625, - "y": -354.412109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 826.31640625, - "y": -375.0107421875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 828.31640625, - "y": -375.0107421875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 826.31640625, - "y": -375.0107421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 858.31640625, - "y": -360.0107421875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 860.31640625, - "y": -360.0107421875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 858.31640625, - "y": -360.0107421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 869.8818359375, - "y": -303.9462890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 853.5771484375, - "y": -282.32421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 839.5771484375, - "y": -270.22421875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 839.5771484375, - "y": -270.22421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 853.5771484375, - "y": -282.32421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 869.8818359375, - "y": -303.9462890625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 869.8818359375, - "y": -303.9462890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 892.3390625, - "y": -235.15775390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 890.0390625, - "y": -229.44775390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 865.1318359375, - "y": -215.13525390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 887.1318359375, - "y": -227.13525390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 908.618359375, - "y": -227.73525390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 919.3208984375, - "y": -224.39021484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 919.3208984375, - "y": -224.39021484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 891.7548828125, - "y": -227.33935546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 894.7548828125, - "y": -227.33935546875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2502璃月群玉阁西.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2502璃月群玉阁西.json deleted file mode 100644 index 254cafbd..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2502璃月群玉阁西.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "info": { - "name": "2502璃月群玉阁西", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 710.8203125, - "y": -772.38623046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 702.39453125, - "y": -834.3291015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 692.9384765625, - "y": -888.39697265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 687.4716796875, - "y": -893.01220703125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 687.4716796875, - "y": -893.01220703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 705.1455078125, - "y": -891.09423828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 719.1943359375, - "y": -884.50830078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 719.1943359375, - "y": -884.50830078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 745.7177734375, - "y": -884.6396484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 769.9345703125, - "y": -828.9013671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 787.376953125, - "y": -817.373046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 803.95390625, - "y": -823.7906640625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 803.95390625, - "y": -823.7906640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 823.1328125, - "y": -800.05126953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 860.845703125, - "y": -801.1826171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 890.6447265625, - "y": -822.5328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 890.6447265625, - "y": -822.5328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 924.18671875, - "y": -837.14296875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 924.18671875, - "y": -837.14296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 925.1171875, - "y": -862.01416015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 915.359375, - "y": -885.5947265625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 886.3349609375, - "y": -888.0400390625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 886.3349609375, - "y": -888.0400390625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 886.3349609375, - "y": -888.0400390625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2601(水免)璃月港东北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2601(水免)璃月港东北.json deleted file mode 100644 index 59d00506..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2601(水免)璃月港东北.json +++ /dev/null @@ -1,291 +0,0 @@ -{ - "info": { - "name": "2601(水免)璃月港东北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 25.943359375, - "y": -112.28857421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -7.34375, - "y": -106.59521484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -53.01171875, - "y": -109.35107421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -53.01171875, - "y": -109.35107421875, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -86.35546875, - "y": -97.07470703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -86.35546875, - "y": -97.07470703125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -61.3994140625, - "y": -160.06396484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -80.9521484375, - "y": -187.9560546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -126.794921875, - "y": -182.10107421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -126.794921875, - "y": -182.10107421875, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -156.6826171875, - "y": -160.39453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -195.099609375, - "y": -145.0146484375, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -219.361328125, - "y": -136.93900390625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -219.361328125, - "y": -136.93900390625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -202.61960937500072, - "y": -163.71464843749982, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -202.61960937500072, - "y": -163.71464843749982, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -253.656171875, - "y": -147.07291015625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(0.5)", - "type": "path" - }, - { - "id": 18, - "x": -255.04375, - "y": -126.75830078125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -255.04375, - "y": -126.75830078125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -237.9599609375, - "y": -84.68359375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -237.9599609375, - "y": -84.68359375, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -220.310546875, - "y": -60.048828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -171.1748046875, - "y": -75.5009765625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": -171.1748046875, - "y": -75.5009765625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": -170.1748046875, - "y": -101.5009765625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 26, - "x": -172.5048046875, - "y": -124.5009765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": -172.5048046875, - "y": -124.5009765625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": -143.5148046875, - "y": -76.2009765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": -95.5748046875, - "y": -51.4209765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": -92.7648046875, - "y": -57.2709765625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": -92.7648046875, - "y": -57.2709765625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3101(高危)稻妻白狐之野南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3101(高危)稻妻白狐之野南.json deleted file mode 100644 index f6182b52..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3101(高危)稻妻白狐之野南.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "info": { - "name": "3101(高危)稻妻白狐之野南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -4232.142578125, - "y": -3001.978515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4225.158203125, - "y": -2975.6435546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -4229.892578125, - "y": -2952.3515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4215.8475, - "y": -2931.1088671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "target" - }, - { - "id": 5, - "x": -4214.4375, - "y": -2931.0888671875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(f),wait(0.1),dash", - "type": "path" - }, - { - "id": 6, - "x": -4215.205078125, - "y": -2930.44140625, - "action": "combat_script", - "move_mode": "run", - "action_params": "keypress(f),wait(0.1),dash", - "type": "path" - }, - { - "id": 7, - "x": -4214.689453125, - "y": -2929.5927734375, - "action": "combat_script", - "move_mode": "run", - "action_params": "keypress(f),wait(0.1),dash", - "type": "path" - }, - { - "id": 8, - "x": -4209.389453125, - "y": -2922.8827734375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - }, - { - "id": 9, - "x": -4214.689453125, - "y": -2929.5927734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -4223.71484375, - "y": -2885.6015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -4204.79296875, - "y": -2876.4755859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -4204.79296875, - "y": -2876.4755859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -4124.6771875, - "y": -2948.2025390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -4120.248046875, - "y": -2978.1279296875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -4120.248046875, - "y": -2978.1279296875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3102稻妻绀田村南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3102稻妻绀田村南.json deleted file mode 100644 index 9ca9ae26..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3102稻妻绀田村南.json +++ /dev/null @@ -1,219 +0,0 @@ -{ - "info": { - "name": "3102稻妻绀田村南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -4124.609375, - "y": -2759.873046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4137.995625, - "y": -2730.46390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -4135.7265625, - "y": -2708.75390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4173.10546875, - "y": -2686.1005859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -4187.0390625, - "y": -2681.8447265625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -4199.392578125, - "y": -2662.111328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -4199.392578125, - "y": -2662.111328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -4224.362578125, - "y": -2653.871328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -4242.042578125, - "y": -2635.951328125, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -4242.042578125, - "y": -2635.951328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -4230.062578125, - "y": -2629.411328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -4222.5862578125, - "y": -2626.561328125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -4196.83984375, - "y": -2616.8642578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -4198.86984375, - "y": -2612.2242578125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -4181.671875, - "y": -2626.1923828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -4149.630859375, - "y": -2659.55078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -4150.884765625, - "y": -2670.6474609375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -4150.884765625, - "y": -2670.6474609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -4109.830078125, - "y": -2635.9716796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -4109.830078125, - "y": -2635.9716796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -4101.830078125, - "y": -2624.776796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -4087.00078125, - "y": -2615.6516796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -4109.830078125, - "y": -2635.9716796875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3103稻妻绀田村南3.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3103稻妻绀田村南3.json deleted file mode 100644 index 3ae1184f..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3103稻妻绀田村南3.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "info": { - "name": "3103稻妻绀田村南3", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -4124.541015625, - "y": -2759.888671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4114.3515625, - "y": -2754.9091796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -4107.857421875, - "y": -2770.8330078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4100.333984375, - "y": -2783.890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -4077.5693359375, - "y": -2775.8916015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -4056.138671875, - "y": -2787.2568359375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(f)", - "type": "target" - }, - { - "id": 7, - "x": -4064.521484375, - "y": -2817.845703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -4049.2626953125, - "y": -2818.80078125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -4049.2626953125, - "y": -2818.80078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -4023.19921875, - "y": -2836.044921875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -4023.19921875, - "y": -2836.044921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - }, - { - "id": 12, - "x": -4023.19921875, - "y": -2836.044921875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3104(高危)稻妻绀田村南2.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3104(高危)稻妻绀田村南2.json deleted file mode 100644 index 7c016b2b..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3104(高危)稻妻绀田村南2.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "info": { - "name": "3104(高危)稻妻绀田村南2", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -4124.55078125, - "y": -2759.9384765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4135.748046875, - "y": -2731.0302734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -4171.27734375, - "y": -2723.1337890625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4206.390625, - "y": -2740.5751953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -4236.078125, - "y": -2766.107421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -4236.078125, - "y": -2766.107421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -4289.486328125, - "y": -2770.2138671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -4313.15625, - "y": -2755.53515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -4348.884765625, - "y": -2746.5927734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -4348.884765625, - "y": -2746.5927734375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3105(水免)稻妻镇守之森.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3105(水免)稻妻镇守之森.json deleted file mode 100644 index 5efb78fb..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3105(水免)稻妻镇守之森.json +++ /dev/null @@ -1,165 +0,0 @@ -{ - "info": { - "name": "3105(水免)稻妻镇守之森", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -4429.935546875, - "y": -2798.5439453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4440.9178125, - "y": -2799.60791015625, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -4461.918515625, - "y": -2837.578671875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4459.918515625, - "y": -2837.578671875, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -4466.228515625, - "y": -2841.888671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -4489.177734375, - "y": -2843.115234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -4552.939453125, - "y": -2833.43359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -4560.220703125, - "y": -2834.0712890625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -4560.220703125, - "y": -2834.0712890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -4579.17578125, - "y": -2813.4638671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -4585.5390625, - "y": -2773.91796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -4588.25390625, - "y": -2727.76171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -4588.25390625, - "y": -2727.76171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -4594.103515625, - "y": -2703.125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -4617.30078125, - "y": -2703.259765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -4630.125, - "y": -2696.74609375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -4630.125, - "y": -2696.74609375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3106(水免)稻妻神里屋敷.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3106(水免)稻妻神里屋敷.json deleted file mode 100644 index 83585f05..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3106(水免)稻妻神里屋敷.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "info": { - "name": "3106(水免)稻妻神里屋敷", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -4578.791015625, - "y": -2577.6845703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4571.70703125, - "y": -2547.6572265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -4578.134765625, - "y": -2519.3271484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4594.16796875, - "y": -2484.8125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -4688.998046875, - "y": -2468.4453125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -4690.662109375, - "y": -2469.4091796875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -4683.0703125, - "y": -2467.310546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -4667.8671875, - "y": -2459.8818359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -4589.63671875, - "y": -2451.5361328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -4559.59375, - "y": -2418.5087890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -4557.041015625, - "y": -2402.8017578125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -4557.041015625, - "y": -2402.8017578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -4547.345703125, - "y": -2392.0048828125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -4515.001953125, - "y": -2338.3115234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -4515.001953125, - "y": -2338.3115234375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3107稻妻绀田村.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3107稻妻绀田村.json deleted file mode 100644 index 96296cfb..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3107稻妻绀田村.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "info": { - "name": "3107稻妻绀田村", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -4050.08203125, - "y": -2657.38671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4042.8037109375, - "y": -2700.9619140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -4029.037109375, - "y": -2704.3740234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4029.037109375, - "y": -2704.3740234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -4014.822265625, - "y": -2708.8193359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -3999.1064453125, - "y": -2710.5888671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -3998.3349609375, - "y": -2699.2138671875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -3998.3349609375, - "y": -2699.2138671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -3974.3974609375, - "y": -2697.3876953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -3963.2548828125, - "y": -2709.4619140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -3963.2548828125, - "y": -2709.4619140625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3108稻妻荒海南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3108稻妻荒海南.json deleted file mode 100644 index bdeb0ce0..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3108稻妻荒海南.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "info": { - "name": "3108稻妻荒海南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -4217.90234375, - "y": -2397.8720703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4160.146484375, - "y": -2398.6748046875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 3, - "x": -4162.146484375, - "y": -2398.6748046875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4162.146484375, - "y": -2398.6748046875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(0.5)", - "type": "orientation" - }, - { - "id": 5, - "x": -4217.876953125, - "y": -2397.8671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 6, - "x": -4195.7421875, - "y": -2444.3369140625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -4196.7421875, - "y": -2444.3369140625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -4196.7421875, - "y": -2444.3369140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -4176.171875, - "y": -2448.2353515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -4140.115234375, - "y": -2471.123046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -4140.115234375, - "y": -2471.123046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -4125.93359375, - "y": -2477.5244140625, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -4115.54296875, - "y": -2475.6279296875, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -4115.54296875, - "y": -2475.6279296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -4103.517578125, - "y": -2484.4140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -4089.310546875, - "y": -2495.337890625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -4089.0986328125, - "y": -2472.546875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -4089.0986328125, - "y": -2472.546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -4096.921875, - "y": -2486.8671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -4115.169921875, - "y": -2512.7470703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -4115.169921875, - "y": -2512.7470703125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3201稻妻九条阵屋.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3201稻妻九条阵屋.json deleted file mode 100644 index 9323f730..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3201稻妻九条阵屋.json +++ /dev/null @@ -1,282 +0,0 @@ -{ - "info": { - "name": "3201稻妻九条阵屋", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3437.0458984375, - "y": -3319.759765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3430.6806640625, - "y": -3389.3583984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3433.6806640625, - "y": -3389.3583984375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -3433.6806640625, - "y": -3389.3583984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3469.8623046875, - "y": -3388.6708984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -3482.3310546875, - "y": -3367.8076171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -3489.0830078125, - "y": -3357.673828125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -3489.0830078125, - "y": -3357.673828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -3514.2490234375, - "y": -3343.306640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -3540.5478515625, - "y": -3360.412109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -3553.3759765625, - "y": -3373.568359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -3587.9072265625, - "y": -3318.5556640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -3589.701171875, - "y": -3312.568359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -3570.8544921875, - "y": -3298.8486328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -3570.8544921875, - "y": -3298.8486328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -3580.0546875, - "y": -3281.4833984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -3587.275390625, - "y": -3263.560546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -3600.96484375, - "y": -3263.099609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -3600.96484375, - "y": -3263.099609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -3622.244140625, - "y": -3242.0390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -3616.6826171875, - "y": -3227.060546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -3622.244140625, - "y": -3242.0390625, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -3649.845703125, - "y": -3287.5791015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": -3658.185546875, - "y": -3332.6005859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": -3662.2998046875, - "y": -3354.6044921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": -3662.2998046875, - "y": -3354.6044921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": -3728.505859375, - "y": -3353.716796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": -3703.2548828125, - "y": -3355.26171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": -3713.451171875, - "y": -3357.099609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": -3713.451171875, - "y": -3357.099609375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3202稻妻踏鞴东北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3202稻妻踏鞴东北.json deleted file mode 100644 index e8e6740d..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3202稻妻踏鞴东北.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "info": { - "name": "3202稻妻踏鞴东北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3393.1240234375, - "y": -3556.0546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3404.734375, - "y": -3578.11328125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "500", - "type": "path" - }, - { - "id": 3, - "x": -3421.669921875, - "y": -3578.79296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -3434.6376953125, - "y": -3572.8173828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3434.6376953125, - "y": -3572.8173828125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3204稻妻踏鞴神像2.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3204稻妻踏鞴神像2.json deleted file mode 100644 index 0e36de8e..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3204稻妻踏鞴神像2.json +++ /dev/null @@ -1,120 +0,0 @@ -{ - "info": { - "name": "3204稻妻踏鞴神像2", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3233.22265625, - "y": -3534.1513671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3238.767578125, - "y": -3569.19140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3231.130859375, - "y": -3570.3623046875, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -3225.34375, - "y": -3581.1552734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3231.5302734375, - "y": -3585.4658203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -3236.7861328125, - "y": -3581.650390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -3263.701171875, - "y": -3556.994140625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "500", - "type": "path" - }, - { - "id": 8, - "x": -3266.701171875, - "y": -3556.994140625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -3266.701171875, - "y": -3556.994140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -3293.3359375, - "y": -3560.220703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -3316.662109375, - "y": -3562.6474609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -3316.662109375, - "y": -3562.6474609375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3205(高危)稻妻踏鞴反应炉东三骗骗花.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3205(高危)稻妻踏鞴反应炉东三骗骗花.json deleted file mode 100644 index dc199039..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3205(高危)稻妻踏鞴反应炉东三骗骗花.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "info": { - "name": "3205(高危)稻妻踏鞴反应炉东三骗骗花", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3288.138671875, - "y": -3652.5126953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3273.830078125, - "y": -3619.4169921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3261.65625, - "y": -3612.44140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -3249.783203125, - "y": -3610.5732421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3246.2822265625, - "y": -3622.7001953125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(f),wait(0.2),dash", - "type": "target" - }, - { - "id": 6, - "x": -3234.529296875, - "y": -3617.482421875, - "action": "combat_script", - "move_mode": "run", - "action_params": "keypress(f),wait(0.2),dash", - "type": "path" - }, - { - "id": 7, - "x": -3231.0576171875, - "y": -3633.4443359375, - "action": "combat_script", - "move_mode": "run", - "action_params": "keypress(f),wait(0.2),dash", - "type": "path" - }, - { - "id": 8, - "x": -3224.302734375, - "y": -3634.990234375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -3224.302734375, - "y": -3634.990234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -3209.80859375, - "y": -3656.5517578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -3170.90234375, - "y": -3690.185546875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "350", - "type": "path" - }, - { - "id": 12, - "x": -3165.263671875, - "y": -3670.0234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -3165.263671875, - "y": -3670.0234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -3157.30859375, - "y": -3634.658203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -3157.30859375, - "y": -3634.658203125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3206稻妻踏鞴反应炉东.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3206稻妻踏鞴反应炉东.json deleted file mode 100644 index 088acb50..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3206稻妻踏鞴反应炉东.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "info": { - "name": "3206稻妻踏鞴反应炉东", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3288.193359375, - "y": -3652.5283203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3285.0986328125, - "y": -3656.5576171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3263.1845703125, - "y": -3702.5302734375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1500", - "type": "path" - }, - { - "id": 4, - "x": -3256.9931640625, - "y": -3704.2998046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3234.435546875, - "y": -3690.53125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -3234.435546875, - "y": -3690.53125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -3223.1357421875, - "y": -3677.2451171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -3215.4755859375, - "y": -3674.8916015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -3190.3017578125, - "y": -3665.1630859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -3190.3017578125, - "y": -3665.1630859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -3196.779296875, - "y": -3652.947265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -3203.876953125, - "y": -3635.302734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -3203.876953125, - "y": -3635.302734375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3207稻妻踏鞴浪船.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3207稻妻踏鞴浪船.json deleted file mode 100644 index c756f69e..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3207稻妻踏鞴浪船.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "info": { - "name": "3207稻妻踏鞴浪船", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3473.2177734375, - "y": -3755.1328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3439.5693359375, - "y": -3754.046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3419.0283203125, - "y": -3744.4384765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -3419.0283203125, - "y": -3744.4384765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3368.876953125, - "y": -3748.40234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -3368.876953125, - "y": -3748.40234375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3208稻妻借景之馆.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3208稻妻借景之馆.json deleted file mode 100644 index 70873459..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3208稻妻借景之馆.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "info": { - "name": "3208稻妻借景之馆", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3242.494140625, - "y": -3868.83984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3254.7802734375, - "y": -3868.1484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3272.44921875, - "y": -3865.216796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -3280.8681640625, - "y": -3860.2744140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3280.6005859375, - "y": -3844.2841796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -3280.3251953125, - "y": -3840.56640625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -3280.3251953125, - "y": -3840.56640625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3209稻妻踏鞴公义东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3209稻妻踏鞴公义东南.json deleted file mode 100644 index 536abf41..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3209稻妻踏鞴公义东南.json +++ /dev/null @@ -1,165 +0,0 @@ -{ - "info": { - "name": "3209稻妻踏鞴公义东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3156.4580078125, - "y": -3885.380859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3151.73828125, - "y": -3888.7783203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3145.107421875, - "y": -3931.787109375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 4, - "x": -3146.7080078125, - "y": -3940.1552734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3168.111328125, - "y": -4022.8115234375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1000", - "type": "path" - }, - { - "id": 6, - "x": -3138.4052734375, - "y": -4034.2451171875, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -3138.4052734375, - "y": -4034.2451171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -3185.740234375, - "y": -4024.8369140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -3185.740234375, - "y": -4024.8369140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -3199.6923828125, - "y": -4012.7646484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -3221.0537109375, - "y": -3984.693359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -3234.08203125, - "y": -3969.2138671875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -3234.08203125, - "y": -3969.2138671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -3265.453125, - "y": -3963.5390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -3290.88671875, - "y": -3963.3798828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -3317.6044921875, - "y": -3936.302734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -3317.6044921875, - "y": -3936.302734375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3210稻妻公义飞萤.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3210稻妻公义飞萤.json deleted file mode 100644 index 2e401bb7..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3210稻妻公义飞萤.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "info": { - "name": "3210稻妻公义飞萤", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3156.6240234375, - "y": -3886.0146484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3168.056640625, - "y": -3883.376953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3204.6328125, - "y": -3876.5439453125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2500", - "type": "path" - }, - { - "id": 4, - "x": -3210.3662109375, - "y": -3876.9921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3236.53125, - "y": -3879.955078125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -3237.3955078125, - "y": -3879.9853515625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -3250.044921875, - "y": -3848.9716796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -3250.044921875, - "y": -3848.9716796875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -3250.044921875, - "y": -3848.9716796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3211稻妻名椎滩东.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3211稻妻名椎滩东.json deleted file mode 100644 index 38947544..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3211稻妻名椎滩东.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "info": { - "name": "3211稻妻名椎滩东", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -2737.3046875, - "y": -3414.4462890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2697.796875, - "y": -3412.44921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2691.6865234375, - "y": -3418.48046875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -2691.6865234375, - "y": -3418.48046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -2727.70703125, - "y": -3427.564453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -2759.595703125, - "y": -3466.203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2772.1953125, - "y": -3466.359375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -2772.1953125, - "y": -3466.359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -2787.62109375, - "y": -3480.1669921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -2793.634765625, - "y": -3506.83984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -2803.9384765625, - "y": -3541.60546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -2803.9384765625, - "y": -3541.60546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -2824.6474609375, - "y": -3543.31640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -2862.2822265625, - "y": -3565.591796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -2874.3984375, - "y": -3584.720703125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -2874.3984375, - "y": -3584.720703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - }, - { - "id": 17, - "x": -2889.8193359375, - "y": -3575.91015625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -2920.07421875, - "y": -3553.5615234375, - "action": "", - "move_mode": "swim", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -2932.51171875, - "y": -3523.736328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -2932.51171875, - "y": -3523.736328125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3212稻妻名椎滩西.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3212稻妻名椎滩西.json deleted file mode 100644 index 29a1f3f6..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3212稻妻名椎滩西.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "info": { - "name": "3212稻妻名椎滩西", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -2533.369140625, - "y": -3539.66796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2525.541015625, - "y": -3577.1787109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2515.724609375, - "y": -3562.4443359375, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -2515.724609375, - "y": -3562.4443359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -2473.72265625, - "y": -3565.0888671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -2450.10546875, - "y": -3571.0537109375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2426.373046875, - "y": -3588.775390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -2426.373046875, - "y": -3588.775390625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3301稻妻绯木村神像.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3301稻妻绯木村神像.json deleted file mode 100644 index 7ce96a43..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3301稻妻绯木村神像.json +++ /dev/null @@ -1,363 +0,0 @@ -{ - "info": { - "name": "3301稻妻绯木村神像", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -2215.9755859375, - "y": -3709.486328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2200.1755859375, - "y": -3713.530390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2190.2255859375, - "y": -3717.150390625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -2185.505859375, - "y": -3729.5556640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -2175.013671875, - "y": -3739.6279296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -2166.7001953125, - "y": -3750.7099609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2164.818359375, - "y": -3751.20703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -2159.9638671875, - "y": -3766.8701171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -2153.833984375, - "y": -3767.01953125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -2153.833984375, - "y": -3767.01953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -2147.02734375, - "y": -3776.21875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -2133.4091796875, - "y": -3781.0029296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -2123.1904296875, - "y": -3805.7587890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -2123.1904296875, - "y": -3805.7587890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -2115.6298828125, - "y": -3817.4638671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -2062.142578125, - "y": -3855.7138671875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -2054.76953125, - "y": -3860.083984375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -2054.76953125, - "y": -3860.083984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -2069.580078125, - "y": -3867.6513671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -2078.958984375, - "y": -3895.193359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -2078.958984375, - "y": -3895.193359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -2105.41484375, - "y": -3899.7018359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -2127.423828125, - "y": -3906.4208984375, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": -2140.18359375, - "y": -3924.5224609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": -2148.9599609375, - "y": -3932.0693359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": -2167.7899609375, - "y": -3928.7493359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": -2182.9499609375, - "y": -3940.0493359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": -2196.8499609375, - "y": -3942.2093359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": -2182.9499609375, - "y": -3940.0493359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": -2182.9499609375, - "y": -3940.0493359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": -2176.4999609375, - "y": -3947.1093359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": -2153.2099609375, - "y": -3938.1393359375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(f),wait(0.1),keypress(f),wait(0.1),dash", - "type": "path" - }, - { - "id": 33, - "x": -2145.775390625, - "y": -3954.0166015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": -2136.2060546875, - "y": -3978.2353515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": -2136.2060546875, - "y": -3978.2353515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 36, - "x": -2127.212890625, - "y": -3999.6875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 37, - "x": -2125.083984375, - "y": -4026.6474609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 38, - "x": -2139.1376953125, - "y": -4064.0166015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 39, - "x": -2139.1376953125, - "y": -4064.0166015625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3302稻妻蛇骨矿洞南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3302稻妻蛇骨矿洞南.json deleted file mode 100644 index f9c717cf..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3302稻妻蛇骨矿洞南.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "info": { - "name": "3302稻妻蛇骨矿洞南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -2399.6669921875, - "y": -4123.2109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2381.046875, - "y": -4130.361328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2358.2275390625, - "y": -4130.3134765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -2358.2275390625, - "y": -4130.3134765625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3303(水免)稻妻剑鬼东2.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3303(水免)稻妻剑鬼东2.json deleted file mode 100644 index b88dd6c4..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3303(水免)稻妻剑鬼东2.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "info": { - "name": "3303(水免)稻妻剑鬼东2", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -2405.7333984375, - "y": -3912.9267578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2420.2783203125, - "y": -3897.65625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2472.649140625, - "y": -3877.0688671875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2000", - "type": "path" - }, - { - "id": 4, - "x": -2487.916015625, - "y": -3895.501953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -2487.916015625, - "y": -3895.501953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -2543.506015625, - "y": -3884.621953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2548.87609375, - "y": -3856.341328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -2576.5634765625, - "y": -3809.4912109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -2576.5634765625, - "y": -3809.4912109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -2568.990234375, - "y": -3782.796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -2556.41796875, - "y": -3782.08203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -2534.185546875, - "y": -3781.55859375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -2525.8037109375, - "y": -3795.4482421875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -2525.8037109375, - "y": -3795.4482421875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3304稻妻剑鬼东3.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3304稻妻剑鬼东3.json deleted file mode 100644 index 5d18e632..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3304稻妻剑鬼东3.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "info": { - "name": "3304稻妻剑鬼东3", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -2405.748046875, - "y": -3912.9091796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2405.2409453125, - "y": -3936.182890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2420.3336328125, - "y": -3996.790984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "3000", - "type": "path" - }, - { - "id": 4, - "x": -2422.3336328125, - "y": -3996.790984375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - }, - { - "id": 5, - "x": -2420.3336328125, - "y": -3996.790984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -2457.802109375, - "y": -4017.1092578125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2462.662109375, - "y": -4028.2392578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -2487.5556640625, - "y": -4036.365234375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -2483.966796875, - "y": -4065.69921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -2483.966796875, - "y": -4065.69921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -2530.650390625, - "y": -4039.8603515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -2572.380859375, - "y": -4000.00390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -2576.517578125, - "y": -4002.162109375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -2576.517578125, - "y": -4002.162109375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3305稻妻剑鬼东1.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3305稻妻剑鬼东1.json deleted file mode 100644 index 04aaf67f..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3305稻妻剑鬼东1.json +++ /dev/null @@ -1,291 +0,0 @@ -{ - "info": { - "name": "3305稻妻剑鬼东1", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -2405.7841796875, - "y": -3912.9326171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2377.5821484375, - "y": -3887.2393359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2375.595703125, - "y": -3868.640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -2358.354296875, - "y": -3819.7737109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -2352.1346875, - "y": -3822.8265625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -2352.1346875, - "y": -3822.8265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2371.8095703125, - "y": -3812.685546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -2373.2001953125, - "y": -3805.740234375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -2382.6513671875, - "y": -3798.2626953125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -2406.0187109375, - "y": -3799.835078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -2406.0187109375, - "y": -3799.835078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -2417.44921875, - "y": -3798.7255859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -2464.6865234375, - "y": -3788.5087890625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -2480.986328125, - "y": -3795.857421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -2487.7646484375, - "y": -3810.9912109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -2487.7646484375, - "y": -3810.9912109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -2487.107734375, - "y": -3789.77171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -2499.2939453125, - "y": -3767.8798828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -2499.2939453125, - "y": -3767.8798828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -2490.9619140625, - "y": -3750.259765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -2476.3619140625, - "y": -3749.949765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -2446.802734375, - "y": -3732.869140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -2446.802734375, - "y": -3732.869140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": -2403.826171875, - "y": -3724.654296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": -2378.4482421875, - "y": -3721.5419921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": -2355.6806640625, - "y": -3712.8837890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": -2355.6806640625, - "y": -3712.8837890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": -2316.3935546875, - "y": -3751.19140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": -2311.1962890625, - "y": -3763.90234375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": -2303.5224609375, - "y": -3791.173828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": -2303.5224609375, - "y": -3791.173828125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3306稻妻藤兜砦西.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3306稻妻藤兜砦西.json deleted file mode 100644 index cdcd11ff..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3306稻妻藤兜砦西.json +++ /dev/null @@ -1,219 +0,0 @@ -{ - "info": { - "name": "3306稻妻藤兜砦西", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -1964.1298828125, - "y": -3576.458984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2035.9278125, - "y": -3544.189921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2028.2578125, - "y": -3537.419921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -2088.5673828125, - "y": -3527.4296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -2108.6748046875, - "y": -3511.2138671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -2094.5966796875, - "y": -3484.6748046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2094.5966796875, - "y": -3484.6748046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -2113.0575390625, - "y": -3476.258203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -2124.9775390625, - "y": -3472.158203125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -2142.173828125, - "y": -3447.4453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -2162.3896484375, - "y": -3456.017578125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -2162.3896484375, - "y": -3456.017578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -2183.2196484375, - "y": -3461.617578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -2222.99609375, - "y": -3459.38671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -2255.556640625, - "y": -3479.8759765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -2255.556640625, - "y": -3479.8759765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -2308.8662109375, - "y": -3509.220703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -2331.8076171875, - "y": -3504.908203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -2331.8076171875, - "y": -3504.908203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -2378.33984375, - "y": -3517.5703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -2403.091796875, - "y": -3508.9990234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -2403.9990234375, - "y": -3479.0791015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": -2403.9990234375, - "y": -3479.0791015625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3401(水免)稻妻海祇岛东.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3401(水免)稻妻海祇岛东.json deleted file mode 100644 index 721667ee..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3401(水免)稻妻海祇岛东.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "info": { - "name": "3401(水免)稻妻海祇岛东", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -1315.17578125, - "y": -3776.1220703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -1331.2607421875, - "y": -3767.52734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -1338.1884765625, - "y": -3775.5322265625, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -1376.0322265625, - "y": -3769.7802734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -1350.4814453125, - "y": -3776.2099609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -1350.4814453125, - "y": -3776.2099609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -1332.9111328125, - "y": -3734.880859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -1332.9111328125, - "y": -3734.880859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -1300.1015625, - "y": -3749.650390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -1274.169765625, - "y": -3829.5300390625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(f),wait(0.1),dash", - "type": "path" - }, - { - "id": 11, - "x": -1274.259765625, - "y": -3826.5400390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "orientation" - }, - { - "id": 12, - "x": -1274.259765625, - "y": -3826.5400390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -1191.3125, - "y": -3868.9189453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -1193.53125, - "y": -3887.7958984375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -1193.53125, - "y": -3887.7958984375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3403稻妻海祇岛南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3403稻妻海祇岛南.json deleted file mode 100644 index 3e1b7a01..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3403稻妻海祇岛南.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "info": { - "name": "3403稻妻海祇岛南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -755.5703125, - "y": -4001.0849609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -711.0888671875, - "y": -4057.8076171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -695.1916796875, - "y": -4068.78828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -693.7216796875, - "y": -4075.73828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -665.4697265625, - "y": -4077.3857421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -658.9130859375, - "y": -4066.4873046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -660.9130859375, - "y": -4053.4873046875, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -662.25734375, - "y": -4040.553828125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(f),wait(0,1),dash", - "type": "path" - }, - { - "id": 9, - "x": -650.044921875, - "y": -4015.037109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -650.044921875, - "y": -4015.037109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -639.884921875, - "y": -4010.657109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -634.5859375, - "y": -3986.79296875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -630.564453125, - "y": -3995.4423828125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -636.3310546875, - "y": -3986.3955078125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -578.73046875, - "y": -3990.0439453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -561.337890625, - "y": -3990.046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -566.3505859375, - "y": -3995.2021484375, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -566.3505859375, - "y": -3995.2021484375, - "action": "combat_script", - "move_mode": "run", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_4_须弥/4101(高危)须弥二净甸.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_4_须弥/4101(高危)须弥二净甸.json deleted file mode 100644 index 782187f7..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_4_须弥/4101(高危)须弥二净甸.json +++ /dev/null @@ -1,525 +0,0 @@ -{ - "info": { - "name": "4101(高危)须弥二净甸", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3097.18359375, - "y": -355.9072265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3125.7119140625, - "y": -364.56982421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3148.6484375, - "y": -378.27294921875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3147.0234375, - "y": -381.07080078125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3147.0234375, - "y": -381.07080078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3152.154296875, - "y": -404.03271484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3194.265625, - "y": -408.978515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3207.189453125, - "y": -400.90283203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3207.189453125, - "y": -400.90283203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3218.9814453125, - "y": -397.77490234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3244.150390625, - "y": -409.09765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3244.150390625, - "y": -409.09765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3250.314453125, - "y": -421.1083984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 3267.0986328125, - "y": -416.00830078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 3267.9912109375, - "y": -396.5595703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 3303.43671875, - "y": -390.158984375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 3303.43671875, - "y": -390.158984375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - }, - { - "id": 18, - "x": 3097.208984375, - "y": -355.96044921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 19, - "x": 3078.7109375, - "y": -346.98046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 3025.63671875, - "y": -340.89208984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 3020.3681640625, - "y": -340.77880859375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 3020.3681640625, - "y": -340.77880859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 3010.5380859375, - "y": -351.126953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 2995.162109375, - "y": -375.9306640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 3002.513671875, - "y": -416.58935546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 3014.4365234375, - "y": -430.611328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 3014.119140625, - "y": -438.48095703125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 3014.119140625, - "y": -438.48095703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 3026.78125, - "y": -443.7568359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": 3006.4453125, - "y": -459.13720703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": 2984.2470703125, - "y": -427, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": 2984.2470703125, - "y": -427, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": 2966.603515625, - "y": -441.9208984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": 2955.986328125, - "y": -461.51025390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": 2939.48046875, - "y": -450.55810546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 36, - "x": 2943.34765625, - "y": -443.96630859375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 37, - "x": 2943.34765625, - "y": -443.96630859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 38, - "x": 2955.5810546875, - "y": -462.49560546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 39, - "x": 2959.2509765625, - "y": -502.6826171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 40, - "x": 2941.53125, - "y": -512.79296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 41, - "x": 2926.9658203125, - "y": -537.505859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 42, - "x": 2926.9658203125, - "y": -537.505859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - }, - { - "id": 43, - "x": 3097.1845703125, - "y": -355.982421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 44, - "x": 3100.384765625, - "y": -384.287109375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 45, - "x": 3101.0166015625, - "y": -424.5244140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 46, - "x": 3099.09375, - "y": -454.86328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 47, - "x": 3113.01953125, - "y": -468.162109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 48, - "x": 3113.01953125, - "y": -468.162109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 49, - "x": 3089.1376953125, - "y": -478.33203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 50, - "x": 3064.0146484375, - "y": -476.2060546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 51, - "x": 3055.626953125, - "y": -478.0771484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 52, - "x": 3050.1259765625, - "y": -478.7587890625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 53, - "x": 3034.814453125, - "y": -483.04931640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 54, - "x": 3026.7607421875, - "y": -496.34716796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 55, - "x": 3009.275390625, - "y": -500.54443359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 56, - "x": 3007.064453125, - "y": -509.10546875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 57, - "x": 3007.064453125, - "y": -509.10546875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5102枫丹廷北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5102枫丹廷北.json deleted file mode 100644 index dacb87d4..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5102枫丹廷北.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "info": { - "name": "5102枫丹廷北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4599.580078125, - "y": 4023.50244140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4597.200078125, - "y": 3994.39244140625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4561.36328125, - "y": 3990.105224609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4537.1826171875, - "y": 3989.417724609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4597.1926171875, - "y": 3943.937724609375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 6, - "x": 4597.1926171875, - "y": 3943.937724609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "orientation" - }, - { - "id": 7, - "x": 4597.1926171875, - "y": 3943.937724609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4599.654296875, - "y": 3894.140625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4586.2099609375, - "y": 3897.312255859375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4586.2099609375, - "y": 3897.312255859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4492.29248046875, - "y": 3883.56201171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4498.86083984375, - "y": 3887.252197265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4481.8837890625, - "y": 3876.139404296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4462.7537890625, - "y": 3830.139404296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4441.48486328125, - "y": 3837.131103515625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4441.48486328125, - "y": 3837.131103515625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5201枫丹优兰湖西.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5201枫丹优兰湖西.json deleted file mode 100644 index 420de49f..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5201枫丹优兰湖西.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "info": { - "name": "5201枫丹优兰湖西", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3618.275390625, - "y": 4057.916748046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3664.8740234375, - "y": 4019.553466796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3679.751953125, - "y": 3998.976318359375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3679.751953125, - "y": 3998.976318359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3720.8408203125, - "y": 3975.955078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3728.5087890625, - "y": 3966.961669921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3728.5087890625, - "y": 3966.961669921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3707.115234375, - "y": 3971.914306640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3706.2236328125, - "y": 3937.742919921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3706.2236328125, - "y": 3937.742919921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3681.1201171875, - "y": 3912.847900390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3648.69921875, - "y": 3908.564208984375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3578.8544921875, - "y": 3835.350341796875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5203枫丹垂柳东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5203枫丹垂柳东南.json deleted file mode 100644 index 908a3904..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5203枫丹垂柳东南.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "info": { - "name": "5203枫丹垂柳东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3032.7119140625, - "y": 3732.418212890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3039.783203125, - "y": 3718.94580078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3021.4521484375, - "y": 3687.308349609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3015.3134765625, - "y": 3660.025146484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3009.009765625, - "y": 3640.127685546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 2978.5087890625, - "y": 3628.42529296875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 2978.5087890625, - "y": 3628.42529296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 2965.66796875, - "y": 3611.21826171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 2950.033203125, - "y": 3617.533203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 2938.0009765625, - "y": 3606.383544921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 2938.0009765625, - "y": 3606.383544921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 2945.845703125, - "y": 3591.0341796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 2935.07421875, - "y": 3557.304443359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 2937.9677734375, - "y": 3534.73583984375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 2937.9677734375, - "y": 3534.73583984375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5204(水免)枫丹垂柳东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5204(水免)枫丹垂柳东南.json deleted file mode 100644 index 4b34cb1a..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5204(水免)枫丹垂柳东南.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "info": { - "name": "5204(水免)枫丹垂柳东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3032.75, - "y": 3732.414794921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3027.17578125, - "y": 3806.880859375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3026.1884765625, - "y": 3841.871826171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3026.1884765625, - "y": 3841.871826171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3031.970703125, - "y": 3847.21044921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3052.8037109375, - "y": 3858.352783203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3089.580078125, - "y": 3876.399658203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3119.095703125, - "y": 3869.581298828125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3119.095703125, - "y": 3869.581298828125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5205枫丹垂柳东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5205枫丹垂柳东南.json deleted file mode 100644 index feaff8a3..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5205枫丹垂柳东南.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "info": { - "name": "5205枫丹垂柳东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3032.7080078125, - "y": 3732.424072265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3085.400390625, - "y": 3708.704833984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3121.6572265625, - "y": 3681.37841796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3151.4404296875, - "y": 3664.882080078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3151.4404296875, - "y": 3664.882080078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3201.0146484375, - "y": 3645.8427734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3244.1494140625, - "y": 3647.4892578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3248.00390625, - "y": 3619.713623046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3248.00390625, - "y": 3619.713623046875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5206枫丹垂柳东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5206枫丹垂柳东南.json deleted file mode 100644 index 3353d07b..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5206枫丹垂柳东南.json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "info": { - "name": "5206枫丹垂柳东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3032.75, - "y": 3732.4130859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3020.203125, - "y": 3713.56640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3005.8857421875, - "y": 3690.44287109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 2993.234375, - "y": 3685.151611328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 2960.98828125, - "y": 3677.51953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 2953.00390625, - "y": 3700.634033203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 2953.00390625, - "y": 3700.634033203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 2950.6962890625, - "y": 3710.0869140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 2946.4619140625, - "y": 3750.395263671875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 2946.4619140625, - "y": 3750.395263671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 2953.962890625, - "y": 3746.887451171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 2969.1640625, - "y": 3777.085693359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 2979.3359375, - "y": 3839.061767578125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "path" - }, - { - "id": 14, - "x": 2977.3359375, - "y": 3822.061767578125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 2977.3359375, - "y": 3822.061767578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 2949.1142578125, - "y": 3806.846923828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 2931.84375, - "y": 3801.987548828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 2919.703125, - "y": 3816.667724609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 2919.703125, - "y": 3816.667724609375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5207枫丹柔灯港北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5207枫丹柔灯港北.json deleted file mode 100644 index 58c2d9e1..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5207枫丹柔灯港北.json +++ /dev/null @@ -1,210 +0,0 @@ -{ - "info": { - "name": "5207枫丹柔灯港北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 2873.576171875, - "y": 3511.922119140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 2876.70703125, - "y": 3462.806396484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 2876.70703125, - "y": 3462.806396484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 2875.9072265625, - "y": 3494.044677734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 2871.06640625, - "y": 3503.383056640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 2855.7998046875, - "y": 3505.2861328125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 2855.7998046875, - "y": 3505.2861328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 2852.111328125, - "y": 3513.39990234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 2860.1025390625, - "y": 3531.98486328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 2860.1025390625, - "y": 3531.98486328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 2830.9208984375, - "y": 3538.89404296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 2819.46484375, - "y": 3548.37451171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 2821.251953125, - "y": 3571.0263671875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 2821.251953125, - "y": 3571.0263671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 2824.86328125, - "y": 3580.980712890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 2805.189453125, - "y": 3597.58544921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 2791.5087890625, - "y": 3601.853759765625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 2791.5087890625, - "y": 3601.853759765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 2802.4087890625, - "y": 3639.053759765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 2811.5087890625, - "y": 3625.853759765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 2813.982421875, - "y": 3618.04150390625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 2813.982421875, - "y": 3618.04150390625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5208枫丹幽林东北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5208枫丹幽林东北.json deleted file mode 100644 index 548081d1..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5208枫丹幽林东北.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "info": { - "name": "5208枫丹幽林东北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3229.2314453125, - "y": 3452.635009765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3211.6318359375, - "y": 3448.69091796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3246.7138671875, - "y": 3459.975341796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3262.36328125, - "y": 3461.890380859375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3262.36328125, - "y": 3461.890380859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3256.080078125, - "y": 3476.5107421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3271.642578125, - "y": 3486.427001953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3271.666015625, - "y": 3495.567138671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3253.7080078125, - "y": 3522.09033203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3259.87109375, - "y": 3551.042724609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3259.87109375, - "y": 3551.042724609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3258.7177734375, - "y": 3559.414306640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3268.7177734375, - "y": 3573.414306640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 3279.5888671875, - "y": 3593.57373046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 3279.5888671875, - "y": 3593.57373046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 3285.763671875, - "y": 3608.750732421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 3279.7978515625, - "y": 3636.631103515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 3279.7978515625, - "y": 3636.631103515625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5209枫丹露景泉东.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5209枫丹露景泉东.json deleted file mode 100644 index 29605120..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5209枫丹露景泉东.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "info": { - "name": "5209枫丹露景泉东", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3468.818359375, - "y": 3550.13818359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3460.05078125, - "y": 3553.840087890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3451.162109375, - "y": 3582.322265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3436.8447265625, - "y": 3598.24072265625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3436.8447265625, - "y": 3598.24072265625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(0.5)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5210枫丹幽林东北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5210枫丹幽林东北.json deleted file mode 100644 index b35128f1..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5210枫丹幽林东北.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "info": { - "name": "5210枫丹幽林东北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3199.6689453125, - "y": 3433.627685546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3164.1484375, - "y": 3443.47265625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3127.22265625, - "y": 3444.87646484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3111.251953125, - "y": 3452.35693359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3088.23828125, - "y": 3452.731689453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3088.23828125, - "y": 3452.731689453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3107.4189453125, - "y": 3422.137939453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3067.0126953125, - "y": 3423.126708984375, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3067.0126953125, - "y": 3423.126708984375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5301枫丹卡布堡南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5301枫丹卡布堡南.json deleted file mode 100644 index c0415df8..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5301枫丹卡布堡南.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "info": { - "name": "5301枫丹卡布堡南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3380.396484375, - "y": 2690.10302734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3364.00390625, - "y": 2668.190673828125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "2200", - "type": "path" - }, - { - "id": 3, - "x": 3362.6103515625, - "y": 2665.673828125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3362.6103515625, - "y": 2665.673828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3344.353515625, - "y": 2673.16455078125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3320.4697265625, - "y": 2683.34228515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3310.501953125, - "y": 2686.884033203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3307.961953125, - "y": 2686.974033203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3298.9775390625, - "y": 2677.1953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3290.775390625, - "y": 2695.353125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3284.2333984375, - "y": 2693.6748046875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3284.2333984375, - "y": 2693.6748046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3275.7421875, - "y": 2674.622314453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 3255.5234375, - "y": 2664.586669921875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 3243.89453125, - "y": 2683.616328125, - "action": "fight", - "move_mode": "swim", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 3254.5234375, - "y": 2664.586669921875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5303枫丹卡布堡北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5303枫丹卡布堡北.json deleted file mode 100644 index 755f3e40..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5303枫丹卡布堡北.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "info": { - "name": "5303枫丹卡布堡北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3252.2177734375, - "y": 2963.657470703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3227.6484375, - "y": 2939.123291015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3159.466796875, - "y": 2897.125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3138.4951171875, - "y": 2899.461669921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3119.8623046875, - "y": 2912.183837890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3116.8564453125, - "y": 2916.350341796875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3116.8564453125, - "y": 2916.350341796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3122.3359375, - "y": 2951.565673828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3122.3359375, - "y": 2951.565673828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3055.3603515625, - "y": 2987.8369140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3055.3603515625, - "y": 2987.8369140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3024.5009765625, - "y": 2975.89501953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 2992.96484375, - "y": 2972.013916015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 2992.96484375, - "y": 2972.013916015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 2998.525390625, - "y": 2954.0380859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 2999.083984375, - "y": 2937.14990234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 3002.84375, - "y": 2928.535400390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 3012.013671875, - "y": 2917.703857421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 3002.84375, - "y": 2928.535400390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 3002.84375, - "y": 2928.535400390625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5401枫丹秋分东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5401枫丹秋分东南.json deleted file mode 100644 index e1b1236e..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5401枫丹秋分东南.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "info": { - "name": "5401枫丹秋分东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3815.1337890625, - "y": 2336.95703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3825.5107421875, - "y": 2318.21044921875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "300", - "type": "path" - }, - { - "id": 3, - "x": 3825.6044921875, - "y": 2313.524169921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3826.0849609375, - "y": 2312.728515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3792.1357421875, - "y": 2290.222900390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3792.1357421875, - "y": 2290.222900390625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5403枫丹螃蟹北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5403枫丹螃蟹北.json deleted file mode 100644 index 775a28cb..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5403枫丹螃蟹北.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "info": { - "name": "5403枫丹螃蟹北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4375.48828125, - "y": 2280.522705078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4381.61474609375, - "y": 2245.242431640625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4381.61474609375, - "y": 2245.242431640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4404.6142578125, - "y": 2241.14404296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4387.36328125, - "y": 2211.53662109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4332.49365234375, - "y": 2207.180908203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4307.91943359375, - "y": 2222.21728515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4307.91943359375, - "y": 2222.21728515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4285.46044921875, - "y": 2222.711669921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4285.46044921875, - "y": 2222.711669921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4256.08935546875, - "y": 2255.126953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4254.17138671875, - "y": 2314.100341796875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4252.49853515625, - "y": 2340.91552734375, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4267.2158203125, - "y": 2393.86083984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4292.7646484375, - "y": 2403.631591796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4292.7646484375, - "y": 2403.631591796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4282.2138671875, - "y": 2434.117431640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4266.50390625, - "y": 2457.81005859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4269.56005859375, - "y": 2462.063232421875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4269.56005859375, - "y": 2462.063232421875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - }, - { - "id": 21, - "x": 4375.2734375, - "y": 2280.796630859375, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 22, - "x": 4378.615234375, - "y": 2349.4287109375, - "type": "path", - "move_mode": "dash", - "action": "", - "action_params": "" - }, - { - "id": 23, - "x": 4387.50263671875, - "y": 2356.514990234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 4389.20263671875, - "y": 2365.114990234375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5501枫丹螃蟹西.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5501枫丹螃蟹西.json deleted file mode 100644 index 1dcf4a16..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5501枫丹螃蟹西.json +++ /dev/null @@ -1,228 +0,0 @@ -{ - "info": { - "name": "5501枫丹螃蟹西", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4625.875, - "y": 2182.54345703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4631.89013671875, - "y": 2176.27685546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4657.97138671875, - "y": 2175.5490234375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4655.17138671875, - "y": 2175.2490234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4640.13330078125, - "y": 2189.00830078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4611.20458984375, - "y": 2233.676513671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4618.52490234375, - "y": 2275.417724609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4618.52490234375, - "y": 2275.417724609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4574.12939453125, - "y": 2269.04052734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4574.12939453125, - "y": 2269.04052734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4545.541015625, - "y": 2187.665458984375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4545.541015625, - "y": 2187.665458984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4531.51806640625, - "y": 2220.333740234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4492.6318359375, - "y": 2240.738525390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4492.6318359375, - "y": 2240.738525390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4484.79931640625, - "y": 2316.920166015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4484.79931640625, - "y": 2316.920166015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4511.0625, - "y": 2331.134521484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4511.0625, - "y": 2331.134521484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4510.06201171875, - "y": 2346.66650390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 4498.06201171875, - "y": 2379.66650390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 4498.06201171875, - "y": 2379.66650390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 4539.298828125, - "y": 2401.99072265625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 4539.298828125, - "y": 2401.99072265625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5502枫丹苍晶南山峰西.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5502枫丹苍晶南山峰西.json deleted file mode 100644 index beeb241f..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5502枫丹苍晶南山峰西.json +++ /dev/null @@ -1,246 +0,0 @@ -{ - "info": { - "name": "5502枫丹苍晶南山峰西", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4876.55908203125, - "y": 2255.18994140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4880.181640625, - "y": 2228.711669921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4880.181640625, - "y": 2228.711669921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4878.7841796875, - "y": 2251.1240234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4873.662109375, - "y": 2277.2470703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4869.55078125, - "y": 2289.0673828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4846.22509765625, - "y": 2299.371337890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4846.22509765625, - "y": 2299.371337890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4810.1611328125, - "y": 2318.68017578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4780.6044921875, - "y": 2339.265869140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4764.2822265625, - "y": 2348.976318359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4752.8916015625, - "y": 2366.47705078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4752.8916015625, - "y": 2366.47705078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4749.49755859375, - "y": 2333.174072265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4746.6953125, - "y": 2305.073486328125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4746.6953125, - "y": 2305.073486328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4716.10400390625, - "y": 2290.968994140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4668.94775390625, - "y": 2281.87158203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4668.94775390625, - "y": 2281.87158203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4664.56298828125, - "y": 2304.67822265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 4655.93212890625, - "y": 2342.83935546875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 4655.93212890625, - "y": 2342.83935546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 4648.70068359375, - "y": 2385.87890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 4632.1591796875, - "y": 2399.410400390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 4634.15771484375, - "y": 2405.024169921875, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 4634.15771484375, - "y": 2405.024169921875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5503枫丹厄里东北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5503枫丹厄里东北.json deleted file mode 100644 index 9f942984..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5503枫丹厄里东北.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "info": { - "name": "5503枫丹厄里东北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4705.474609375, - "y": 2951.560546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4723.09521484375, - "y": 2948.432373046875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4723.09521484375, - "y": 2948.432373046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4751.9912109375, - "y": 2930.36376953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4777.333984375, - "y": 2907.736083984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4795.93310546875, - "y": 2883.1982421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4795.93310546875, - "y": 2883.1982421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4785.40234375, - "y": 2921.757080078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4838.81982421875, - "y": 2946.60498046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4860.0830078125, - "y": 2966.31982421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4860.0830078125, - "y": 2966.31982421875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5601枫丹场力东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5601枫丹场力东南.json deleted file mode 100644 index daedfc31..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5601枫丹场力东南.json +++ /dev/null @@ -1,372 +0,0 @@ -{ - "info": { - "name": "5601枫丹场力东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3923.046875, - "y": 4233.859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3913.671875, - "y": 4243.447265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3929.6865234375, - "y": 4257.375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3946.8193359375, - "y": 4268.0234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3954.630859375, - "y": 4283.61767578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3963.626953125, - "y": 4300.07421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3966.0693359375, - "y": 4298.39501953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3979.5439453125, - "y": 4313.4140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3973.04296875, - "y": 4317.44189453125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3973.04296875, - "y": 4317.44189453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3986.810546875, - "y": 4317.251953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3995.310546875, - "y": 4292.421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3998.97265625, - "y": 4272.921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4008.4951171875, - "y": 4261.8984375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4008.4951171875, - "y": 4261.8984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4022.162109375, - "y": 4251.64404296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4039.8046875, - "y": 4239.91845703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4066.5, - "y": 4250.142578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4085.34375, - "y": 4255.80615234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4112.95263671875, - "y": 4263.0810546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 4131.9873046875, - "y": 4266.11962890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 4149.42431640625, - "y": 4272.49267578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 4173.87109375, - "y": 4269.7802734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 4195.44873046875, - "y": 4283.1748046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 4195.44873046875, - "y": 4283.1748046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 4190.2490234375, - "y": 4264.28173828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 4188.39892578125, - "y": 4256.86962890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 4185.16943359375, - "y": 4220.521484375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 4192.67919921875, - "y": 4212.0380859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": 4197.79541015625, - "y": 4205.44091796875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": 4197.79541015625, - "y": 4205.44091796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": 4211.22900390625, - "y": 4170.525390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": 4245.66552734375, - "y": 4154.8017578125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": 4257.486328125, - "y": 4150.765625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": 4257.486328125, - "y": 4150.765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 36, - "x": 4265.92822265625, - "y": 4171.6337890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 37, - "x": 4279.00732421875, - "y": 4198.54150390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 38, - "x": 4287.271484375, - "y": 4217.3017578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 39, - "x": 4294.27490234375, - "y": 4236.13232421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 40, - "x": 4294.27490234375, - "y": 4236.13232421875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5602枫丹场力东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5602枫丹场力东南.json deleted file mode 100644 index a4c0be2d..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5602枫丹场力东南.json +++ /dev/null @@ -1,345 +0,0 @@ -{ - "info": { - "name": "5602枫丹场力东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3923.0537109375, - "y": 4233.8603515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3899.810546875, - "y": 4237.5107421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3878.6669921875, - "y": 4242.8740234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3839.919921875, - "y": 4267.2578125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3822.3544921875, - "y": 4270.4677734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3807.9033203125, - "y": 4281.98095703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3792.5302734375, - "y": 4283.0244140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3771.873046875, - "y": 4276.9375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3771.873046875, - "y": 4276.9375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3769.6865234375, - "y": 4297.12451171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3762.875, - "y": 4332.673828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3781.689453125, - "y": 4358.28515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3781.689453125, - "y": 4358.28515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 3770.5048828125, - "y": 4359.2763671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 3743.302734375, - "y": 4334.541015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 3719.671875, - "y": 4324.921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 3719.671875, - "y": 4324.921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 3693.8525390625, - "y": 4314.97265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 3676.7265625, - "y": 4303.8623046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 3650.8232421875, - "y": 4295.8798828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 3613.703125, - "y": 4277.05126953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 3598.0341796875, - "y": 4267.16259765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 3596.1953125, - "y": 4258.1064453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 3596.1953125, - "y": 4258.1064453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 3589.9873046875, - "y": 4260.7783203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 3552.5849609375, - "y": 4286.833984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 3540.232421875, - "y": 4272.646484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 3501.1171875, - "y": 4264.94921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 3481.166015625, - "y": 4256.4111328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": 3462.7470703125, - "y": 4235.271484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": 3457.3984375, - "y": 4209.0947265625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": 3457.3984375, - "y": 4209.0947265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": 3460.13671875, - "y": 4185.9580078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": 3462.447265625, - "y": 4177.2529296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": 3455.267578125, - "y": 4155.28076171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 36, - "x": 3447.5673828125, - "y": 4138.15234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 37, - "x": 3447.5673828125, - "y": 4138.15234375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5603枫丹场力北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5603枫丹场力北.json deleted file mode 100644 index ccd14dec..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5603枫丹场力北.json +++ /dev/null @@ -1,390 +0,0 @@ -{ - "info": { - "name": "5603枫丹场力北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4143.89404296875, - "y": 4423.56982421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4158.92919921875, - "y": 4428.8388671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4178.30810546875, - "y": 4420.9697265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4203.681640625, - "y": 4413.49609375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4216.0947265625, - "y": 4412.939453125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4216.0947265625, - "y": 4412.939453125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4230.96923828125, - "y": 4418.87646484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4257.30712890625, - "y": 4429.505859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4279.30908203125, - "y": 4433.38525390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4293.97119140625, - "y": 4419.724609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4292.935546875, - "y": 4401.44677734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4299.34814453125, - "y": 4379.54443359375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4299.34814453125, - "y": 4379.54443359375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4309.0126953125, - "y": 4354.12451171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4319.212890625, - "y": 4338.3515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4350.2275390625, - "y": 4327.3154296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4361.505859375, - "y": 4324.5107421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4384.72314453125, - "y": 4335.70458984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4389.63427734375, - "y": 4334.63427734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4397.683427734375, - "y": 4338.13427734375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 4397.683427734375, - "y": 4338.13427734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 4389.63427734375, - "y": 4334.63427734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 4380.0478515625, - "y": 4334.06005859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 4382.43212890625, - "y": 4365.30029296875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 4382.43212890625, - "y": 4365.30029296875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 4374.56396484375, - "y": 4372.265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 4390.61328125, - "y": 4438.10986328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 4407.1298828125, - "y": 4438.44677734375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 4410.01025390625, - "y": 4436.5283203125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": 4410.01025390625, - "y": 4436.5283203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": 4419.25146484375, - "y": 4436.71826171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": 4433.99462890625, - "y": 4426.236328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": 4467.29541015625, - "y": 4401.046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": 4477.54931640625, - "y": 4392.8037109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": 4476.61279296875, - "y": 4379.2509765625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 36, - "x": 4476.61279296875, - "y": 4379.2509765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 37, - "x": 4479.369140625, - "y": 4343.087890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 38, - "x": 4461.45849609375, - "y": 4332.57275390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 39, - "x": 4446.66943359375, - "y": 4322.921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 40, - "x": 4434.77685546875, - "y": 4314.908203125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 41, - "x": 4431.69189453125, - "y": 4308.6591796875, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 42, - "x": 4431.69189453125, - "y": 4308.6591796875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5604枫丹中央遗址北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5604枫丹中央遗址北.json deleted file mode 100644 index 7f7cb2b8..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5604枫丹中央遗址北.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "info": { - "name": "5604枫丹中央遗址北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3811.7216796875, - "y": 4952.56201171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3783.2607421875, - "y": 4976.087890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3773.90625, - "y": 4980.8173828125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3773.90625, - "y": 4980.8173828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3753.349609375, - "y": 4969.701171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3745.9736328125, - "y": 4991.99169921875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3745.9736328125, - "y": 4991.99169921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3745.5791015625, - "y": 4980.21435546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3710.5791015625, - "y": 4960.21435546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3712.6875, - "y": 4910.666015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3712.6875, - "y": 4910.666015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3693.654296875, - "y": 4923.6025390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3663.548828125, - "y": 4921.5478515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 3610.8134765625, - "y": 4902.125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 3610.8134765625, - "y": 4902.125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 3621.7197265625, - "y": 4880.5048828125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 3631.3720703125, - "y": 4857.9189453125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 3631.3720703125, - "y": 4857.9189453125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(0,5)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5605枫丹中央遗址北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5605枫丹中央遗址北.json deleted file mode 100644 index 6015f072..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5605枫丹中央遗址北.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "info": { - "name": "5605枫丹中央遗址北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3811.69140625, - "y": 4952.57958984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3814.9404296875, - "y": 4948.72509765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3860.6875, - "y": 4940.6337890625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3860.6875, - "y": 4940.6337890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3830.423828125, - "y": 4912.056640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3813.0791015625, - "y": 4874.841796875, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3813.0791015625, - "y": 4874.841796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3825.51953125, - "y": 4870.5400390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3853.4072265625, - "y": 4875.5849609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3882.1435546875, - "y": 4865.37548828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3882.1435546875, - "y": 4865.37548828125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5608枫丹新科学院.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5608枫丹新科学院.json deleted file mode 100644 index fd2e408a..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5608枫丹新科学院.json +++ /dev/null @@ -1,345 +0,0 @@ -{ - "info": { - "name": "5608枫丹新科学院", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4301.28076171875, - "y": 4765.044921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4313.3515625, - "y": 4772.62255859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4343.373046875, - "y": 4791.2490234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4372.48876953125, - "y": 4799.94140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4383.8388671875, - "y": 4797.9248046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4391.83154296875, - "y": 4799.45703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4418.470703125, - "y": 4805.6298828125, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4418.470703125, - "y": 4805.6298828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4418.99560546875, - "y": 4786.576171875, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4421.2021484375, - "y": 4761.189453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4417.21630859375, - "y": 4739.4853515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4415.77490234375, - "y": 4729.0244140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4412.1689453125, - "y": 4716.9609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4412.1689453125, - "y": 4716.9609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4408.193359375, - "y": 4707.69921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4395.85009765625, - "y": 4698.419921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4382.0322265625, - "y": 4693.31005859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4393.13427734375, - "y": 4662.146484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4393.13427734375, - "y": 4662.146484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4395.71435546875, - "y": 4641.1826171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 4395.1123046875, - "y": 4624.2255859375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 4394.91064453125, - "y": 4622.98828125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 4394.91064453125, - "y": 4622.98828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 4393.58203125, - "y": 4592.681640625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 4376.21826171875, - "y": 4595.3623046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 4376.21826171875, - "y": 4595.3623046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 4364.607421875, - "y": 4576.2646484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 4355.21337890625, - "y": 4559.45849609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 4355.21337890625, - "y": 4559.45849609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": 4359.185546875, - "y": 4563.1005859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 31, - "x": 4352.03173828125, - "y": 4583.490234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 32, - "x": 4327.7021484375, - "y": 4605.6650390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 33, - "x": 4320.0625, - "y": 4622.462890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 34, - "x": 4300.978515625, - "y": 4634.3916015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 35, - "x": 4304.43212890625, - "y": 4643.96240234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 36, - "x": 4317.9306640625, - "y": 4654.232421875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 37, - "x": 4317.9306640625, - "y": 4654.232421875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5609(高危)枫丹千年骏麟.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5609(高危)枫丹千年骏麟.json deleted file mode 100644 index 819d3d29..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5609(高危)枫丹千年骏麟.json +++ /dev/null @@ -1,210 +0,0 @@ -{ - "info": { - "name": "5609(高危)枫丹千年骏麟", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4434.3427734375, - "y": 5091.798828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4439.02294921875, - "y": 5087.7041015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4468.6484375, - "y": 5051.498046875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4470.6484375, - "y": 5051.498046875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4470.6484375, - "y": 5051.498046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4462.43212890625, - "y": 5005.65380859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4462.43212890625, - "y": 5005.65380859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4494.09033203125, - "y": 5030.25830078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4533.75244140625, - "y": 5032.87353515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4533.75244140625, - "y": 5032.87353515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4624.2587890625, - "y": 4951.7451171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 12, - "x": 4612.80419921875, - "y": 4902.74169921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4612.45703125, - "y": 4861.69140625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4632.41943359375, - "y": 4842.5341796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4612.45703125, - "y": 4861.69140625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4626.6142578125, - "y": 4844.89697265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4578.162109375, - "y": 4825.75244140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4578.162109375, - "y": 4825.75244140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4550.52587890625, - "y": 4854.7724609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4556.10009765625, - "y": 4876.2587890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 4553.03515625, - "y": 4868.41259765625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 4553.03515625, - "y": 4868.41259765625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json deleted file mode 100644 index 47aeb7b3..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "info": { - "name": "000如果执行了这条路径说明你启用了错误的文件夹请阅读README", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "", - "locked": false - }, - { - "id": 2, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "log_output", - "action_params": "如果你看到这条文字,说明你启用了错误的文件夹请阅读README", - "locked": false - }, - { - "id": 3, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(60)" - }, - { - "id": 4, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "log_output", - "action_params": "如果你看到这条文字,说明你启用了错误的文件夹请阅读README", - "locked": false - }, - { - "id": 5, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(60)", - "locked": false - }, - { - "id": 6, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "log_output", - "action_params": "如果你看到这条文字,说明你启用了错误的文件夹请阅读README", - "locked": false - }, - { - "id": 7, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(60)", - "locked": false - }, - { - "id": 8, - "x": 508.0517578125, - "y": -630.48486328125, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 9, - "x": 497.740234375, - "y": -681.25, - "type": "path", - "move_mode": "walk", - "action": "stop_flying", - "action_params": "60000" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/25012璃月遁玉陵.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/25012璃月遁玉陵.json deleted file mode 100644 index 48a54372..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/25012璃月遁玉陵.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "info": { - "name": "25012璃月遁玉陵", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 978.720703125, - "y": -353.560546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 977.5498046875, - "y": -333.77490234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 1008.2646484375, - "y": -312.1474609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 1070.1904296875, - "y": -251.4970703125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1000", - "type": "path" - }, - { - "id": 5, - "x": 1065.1904296875, - "y": -251.4970703125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 1065.1904296875, - "y": -251.4970703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 1071.7109375, - "y": -234.23046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 1108.646484375, - "y": -213.02734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 1123.3740234375, - "y": -242.22216796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 1123.3740234375, - "y": -242.22216796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 1108.57421875, - "y": -214.80810546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 1163.1181640625, - "y": -172.33447265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 1170.1181640625, - "y": -163.33447265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 1160.646484375, - "y": -147.81787109375, - "action": "fight", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 1160.646484375, - "y": -147.81787109375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3206稻妻踏鞴反应炉东.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3206稻妻踏鞴反应炉东.json deleted file mode 100644 index 088acb50..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3206稻妻踏鞴反应炉东.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "info": { - "name": "3206稻妻踏鞴反应炉东", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -3288.193359375, - "y": -3652.5283203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -3285.0986328125, - "y": -3656.5576171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -3263.1845703125, - "y": -3702.5302734375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1500", - "type": "path" - }, - { - "id": 4, - "x": -3256.9931640625, - "y": -3704.2998046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -3234.435546875, - "y": -3690.53125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -3234.435546875, - "y": -3690.53125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -3223.1357421875, - "y": -3677.2451171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -3215.4755859375, - "y": -3674.8916015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -3190.3017578125, - "y": -3665.1630859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -3190.3017578125, - "y": -3665.1630859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -3196.779296875, - "y": -3652.947265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -3203.876953125, - "y": -3635.302734375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -3203.876953125, - "y": -3635.302734375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3304稻妻剑鬼东3.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3304稻妻剑鬼东3.json deleted file mode 100644 index 5d18e632..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3304稻妻剑鬼东3.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "info": { - "name": "3304稻妻剑鬼东3", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -2405.748046875, - "y": -3912.9091796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -2405.2409453125, - "y": -3936.182890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -2420.3336328125, - "y": -3996.790984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "3000", - "type": "path" - }, - { - "id": 4, - "x": -2422.3336328125, - "y": -3996.790984375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - }, - { - "id": 5, - "x": -2420.3336328125, - "y": -3996.790984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -2457.802109375, - "y": -4017.1092578125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2462.662109375, - "y": -4028.2392578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -2487.5556640625, - "y": -4036.365234375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -2483.966796875, - "y": -4065.69921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -2483.966796875, - "y": -4065.69921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -2530.650390625, - "y": -4039.8603515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -2572.380859375, - "y": -4000.00390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -2576.517578125, - "y": -4002.162109375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -2576.517578125, - "y": -4002.162109375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json deleted file mode 100644 index e2279ebd..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json +++ /dev/null @@ -1,210 +0,0 @@ -{ - "info": { - "name": "3402稻妻海祇岛东南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -1062.123046875, - "y": -3943.51171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -1067.396484375, - "y": -3985.8564453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -1064.2138671875, - "y": -3996.5517578125, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -1064.2138671875, - "y": -3996.5517578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -1113.4208984375, - "y": -3960.255859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -1141.623046875, - "y": -3967.3271484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -1150.2373046875, - "y": -3991.0751953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -1162.416015625, - "y": -4009.67578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -1150.2373046875, - "y": -3991.0751953125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -1194.2490234375, - "y": -4013.47265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -1252.974609375, - "y": -4002.427734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": -1273.259765625, - "y": -3995.7431640625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": -1273.259765625, - "y": -3995.7431640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": -1257.2255859375, - "y": -4001.572265625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": -1223.546875, - "y": -4046.51953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -1206.197265625, - "y": -4080.2333984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -1181.2392578125, - "y": -4120.046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -1141.8857421875, - "y": -4105.783203125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": -1134.98828125, - "y": -4092.43359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": -1139.3115234375, - "y": -4088.9482421875, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": -1133.85546875, - "y": -4089.876953125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": -1139.3115234375, - "y": -4088.9482421875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3404稻妻海祇岛北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3404稻妻海祇岛北.json deleted file mode 100644 index 845bbdfa..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/3404稻妻海祇岛北.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "info": { - "name": "3404稻妻海祇岛北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": -765.3876953125, - "y": -3557.888671875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -733.294921875, - "y": -3562.859375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -733.294921875, - "y": -3562.859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -731.99609375, - "y": -3556.9970703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -681.7275390625, - "y": -3572.1181640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -658.43359375, - "y": -3560.96875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(f)", - "type": "path" - }, - { - "id": 7, - "x": -646.9951171875, - "y": -3589.2001953125, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": -634.11328125, - "y": -3592.341796875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(0.5)", - "type": "path" - }, - { - "id": 9, - "x": -652.19921875, - "y": -3581.44140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -652.19921875, - "y": -3581.44140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -610.48828125, - "y": -3574.76171875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(f),wait(0.1),keypress(f),wait(0.1),dash", - "type": "target" - }, - { - "id": 12, - "x": -607.455078125, - "y": -3570.2080078125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(f),wait(0.1),keypress(f),wait(0.1),dash", - "type": "path" - }, - { - "id": 13, - "x": -605.7333984375, - "y": -3573.7412109375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(f),wait(0.1),keypress(f),wait(0.1),dash", - "type": "path" - }, - { - "id": 14, - "x": -613.1181640625, - "y": -3566.7001953125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "orientation" - }, - { - "id": 15, - "x": -613.1181640625, - "y": -3566.7001953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": -620.4697265625, - "y": -3534.1171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": -638.919921875, - "y": -3531.6328125, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": -638.919921875, - "y": -3531.6328125, - "action": "combat_script", - "move_mode": "run", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5101枫丹廷东北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5101枫丹廷东北.json deleted file mode 100644 index e2fd9c85..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5101枫丹廷东北.json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "info": { - "name": "5101枫丹廷东北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4865.4482421875, - "y": 3913.1630859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4899.7041015625, - "y": 3911.68359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4918.41162109375, - "y": 3886.763916015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4912.62451171875, - "y": 3897.059326171875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4912.62451171875, - "y": 3897.059326171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4925.32568359375, - "y": 3870.240234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4928.07421875, - "y": 3847.443115234375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4928.07421875, - "y": 3847.443115234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4954.3115234375, - "y": 3835.467529296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4950.77490234375, - "y": 3829.621826171875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4950.77490234375, - "y": 3829.621826171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4982.79736328125, - "y": 3824.10205078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4998.408203125, - "y": 3798.50146484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4998.408203125, - "y": 3798.50146484375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - }, - { - "id": 15, - "x": 4865.46875, - "y": 3912.95703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 16, - "x": 4876.5654296875, - "y": 3972.333251953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4851.49560546875, - "y": 4016.47802734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4839.66650390625, - "y": 4011.04541015625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4839.66650390625, - "y": 4011.04541015625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "path" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5202枫丹垂柳西北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5202枫丹垂柳西北.json deleted file mode 100644 index 28caee0b..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5202枫丹垂柳西北.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "info": { - "name": "5202枫丹垂柳西北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3344.1162109375, - "y": 3903.3330078125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3330.654296875, - "y": 3900.4169921875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3300.298828125, - "y": 3888.042724609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3284.0458984375, - "y": 3874.00830078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3291.4189453125, - "y": 3845.7001953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3283.353515625, - "y": 3833.052734375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3283.353515625, - "y": 3833.052734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3262.466796875, - "y": 3826.027099609375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3262.466796875, - "y": 3822.027099609375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3262.466796875, - "y": 3822.027099609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3264.486796875, - "y": 3802.027099609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3246.86796875, - "y": 3776.027099609375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3246.86796875, - "y": 3776.027099609375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/52092枫丹露景泉东.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/52092枫丹露景泉东.json deleted file mode 100644 index 6128bf3d..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/52092枫丹露景泉东.json +++ /dev/null @@ -1,273 +0,0 @@ -{ - "info": { - "name": "52092枫丹露景泉东", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3469.5205078125, - "y": 3550.98974609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3473.5146484375, - "y": 3541.579833984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3477.2509765625, - "y": 3532.448486328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3485.4482421875, - "y": 3516.342529296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3488.798828125, - "y": 3497.03759765625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3499.0419921875, - "y": 3465.520263671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3495.3994140625, - "y": 3409.828369140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3495.3994140625, - "y": 3409.828369140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3487.2841796875, - "y": 3411.730224609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3477.287109375, - "y": 3409.9658203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3449.19921875, - "y": 3415.408935546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3436.873046875, - "y": 3396.5634765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3428.3017578125, - "y": 3389.737548828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 3409.9296875, - "y": 3381.025390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 3386.9013671875, - "y": 3367.941162109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 3386.9013671875, - "y": 3367.941162109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 3400.48828125, - "y": 3372.260986328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 3406.3798828125, - "y": 3340.158935546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 3419.5712890625, - "y": 3286.034423828125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 3445.4375, - "y": 3273.220947265625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 3445.4375, - "y": 3273.220947265625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 3458.0185546875, - "y": 3264.8837890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 3469.2822265625, - "y": 3287.71728515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 3472.1845703125, - "y": 3311.935791015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 3491.267578125, - "y": 3344.252685546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 3506.8408203125, - "y": 3363.226806640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 3539.9990234375, - "y": 3366.354736328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 3554.0546875, - "y": 3385.41455078125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 3554.0546875, - "y": 3385.41455078125, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5302枫丹卡布堡南.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5302枫丹卡布堡南.json deleted file mode 100644 index 349e2d00..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5302枫丹卡布堡南.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "info": { - "name": "5302枫丹卡布堡南", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3383.2119140625, - "y": 2692.27685546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3372.708984375, - "y": 2698.58203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3367.5166015625, - "y": 2709.63525390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3352.7470703125, - "y": 2732.0498046875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3342.134765625, - "y": 2771.715087890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3339.890625, - "y": 2778.157958984375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3339.890625, - "y": 2778.157958984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3303.572265625, - "y": 2828.731201171875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3275.048828125, - "y": 2829.228271484375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3275.048828125, - "y": 2829.228271484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3290.9072265625, - "y": 2822.134521484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3363.712890625, - "y": 2849.820556640625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3382.1259765625, - "y": 2854.62109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 3389.9287109375, - "y": 2855.828369140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 3394.1044921875, - "y": 2849.467529296875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 3401.921875, - "y": 2850.051513671875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5303枫丹卡布堡北.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5303枫丹卡布堡北.json deleted file mode 100644 index 755f3e40..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5303枫丹卡布堡北.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "info": { - "name": "5303枫丹卡布堡北", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3252.2177734375, - "y": 2963.657470703125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3227.6484375, - "y": 2939.123291015625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3159.466796875, - "y": 2897.125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3138.4951171875, - "y": 2899.461669921875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3119.8623046875, - "y": 2912.183837890625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3116.8564453125, - "y": 2916.350341796875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3116.8564453125, - "y": 2916.350341796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3122.3359375, - "y": 2951.565673828125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3122.3359375, - "y": 2951.565673828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3055.3603515625, - "y": 2987.8369140625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3055.3603515625, - "y": 2987.8369140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3024.5009765625, - "y": 2975.89501953125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 2992.96484375, - "y": 2972.013916015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 2992.96484375, - "y": 2972.013916015625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 2998.525390625, - "y": 2954.0380859375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 2999.083984375, - "y": 2937.14990234375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 3002.84375, - "y": 2928.535400390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 3012.013671875, - "y": 2917.703857421875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 3002.84375, - "y": 2928.535400390625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 3002.84375, - "y": 2928.535400390625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5402枫丹秋分山东.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5402枫丹秋分山东.json deleted file mode 100644 index 0fe1b6ae..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5402枫丹秋分山东.json +++ /dev/null @@ -1,264 +0,0 @@ -{ - "info": { - "name": "5402枫丹秋分山东", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 3940.46875, - "y": 2470.294677734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 3935.185546875, - "y": 2451.953369140625, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 3934.7138671875, - "y": 2444.46240234375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 3928.8349609375, - "y": 2433.39208984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 3927.3857421875, - "y": 2397.396484375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 3931.6015625, - "y": 2387.4560546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3936.2890625, - "y": 2389.572021484375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 3936.2890625, - "y": 2389.572021484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 3930.802734375, - "y": 2388.2607421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 3946.2529296875, - "y": 2371.113037109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 3954.8629296875, - "y": 2361.113037109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 3951.2529296875, - "y": 2338.2158203125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 3965.8994140625, - "y": 2304.86083984375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 3979.0869140625, - "y": 2294.010498046875, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 3979.0869140625, - "y": 2294.010498046875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 3962.3876953125, - "y": 2302.20703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 3948.25390625, - "y": 2305.72412109375, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 3948.25390625, - "y": 2305.72412109375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 3938.822265625, - "y": 2309.56884765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 3917.8291015625, - "y": 2295.614013671875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 3905.341796875, - "y": 2303.41357421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 3905.509765625, - "y": 2321.982177734375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 3905.509765625, - "y": 2321.982177734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 3895.7392578125, - "y": 2330.552978515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 3862.701171875, - "y": 2378.307861328125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 3855.2705078125, - "y": 2379.218994140625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 3846.029296875, - "y": 2377.994873046875, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 3846.029296875, - "y": 2377.994873046875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5606枫丹新科学院.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5606枫丹新科学院.json deleted file mode 100644 index 52c42dbc..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5606枫丹新科学院.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "info": { - "name": "5606枫丹新科学院", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4301.517578125, - "y": 4765.18505859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4298.6103515625, - "y": 4764.09521484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4293.107421875, - "y": 4768.12841796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4273.181640625, - "y": 4755.705078125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4269.5322265625, - "y": 4750.62451171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4271.650390625, - "y": 4742.484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4263.2236328125, - "y": 4729.771484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4247.93310546875, - "y": 4719.01904296875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4241.2080078125, - "y": 4733.025390625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4241.2080078125, - "y": 4733.025390625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4229.51708984375, - "y": 4718.552734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4214.263671875, - "y": 4706.1357421875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4184.01953125, - "y": 4689.837890625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4182.01953125, - "y": 4689.837890625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4182.01953125, - "y": 4689.837890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4168.5078125, - "y": 4691.4052734375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4146.5078125, - "y": 4692.4052734375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4127.99560546875, - "y": 4675.439453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4083.87890625, - "y": 4690.35498046875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4083.87890625, - "y": 4690.35498046875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5607枫丹新科学院.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5607枫丹新科学院.json deleted file mode 100644 index 07ac8793..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_0_低效路线(不跑)/5607枫丹新科学院.json +++ /dev/null @@ -1,282 +0,0 @@ -{ - "info": { - "name": "5607枫丹新科学院", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 4301.28466796875, - "y": 4765.0517578125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 4314.6015625, - "y": 4774.20458984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 4313.5078125, - "y": 4788.53515625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 4297.02685546875, - "y": 4795.8076171875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 4280.8125, - "y": 4817.3310546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": 4227.10791015625, - "y": 4834.6650390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 4202.1552734375, - "y": 4855.109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 8, - "x": 4238.466796875, - "y": 4885.50390625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": 4254.328125, - "y": 4893.84814453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 4259.6669921875, - "y": 4891.68212890625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": 4259.6669921875, - "y": 4891.68212890625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 12, - "x": 4251.9365234375, - "y": 4894.03173828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 13, - "x": 4232.6005859375, - "y": 4892.62060546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 14, - "x": 4218.861328125, - "y": 4876.22314453125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 4207.3681640625, - "y": 4858.0849609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 16, - "x": 4191.08251953125, - "y": 4833.8779296875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, - "x": 4183.1494140625, - "y": 4820.55810546875, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 18, - "x": 4157.50634765625, - "y": 4810.34228515625, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 4150.46826171875, - "y": 4802.486328125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 4115.66259765625, - "y": 4804.62841796875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 4115.66259765625, - "y": 4804.62841796875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 22, - "x": 4121.97509765625, - "y": 4800.09130859375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 23, - "x": 4121.8310546875, - "y": 4796.056640625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 24, - "x": 4154.4736328125, - "y": 4791.27099609375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 25, - "x": 4154.8828125, - "y": 4780.8984375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 26, - "x": 4146.9658203125, - "y": 4778.9560546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 27, - "x": 4135.6923828125, - "y": 4777.10693359375, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 28, - "x": 4125.17822265625, - "y": 4777.33984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 29, - "x": 4113.095703125, - "y": 4781.06396484375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 30, - "x": 4113.095703125, - "y": 4781.06396484375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1)", - "type": "orientation" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json deleted file mode 100644 index 47aeb7b3..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "info": { - "name": "000如果执行了这条路径说明你启用了错误的文件夹请阅读README", - "type": "collect", - "author": "mno", - "version": "1.0", - "description": "", - "bgi_version": "0.42.3" - }, - "positions": [ - { - "id": 1, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "", - "locked": false - }, - { - "id": 2, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "log_output", - "action_params": "如果你看到这条文字,说明你启用了错误的文件夹请阅读README", - "locked": false - }, - { - "id": 3, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(60)" - }, - { - "id": 4, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "log_output", - "action_params": "如果你看到这条文字,说明你启用了错误的文件夹请阅读README", - "locked": false - }, - { - "id": 5, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(60)", - "locked": false - }, - { - "id": 6, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "log_output", - "action_params": "如果你看到这条文字,说明你启用了错误的文件夹请阅读README", - "locked": false - }, - { - "id": 7, - "x": 2297.560546875, - "y": -824.57080078125, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(60)", - "locked": false - }, - { - "id": 8, - "x": 508.0517578125, - "y": -630.48486328125, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 9, - "x": 497.740234375, - "y": -681.25, - "type": "path", - "move_mode": "walk", - "action": "stop_flying", - "action_params": "60000" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json deleted file mode 100644 index 2c451ce7..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json +++ /dev/null @@ -1,392 +0,0 @@ -{ - "info": { - "name": "7020稻妻清濑岛01", - "type": "collect", - "author": "mfkvfhpdx", - "version": "1.0", - "description": "", - "bgi_version": "0.35.1" - }, - "positions": [ - { - "id": 1, - "x": -4249.091796875, - "y": -4789.59765625, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4188.978515625, - "y": -4857.5703125, - "action": "combat_script", - "move_mode": "fly", - "action_params": "keydown(SPACE),wait(7)", - "type": "path" - }, - { - "id": 3, - "x": -4188.978515625, - "y": -4857.5703125, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": -4188.978515625, - "y": -4857.5703125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -4202.3515625, - "y": -4875.5673828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 6, - "x": -4229.779296875, - "y": -4897.8935546875, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -4241.28125, - "y": -4910.771484375, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 8, - "x": -4270.17578125, - "y": -4897.2724609375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 9, - "x": -4311.890625, - "y": -4882.1025390625, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": -4241.28125, - "y": -4910.771484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 11, - "x": -4217.828125, - "y": -4920.6787109375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 12, - "x": -4196.46484375, - "y": -4917.5341796875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 13, - "x": -4172.84765625, - "y": -4914.611328125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 14, - "x": -4163.556640625, - "y": -4913.2109375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 15, - "x": -4153.20703125, - "y": -4902.51953125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 16, - "x": -4142.18359375, - "y": -4888.2294921875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 17, - "x": -4121.783203125, - "y": -4857.8623046875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 18, - "x": -4108.125, - "y": -4840.505859375, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)", - "locked": false - }, - { - "id": 19, - "x": -4108.125, - "y": -4840.505859375, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 20, - "x": -4051.2236328125, - "y": -4735.609375, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 21, - "x": -4026.669921875, - "y": -4739.1943359375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 22, - "x": -3997.9443359375, - "y": -4706.876953125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 23, - "x": -3983.1064453125, - "y": -4688.373046875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 24, - "x": -3959.1845703125, - "y": -4691.8369140625, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 25, - "x": -3978.619140625, - "y": -4663.154296875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 26, - "x": -3971.6806640625, - "y": -4643.6025390625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 27, - "x": -3990.2529296875, - "y": -4629.626953125, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 28, - "x": -3977.4326171875, - "y": -4640.283203125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 29, - "x": -3983.3759765625, - "y": -4673.72265625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 30, - "x": -3961.4326171875, - "y": -4693.728515625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 31, - "x": -3948.0390625, - "y": -4721.1875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 32, - "x": -3924.2255859375, - "y": -4770.837890625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 33, - "x": -3911.703125, - "y": -4788.9072265625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 34, - "x": -3919.572265625, - "y": -4816.107421875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 35, - "x": -3934.9462890625, - "y": -4862.0146484375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 36, - "x": -3926.587890625, - "y": -4870.0859375, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 37, - "x": -3969.8994140625, - "y": -4896.2060546875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 38, - "x": -3991.484375, - "y": -4909.9775390625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 39, - "x": -4014.9609375, - "y": -4924.654296875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 40, - "x": -4054.8251953125, - "y": -4937.708984375, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 41, - "x": -4043.1259765625, - "y": -4897.3740234375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 42, - "x": -4030.5625, - "y": -4890.814453125, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json deleted file mode 100644 index 2e2482a5..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "info": { - "name": "7020稻妻清濑岛04", - "type": "collect", - "author": "mfkvfhpdx", - "version": "1.0", - "description": "", - "bgi_version": "0.35.1" - }, - "positions": [ - { - "id": 1, - "x": -4472.314453125, - "y": -4577.4345703125, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 2, - "x": -4476.04296875, - "y": -4559.048828125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 3, - "x": -4523.548828125, - "y": -4547.42578125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 4, - "x": -4559.6875, - "y": -4577.6591796875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 5, - "x": -4607.18359375, - "y": -4622.7119140625, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 6, - "x": -4619.189453125, - "y": -4597.4150390625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 7, - "x": -4591.73828125, - "y": -4541.080078125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 8, - "x": -4591.0234375, - "y": -4538.84375, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json deleted file mode 100644 index 0704be63..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "info": { - "name": "7020稻妻清濑岛05", - "type": "collect", - "author": "mfkvfhpdx", - "version": "1.0", - "description": "", - "bgi_version": "0.35.1" - }, - "positions": [ - { - "id": 1, - "x": -4171.080078125, - "y": -4570.87109375, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 2, - "x": -4189.345703125, - "y": -4486.4248046875, - "type": "path", - "move_mode": "fly", - "action": "stop_flying", - "action_params": "", - "locked": false - }, - { - "id": 3, - "x": -4189.345703125, - "y": -4486.4248046875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 4, - "x": -4208.576171875, - "y": -4498.3935546875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 5, - "x": -4258.6484375, - "y": -4538.7763671875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json deleted file mode 100644 index 6c43b8b1..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "info": { - "name": "7020稻妻清濑岛07", - "type": "collect", - "author": "mfkvfhpdx", - "version": "1.0", - "description": "", - "bgi_version": "0.35.1" - }, - "positions": [ - { - "id": 1, - "x": -4443.91796875, - "y": -4290.3603515625, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 2, - "x": -4502.015625, - "y": -4302.048828125, - "type": "path", - "move_mode": "fly", - "action": "stop_flying", - "action_params": "" - }, - { - "id": 3, - "x": -4508.033203125, - "y": -4272.958984375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 4, - "x": -4517.001953125, - "y": -4262.94140625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 5, - "x": -4499.970703125, - "y": -4260.5576171875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 6, - "x": -4488.32421875, - "y": -4243.296875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 7, - "x": -4478.50390625, - "y": -4236.0693359375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 8, - "x": -4424.671875, - "y": -4267.8076171875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json deleted file mode 100644 index 207426f4..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "info": { - "name": "7020稻妻清濑岛08", - "type": "collect", - "author": "mfkvfhpdx", - "version": "1.0", - "description": "", - "bgi_version": "0.35.1" - }, - "positions": [ - { - "id": 1, - "x": -4184.9375, - "y": -4244.5234375, - "type": "teleport", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 2, - "x": -4168.78125, - "y": -4275.720703125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 3, - "x": -4160.552734375, - "y": -4280.341796875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 4, - "x": -4145.5625, - "y": -4283.8203125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 5, - "x": -4120.990234375, - "y": -4281.5, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 6, - "x": -4090.8291015625, - "y": -4259.6328125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 7, - "x": -4099.908203125, - "y": -4231.564453125, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json deleted file mode 100644 index 6cfffcff..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json +++ /dev/null @@ -1,300 +0,0 @@ -{ - "info": { - "name": "7020稻妻清濑岛12", - "type": "collect", - "author": "mfkvfhpdx", - "version": "1.0", - "description": "", - "bgi_version": "0.35.1" - }, - "positions": [ - { - "id": 1, - "x": -4251.4609375, - "y": -4787.4423828125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": -4269.61328125, - "y": -4813.6533203125, - "action": "", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": -4295.41796875, - "y": -4822.5380859375, - "action": "combat_script", - "move_mode": "fly", - "action_params": "w(40)", - "type": "path" - }, - { - "id": 4, - "x": -4622.853515625, - "y": -4969.9013671875, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": -4640.1484375, - "y": -4983.84375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 6, - "x": -4651.146484375, - "y": -4995.228515625, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 7, - "x": -4654.9453125, - "y": -4980.6826171875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 8, - "x": -4645.830078125, - "y": -4973.2841796875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 9, - "x": -4666.68359375, - "y": -4970.2265625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 10, - "x": -4698.076171875, - "y": -4976.5078125, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 11, - "x": -4685.646484375, - "y": -4974.330078125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 12, - "x": -4701.359375, - "y": -4938.51953125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 13, - "x": -4705.05859375, - "y": -4925.9443359375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 14, - "x": -4718.501953125, - "y": -4918.5517578125, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 15, - "x": -4722.77734375, - "y": -4896.4013671875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 16, - "x": -4754.5078125, - "y": -4861.1123046875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 17, - "x": -4779.59765625, - "y": -4844.501953125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 18, - "x": -4792.751953125, - "y": -4855.8525390625, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 19, - "x": -4789.787109375, - "y": -4843.623046875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 20, - "x": -4797.31640625, - "y": -4809.94921875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 21, - "x": -4780.703125, - "y": -4789.9921875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 22, - "x": -4738.82421875, - "y": -4773.1884765625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 23, - "x": -4730.986328125, - "y": -4758.78125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 24, - "x": -4703.94140625, - "y": -4754.0576171875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 25, - "x": -4662.0078125, - "y": -4748.419921875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 26, - "x": -4649.091796875, - "y": -4749.318359375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 27, - "x": -4630.181640625, - "y": -4714.640625, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 28, - "x": -4635.330078125, - "y": -4723.255859375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 29, - "x": -4628.392578125, - "y": -4759.19140625, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 30, - "x": -4606.96484375, - "y": -4780.1611328125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 31, - "x": -4600.208984375, - "y": -4797.380859375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 32, - "x": -4607.994140625, - "y": -4851.9462890625, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/README.txt b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/README.txt deleted file mode 100644 index 8ed93517..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/README.txt +++ /dev/null @@ -1,3 +0,0 @@ -提醒:尚处于测试阶段,可能出现各种bug,欢迎反馈bug或者提供运行日志帮助优化路线 -食用方法:先运行《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》后运行本合集,本合集含有约1800只小怪和48只精英怪 -路线来源:锄地上限集原作者@mfkvfhpdx的路线,经过@mno(啊哈)的修改和扩充(稻妻部分路线的修改无限期搁置),纳塔部分则来自@Demo,@汐和@mno \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/上限集分析.xlsx b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/上限集分析.xlsx deleted file mode 100644 index e540c3ea..00000000 Binary files a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/上限集分析.xlsx and /dev/null differ diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/更新日志.txt b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/更新日志.txt deleted file mode 100644 index 0bcae5e5..00000000 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/更新日志.txt +++ /dev/null @@ -1,18 +0,0 @@ -0428 -感谢来自@mno@WQ@BetterGI潼心未泯等的数据,重新按照小怪秒均*根号怪均的标准筛选了低效路线 -0426 -优化了部分路线 -对大部分路线进行了标注 -0424 -将拆分后的路线用不同的配队运行取得均值最终筛选出低效路线,并将对应路线合并回去 -优化了部分路线 -加入了用于报错的路线000,避免用户运行错误的文件夹 -0422 -该版本仅用于查找低效路线,不做实际使用 -将现有路线尽可能进行拆分,有利于分析和剔除低效路线 -纳塔路线末尾加入等待一秒,提高摩拉收集率 -0419 -试运行了所有路线,将部分效率较低的路线(小于等于3.0)移入低效文件夹 -开始进行标注每条路线怪物数量的工作 -给出运行结果的参考表格,帮助查看是否存在漏怪,数据仅供参考 -附日志分析使用方法:打开对应配置组,依次选择更多功能、日志分析,按教程填写cookie后获取日志分析 \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/000传奇,不刷/001璃月沉玉谷南陵 传奇.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/000传奇,不刷/001璃月沉玉谷南陵 传奇.json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/000传奇,不刷/001璃月沉玉谷南陵 传奇.json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/000传奇,不刷/001璃月沉玉谷南陵 传奇.json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/101蒙德雪山(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/101蒙德雪山(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/101蒙德雪山(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/101蒙德雪山(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/102蒙德雪山(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/102蒙德雪山(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/102蒙德雪山(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/102蒙德雪山(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/103蒙德雪山(600_2,200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/103蒙德雪山(600_2,200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/103蒙德雪山(600_2,200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/103蒙德雪山(600_2,200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/104蒙德奔狼领(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/104蒙德奔狼领(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/104蒙德奔狼领(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/104蒙德奔狼领(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/105蒙德望风山地(200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/105蒙德望风山地(200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/105蒙德望风山地(200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/105蒙德望风山地(200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/107蒙德风龙废墟南(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/107蒙德风龙废墟南(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/107蒙德风龙废墟南(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/107蒙德风龙废墟南(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/201璃月离沙郊(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/201璃月离沙郊(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/201璃月离沙郊(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/201璃月离沙郊(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/204璃月天衡山(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/204璃月天衡山(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/204璃月天衡山(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/204璃月天衡山(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/206璃月孤云阁北(200_5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/206璃月孤云阁北(200_5).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/206璃月孤云阁北(200_5).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/206璃月孤云阁北(200_5).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/209璃月天遒谷(600_1,200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/209璃月天遒谷(600_1,200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/209璃月天遒谷(600_1,200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/209璃月天遒谷(600_1,200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/210璃月南天门(600_2,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/210璃月南天门(600_2,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/210璃月南天门(600_2,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/210璃月南天门(600_2,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/211璃月虎牢山(600_1,200_5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/211璃月虎牢山(600_1,200_5).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/211璃月虎牢山(600_1,200_5).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/211璃月虎牢山(600_1,200_5).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/212璃月绝云间南(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/212璃月绝云间南(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/212璃月绝云间南(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/212璃月绝云间南(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/213璃月庆云顶(600_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/213璃月庆云顶(600_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/213璃月庆云顶(600_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/213璃月庆云顶(600_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/214璃月奥藏山北(600_3,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/214璃月奥藏山北(600_3,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/214璃月奥藏山北(600_3,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/214璃月奥藏山北(600_3,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/215璃月奥藏山下(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/215璃月奥藏山下(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/215璃月奥藏山下(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/215璃月奥藏山下(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/216璃月珉林北(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/216璃月珉林北(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/216璃月珉林北(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/216璃月珉林北(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/217璃月珉林南(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/217璃月珉林南(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/217璃月珉林南(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/217璃月珉林南(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/218璃月碧水原(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/218璃月碧水原(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/218璃月碧水原(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/218璃月碧水原(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/220璃月地中之盐(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/220璃月地中之盐(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/220璃月地中之盐(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/220璃月地中之盐(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/221璃月震雷宫(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/221璃月震雷宫(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/221璃月震雷宫(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/221璃月震雷宫(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/222璃月层岩北(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/222璃月层岩北(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/222璃月层岩北(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/222璃月层岩北(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/223璃月层岩南(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/223璃月层岩南(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/223璃月层岩南(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/223璃月层岩南(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/224璃月沉玉谷南陵浅滩(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/224璃月沉玉谷南陵浅滩(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/224璃月沉玉谷南陵浅滩(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/224璃月沉玉谷南陵浅滩(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/225璃月沉玉谷隐山猊兽南(200_6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/225璃月沉玉谷隐山猊兽南(200_6).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/225璃月沉玉谷隐山猊兽南(200_6).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/225璃月沉玉谷隐山猊兽南(200_6).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/226璃月沉玉谷赤望台(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/226璃月沉玉谷赤望台(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/226璃月沉玉谷赤望台(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/226璃月沉玉谷赤望台(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/227璃月沉玉谷宝决口南(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/227璃月沉玉谷宝决口南(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/227璃月沉玉谷宝决口南(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/227璃月沉玉谷宝决口南(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/228璃月沉玉谷神像(200_8).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/228璃月沉玉谷神像(200_8).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/228璃月沉玉谷神像(200_8).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/228璃月沉玉谷神像(200_8).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/229璃月沉玉谷宝决口东(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/229璃月沉玉谷宝决口东(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/229璃月沉玉谷宝决口东(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/229璃月沉玉谷宝决口东(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/230璃月沉玉谷药蝶谷西(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/230璃月沉玉谷药蝶谷西(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/230璃月沉玉谷药蝶谷西(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/230璃月沉玉谷药蝶谷西(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/232璃月沉玉谷灵濛山南(600_1,200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/232璃月沉玉谷灵濛山南(600_1,200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/232璃月沉玉谷灵濛山南(600_1,200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/232璃月沉玉谷灵濛山南(600_1,200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/233璃月沉玉谷灵濛山东北(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/233璃月沉玉谷灵濛山东北(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/233璃月沉玉谷灵濛山东北(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/233璃月沉玉谷灵濛山东北(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/234璃月沉玉谷上灵濛山东(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/234璃月沉玉谷上灵濛山东(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/234璃月沉玉谷上灵濛山东(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/234璃月沉玉谷上灵濛山东(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/235璃月层岩南山顶丘丘王(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/235璃月层岩南山顶丘丘王(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/235璃月层岩南山顶丘丘王(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/235璃月层岩南山顶丘丘王(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/236璃月层岩地下临时矿道(600_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/236璃月层岩地下临时矿道(600_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/236璃月层岩地下临时矿道(600_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/236璃月层岩地下临时矿道(600_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/237璃月层岩地下巨蛇岩洞(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/237璃月层岩地下巨蛇岩洞(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/237璃月层岩地下巨蛇岩洞(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/237璃月层岩地下巨蛇岩洞(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/238璃月层岩地下巨蛇岩洞(200_6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/238璃月层岩地下巨蛇岩洞(200_6).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/238璃月层岩地下巨蛇岩洞(200_6).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/238璃月层岩地下巨蛇岩洞(200_6).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/239璃月层岩水泽南(600_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/239璃月层岩水泽南(600_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/239璃月层岩水泽南(600_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/239璃月层岩水泽南(600_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/240璃月层岩水泽(600_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/240璃月层岩水泽(600_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/240璃月层岩水泽(600_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/240璃月层岩水泽(600_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/241璃月层岩地下狭光道(600_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/241璃月层岩地下狭光道(600_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/241璃月层岩地下狭光道(600_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/241璃月层岩地下狭光道(600_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/242璃月层岩地下无名遗迹(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/242璃月层岩地下无名遗迹(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/242璃月层岩地下无名遗迹(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/242璃月层岩地下无名遗迹(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/243璃月层岩地下崎岖石厅北(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/243璃月层岩地下崎岖石厅北(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/243璃月层岩地下崎岖石厅北(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/243璃月层岩地下崎岖石厅北(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/244璃月层岩地下崎岖石厅南(600_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/244璃月层岩地下崎岖石厅南(600_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/244璃月层岩地下崎岖石厅南(600_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/244璃月层岩地下崎岖石厅南(600_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/245璃月层岩地下狭光道东(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/245璃月层岩地下狭光道东(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/245璃月层岩地下狭光道东(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/245璃月层岩地下狭光道东(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/301稻妻镇守之森(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/301稻妻镇守之森(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/301稻妻镇守之森(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/301稻妻镇守之森(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/302稻妻荒海(600_1,200_5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/302稻妻荒海(600_1,200_5).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/302稻妻荒海(600_1,200_5).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/302稻妻荒海(600_1,200_5).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/303稻妻砂流之庭(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/303稻妻砂流之庭(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/303稻妻砂流之庭(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/303稻妻砂流之庭(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/304稻妻九条海滩(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/304稻妻九条海滩(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/304稻妻九条海滩(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/304稻妻九条海滩(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/305稻妻相之火旁(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/305稻妻相之火旁(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/305稻妻相之火旁(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/305稻妻相之火旁(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/306稻妻踏鞴砂(600_1,200_19).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/306稻妻踏鞴砂(600_1,200_19).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/306稻妻踏鞴砂(600_1,200_19).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/306稻妻踏鞴砂(600_1,200_19).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/307稻妻绝缘本后山洞(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/307稻妻绝缘本后山洞(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/307稻妻绝缘本后山洞(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/307稻妻绝缘本后山洞(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/310稻妻珊瑚宫(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/310稻妻珊瑚宫(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/310稻妻珊瑚宫(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/310稻妻珊瑚宫(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/311稻妻萌云神社(600_1,200_5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/311稻妻萌云神社(600_1,200_5).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/311稻妻萌云神社(600_1,200_5).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/311稻妻萌云神社(600_1,200_5).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/312稻妻清赖丸(600_1,200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/312稻妻清赖丸(600_1,200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/312稻妻清赖丸(600_1,200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/312稻妻清赖丸(600_1,200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/313稻妻越石村(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/313稻妻越石村(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/313稻妻越石村(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/313稻妻越石村(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/314稻妻平海砦北(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/314稻妻平海砦北(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/314稻妻平海砦北(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/314稻妻平海砦北(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/315稻妻平海砦南(200_6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/315稻妻平海砦南(200_6).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/315稻妻平海砦南(200_6).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/315稻妻平海砦南(200_6).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/316稻妻天云峠(200_20).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/316稻妻天云峠(200_20).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/316稻妻天云峠(200_20).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/316稻妻天云峠(200_20).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/317稻妻鹤观千来神祠(200_12~16).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/317稻妻鹤观千来神祠(200_12~16).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/317稻妻鹤观千来神祠(200_12~16).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/317稻妻鹤观千来神祠(200_12~16).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/318稻妻鹤观知比山(200_5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/318稻妻鹤观知比山(200_5).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/318稻妻鹤观知比山(200_5).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/318稻妻鹤观知比山(200_5).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/319稻妻鹤观茂知祭场(200_9).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/319稻妻鹤观茂知祭场(200_9).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/319稻妻鹤观茂知祭场(200_9).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/319稻妻鹤观茂知祭场(200_9).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/320稻妻鹤馆惑饲滩(600_1,400_2,200_8~15).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/320稻妻鹤馆惑饲滩(600_1,400_2,200_8~15).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/320稻妻鹤馆惑饲滩(600_1,400_2,200_8~15).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/320稻妻鹤馆惑饲滩(600_1,400_2,200_8~15).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/321稻妻鹤馆(400_3,200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/321稻妻鹤馆(400_3,200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/321稻妻鹤馆(400_3,200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/321稻妻鹤馆(400_3,200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/322稻妻渊下宫蛇肠之路南(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/322稻妻渊下宫蛇肠之路南(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/322稻妻渊下宫蛇肠之路南(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/322稻妻渊下宫蛇肠之路南(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/323稻妻渊下宫蛇肠之路东(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/323稻妻渊下宫蛇肠之路东(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/323稻妻渊下宫蛇肠之路东(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/323稻妻渊下宫蛇肠之路东(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/326稻妻渊下宫狭间之街西北(600_2,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/326稻妻渊下宫狭间之街西北(600_2,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/326稻妻渊下宫狭间之街西北(600_2,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/326稻妻渊下宫狭间之街西北(600_2,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/328稻妻渊下宫狭间之街到东北(600_1,200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/328稻妻渊下宫狭间之街到东北(600_1,200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/328稻妻渊下宫狭间之街到东北(600_1,200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/328稻妻渊下宫狭间之街到东北(600_1,200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/329稻妻渊下宫大日御舆北小岛(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/329稻妻渊下宫大日御舆北小岛(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/329稻妻渊下宫大日御舆北小岛(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/329稻妻渊下宫大日御舆北小岛(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/330【水免】【高危】稻妻渊下宫大日御舆西(600_1,200_7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/330【水免】【高危】稻妻渊下宫大日御舆西(600_1,200_7).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/330【水免】【高危】稻妻渊下宫大日御舆西(600_1,200_7).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/330【水免】【高危】稻妻渊下宫大日御舆西(600_1,200_7).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/332稻妻渊下宫常夜灵庙东北(600_2,200_7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/332稻妻渊下宫常夜灵庙东北(600_2,200_7).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/332稻妻渊下宫常夜灵庙东北(600_2,200_7).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/332稻妻渊下宫常夜灵庙东北(600_2,200_7).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/334稻妻渊下宫常夜灵庙南(600_1,200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/334稻妻渊下宫常夜灵庙南(600_1,200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/334稻妻渊下宫常夜灵庙南(600_1,200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/334稻妻渊下宫常夜灵庙南(600_1,200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/335【高危】稻妻渊下宫蛇心之地西北(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/335【高危】稻妻渊下宫蛇心之地西北(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/335【高危】稻妻渊下宫蛇心之地西北(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/335【高危】稻妻渊下宫蛇心之地西北(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/336稻妻渊下宫蛇心之地(600_2,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/336稻妻渊下宫蛇心之地(600_2,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/336稻妻渊下宫蛇心之地(600_2,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/336稻妻渊下宫蛇心之地(600_2,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/337【高危】稻妻渊下宫蛇心之地东(600_1,200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/337【高危】稻妻渊下宫蛇心之地东(600_1,200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/337【高危】稻妻渊下宫蛇心之地东(600_1,200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/337【高危】稻妻渊下宫蛇心之地东(600_1,200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/338【水免】【高危】稻妻渊下宫蛇心之地南小岛(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/338【水免】【高危】稻妻渊下宫蛇心之地南小岛(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/338【水免】【高危】稻妻渊下宫蛇心之地南小岛(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/338【水免】【高危】稻妻渊下宫蛇心之地南小岛(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/401须弥降诸魔山神像(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/401须弥降诸魔山神像(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/401须弥降诸魔山神像(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/401须弥降诸魔山神像(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/406须弥往昔的桓那兰那(400_2,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/406须弥往昔的桓那兰那(400_2,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/406须弥往昔的桓那兰那(400_2,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/406须弥往昔的桓那兰那(400_2,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/407须弥善见地(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/407须弥善见地(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/407须弥善见地(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/407须弥善见地(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/408须弥茶诃之座2丘丘王(600_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/408须弥茶诃之座2丘丘王(600_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/408须弥茶诃之座2丘丘王(600_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/408须弥茶诃之座2丘丘王(600_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/411须弥沙漠饱饮之丘东(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/411须弥沙漠饱饮之丘东(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/411须弥沙漠饱饮之丘东(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/411须弥沙漠饱饮之丘东(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/412须弥沙漠圣显厅北(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/412须弥沙漠圣显厅北(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/412须弥沙漠圣显厅北(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/412须弥沙漠圣显厅北(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/413须弥沙漠圣显厅门口(200_7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/413须弥沙漠圣显厅门口(200_7).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/413须弥沙漠圣显厅门口(200_7).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/413须弥沙漠圣显厅门口(200_7).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/414须弥沙漠沙虫隧道(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/414须弥沙漠沙虫隧道(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/414须弥沙漠沙虫隧道(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/414须弥沙漠沙虫隧道(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/416须弥沙漠五绿洲的子遗地下(600_1,200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/416须弥沙漠五绿洲的子遗地下(600_1,200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/416须弥沙漠五绿洲的子遗地下(600_1,200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/416须弥沙漠五绿洲的子遗地下(600_1,200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/417须弥沙漠三运河之地北(600_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/417须弥沙漠三运河之地北(600_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/417须弥沙漠三运河之地北(600_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/417须弥沙漠三运河之地北(600_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/503枫丹实验室遗址东(600_1,200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/503枫丹实验室遗址东(600_1,200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/503枫丹实验室遗址东(600_1,200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/503枫丹实验室遗址东(600_1,200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/504枫丹茉洁站(200_7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/504枫丹茉洁站(200_7).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/504枫丹茉洁站(200_7).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/504枫丹茉洁站(200_7).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/507枫丹幽林雾道(600_1,200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/507枫丹幽林雾道(600_1,200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/507枫丹幽林雾道(600_1,200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/507枫丹幽林雾道(600_1,200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/508枫丹厄里那斯北(600_2,400_4,200_7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/508枫丹厄里那斯北(600_2,400_4,200_7).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/508枫丹厄里那斯北(600_2,400_4,200_7).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/508枫丹厄里那斯北(600_2,400_4,200_7).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/509枫丹厄里那斯西(600_1,400_1,200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/509枫丹厄里那斯西(600_1,400_1,200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/509枫丹厄里那斯西(600_1,400_1,200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/509枫丹厄里那斯西(600_1,400_1,200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/510枫丹厄里那斯南(400_2,200_5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/510枫丹厄里那斯南(400_2,200_5).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/510枫丹厄里那斯南(400_2,200_5).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/510枫丹厄里那斯南(400_2,200_5).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/511枫丹苍晶区f6(600_1,200_10).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/511枫丹苍晶区f6(600_1,200_10).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/511枫丹苍晶区f6(600_1,200_10).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/511枫丹苍晶区f6(600_1,200_10).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/518枫丹佩特莉可镇 浊水幻灵(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/518枫丹佩特莉可镇 浊水幻灵(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/518枫丹佩特莉可镇 浊水幻灵(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/518枫丹佩特莉可镇 浊水幻灵(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/601纳塔奥奇(600_1,400_1)次数盾.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/601纳塔奥奇(600_1,400_1)次数盾.json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/601纳塔奥奇(600_1,400_1)次数盾.json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/601纳塔奥奇(600_1,400_1)次数盾.json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/602纳塔奥奇(600_3)次数盾.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/602纳塔奥奇(600_3)次数盾.json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/602纳塔奥奇(600_3)次数盾.json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/602纳塔奥奇(600_3)次数盾.json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/603纳塔奥奇(600_4)次数盾.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/603纳塔奥奇(600_4)次数盾.json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/603纳塔奥奇(600_4)次数盾.json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/603纳塔奥奇(600_4)次数盾.json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/604纳塔奥奇(400_3,200_9)次数盾.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/604纳塔奥奇(400_3,200_9)次数盾.json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/604纳塔奥奇(400_3,200_9)次数盾.json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/604纳塔奥奇(400_3,200_9)次数盾.json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/605纳塔奥奇(600_1)次数盾.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/605纳塔奥奇(600_1)次数盾.json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/605纳塔奥奇(600_1)次数盾.json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/605纳塔奥奇(600_1)次数盾.json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/606纳塔奥奇(400_2,200_2)次数盾.json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/606纳塔奥奇(400_2,200_2)次数盾.json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/606纳塔奥奇(400_2,200_2)次数盾.json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/606纳塔奥奇(400_2,200_2)次数盾.json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/607纳塔奥奇东南岛(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/607纳塔奥奇东南岛(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/607纳塔奥奇东南岛(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/607纳塔奥奇东南岛(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/611纳塔火山安饶之野东北边缘(200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/611纳塔火山安饶之野东北边缘(200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/611纳塔火山安饶之野东北边缘(200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/611纳塔火山安饶之野东北边缘(200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/612纳塔火山安饶之野入口(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/612纳塔火山安饶之野入口(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/612纳塔火山安饶之野入口(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/612纳塔火山安饶之野入口(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/README.md b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/README.md similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/README.md rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/README.md diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/106蒙德风龙废墟北(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/106蒙德风龙废墟北(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/106蒙德风龙废墟北(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/106蒙德风龙废墟北(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/202【高危】璃月灵矩关(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/202【高危】璃月灵矩关(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/202【高危】璃月灵矩关(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/202【高危】璃月灵矩关(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/203璃月遁玉陵f4(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/203璃月遁玉陵f4(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/203璃月遁玉陵f4(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/203璃月遁玉陵f4(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/205【高危】璃月孤云阁f4(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/205【高危】璃月孤云阁f4(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/205【高危】璃月孤云阁f4(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/205【高危】璃月孤云阁f4(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/207【高危】璃月孤云阁山顶(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/207【高危】璃月孤云阁山顶(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/207【高危】璃月孤云阁山顶(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/207【高危】璃月孤云阁山顶(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/208璃月渌华池(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/208璃月渌华池(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/208璃月渌华池(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/208璃月渌华池(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/219璃月轻策庄 浊水幻灵(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/219璃月轻策庄 浊水幻灵(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/219璃月轻策庄 浊水幻灵(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/219璃月轻策庄 浊水幻灵(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/231璃月沉玉谷暝垣山(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/231璃月沉玉谷暝垣山(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/231璃月沉玉谷暝垣山(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/231璃月沉玉谷暝垣山(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/308稻妻水月池(200_8).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/308稻妻水月池(200_8).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/308稻妻水月池(200_8).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/308稻妻水月池(200_8).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/309稻妻海祇岛北(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/309稻妻海祇岛北(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/309稻妻海祇岛北(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/309稻妻海祇岛北(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/324稻妻渊下宫狭间之街西南(200_5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/324稻妻渊下宫狭间之街西南(200_5).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/324稻妻渊下宫狭间之街西南(200_5).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/324稻妻渊下宫狭间之街西南(200_5).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/325稻妻渊下宫狭间之街西(200_9).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/325稻妻渊下宫狭间之街西(200_9).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/325稻妻渊下宫狭间之街西(200_9).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/325稻妻渊下宫狭间之街西(200_9).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/327稻妻渊下宫狭间之街到东南(200_6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/327稻妻渊下宫狭间之街到东南(200_6).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/327稻妻渊下宫狭间之街到东南(200_6).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/327稻妻渊下宫狭间之街到东南(200_6).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/331稻妻渊下宫大日御舆东(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/331稻妻渊下宫大日御舆东(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/331稻妻渊下宫大日御舆东(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/331稻妻渊下宫大日御舆东(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/333稻妻渊下宫常夜灵庙西南(200_7).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/333稻妻渊下宫常夜灵庙西南(200_7).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/333稻妻渊下宫常夜灵庙西南(200_7).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/333稻妻渊下宫常夜灵庙西南(200_7).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/402须弥香醉坡(200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/402须弥香醉坡(200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/402须弥香醉坡(200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/402须弥香醉坡(200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/403须弥茸蕈窟(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/403须弥茸蕈窟(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/403须弥茸蕈窟(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/403须弥茸蕈窟(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/404须弥二净甸(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/404须弥二净甸(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/404须弥二净甸(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/404须弥二净甸(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/405须弥觉王之殿南(600_1,200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/405须弥觉王之殿南(600_1,200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/405须弥觉王之殿南(600_1,200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/405须弥觉王之殿南(600_1,200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/409须弥茶诃之座(200_9).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/409须弥茶诃之座(200_9).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/409须弥茶诃之座(200_9).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/409须弥茶诃之座(200_9).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/410须弥沙漠丰饶绿洲(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/410须弥沙漠丰饶绿洲(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/410须弥沙漠丰饶绿洲(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/410须弥沙漠丰饶绿洲(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/415须弥沙漠避让之丘(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/415须弥沙漠避让之丘(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/415须弥沙漠避让之丘(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/415须弥沙漠避让之丘(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/501枫丹城 浊水幻灵(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/501枫丹城 浊水幻灵(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/501枫丹城 浊水幻灵(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/501枫丹城 浊水幻灵(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/502【高危】枫丹芒索斯山东麓(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/502【高危】枫丹芒索斯山东麓(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/502【高危】枫丹芒索斯山东麓(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/502【高危】枫丹芒索斯山东麓(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/505枫丹茉洁站北 浊水幻灵(200_6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/505枫丹茉洁站北 浊水幻灵(200_6).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/505枫丹茉洁站北 浊水幻灵(200_6).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/505枫丹茉洁站北 浊水幻灵(200_6).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/506枫丹湖中垂柳 浊水幻灵(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/506枫丹湖中垂柳 浊水幻灵(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/506枫丹湖中垂柳 浊水幻灵(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/506枫丹湖中垂柳 浊水幻灵(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/512枫丹苍晶区神像(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/512枫丹苍晶区神像(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/512枫丹苍晶区神像(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/512枫丹苍晶区神像(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/513枫丹厄里那斯东 浊水幻灵(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/513枫丹厄里那斯东 浊水幻灵(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/513枫丹厄里那斯东 浊水幻灵(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/513枫丹厄里那斯东 浊水幻灵(200_2).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/514枫丹秋分山西侧 浊水幻灵(200_6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/514枫丹秋分山西侧 浊水幻灵(200_6).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/514枫丹秋分山西侧 浊水幻灵(200_6).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/514枫丹秋分山西侧 浊水幻灵(200_6).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/515枫丹秋分山东 浊水幻灵(200_6).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/515枫丹秋分山东 浊水幻灵(200_6).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/515枫丹秋分山东 浊水幻灵(200_6).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/515枫丹秋分山东 浊水幻灵(200_6).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/517枫丹莫尔泰区 浊水幻灵(200_4).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/517枫丹莫尔泰区 浊水幻灵(200_4).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/517枫丹莫尔泰区 浊水幻灵(200_4).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/517枫丹莫尔泰区 浊水幻灵(200_4).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/608纳塔城(200_5).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/608纳塔城(200_5).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/608纳塔城(200_5).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/608纳塔城(200_5).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/609纳塔溶水域南(200_3).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/609纳塔溶水域南(200_3).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/609纳塔溶水域南(200_3).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/609纳塔溶水域南(200_3).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/610硫晶支脉(200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/610硫晶支脉(200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/610硫晶支脉(200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/610硫晶支脉(200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/614纳塔火山安饶之野南 炉壳山鼬(200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/614纳塔火山安饶之野南 炉壳山鼬(200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/614纳塔火山安饶之野南 炉壳山鼬(200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/614纳塔火山安饶之野南 炉壳山鼬(200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/615纳塔火山安饶之野西 炉壳山鼬(200_1).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/615纳塔火山安饶之野西 炉壳山鼬(200_1).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/615纳塔火山安饶之野西 炉壳山鼬(200_1).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/615纳塔火山安饶之野西 炉壳山鼬(200_1).json diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/616纳塔火山安饶之野西北海滩(200_2).json b/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/616纳塔火山安饶之野西北海滩(200_2).json similarity index 100% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/616纳塔火山安饶之野西北海滩(200_2).json rename to repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/616纳塔火山安饶之野西北海滩(200_2).json diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json index 2a0f6191..75de4df6 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.5", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json index 406f08fe..7a8a884d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.2", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json index a8dd2b47..80364c3b 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json @@ -5,7 +5,7 @@ "author": "Demo&mno", "version": "1.4", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json index c9995d21..6de24d51 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.2", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json index 707f3ce0..e2674743 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.4", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6106--纳塔_镜璧山_中部2.json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6106--纳塔_镜璧山_中部2.json index 7e5f79f6..44aedac9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6106--纳塔_镜璧山_中部2.json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6106--纳塔_镜璧山_中部2.json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.3", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json index fb4eb77d..fb4cb596 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.6", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json index 17c178b8..38271afa 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.7", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json index ac7847a7..71397262 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.6", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json index b5b49536..07e6a1a6 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.2", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json index c375dc11..797d7369 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.2", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json index d3058a28..f7d14dc8 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.4", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json index b5f9582a..65b9fbd3 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json index bcb0a3aa..0ed9ed65 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.2", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json index bfacb5b4..30ba2a5f 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.2", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json index ab815665..17904cba 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.2", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json index d351a7ce..c6bebb0d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.5", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json index 70ef6bf9..88643930 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json index 0d2e99b2..12a3f2bf 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json index 02fbfb0a..4287aa19 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json index febfac9f..5c317867 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json index 224b9278..f19e5c50 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json index 0bd1147d..8db3226f 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json index 9af590dd..0f88ed83 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json index 86acd67b..0573972d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json index 01c0fe27..6477cec7 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json index 6dddbe57..8710ca94 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json index 8bb881a7..4d2abfd2 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json index 423ce3da..6ec8096e 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json index 0e18c37a..1ad62fde 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json index 72bbd16a..7b404ee8 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json index 6dead5ef..7b4a18cf 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json index 1841ac2d..f8927738 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json index 84698f21..a623e1cf 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json index b77635c7..53768caa 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json index 761f0ebd..99f05ed7 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json index 3c0e25bf..6bd070d5 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json index f272b733..83ff07cc 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json index fc6e1440..15ceb201 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json index 031132cd..1339e456 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json index 15438940..55aaac15 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json index c269a182..549f8ae1 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json index 3f19f9f5..244af9a8 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json index b46cabd9..5eb5134f 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json index 72784fcc..c0186242 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json index bf416f34..6d7e4c10 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json index dae27ee2..140534f9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json @@ -5,7 +5,7 @@ "author": "Demo&汐", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json index 11b1e45f..8f42c002 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json index 815c8a2c..7e04adb7 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json index 2ff0c63a..170b29c1 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json index 94c867cb..3d21c5e2 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json index 3ed37acf..73528bf4 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json index 8e10c4d0..06da86f9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json index afc3e886..e5f416d8 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json @@ -5,7 +5,7 @@ "author": "Demo&汐&mno", "version": "1.1", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json index 172028c2..23d6b866 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json @@ -5,7 +5,7 @@ "author": "汐&mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json index 2e608fb5..c7e9612f 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json @@ -5,7 +5,7 @@ "author": "汐", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json index acc2b318..78407ccc 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json @@ -5,7 +5,7 @@ "author": "汐", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json index f6b4128d..5c469ce6 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json @@ -5,7 +5,7 @@ "author": "汐", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json index 057cca71..350c4b79 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json @@ -5,7 +5,7 @@ "author": "汐&mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json index 92ad700a..034db345 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json @@ -5,7 +5,7 @@ "author": "汐", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json index 660528e3..4fe6cf11 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json @@ -5,7 +5,7 @@ "author": "汐", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json index d6db1904..683ad638 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json @@ -5,7 +5,7 @@ "author": "汐&mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json index 877a455c..5c574e80 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json @@ -5,7 +5,7 @@ "author": "汐&mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json index 788c23fe..65172453 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json @@ -5,7 +5,8 @@ "author": "汐", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "map_name": "Teyvat", + "bgi_version": "0.45.0" }, "positions": [ { @@ -123,19 +124,29 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "path", + "locked": false }, { "id": 14, - "x": 10738.1259765625, - "y": -3240.720703125, - "action": "combat_script", + "x": 10761.384765625, + "y": -3196.1943359375, + "action": "", "move_mode": "dash", - "action_params": "attack(0.2)", + "action_params": "", "type": "path" }, { "id": 15, + "x": 10738.1259765625, + "y": -3240.720703125, + "action": "combat_script", + "move_mode": "jump", + "action_params": "attack(0.2)", + "type": "path" + }, + { + "id": 16, "x": 10707.3857421875, "y": -3250.9677734375, "action": "fight", @@ -144,7 +155,7 @@ "type": "path" }, { - "id": 16, + "id": 17, "x": 10704.892578125, "y": -3248.001953125, "action": "", @@ -153,7 +164,7 @@ "type": "path" }, { - "id": 17, + "id": 18, "x": 10662.02734375, "y": -3264.0615234375, "action": "", @@ -162,7 +173,7 @@ "type": "path" }, { - "id": 18, + "id": 19, "x": 10631.822265625, "y": -3288.41015625, "action": "fight", @@ -171,7 +182,7 @@ "type": "path" }, { - "id": 19, + "id": 20, "x": 10630.544921875, "y": -3317.513671875, "action": "", @@ -180,7 +191,7 @@ "type": "path" }, { - "id": 20, + "id": 21, "x": 10622.681640625, "y": -3343.763671875, "action": "", @@ -189,13 +200,23 @@ "type": "path" }, { - "id": 21, + "id": 22, "x": 10634.208984375, "y": -3387.7626953125, "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "path", + "locked": false + }, + { + "id": 23, + "x": 10634.208984375, + "y": -3387.7626953125, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" } ] } \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json index b7c681e5..ebea8485 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json @@ -5,7 +5,7 @@ "author": "汐&mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json index 41b316eb..f47768c1 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json @@ -5,7 +5,7 @@ "author": "汐", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json index 43a54f4c..5c5c525d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json +++ b/repo/pathing/锄地专区/小怪锄地2000/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json @@ -5,7 +5,7 @@ "author": "汐&mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1101(1-23)蒙德望风角.json b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1101(1-23)蒙德望风角.json index 0a4454f5..fddc9177 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1101(1-23)蒙德望风角.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1101(1-23)蒙德望风角.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1102(1-16)蒙德望风角.json b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1102(1-16)蒙德望风角.json index bf35ac6d..cde61f1a 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1102(1-16)蒙德望风角.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1102(1-16)蒙德望风角.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1103(0-22)蒙德望风山地.json b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1103(0-22)蒙德望风山地.json index ae833fc0..baba2a80 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1103(0-22)蒙德望风山地.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1103(0-22)蒙德望风山地.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1104(0-18)蒙德千风西.json b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1104(0-18)蒙德千风西.json index 6bb5f753..828fb703 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1104(0-18)蒙德千风西.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1104(0-18)蒙德千风西.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1202(1-27)蒙德奔狼领.json b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1202(1-27)蒙德奔狼领.json index f8194929..173d9e64 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1202(1-27)蒙德奔狼领.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1202(1-27)蒙德奔狼领.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1203(2-26)蒙德塞西莉亚苗圃.json b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1203(2-26)蒙德塞西莉亚苗圃.json index 26d415f3..91718354 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1203(2-26)蒙德塞西莉亚苗圃.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_1_蒙德/1203(2-26)蒙德塞西莉亚苗圃.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2101璃月无妄坡西南.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2101璃月无妄坡西南.json index 74aa7326..6410c548 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2101璃月无妄坡西南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2101璃月无妄坡西南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2201璃月明蕴镇西北.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2201璃月明蕴镇西北.json index 00fec104..7d5b33e6 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2201璃月明蕴镇西北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2201璃月明蕴镇西北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2202璃月瑶光滩西北.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2202璃月瑶光滩西北.json index 59cc6dc0..c1f0cc7c 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2202璃月瑶光滩西北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2202璃月瑶光滩西北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2301璃月太山府.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2301璃月太山府.json index 256c91a4..93eedd84 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2301璃月太山府.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2301璃月太山府.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2302璃月珉林.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2302璃月珉林.json index 35ac4c5c..50a2a010 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2302璃月珉林.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2302璃月珉林.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2303璃月琥牢山.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2303璃月琥牢山.json index de134c3c..b2200286 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2303璃月琥牢山.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2303璃月琥牢山.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2401(高危)璃月地面矿区.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2401(高危)璃月地面矿区.json index 6ca82571..c7f2d987 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2401(高危)璃月地面矿区.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2401(高危)璃月地面矿区.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2501璃月遁玉陵.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2501璃月遁玉陵.json index c1ac7819..3d69c989 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2501璃月遁玉陵.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2501璃月遁玉陵.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2502璃月群玉阁西.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2502璃月群玉阁西.json index 254cafbd..7ff838bc 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2502璃月群玉阁西.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2502璃月群玉阁西.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2601(水免)璃月港东北.json b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2601(水免)璃月港东北.json index 59d00506..3f284fd1 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2601(水免)璃月港东北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_2_璃月/2601(水免)璃月港东北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3101(高危)稻妻白狐之野南.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3101(高危)稻妻白狐之野南.json index f6182b52..2d434483 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3101(高危)稻妻白狐之野南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3101(高危)稻妻白狐之野南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3102稻妻绀田村南.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3102稻妻绀田村南.json index 9ca9ae26..398f49e3 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3102稻妻绀田村南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3102稻妻绀田村南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3103稻妻绀田村南3.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3103稻妻绀田村南3.json index 3ae1184f..d8b0e46e 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3103稻妻绀田村南3.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3103稻妻绀田村南3.json @@ -5,7 +5,8 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "map_name": "Teyvat", + "bgi_version": "0.45.0" }, "positions": [ { @@ -24,10 +25,19 @@ "action": "", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "target" }, { "id": 3, + "x": -4113.107421875, + "y": -2757.7099609375, + "type": "target", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, "x": -4107.857421875, "y": -2770.8330078125, "action": "", @@ -36,7 +46,7 @@ "type": "path" }, { - "id": 4, + "id": 5, "x": -4100.333984375, "y": -2783.890625, "action": "", @@ -45,7 +55,7 @@ "type": "path" }, { - "id": 5, + "id": 6, "x": -4077.5693359375, "y": -2775.8916015625, "action": "", @@ -54,7 +64,7 @@ "type": "path" }, { - "id": 6, + "id": 7, "x": -4056.138671875, "y": -2787.2568359375, "action": "combat_script", @@ -63,7 +73,7 @@ "type": "target" }, { - "id": 7, + "id": 8, "x": -4064.521484375, "y": -2817.845703125, "action": "", @@ -72,7 +82,7 @@ "type": "path" }, { - "id": 8, + "id": 9, "x": -4049.2626953125, "y": -2818.80078125, "action": "fight", @@ -81,7 +91,7 @@ "type": "path" }, { - "id": 9, + "id": 10, "x": -4049.2626953125, "y": -2818.80078125, "action": "", @@ -90,7 +100,7 @@ "type": "path" }, { - "id": 10, + "id": 11, "x": -4023.19921875, "y": -2836.044921875, "action": "stop_flying", @@ -99,7 +109,7 @@ "type": "path" }, { - "id": 11, + "id": 12, "x": -4023.19921875, "y": -2836.044921875, "action": "fight", @@ -108,7 +118,7 @@ "type": "orientation" }, { - "id": 12, + "id": 13, "x": -4023.19921875, "y": -2836.044921875, "action": "combat_script", diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3104(高危)稻妻绀田村南2.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3104(高危)稻妻绀田村南2.json index 7c016b2b..635c2e9d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3104(高危)稻妻绀田村南2.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3104(高危)稻妻绀田村南2.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3105(水免)稻妻镇守之森.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3105(水免)稻妻镇守之森.json index 5efb78fb..3d3bac20 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3105(水免)稻妻镇守之森.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3105(水免)稻妻镇守之森.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3106(水免)稻妻神里屋敷.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3106(水免)稻妻神里屋敷.json index 83585f05..90a4933d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3106(水免)稻妻神里屋敷.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3106(水免)稻妻神里屋敷.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3107稻妻绀田村.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3107稻妻绀田村.json index 96296cfb..4c62172e 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3107稻妻绀田村.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3107稻妻绀田村.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3108稻妻荒海南.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3108稻妻荒海南.json index bdeb0ce0..8394f797 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3108稻妻荒海南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3108稻妻荒海南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3201稻妻九条阵屋.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3201稻妻九条阵屋.json index 9323f730..558bd962 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3201稻妻九条阵屋.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3201稻妻九条阵屋.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3202稻妻踏鞴东北.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3202稻妻踏鞴东北.json index e8e6740d..8182092b 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3202稻妻踏鞴东北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3202稻妻踏鞴东北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3204稻妻踏鞴神像2.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3204稻妻踏鞴神像2.json index 0e36de8e..4e7a2140 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3204稻妻踏鞴神像2.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3204稻妻踏鞴神像2.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3205(高危)稻妻踏鞴反应炉东三骗骗花.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3205(高危)稻妻踏鞴反应炉东三骗骗花.json index dc199039..9f20132b 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3205(高危)稻妻踏鞴反应炉东三骗骗花.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3205(高危)稻妻踏鞴反应炉东三骗骗花.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3206稻妻踏鞴反应炉东.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3206稻妻踏鞴反应炉东.json index 088acb50..7d1362b9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3206稻妻踏鞴反应炉东.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3206稻妻踏鞴反应炉东.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3207稻妻踏鞴浪船.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3207稻妻踏鞴浪船.json index c756f69e..82450507 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3207稻妻踏鞴浪船.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3207稻妻踏鞴浪船.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3208稻妻借景之馆.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3208稻妻借景之馆.json index 70873459..852661a0 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3208稻妻借景之馆.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3208稻妻借景之馆.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3209稻妻踏鞴公义东南.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3209稻妻踏鞴公义东南.json index 536abf41..9c284178 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3209稻妻踏鞴公义东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3209稻妻踏鞴公义东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3210稻妻公义飞萤.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3210稻妻公义飞萤.json index 2e401bb7..1613bafe 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3210稻妻公义飞萤.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3210稻妻公义飞萤.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3211稻妻名椎滩东.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3211稻妻名椎滩东.json index 38947544..b865c724 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3211稻妻名椎滩东.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3211稻妻名椎滩东.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3212稻妻名椎滩西.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3212稻妻名椎滩西.json index 29a1f3f6..3e4c9cd9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3212稻妻名椎滩西.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3212稻妻名椎滩西.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3301稻妻绯木村神像.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3301稻妻绯木村神像.json index 7ce96a43..2813486c 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3301稻妻绯木村神像.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3301稻妻绯木村神像.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3302稻妻蛇骨矿洞南.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3302稻妻蛇骨矿洞南.json index f9c717cf..49c4797b 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3302稻妻蛇骨矿洞南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3302稻妻蛇骨矿洞南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3303(水免)稻妻剑鬼东2.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3303(水免)稻妻剑鬼东2.json index b88dd6c4..3dbca911 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3303(水免)稻妻剑鬼东2.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3303(水免)稻妻剑鬼东2.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3304稻妻剑鬼东3.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3304稻妻剑鬼东3.json index 5d18e632..b6a8119d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3304稻妻剑鬼东3.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3304稻妻剑鬼东3.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3305稻妻剑鬼东1.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3305稻妻剑鬼东1.json index 04aaf67f..1e48485d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3305稻妻剑鬼东1.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3305稻妻剑鬼东1.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3306稻妻藤兜砦西.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3306稻妻藤兜砦西.json index cdcd11ff..96f18a6c 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3306稻妻藤兜砦西.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3306稻妻藤兜砦西.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3401(水免)稻妻海祇岛东.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3401(水免)稻妻海祇岛东.json index 721667ee..a7734a35 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3401(水免)稻妻海祇岛东.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3401(水免)稻妻海祇岛东.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3403稻妻海祇岛南.json b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3403稻妻海祇岛南.json index 3e1b7a01..d21e1796 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3403稻妻海祇岛南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_3_稻妻/3403稻妻海祇岛南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_4_须弥/4101(高危)须弥二净甸.json b/repo/pathing/锄地专区/小怪锄地2000/1_4_须弥/4101(高危)须弥二净甸.json index 782187f7..ca28e784 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_4_须弥/4101(高危)须弥二净甸.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_4_须弥/4101(高危)须弥二净甸.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5102枫丹廷北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5102枫丹廷北.json index dacb87d4..f5536216 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5102枫丹廷北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5102枫丹廷北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5201枫丹优兰湖西.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5201枫丹优兰湖西.json index 420de49f..e5fae35a 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5201枫丹优兰湖西.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5201枫丹优兰湖西.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5203枫丹垂柳东南.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5203枫丹垂柳东南.json index 908a3904..0a024bd0 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5203枫丹垂柳东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5203枫丹垂柳东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5204(水免)枫丹垂柳东南.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5204(水免)枫丹垂柳东南.json index 4b34cb1a..8aa0c1df 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5204(水免)枫丹垂柳东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5204(水免)枫丹垂柳东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5205枫丹垂柳东南.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5205枫丹垂柳东南.json index feaff8a3..f72bccc0 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5205枫丹垂柳东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5205枫丹垂柳东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5206枫丹垂柳东南.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5206枫丹垂柳东南.json index 3353d07b..fbe379ee 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5206枫丹垂柳东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5206枫丹垂柳东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5207枫丹柔灯港北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5207枫丹柔灯港北.json index 58c2d9e1..000d3284 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5207枫丹柔灯港北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5207枫丹柔灯港北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5208枫丹幽林东北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5208枫丹幽林东北.json index 548081d1..95181ebc 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5208枫丹幽林东北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5208枫丹幽林东北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5209枫丹露景泉东.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5209枫丹露景泉东.json index 29605120..721bc358 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5209枫丹露景泉东.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5209枫丹露景泉东.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5210枫丹幽林东北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5210枫丹幽林东北.json index b35128f1..ea4191b9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5210枫丹幽林东北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5210枫丹幽林东北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5301枫丹卡布堡南.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5301枫丹卡布堡南.json index c0415df8..2c693058 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5301枫丹卡布堡南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5301枫丹卡布堡南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5303枫丹卡布堡北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5303枫丹卡布堡北.json index 755f3e40..9aab5bf2 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5303枫丹卡布堡北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5303枫丹卡布堡北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5401枫丹秋分东南.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5401枫丹秋分东南.json index e1b1236e..f7edb79d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5401枫丹秋分东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5401枫丹秋分东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5403枫丹螃蟹北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5403枫丹螃蟹北.json index 775a28cb..e9900f94 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5403枫丹螃蟹北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5403枫丹螃蟹北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5501枫丹螃蟹西.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5501枫丹螃蟹西.json index 1dcf4a16..5636e2f2 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5501枫丹螃蟹西.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5501枫丹螃蟹西.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5502枫丹苍晶南山峰西.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5502枫丹苍晶南山峰西.json index beeb241f..de9359b4 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5502枫丹苍晶南山峰西.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5502枫丹苍晶南山峰西.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5503枫丹厄里东北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5503枫丹厄里东北.json index 9f942984..44565040 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5503枫丹厄里东北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5503枫丹厄里东北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5601枫丹场力东南.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5601枫丹场力东南.json index daedfc31..b168c5dc 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5601枫丹场力东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5601枫丹场力东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5602枫丹场力东南.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5602枫丹场力东南.json index a4c0be2d..b7afbbdb 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5602枫丹场力东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5602枫丹场力东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5603枫丹场力北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5603枫丹场力北.json index ccd14dec..49ea5977 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5603枫丹场力北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5603枫丹场力北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5604枫丹中央遗址北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5604枫丹中央遗址北.json index 7f7cb2b8..03392143 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5604枫丹中央遗址北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5604枫丹中央遗址北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5605枫丹中央遗址北.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5605枫丹中央遗址北.json index 6015f072..79a7a9a0 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5605枫丹中央遗址北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5605枫丹中央遗址北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5608枫丹新科学院.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5608枫丹新科学院.json index fd2e408a..3b9443a8 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5608枫丹新科学院.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5608枫丹新科学院.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5609(高危)枫丹千年骏麟.json b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5609(高危)枫丹千年骏麟.json index 819d3d29..f6003ffd 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5609(高危)枫丹千年骏麟.json +++ b/repo/pathing/锄地专区/小怪锄地2000/1_5_枫丹/5609(高危)枫丹千年骏麟.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json index 47aeb7b3..8ce7ec30 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/25012璃月遁玉陵.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/25012璃月遁玉陵.json index 48a54372..85ee66c0 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/25012璃月遁玉陵.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/25012璃月遁玉陵.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3206稻妻踏鞴反应炉东.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3206稻妻踏鞴反应炉东.json index 088acb50..7d1362b9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3206稻妻踏鞴反应炉东.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3206稻妻踏鞴反应炉东.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3304稻妻剑鬼东3.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3304稻妻剑鬼东3.json index 5d18e632..b6a8119d 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3304稻妻剑鬼东3.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3304稻妻剑鬼东3.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json index e2279ebd..e1521768 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3404稻妻海祇岛北.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3404稻妻海祇岛北.json index 845bbdfa..0a3f71d1 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3404稻妻海祇岛北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/3404稻妻海祇岛北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5101枫丹廷东北.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5101枫丹廷东北.json index e2fd9c85..039e941b 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5101枫丹廷东北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5101枫丹廷东北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5202枫丹垂柳西北.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5202枫丹垂柳西北.json index 28caee0b..1448bd8a 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5202枫丹垂柳西北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5202枫丹垂柳西北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/52092枫丹露景泉东.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/52092枫丹露景泉东.json index 6128bf3d..cb447e25 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/52092枫丹露景泉东.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/52092枫丹露景泉东.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5302枫丹卡布堡南.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5302枫丹卡布堡南.json index 349e2d00..65342d5b 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5302枫丹卡布堡南.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5302枫丹卡布堡南.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5303枫丹卡布堡北.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5303枫丹卡布堡北.json index 755f3e40..9aab5bf2 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5303枫丹卡布堡北.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5303枫丹卡布堡北.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5402枫丹秋分山东.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5402枫丹秋分山东.json index 0fe1b6ae..b3df26cf 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5402枫丹秋分山东.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5402枫丹秋分山东.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5606枫丹新科学院.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5606枫丹新科学院.json index 52c42dbc..63b2165f 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5606枫丹新科学院.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5606枫丹新科学院.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5607枫丹新科学院.json b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5607枫丹新科学院.json index 07ac8793..ec008ca4 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5607枫丹新科学院.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_0_低效路线(不跑)/5607枫丹新科学院.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json index 47aeb7b3..8ce7ec30 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json @@ -5,7 +5,7 @@ "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "bgiVersion": "0.42.3" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json index 2c451ce7..17615982 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json index 1924e76f..a48fe84f 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json index 5b96e27d..4725f3a9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json index 2e2482a5..69c09aee 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json index 0704be63..3d2bb422 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json index 6c43b8b1..c27cfa9b 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json index 207426f4..20f4cbc9 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json index fc1d463d..d99b1117 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json index 6cfffcff..579aa02f 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json index 78b01283..7e3fbe95 100644 --- a/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json +++ b/repo/pathing/锄地专区/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json @@ -5,7 +5,7 @@ "author": "mfkvfhpdx", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "bgiVersion": "0.35.1" }, "positions": [ { diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2601地下水泽西南三飞萤.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2601地下水泽西南三飞萤.json new file mode 100644 index 00000000..684332b1 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2601地下水泽西南三飞萤.json @@ -0,0 +1,123 @@ +{ + "info": { + "name": "2601地下水泽西南三飞萤", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "TheChasm", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 663.8052978515625, + "y": 710.2637939453125, + "action_params": "" + }, + { + "id": 2, + "x": 652.8548583984375, + "y": 716.1414794921875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 650.4788818359375, + "y": 716.0828857421875, + "type": "target", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 631.914794921875, + "y": 715.0172119140625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 621.873779296875, + "y": 709.26953125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 624.8260498046875, + "y": 702.017333984375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 632.0733642578125, + "y": 702.2509765625, + "type": "target", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 647.4002685546875, + "y": 702.9537353515625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 650.2728271484375, + "y": 714.728759765625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 655.6031494140625, + "y": 713.0609130859375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(5.0)", + "locked": false + }, + { + "id": 11, + "x": 655.6031494140625, + "y": 713.0609130859375, + "type": "target", + "move_mode": "walk", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 12, + "x": 655.6031494140625, + "y": 713.0609130859375, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2602层岩地下主矿道东.json similarity index 50% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2602层岩地下主矿道东.json index 5b96e27d..e6e49b7a 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2602层岩地下主矿道东.json @@ -1,44 +1,45 @@ { "info": { - "name": "7020稻妻清濑岛03", + "name": "2602层岩地下主矿道东", "type": "collect", - "author": "mfkvfhpdx", + "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "map_name": "TheChasm", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "x": -4472.234375, - "y": -4577.8359375, - "type": "teleport", - "move_mode": "walk", "action": "", + "move_mode": "dash", + "type": "teleport", + "x": 663.8311767578125, + "y": 1058.84619140625, "action_params": "" }, { "id": 2, - "x": -4455.9765625, - "y": -4594.8212890625, + "x": 668.2852783203125, + "y": 1072.6708984375, "type": "path", - "move_mode": "walk", + "move_mode": "dash", "action": "", "action_params": "" }, { "id": 3, - "x": -4422.591796875, - "y": -4591.1064453125, + "x": 617.0035400390625, + "y": 1083.31005859375, "type": "path", - "move_mode": "walk", - "action": "fight", + "move_mode": "dash", + "action": "", "action_params": "" }, { "id": 4, - "x": -4471.634765625, - "y": -4586.94921875, + "x": 587.06787109375, + "y": 1097.477783203125, "type": "path", "move_mode": "walk", "action": "", @@ -46,17 +47,17 @@ }, { "id": 5, - "x": -4503.013671875, - "y": -4611.1064453125, + "x": 579.1427734375, + "y": 1107.60248046875, "type": "path", - "move_mode": "walk", + "move_mode": "jump", "action": "fight", "action_params": "" }, { "id": 6, - "x": -4530.8515625, - "y": -4623.6923828125, + "x": 579.1436669921875, + "y": 1107.600712890625, "type": "path", "move_mode": "walk", "action": "", @@ -64,66 +65,75 @@ }, { "id": 7, - "x": -4521.525390625, - "y": -4665.9130859375, + "x": 564.7169189453125, + "y": 1119.10205078125, "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "", - "locked": false - }, - { - "id": 8, - "x": -4521.525390625, - "y": -4665.9130859375, - "type": "path", - "move_mode": "walk", + "move_mode": "dash", "action": "", "action_params": "" }, { - "id": 9, - "x": -4520.18359375, - "y": -4684.240234375, + "id": 8, + "x": 547.28271484375, + "y": 1124.119873046875, "type": "path", - "move_mode": "walk", - "action": "", + "move_mode": "dash", + "action": "combat_script", + "action_params": "attack(0.5)" + }, + { + "id": 9, + "x": 555.614990234375, + "y": 1145.3125, + "type": "path", + "move_mode": "dash", + "action": "fight", "action_params": "" }, { "id": 10, - "x": -4532.75390625, - "y": -4751.3681640625, + "x": 551.4595947265625, + "y": 1126.689208984375, "type": "path", - "move_mode": "walk", - "action": "fight", + "move_mode": "dash", + "action": "", "action_params": "" }, { "id": 11, - "x": -4476.91796875, - "y": -4781.0576171875, + "x": 534.4693603515625, + "y": 1126.8876953125, "type": "path", - "move_mode": "walk", - "action": "fight", + "move_mode": "dash", + "action": "", "action_params": "" }, { "id": 12, - "x": -4463.6796875, - "y": -4792.8447265625, + "x": 523.0667724609375, + "y": 1143.7200927734375, "type": "path", - "move_mode": "walk", + "move_mode": "dash", "action": "", "action_params": "" }, { "id": 13, - "x": -4463.33984375, - "y": -4803.2998046875, + "x": 514.4927978515625, + "y": 1152.359619140625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 14, + "x": 514.4927978515625, + "y": 1152.359619140625, "type": "path", "move_mode": "walk", - "action": "fight", + "action": "", "action_params": "" } ] diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2603璃月临时主矿道东.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2603璃月临时主矿道东.json new file mode 100644 index 00000000..355d4b6f --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2603璃月临时主矿道东.json @@ -0,0 +1,89 @@ +{ + "info": { + "name": "2603璃月临时主矿道东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "TheChasm", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 663.8544921875, + "y": 1058.835205078125, + "action_params": "" + }, + { + "id": 2, + "x": 668.651123046875, + "y": 1053.7174072265625, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 648.66015625, + "y": 1007.523193359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000", + "locked": false + }, + { + "id": 4, + "x": 650.5806884765625, + "y": 1010.670654296875, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": 650.5806884765625, + "y": 1010.670654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 678.9029541015625, + "y": 961.1754150390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000", + "locked": false + }, + { + "id": 7, + "x": 680.9029541015625, + "y": 961.1754150390625, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 8, + "x": 680.9029541015625, + "y": 961.1754150390625, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2604璃月临时主矿道西.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2604璃月临时主矿道西.json new file mode 100644 index 00000000..34930f70 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2604璃月临时主矿道西.json @@ -0,0 +1,59 @@ +{ + "info": { + "name": "2604璃月临时主矿道西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "TheChasm", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 895.638671875, + "y": 1020.92724609375, + "action_params": "" + }, + { + "id": 2, + "x": 902.3992919921875, + "y": 940.2542724609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 3, + "x": 884.64501953125, + "y": 933.5767822265625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 857.563232421875, + "y": 918.4354248046875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": 857.563232421875, + "y": 918.4354248046875, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2605璃月临时主矿道西.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2605璃月临时主矿道西.json new file mode 100644 index 00000000..f1490e4c --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2605璃月临时主矿道西.json @@ -0,0 +1,123 @@ +{ + "info": { + "name": "2605璃月临时主矿道西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "TheChasm", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 895.6505126953125, + "y": 1020.928955078125, + "action_params": "" + }, + { + "id": 2, + "x": 886.8499755859375, + "y": 1017.5203857421875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 861.6656494140625, + "y": 986.7840576171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 4, + "x": 823.197998046875, + "y": 989.4981689453125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 787.5419921875, + "y": 998.9368896484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3000" + }, + { + "id": 6, + "x": 774.5487060546875, + "y": 1015.5440673828125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 743.254150390625, + "y": 1022.186767578125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 736.65380859375, + "y": 1024.8779296875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 9, + "x": 736.65380859375, + "y": 1024.8779296875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 712.4266357421875, + "y": 1042.0738525390625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 694.755859375, + "y": 1048.818359375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 12, + "x": 668.9979248046875, + "y": 1044.912109375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2606璃月地下水泽北.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2606璃月地下水泽北.json new file mode 100644 index 00000000..56e12043 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2606璃月地下水泽北.json @@ -0,0 +1,142 @@ +{ + "info": { + "name": "2606璃月地下水泽北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "TheChasm", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 551.1248779296875, + "y": 950.910400390625, + "action_params": "" + }, + { + "id": 2, + "x": 542.1636962890625, + "y": 955.58642578125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 537.341552734375, + "y": 967.66455078125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 522.769287109375, + "y": 981.08349609375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 515.0904541015625, + "y": 976.8214111328125, + "type": "path", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 6, + "x": 506.173095703125, + "y": 989.3297119140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": 506.173095703125, + "y": 989.3297119140625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 8, + "x": 507.37353515625, + "y": 1008.3017578125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 521.1529541015625, + "y": 1064.13720703125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 10, + "x": 554.3648681640625, + "y": 1051.85791015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500", + "locked": false + }, + { + "id": 11, + "x": 562.2034912109375, + "y": 1020.077392578125, + "type": "target", + "move_mode": "dash", + "action": "combat_script", + "action_params": "keypress(f),wait(0.1),keydown(s),wait(0.1),dash,keyup(s)" + }, + { + "id": 12, + "x": 554.6287841796875, + "y": 1035.8270263671875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 13, + "x": 552.9688720703125, + "y": 1047.67919921875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 14, + "x": 554.6287841796875, + "y": 1035.8270263671875, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2607璃月巨渊主矿区.json similarity index 58% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2607璃月巨渊主矿区.json index 2e608fb5..22359537 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2607璃月巨渊主矿区.json @@ -1,125 +1,126 @@ { "info": { - "name": "6802--纳塔_安饶之野_镜壁山西南_(23)", + "name": "2607璃月巨渊主矿区", "type": "collect", - "author": "汐", + "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "map_name": "TheChasm", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "x": 9515.6220703125, - "y": -2206.2939453125, - "action": "force_tp", + "x": 338.7354736328125, + "y": 975.1282958984375, + "action": "", "move_mode": "walk", "action_params": "", "type": "teleport" }, { "id": 2, - "x": 9459.970703125, - "y": -2213.703125, - "action": "", - "move_mode": "run", - "action_params": "", + "x": 351.53564453125, + "y": 939.177734375, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "500", "type": "path" }, { "id": 3, - "x": 9424.681640625, - "y": -2207.583984375, - "action": "fight", + "x": 356.5518798828125, + "y": 918.103271484375, + "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 4, - "x": 9417.15234375, - "y": -2195.1201171875, - "action": "", - "move_mode": "jump", - "action_params": "", + "x": 359.861572265625, + "y": 919.403076171875, + "action": "combat_script", + "move_mode": "dash", + "action_params": "e,attack(1)", "type": "path" }, { "id": 5, - "x": 9411.140625, - "y": -2186.724609375, - "action": "fight", + "x": 359.861572265625, + "y": 919.403076171875, + "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 6, - "x": 9515.6220703125, - "y": -2206.2939453125, - "action": "force_tp", - "move_mode": "walk", + "x": 374.7247314453125, + "y": 931.2364501953125, + "action": "", + "move_mode": "dash", "action_params": "", - "type": "teleport" + "type": "path" }, { "id": 7, - "x": 9506.499478589052, - "y": -2228.4996968407304, - "action": "stop_flying", - "move_mode": "fly", + "x": 366.9356689453125, + "y": 924.602783203125, + "action": "fight", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 8, - "x": 9495.818359375, - "y": -2254.591796875, - "action": "fight", + "x": 366.9356689453125, + "y": 924.602783203125, + "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 9, - "x": 9497.6103515625, - "y": -2243.4921875, + "x": 377.7474365234375, + "y": 934.9881591796875, "action": "", - "move_mode": "walk", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 10, - "x": 9545.1533203125, - "y": -2257.41015625, + "x": 382.374365234375, + "y": 932.3881591796875, "action": "", - "move_mode": "run", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 11, - "x": 9544.25390625, - "y": -2322.873046875, - "action": "fight", - "move_mode": "dash", + "x": 387.244140625, + "y": 939.0902099609375, + "action": "", + "move_mode": "jump", "action_params": "", "type": "path" }, { "id": 12, - "x": 9587.7919921875, - "y": -2294.169921875, + "x": 397.0677490234375, + "y": 944.8507080078125, "action": "", - "move_mode": "dash", + "move_mode": "jump", "action_params": "", "type": "path" }, { "id": 13, - "x": 9603.5126953125, - "y": -2301.3291015625, + "x": 434.890576171875, + "y": 964.86767578125, "action": "fight", "move_mode": "dash", "action_params": "", @@ -127,89 +128,90 @@ }, { "id": 14, - "x": 9515.6220703125, - "y": -2206.2939453125, - "action": "force_tp", - "move_mode": "walk", + "x": 432.090576171875, + "y": 964.86767578125, + "action": "", + "move_mode": "dash", "action_params": "", - "type": "teleport" + "type": "path" }, { "id": 15, - "x": 9532.2021484375, - "y": -2217.779296875, + "x": 426.3294677734375, + "y": 974.627197265625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 414.93115234375, + "y": 970.058837890625, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 423.72265625, + "y": 974.338134765625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "500", + "type": "path", + "locked": false + }, + { + "id": 18, + "x": 423.72265625, + "y": 974.338134765625, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + }, + { + "id": 19, + "x": 423.72265625, + "y": 974.338134765625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 425.432861328125, + "y": 1009.9925537109375, "action": "stop_flying", "move_mode": "fly", "action_params": "", "type": "path" }, { - "id": 16, - "x": 9635.00390625, - "y": -2226.9658203125, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 17, - "x": 9640.384765625, - "y": -2204.8232421875, + "id": 21, + "x": 427.204833984375, + "y": 1021.025634765625, "action": "fight", "move_mode": "dash", "action_params": "", "type": "path" }, - { - "id": 18, - "x": 9636.818359375, - "y": -2198.4345703125, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 19, - "x": 9630.4462890625, - "y": -2187.978515625, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 20, - "x": 9636.1298828125, - "y": -2172.0458984375, - "action": "", - "move_mode": "jump", - "action_params": "", - "type": "path" - }, - { - "id": 21, - "x": 9629.4775390625, - "y": -2142.4951171875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, { "id": 22, - "x": 9661.1416015625, - "y": -2125.9794921875, - "action": "fight", + "x": 427.204833984375, + "y": 1021.025634765625, + "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 23, - "x": 9699.865234375, - "y": -2115.3583984375, + "x": 432.1405029296875, + "y": 1070.9110107421875, "action": "", "move_mode": "dash", "action_params": "", @@ -217,63 +219,62 @@ }, { "id": 24, - "x": 9728.28125, - "y": -2125.83203125, + "x": 415.5875244140625, + "y": 1108.732666015625, "action": "combat_script", "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" + "action_params": "dash,keypress(VK_SPACE)", + "type": "target" }, { "id": 25, - "x": 9748.500209354395, - "y": -2091.5007882141, - "action": "combat_script", + "x": 407.3487548828125, + "y": 1130.14453125, + "action": "", "move_mode": "dash", - "action_params": "attack(0.3)", + "action_params": "", "type": "path" }, { "id": 26, - "x": 9758.51171875, - "y": -2121.0537109375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 27, - "x": 9754.51171875, - "y": -2109.0537109375, + "x": 407.445556640625, + "y": 1141.821044921875, "action": "fight", "move_mode": "dash", "action_params": "", "type": "path" }, { - "id": 28, - "x": 9755.5810546875, - "y": -2102.8154296875, + "id": 27, + "x": 409.947021484375, + "y": 1124.751220703125, "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, + { + "id": 28, + "x": 399.8277587890625, + "y": 1107.5328369140625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, { "id": 29, - "x": 9786.365234375, - "y": -2079.0625, - "action": "", - "move_mode": "run", + "x": 399.8277587890625, + "y": 1107.5328369140625, + "action": "fight", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 30, - "x": 9799.568359375, - "y": -2111.828125, + "x": 434.688232421875, + "y": 1101.2587890625, "action": "", "move_mode": "dash", "action_params": "", @@ -281,21 +282,21 @@ }, { "id": 31, - "x": 9820.98046875, - "y": -2090.150390625, - "action": "", - "move_mode": "walk", + "x": 446.9837646484375, + "y": 1102.3892822265625, + "action": "fight", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 32, - "x": 9808.353515625, - "y": -2061.5478515625, - "action": "fight", + "x": 446.9837646484375, + "y": 1102.3892822265625, + "action": "combat_script", "move_mode": "dash", - "action_params": "", - "type": "path" + "action_params": "wait(1)", + "type": "orientation" } ] } \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2608璃月巨渊主矿区.json similarity index 52% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2608璃月巨渊主矿区.json index 78b01283..9065c944 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2608璃月巨渊主矿区.json @@ -1,67 +1,65 @@ { "info": { - "name": "7022稻妻鹤冠05", + "name": "2608璃月巨渊主矿区", "type": "collect", - "author": "mfkvfhpdx", + "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "map_name": "TheChasm", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "x": -2811.3515625, - "y": -6048.8544921875, - "type": "teleport", - "move_mode": "walk", "action": "", - "action_params": "", - "locked": false + "move_mode": "walk", + "type": "teleport", + "x": 338.723388671875, + "y": 975.098876953125, + "action_params": "" }, { "id": 2, - "x": -2835.333984375, - "y": -6087.1005859375, + "x": 337.2744140625, + "y": 974.83740234375, "type": "path", - "move_mode": "walk", + "move_mode": "run", "action": "", - "action_params": "", - "locked": false + "action_params": "" }, { "id": 3, - "x": -2865.9521484375, - "y": -6100.3896484375, + "x": 325.6552734375, + "y": 950.968994140625, "type": "path", - "move_mode": "walk", - "action": "", + "move_mode": "fly", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 4, + "x": 301.1644287109375, + "y": 912.650634765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", "action_params": "", "locked": false }, { - "id": 4, - "x": -2877.912109375, - "y": -6084.5029296875, + "id": 5, + "x": 301.1644287109375, + "y": 912.650634765625, "type": "path", "move_mode": "walk", "action": "fight", "action_params": "", "locked": false }, - { - "id": 5, - "x": -2893.533203125, - "y": -6084.857421875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "", - "locked": false - }, { "id": 6, - "x": -2905.734375, - "y": -6113.578125, + "x": 301.1644287109375, + "y": 912.650634765625, "type": "path", "move_mode": "walk", "action": "", @@ -69,93 +67,105 @@ }, { "id": 7, - "x": -2938.4482421875, - "y": -6076.5302734375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 8, - "x": -2937.796875, - "y": -6066.765625, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 9, - "x": -2946.8427734375, - "y": -6084.103515625, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 10, - "x": -2968.6227275673227, - "y": -6060.5, + "x": 284.4359130859375, + "y": 941.14697265625, "type": "path", "move_mode": "fly", "action": "stop_flying", "action_params": "" }, { - "id": 11, - "x": -2972.94921875, - "y": -6059.4375, + "id": 8, + "x": 280.24658203125, + "y": 952.0775146484375, "type": "path", - "move_mode": "walk", + "move_mode": "dash", "action": "fight", "action_params": "" }, { - "id": 12, - "x": -2978.5927734375, - "y": -6035.0517578125, + "id": 9, + "x": 309.9525146484375, + "y": 955.13134765625, "type": "path", - "move_mode": "walk", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 10, + "x": 309.9525146484375, + "y": 955.13134765625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 11, + "x": 309.9525146484375, + "y": 955.13134765625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 294.6248779296875, + "y": 955.2249755859375, + "type": "path", + "move_mode": "dash", "action": "", "action_params": "" }, { "id": 13, - "x": -2958.5859375, - "y": -6018.224609375, + "x": 244.62841796875, + "y": 932.5238037109375, "type": "path", - "move_mode": "walk", + "move_mode": "dash", "action": "", "action_params": "" }, { "id": 14, - "x": -2930.0595703125, - "y": -6032.0576171875, + "x": 227.8468017578125, + "y": 932.3551025390625, "type": "path", - "move_mode": "walk", + "move_mode": "jump", "action": "", "action_params": "" }, { "id": 15, - "x": -2911.685546875, - "y": -6040.9033203125, + "x": 228.9937744140625, + "y": 953.7127685546875, "type": "path", - "move_mode": "walk", + "move_mode": "dash", "action": "", "action_params": "" }, { "id": 16, - "x": -2888.931640625, - "y": -6028.6396484375, + "x": 223.4990234375, + "y": 968.078369140625, "type": "path", - "move_mode": "walk", + "move_mode": "jump", "action": "fight", - "action_params": "" + "action_params": "", + "locked": false + }, + { + "id": 17, + "x": 223.4990234375, + "y": 968.078369140625, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" } ] } \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2609璃月巨渊主矿区南.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2609璃月巨渊主矿区南.json new file mode 100644 index 00000000..eacec49a --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/2609璃月巨渊主矿区南.json @@ -0,0 +1,123 @@ +{ + "info": { + "name": "2609璃月巨渊主矿区南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "TheChasm", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 278.458740234375, + "y": 767.326416015625, + "action_params": "" + }, + { + "id": 2, + "x": 271.0562744140625, + "y": 803.4752197265625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 220.3905029296875, + "y": 764.761474609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "500" + }, + { + "id": 4, + "x": 215.239990234375, + "y": 762.1583251953125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": 215.239990234375, + "y": 762.1583251953125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 208.1868896484375, + "y": 762.5958251953125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 203.478271484375, + "y": 754.9022216796875, + "type": "target", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 210.103271484375, + "y": 748.0771484375, + "type": "target", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 202.53173828125, + "y": 736.7103271484375, + "type": "path", + "move_mode": "jump", + "action": "fight", + "action_params": "" + }, + { + "id": 10, + "x": 199.5501708984375, + "y": 724.97509765625, + "type": "path", + "move_mode": "jump", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 186.1728515625, + "y": 732.0050048828125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 12, + "x": 186.1728515625, + "y": 732.0050048828125, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3501稻妻渊下蛇肠之路.json similarity index 51% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3501稻妻渊下蛇肠之路.json index 1924e76f..b2a0b489 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3501稻妻渊下蛇肠之路.json @@ -1,122 +1,132 @@ { "info": { - "name": "7020稻妻清濑岛02", + "name": "3501稻妻渊下蛇肠之路", "type": "collect", - "author": "mfkvfhpdx", + "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "x": -4251.88671875, - "y": -4785.4658203125, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1580.98974609375, + "y": -112.631103515625, + "action_params": "" + }, + { + "id": 2, + "x": 1575.552490234375, + "y": -97.7724609375, + "type": "target", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1565.2509765625, + "y": -90.82470703125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1509.77001953125, + "y": -98.918701171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 1512.281982421875, + "y": -97.09423828125, + "type": "path", + "move_mode": "run", + "action": "fight", + "action_params": "" + }, + { + "id": 6, + "x": 1542.2432861328125, + "y": -79.565185546875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1552.0155029296875, + "y": -37.468505859375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 8, + "x": 1552.5218505859375, + "y": 17.6246337890625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1563.28466796875, + "y": 41.32958984375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 10, + "x": 1580.9967041015625, + "y": -112.577880859375, "type": "teleport", "move_mode": "walk", "action": "", "action_params": "" }, { - "id": 2, - "x": -4217.908203125, - "y": -4992.2841796875, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keydown(SPACE),wait(4.8)", - "locked": false - }, - { - "id": 3, - "x": -4217.908203125, - "y": -4992.2841796875, + "id": 11, + "x": 1553.1148681640625, + "y": -172.241943359375, "type": "path", "move_mode": "fly", "action": "stop_flying", - "action_params": "", - "locked": false - }, - { - "id": 4, - "x": -4217.908203125, - "y": -4992.2841796875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 5, - "x": -4243.43359375, - "y": -4987.2919921875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 6, - "x": -4256.177734375, - "y": -4985.599609375, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 7, - "x": -4292.771484375, - "y": -5011.548828125, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 8, - "x": -4300.216796875, - "y": -5027.49609375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 9, - "x": -4314.388671875, - "y": -5053.8310546875, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 10, - "x": -4307.40625, - "y": -5063.458984375, - "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" - }, - { - "id": 11, - "x": -4282.083984375, - "y": -5082.322265625, - "type": "path", - "move_mode": "walk", - "action": "fight", "action_params": "" }, { "id": 12, - "x": -4248.908203125, - "y": -5096.0546875, + "x": 1545.12158203125, + "y": -187.456298828125, "type": "path", - "move_mode": "walk", + "move_mode": "dash", "action": "fight", - "action_params": "" + "action_params": "", + "locked": false + }, + { + "id": 13, + "x": 1545.12158203125, + "y": -187.456298828125, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" } ] } \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3502稻妻狭间之街西南.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3502稻妻狭间之街西南.json new file mode 100644 index 00000000..e0b01fb9 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3502稻妻狭间之街西南.json @@ -0,0 +1,40 @@ +{ + "info": { + "name": "3502稻妻狭间之街西南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 852.7762451171875, + "y": 339.674560546875, + "action_params": "" + }, + { + "id": 2, + "x": 890.0645751953125, + "y": 306.6201171875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 3, + "x": 879.434814453125, + "y": 311.6123046875, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3503稻妻狭间之街西.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3503稻妻狭间之街西.json new file mode 100644 index 00000000..e77fc69d --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3503稻妻狭间之街西.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "3503稻妻狭间之街西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 718.816162109375, + "y": 476.7364501953125, + "action_params": "" + }, + { + "id": 2, + "x": 770.2198486328125, + "y": 502.5401611328125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 787.32763671875, + "y": 510.7337646484375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 4, + "x": 787.32763671875, + "y": 510.7337646484375, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 5, + "x": 852.4088134765625, + "y": 550.4677734375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 813.708984375, + "y": 542.05712890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": 819.7950439453125, + "y": 542.690673828125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 8, + "x": 852.410400390625, + "y": 550.4617919921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 877.323486328125, + "y": 513.279541015625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 10, + "x": 879.7142333984375, + "y": 524.030517578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 11, + "x": 881.1959228515625, + "y": 529.3463134765625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 12, + "x": 881.1959228515625, + "y": 529.3463134765625, + "type": "path", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3504稻妻狭间之街东.json similarity index 59% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3504稻妻狭间之街东.json index 0d2e99b2..810b94e1 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3504稻妻狭间之街东.json @@ -1,17 +1,18 @@ { "info": { - "name": "6402--纳塔_万火之瓯_竞技场2_(3-4)", + "name": "3504稻妻狭间之街东", "type": "collect", - "author": "Demo&汐&mno", - "version": "1.1", + "author": "mno", + "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "x": 8738.2216796875, - "y": -1857.4560546875, + "x": 625.8795166015625, + "y": 622.061767578125, "action": "", "move_mode": "walk", "action_params": "", @@ -19,84 +20,82 @@ }, { "id": 2, - "x": 8742.8359375, - "y": -1852.94189453125, - "action": "stop_flying", - "move_mode": "fly", + "x": 614.399169921875, + "y": 621.89599609375, + "action": "fight", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 3, - "x": 8760.65626, - "y": -1828.96728515626, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false - }, - { - "id": 4, - "x": 8760.65626, - "y": -1828.96728515626, + "x": 582.9676513671875, + "y": 614.66552734375, "action": "", - "move_mode": "walk", + "move_mode": "dash", "action_params": "", "type": "path" }, + { + "id": 4, + "x": 568.0875244140625, + "y": 606.863037109375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "target" + }, { "id": 5, - "x": 8823.76953125, - "y": -1774.45263671875, - "action": "", + "x": 554.0357666015625, + "y": 612.934814453125, + "action": "fight", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 6, - "x": 8884.58203125, - "y": -1761.26318359375, - "action": "fight", - "move_mode": "dash", + "x": 524.6724853515625, + "y": 581.6759033203125, + "action": "stop_flying", + "move_mode": "fly", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { "id": 7, - "x": 8884.58203125, - "y": -1761.26318359375, + "x": 492.4556884765625, + "y": 554.44189453125, "action": "", - "move_mode": "walk", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 8, - "x": 8905.416015625, - "y": -1743.73828125, - "action": "", - "move_mode": "dash", + "x": 471.96826171875, + "y": 547.233154296875, + "action": "stop_flying", + "move_mode": "fly", "action_params": "", "type": "path" }, { "id": 9, - "x": 8940.3466796875, - "y": -1731.37158203125, + "x": 472.9954833984375, + "y": 549.4366455078125, "action": "fight", - "move_mode": "dash", + "move_mode": "walk", "action_params": "", - "type": "path" + "type": "orientation" }, { "id": 10, - "x": 8940.3466796875, - "y": -1731.37158203125, + "x": 472.9954833984375, + "y": 549.4366455078125, "action": "combat_script", - "move_mode": "dash", + "move_mode": "walk", "action_params": "wait(1)", "type": "orientation" } diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3505稻妻狭间之街东.json similarity index 56% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3505稻妻狭间之街东.json index bfacb5b4..bb677b29 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3505稻妻狭间之街东.json @@ -1,17 +1,18 @@ { "info": { - "name": "6304--纳塔_翘枝崖_花语会南2_(3-9)", + "name": "3505稻妻狭间之街东", "type": "collect", - "author": "Demo&汐&mno", - "version": "1.2", + "author": "mno", + "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "x": 9310.861328125, - "y": -1423.19189453125, + "x": 625.8792724609375, + "y": 622.061767578125, "action": "", "move_mode": "walk", "action_params": "", @@ -19,125 +20,126 @@ }, { "id": 2, - "x": 9327.154296875, - "y": -1468.55810546875, - "action": "fight", + "x": 612.4332275390625, + "y": 666.0537109375, + "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 3, - "x": 9327.154296875, - "y": -1468.55810546875, - "action": "", - "move_mode": "dash", + "x": 607.59716796875, + "y": 673.04638671875, + "action": "stop_flying", + "move_mode": "fly", "action_params": "", "type": "path" }, { "id": 4, - "x": 9352.505859375, - "y": -1488.0087890625, - "action": "", + "x": 602.8134765625, + "y": 675.6890869140625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 5, + "x": 602.8134765625, + "y": 675.6890869140625, + "action": "fight", "move_mode": "dash", "action_params": "", "type": "path" }, - { - "id": 5, - "x": 9385.1982421875, - "y": -1485.5009765625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "500", - "type": "path" - }, { "id": 6, - "x": 9388.6884765625, - "y": -1483.82666015625, - "action": "fight", - "move_mode": "walk", + "x": 602.567626953125, + "y": 704.5882568359375, + "action": "", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 7, - "x": 9388.6884765625, - "y": -1483.82666015625, + "x": 595.5849609375, + "y": 724.87890625, "action": "", - "move_mode": "walk", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 8, - "x": 9431.1181640625, - "y": -1448.41943359375, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" + "x": 590.5576171875, + "y": 728.0908203125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(f),wait(0.1),dash" }, { "id": 9, - "x": 9464.091796875, - "y": -1444.02294921875, - "action": "", - "move_mode": "dash", + "x": 587.1839599609375, + "y": 731.4390869140625, + "action": "fight", + "move_mode": "walk", "action_params": "", - "type": "path" + "type": "orientation" }, { "id": 10, - "x": 9465.21484375, - "y": -1447.04443359375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "attack(0.5)", + "x": 562.41357421875, + "y": 765.1324462890625, + "action": "", + "move_mode": "dash", + "action_params": "", "type": "path" }, { "id": 11, - "x": 9464.091796875, - "y": -1444.02294921875, + "x": 552.8590087890625, + "y": 757.3226318359375, "action": "", - "move_mode": "walk", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 12, - "x": 9490.1044921875, - "y": -1442.763671875, - "action": "fight", + "x": 547.345703125, + "y": 749.2772216796875, + "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 13, - "x": 9490.1044921875, - "y": -1442.763671875, - "action": "", + "x": 533.0989990234375, + "y": 728.683837890625, + "type": "target", "move_mode": "walk", - "action_params": "", - "type": "path" + "action": "combat_script", + "action_params": "keypress(f),wait(0.1),dash" }, { "id": 14, - "x": 9542.837890625, - "y": -1434.98388671875, + "x": 532.99951171875, + "y": 729.39501953125, "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "orientation" }, { "id": 15, - "x": 9518.435546875, - "y": -1441.38623046875, + "x": 526.725830078125, + "y": 738.9053955078125, "action": "", "move_mode": "dash", "action_params": "", @@ -145,22 +147,30 @@ }, { "id": 16, - "x": 9500.3896484375, - "y": -1477.9541015625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path", - "locked": false + "x": 526.5533447265625, + "y": 755.7919921875, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "700", + "type": "path" }, { "id": 17, - "x": 9500.3896484375, - "y": -1477.9541015625, + "x": 532.673828125, + "y": 764.731689453125, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 532.673828125, + "y": 764.731689453125, "action": "combat_script", "move_mode": "dash", "action_params": "wait(1)", - "type": "orientation" + "type": "path" } ] } \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3506稻妻大日御舆西.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3506稻妻大日御舆西.json new file mode 100644 index 00000000..a36cb7c8 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3506稻妻大日御舆西.json @@ -0,0 +1,88 @@ +{ + "info": { + "name": "3506稻妻大日御舆西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 285.1513671875, + "y": 277.2430419921875, + "action_params": "" + }, + { + "id": 2, + "x": 276.950439453125, + "y": 310.499267578125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 263.40185546875, + "y": 369.27587890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 4, + "x": 263.40185546875, + "y": 369.27587890625, + "type": "orientation", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 5, + "x": 273.655517578125, + "y": 366.823974609375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 275.7454833984375, + "y": 399.986083984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": 275.7454833984375, + "y": 399.986083984375, + "type": "orientation", + "move_mode": "walk", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 8, + "x": 275.7454833984375, + "y": 399.986083984375, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3607稻妻大日御舆南.json similarity index 54% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3607稻妻大日御舆南.json index 02fbfb0a..729423cb 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3607稻妻大日御舆南.json @@ -1,17 +1,18 @@ { "info": { - "name": "6403--纳塔_万火之瓯_竞技场3_(4-3)", + "name": "3607稻妻大日御舆南", "type": "collect", - "author": "Demo&汐&mno", + "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "x": 8916.8193359375, - "y": -1638.63916015625, + "x": 372.8170166015625, + "y": 107.1407470703125, "action": "", "move_mode": "walk", "action_params": "", @@ -19,47 +20,38 @@ }, { "id": 2, - "x": 8789.810546875, - "y": -1690.83203125, + "x": 334.9227294921875, + "y": 122.960205078125, "action": "", "move_mode": "dash", "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 8804.779296875, - "y": -1726.55322265625, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 4, - "x": 8791.51953125, - "y": -1736.42919921875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(0.3)", - "type": "path" - }, - { - "id": 5, - "x": 8751.90234375, - "y": -1732.84033203125, - "action": "fight", - "move_mode": "dash", - "action_params": "", "type": "path", "locked": false }, { - "id": 6, - "x": 8751.90234375, - "y": -1732.84033203125, + "id": 3, + "x": 318.068603515625, + "y": 111.2208251953125, "action": "combat_script", - "move_mode": "walk", + "move_mode": "dash", + "action_params": "e,attack(1)", + "type": "path" + }, + { + "id": 4, + "x": 334.9227294921875, + "y": 122.960205078125, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 318.068603515625, + "y": 111.2208251953125, + "action": "combat_script", + "move_mode": "dash", "action_params": "wait(1)", "type": "orientation" } diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3608稻妻大日御舆西(出发点转动超时).json similarity index 51% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3608稻妻大日御舆西(出发点转动超时).json index fc1d463d..70b8240f 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3608稻妻大日御舆西(出发点转动超时).json @@ -1,76 +1,77 @@ { "info": { - "name": "7020稻妻清濑岛09", + "name": "3608稻妻大日御舆西", "type": "collect", - "author": "mfkvfhpdx", + "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.35.1" + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "x": -3891.5595703125, - "y": -4389.912109375, - "type": "teleport", - "move_mode": "walk", "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 285.157470703125, + "y": 277.2493896484375, "action_params": "" }, { "id": 2, - "x": -3837.9765625, - "y": -4423.3623046875, + "x": 281.771484375, + "y": 267.9443359375, "type": "path", - "move_mode": "fly", - "action": "stop_flying", - "action_params": "", - "locked": false - }, - { - "id": 3, - "x": -3837.9765625, - "y": -4423.3623046875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" - }, - { - "id": 4, - "x": -3848.685546875, - "y": -4432.298828125, - "type": "path", - "move_mode": "walk", + "move_mode": "dash", "action": "", "action_params": "" }, { - "id": 5, - "x": -3878.26953125, - "y": -4460.1044921875, + "id": 3, + "x": 293.418701171875, + "y": 228.6568603515625, "type": "path", - "move_mode": "walk", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 304.7138671875, + "y": 195.3055419921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 307.1851806640625, + "y": 180.6842041015625, + "type": "path", + "move_mode": "dash", "action": "", "action_params": "" }, { "id": 6, - "x": -3862.830078125, - "y": -4497.224609375, + "x": 303.6160888671875, + "y": 150.804443359375, "type": "path", - "move_mode": "walk", - "action": "", - "action_params": "" + "move_mode": "jump", + "action": "fight", + "action_params": "", + "locked": false }, { "id": 7, - "x": -3849.4736328125, - "y": -4482.794921875, - "type": "path", - "move_mode": "walk", - "action": "fight", - "action_params": "" + "x": 303.6160888671875, + "y": 150.804443359375, + "type": "orientation", + "move_mode": "jump", + "action": "combat_script", + "action_params": "wait(1)" } ] } \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3609稻妻大日御舆东.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3609稻妻大日御舆东.json new file mode 100644 index 00000000..b26d0f38 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3609稻妻大日御舆东.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "3609稻妻大日御舆东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 64.214599609375, + "y": 252.4512939453125, + "action_params": "" + }, + { + "id": 2, + "x": 107.110107421875, + "y": 287.4130859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 125.6246337890625, + "y": 315.1763916015625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 162.91943359375, + "y": 319.2073974609375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 182.023193359375, + "y": 346.8759765625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 6, + "x": 182.023193359375, + "y": 346.8759765625, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3610稻妻大日御舆东.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3610稻妻大日御舆东.json new file mode 100644 index 00000000..70cbc421 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3610稻妻大日御舆东.json @@ -0,0 +1,50 @@ +{ + "info": { + "name": "3610稻妻大日御舆东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 64.3443603515625, + "y": 252.5885009765625, + "action_params": "" + }, + { + "id": 2, + "x": 60.425537109375, + "y": 353.6002197265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "5000" + }, + { + "id": 3, + "x": 58.7689208984375, + "y": 365.57177734375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 4, + "x": 58.7689208984375, + "y": 365.57177734375, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3611稻妻常夜灵庙.json similarity index 53% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3611稻妻常夜灵庙.json index 660528e3..e73f6e6d 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3611稻妻常夜灵庙.json @@ -1,27 +1,27 @@ { "info": { - "name": "6807--纳塔_安饶之野神像_(8)", + "name": "3611稻妻常夜灵庙", "type": "collect", - "author": "汐", + "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "action": "force_tp", + "action": "", "move_mode": "walk", "type": "teleport", - "x": 10025.7421875, - "y": -2614.857421875, - "action_params": "", - "locked": false + "x": -308.260986328125, + "y": 427.7286376953125, + "action_params": "" }, { "id": 2, - "x": 9991.62890625, - "y": -2619.1396484375, + "x": -267.883544921875, + "y": 418.2138671875, "type": "path", "move_mode": "dash", "action": "", @@ -29,35 +29,35 @@ }, { "id": 3, - "x": 9932.001953125, - "y": -2607.9296875, - "type": "path", - "move_mode": "dash", - "action": "fight", - "action_params": "" - }, - { - "id": 4, - "action": "force_tp", - "move_mode": "walk", - "type": "teleport", - "x": 10025.7421875, - "y": -2614.857421875, - "action_params": "" - }, - { - "id": 5, - "x": 10019.1640625, - "y": -2592.6494140625, + "x": -249.627197265625, + "y": 396.7947998046875, "type": "path", "move_mode": "dash", "action": "", "action_params": "" }, + { + "id": 4, + "x": -225.706787109375, + "y": 406.4561767578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": -201.454345703125, + "y": 396.2294921875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, { "id": 6, - "x": 10034.3876953125, - "y": -2575.59375, + "x": -218.2275390625, + "y": 380.3021240234375, "type": "path", "move_mode": "dash", "action": "", @@ -65,22 +65,32 @@ }, { "id": 7, - "x": 10057.2978515625, - "y": -2460.82421875, + "x": -212.252197265625, + "y": 363.0975341796875, "type": "path", - "move_mode": "fly", - "action": "stop_flying", - "action_params": "1500" + "move_mode": "dash", + "action": "", + "action_params": "", + "locked": false }, { "id": 8, - "x": 10070.12890625, - "y": -2442.35546875, + "x": -212.252197265625, + "y": 363.0975341796875, "type": "path", "move_mode": "dash", "action": "fight", "action_params": "", "locked": false + }, + { + "id": 9, + "x": -212.252197265625, + "y": 363.0975341796875, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" } ] } \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3612稻妻常夜灵庙南.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3612稻妻常夜灵庙南.json new file mode 100644 index 00000000..5aa65416 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3612稻妻常夜灵庙南.json @@ -0,0 +1,59 @@ +{ + "info": { + "name": "3612稻妻常夜灵庙南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -362.453125, + "y": 238.3262939453125, + "action_params": "" + }, + { + "id": 2, + "x": -398.128173828125, + "y": 254.2657470703125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -440.529541015625, + "y": 260.017333984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1200" + }, + { + "id": 4, + "x": -449.077392578125, + "y": 251.4267578125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": -449.077392578125, + "y": 251.4267578125, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3613稻妻蛇心之地.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3613稻妻蛇心之地.json new file mode 100644 index 00000000..a939caf9 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3613稻妻蛇心之地.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "3613稻妻蛇心之地", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 198.8875732421875, + "y": -182.9736328125, + "action_params": "" + }, + { + "id": 2, + "x": 169.871337890625, + "y": -174.94384765625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 159.889892578125, + "y": -155.962646484375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 151.7647705078125, + "y": -142.449951171875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 157.0919189453125, + "y": -107.900634765625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 6, + "x": 157.0919189453125, + "y": -107.900634765625, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3614稻妻蛇心之地西南.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3614稻妻蛇心之地西南.json new file mode 100644 index 00000000..103655c4 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3614稻妻蛇心之地西南.json @@ -0,0 +1,59 @@ +{ + "info": { + "name": "3614稻妻蛇心之地西南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Enkanomiya", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 480.660400390625, + "y": -538.10400390625, + "action_params": "" + }, + { + "id": 2, + "x": 475.1575927734375, + "y": -599.810546875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "wait(2)" + }, + { + "id": 3, + "x": 527.0965576171875, + "y": -598.880615234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 534.627197265625, + "y": -591.103271484375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": 534.627197265625, + "y": -591.103271484375, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3701稻妻鹤观王兽.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3701稻妻鹤观王兽.json new file mode 100644 index 00000000..f7aaf256 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3701稻妻鹤观王兽.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "3701稻妻鹤观王兽", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2598.38671875, + "y": -6690.4501953125, + "action_params": "" + }, + { + "id": 2, + "x": -2607.5732421875, + "y": -6696.900390625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2638.0234375, + "y": -6709.1904296875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2653.4765625, + "y": -6716.138671875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2652.453125, + "y": -6721.5537109375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 6, + "x": -2652.453125, + "y": -6721.5537109375, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3702稻妻鹤观东.json similarity index 54% rename from repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json rename to repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3702稻妻鹤观东.json index acc2b318..767b776c 100644 --- a/repo/pathing/锄地专区/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3702稻妻鹤观东.json @@ -1,72 +1,73 @@ { "info": { - "name": "6803--纳塔_熔岩辉龙像东南_镜壁山东南_(5)", + "name": "3702稻妻鹤观东", "type": "collect", - "author": "汐", + "author": "mno", "version": "1.0", "description": "", - "bgi_version": "0.42.3" + "map_name": "Teyvat", + "bgi_version": "0.45.0" }, "positions": [ { "id": 1, - "action": "force_tp", + "action": "", "move_mode": "walk", "type": "teleport", - "x": 9834.62109375, - "y": -2359.9140625, - "action_params": "", - "locked": false + "x": -3103.67578125, + "y": -6268.599609375, + "action_params": "" }, { "id": 2, - "x": 9837.0634765625, - "y": -2347.7509765625, - "type": "path", - "move_mode": "jump", - "action": "", - "action_params": "" - }, - { - "id": 3, - "x": 9830.615234375, - "y": -2299.2001953125, - "type": "path", - "move_mode": "dash", - "action": "combat_script", - "action_params": "attack(0.3)" - }, - { - "id": 4, - "x": 9806.796875, - "y": -2286.365234375, - "type": "path", - "move_mode": "dash", - "action": "", - "action_params": "" - }, - { - "id": 5, - "x": 9805.33203125, - "y": -2268.09765625, + "x": -3106.658203125, + "y": -6263.2451171875, "type": "path", "move_mode": "dash", "action": "fight", "action_params": "" }, { - "id": 6, - "action": "force_tp", - "move_mode": "walk", - "type": "teleport", - "x": 9834.62109375, - "y": -2359.9140625, + "id": 3, + "x": -3137.2978515625, + "y": -6262.953125, + "type": "path", + "move_mode": "dash", + "action": "", "action_params": "" }, + { + "id": 4, + "x": -3146.0751953125, + "y": -6277.384765625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 5, + "x": -3269.3876953125, + "y": -6136.1396484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3248.4228515625, + "y": -6192.4892578125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, { "id": 7, - "x": 9870.4775390625, - "y": -2393.9658203125, + "x": -3248.4228515625, + "y": -6192.4892578125, "type": "path", "move_mode": "dash", "action": "", @@ -74,39 +75,31 @@ }, { "id": 8, - "x": 9873.0732421875, - "y": -2434.5546875, + "x": -3261.142578125, + "y": -6200.09375, "type": "path", "move_mode": "dash", - "action": "combat_script", - "action_params": "attack(0.3)" + "action": "", + "action_params": "" }, { "id": 9, - "x": 9900.62890625, - "y": -2381.5908203125, + "x": -3215.6611328125, + "y": -6219.626953125, "type": "path", "move_mode": "dash", - "action": "combat_script", - "action_params": "attack(0.3)" + "action": "fight", + "action_params": "", + "locked": false }, { "id": 10, - "x": 9886.44921875, - "y": -2417.2763671875, - "type": "path", + "x": -3215.6611328125, + "y": -6219.626953125, + "type": "orientation", "move_mode": "dash", - "action": "fight", - "action_params": "" - }, - { - "id": 11, - "x": 9824.2255859375, - "y": -2432.2822265625, - "type": "path", - "move_mode": "dash", - "action": "fight", - "action_params": "" + "action": "combat_script", + "action_params": "wait(1)" } ] } \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3703稻妻鹤观东.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3703稻妻鹤观东.json new file mode 100644 index 00000000..8120326e --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3703稻妻鹤观东.json @@ -0,0 +1,77 @@ +{ + "info": { + "name": "3703稻妻鹤观东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "x": -3103.6591796875, + "y": -6268.5458984375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3083.634765625, + "y": -6263.0341796875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3064.248046875, + "y": -6270.2060546875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3034.2197265625, + "y": -6259.451171875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3006.6318359375, + "y": -6273.8017578125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2967.7392578125, + "y": -6273.4033203125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": -2967.7392578125, + "y": -6273.4033203125, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3801稻妻清籁丸地洞.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3801稻妻清籁丸地洞.json new file mode 100644 index 00000000..20004d65 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3801稻妻清籁丸地洞.json @@ -0,0 +1,131 @@ +{ + "info": { + "name": "3801稻妻清籁丸地洞", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "x": -3891.5703125, + "y": -4389.8896484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3863.8486328125, + "y": -4389.4912109375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3856.419921875, + "y": -4394.5166015625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3822.2568359375, + "y": -4381.94921875, + "type": "target", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3816.05078125, + "y": -4380.234375, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "wait(3)" + }, + { + "id": 6, + "x": -3845.45703125, + "y": -4392.9619140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": -3842.3408203125, + "y": -4410.919921875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3836.2109375, + "y": -4422.4140625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3821.900390625, + "y": -4436.18359375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3823.029296875, + "y": -4437.9677734375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 11, + "x": -3799.3779296875, + "y": -4416.50390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 12, + "x": -3793.453125, + "y": -4398.892578125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 13, + "x": -3793.453125, + "y": -4398.892578125, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3802稻妻越石村.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3802稻妻越石村.json new file mode 100644 index 00000000..21ae15ad --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3802稻妻越石村.json @@ -0,0 +1,179 @@ +{ + "info": { + "name": "3802稻妻越石村", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3891.5654296875, + "y": -4389.88671875, + "action_params": "" + }, + { + "id": 2, + "x": -3888.0751953125, + "y": -4398.60546875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3870.0556640625, + "y": -4449.0234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": -3875.8115234375, + "y": -4473.1318359375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3855.4228515625, + "y": -4492.572265625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3848.3671875, + "y": -4481.0361328125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": -3849.2978515625, + "y": -4490.6748046875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 8, + "x": -3849.2978515625, + "y": -4490.6748046875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3845.7548828125, + "y": -4499.189453125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3827.7421875, + "y": -4515.0283203125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3805.03515625, + "y": -4524.0029296875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3800.548828125, + "y": -4529.962890625, + "type": "path", + "move_mode": "jump", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3800.9072265625, + "y": -4536.11328125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(f),wait(0.1),dash", + "locked": false + }, + { + "id": 14, + "x": -3800.9072265625, + "y": -4536.11328125, + "type": "orientation", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 15, + "x": -3771.7666015625, + "y": -4534.6103515625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3729.6240234375, + "y": -4530.50390625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3726.890625, + "y": -4522.412109375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 18, + "x": -3726.890625, + "y": -4522.412109375, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3803稻妻平海砦.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3803稻妻平海砦.json new file mode 100644 index 00000000..be5da1f7 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3803稻妻平海砦.json @@ -0,0 +1,59 @@ +{ + "info": { + "name": "3803稻妻平海砦", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4184.806640625, + "y": -4244.5224609375, + "action_params": "" + }, + { + "id": 2, + "x": -4173.138671875, + "y": -4250.6748046875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4171.232421875, + "y": -4273.755859375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4160.4609375, + "y": -4280.365234375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": -4160.4609375, + "y": -4280.365234375, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3804稻妻平海砦.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3804稻妻平海砦.json new file mode 100644 index 00000000..e0b26015 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3804稻妻平海砦.json @@ -0,0 +1,195 @@ +{ + "info": { + "name": "3804稻妻平海砦", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "x": -4184.919921875, + "y": -4244.482421875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4172.92578125, + "y": -4226.7919921875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4212.09765625, + "y": -4203.9794921875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4214.40625, + "y": -4194.82421875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 5, + "x": -4248.255859375, + "y": -4195.630859375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4276.42578125, + "y": -4177.2958984375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4305.541015625, + "y": -4157.126953125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4299.822265625, + "y": -4155.78125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 9, + "x": -4299.822265625, + "y": -4155.78125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4294.474609375, + "y": -4177.6826171875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4310.787109375, + "y": -4212.5537109375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4324.2890625, + "y": -4220.7412109375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4320.728515625, + "y": -4230.779296875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 14, + "x": -4325.859375, + "y": -4238.8564453125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4309.529296875, + "y": -4259.62890625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4306.08203125, + "y": -4262.8408203125, + "type": "path", + "move_mode": "jump", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -4298.068359375, + "y": -4265.443359375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -4296.763671875, + "y": -4278.0556640625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -4306.09375, + "y": -4280.666015625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 20, + "x": -4306.09375, + "y": -4280.666015625, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3805稻妻平海砦东.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3805稻妻平海砦东.json new file mode 100644 index 00000000..47053838 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3805稻妻平海砦东.json @@ -0,0 +1,105 @@ +{ + "info": { + "name": "3805稻妻平海砦东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4443.83984375, + "y": -4290.3994140625, + "action_params": "" + }, + { + "id": 2, + "x": -4455.046875, + "y": -4297.4453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": -4476.173828125, + "y": -4282.4248046875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4499.73828125, + "y": -4255.9599609375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4493.6953125, + "y": -4260.4296875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 6, + "x": -4493.6953125, + "y": -4260.4296875, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 7, + "x": -4443.833984375, + "y": -4290.3837890625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4421.66015625, + "y": -4278.0283203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": -4424.701171875, + "y": -4268.1552734375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 10, + "x": -4424.701171875, + "y": -4268.1552734375, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3806稻妻平海砦南.json b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3806稻妻平海砦南.json new file mode 100644 index 00000000..69ca08e6 --- /dev/null +++ b/repo/pathing/锄地专区/小怪锄地2000/小怪测试路线(不跑)/3806稻妻平海砦南.json @@ -0,0 +1,160 @@ +{ + "info": { + "name": "3806稻妻平海砦南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "map_name": "Teyvat", + "bgi_version": "0.45.0" + }, + "positions": [ + { + "id": 1, + "x": -4185.865234375, + "y": -4383.7197265625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4177.447265625, + "y": -4369.5751953125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 3, + "x": -4149.044921875, + "y": -4371.5849609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": -4158.365234375, + "y": -4385.322265625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": -4158.365234375, + "y": -4385.322265625, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 6, + "x": -4185.884765625, + "y": -4383.6865234375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4213.138671875, + "y": -4383.7568359375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4224.779296875, + "y": -4398.970703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": -4220.17578125, + "y": -4404.05859375, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 10, + "x": -4220.17578125, + "y": -4404.05859375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4240.0234375, + "y": -4395.8251953125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4252.62109375, + "y": -4373.0517578125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4259.578125, + "y": -4357.595703125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4264.61328125, + "y": -4351.5791015625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4249.6484375, + "y": -4345.1064453125, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 16, + "x": -4249.6484375, + "y": -4345.1064453125, + "type": "orientation", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file