diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b4fe540b..bf29ba4f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,6 +35,7 @@ jobs: - run: node ./build/build.js - uses: stefanzweifel/git-auto-commit-action@v5 with: + fetch-depth: 0 commit_message: update repo.json upload: diff --git a/README.md b/README.md index 0f2b2d8f..9e5c6a73 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,78 @@ [BetterGI](https://github.com/babalae/better-genshin-impact) 的 📜 脚本仓库 -在线版:[bgi.sh](https://bgi.sh) +在线版脚本仓库:[bgi.sh](https://bgi.sh) 作者Q群:764972801 (非作者请勿加入) [如何提交到本仓库?(谁都能看懂的 GitHub Pull Request 使用指南)](https://bgi.huiyadan.com/dev/pr.html) +## 脚本提交说明 + +- 战斗脚本提交到 [repo/combat](https://github.com/babalae/bettergi-scripts-list/tree/main/repo/combat) 目录; +- JS 脚本提交到 [repo/js](https://github.com/babalae/bettergi-scripts-list/tree/main/repo/js) 目录; +- 地图追踪脚本提交到 [repo/pathing](https://github.com/babalae/bettergi-scripts-list/tree/main/repo/pathing) 目录; +- 七圣召唤脚本提交到 [repo/tcg](https://github.com/babalae/bettergi-scripts-list/tree/main/repo/tcg) 目录。 + + +## 脚本提交规范 +为了保证脚本的规范性和可读性,方便用户清晰了解脚本的用途,制定以下脚本命名规则和脚本文件夹命名规则。 +### 地图追踪脚本 +#### 文件命名规范 +确保脚本文件在同一目录下按预期顺序排列,并一目了然地传达关键信息。地图追踪脚本命名需包含以下核心信息: +``` +编号-材料名称-区域(跨区域材料填写)-二级子区域-数量 +``` +- 编号 + - 两位数,如果单个资源脚本数量超过 `100` 可以考虑使用三位数编号或者使用字母加数字编号,如 A01 + - 编号的排序应遵循以下两种方式之一: + - 按传送点位顺序排序。相邻脚本之间优先保证传送的便捷性,这种编号方式考虑整体采集效率。 + - 按材料获取效率排序。优先选择资源分布密集或容易采集的点,效率高的路径放在靠前编号,这种编号方式考虑编号靠前脚本的采集效率。 +- 材料名称 + - 采集物(使用游戏内官方名称命名,如 `慕风蘑菇`,`劫波莲`,不应当使用 `绫华突破材料`等不清晰的名称命名) + - 掉落物(因掉落物名称与掉落物等级有关,因此不使用掉落物本身命名,而是使用怪物名称命名) +- 区域(指 `蒙德` `璃月` `稻妻` `须弥` `枫丹` `纳塔` `至冬`,仅当材料跨区域需标注) +- 二级子区域(细分地点,如 `绝云间`) +- 预期采集的数量 +示例: +``` +01-水晶矿-璃月-绝云间-6个 +02-水晶矿-璃月-荻花洲-8个 +``` +脚本名称仅限上述规定的编号、材料名称、区域、二级子区域,不应包含额外的描述或标点符号。如: +``` +01-水晶矿-璃月-快速路径-绝云间-6个 +``` +其他注意事项 +- 脚本文件名应当和 `json` 文件中的 `name` 字段相同。 +#### 文件夹命名规范 +目的:对脚本按材料分类管理,便于版本控制与团队协作。目录结构应当遵循以下原则: + +- 一级目录:以材料名称命名,须与文件命名中的材料名称一致。 +- 二级子目录(可选):可根据项目或作者划分,如有必要。 +示例目录结构如下: +``` +repo/pathing/ +├─ 水晶矿/ +│ ├─ 01-水晶矿-璃月-绝云间-6个 +│ └─ 02-水晶矿-璃月-荻花洲-8个 +└─ 风车菊/ + └─ 01-风车菊-蒙德-清泉镇-15个 +``` +如果脚本和原来的地图追踪脚本存在冲突 按照以下原则处理: +- 修复或补充:直接提交到原材料目录。 +- 路线冲突:新建同名目录并添加作者标识: + 1. 将旧脚本目录重命名为 `AA@旧作者名` + 2. 新脚本放入 `AA@你的名字` + 3. 例:原 `repo/pathing/AA` 重命名为 `repo/pathing/AA@oldauthor` 新目录 `repo/pathing/AA@yourname` + +其他注意事项 +- 目录名仅限材料官方名称,不添加版本号或其他标识。 +- 作者标识仅在冲突时追加,格式为“@作者名”,紧随原目录名。 + +### 其他 +因早期对脚本管理较为宽松,因此仓库有部分脚本并不符合命名规范,欢迎通过 PR 规范这些名称。 + ## 相关源码 脚本仓库页面的源码:[bettergi-scripts-web](https://github.com/huiyadanli/bettergi-scripts-web) diff --git a/archive/Auto TP 7Statue to SwitchParty/assets/Team.json b/archive/js/Auto TP 7Statue to SwitchParty/assets/Team.json similarity index 100% rename from archive/Auto TP 7Statue to SwitchParty/assets/Team.json rename to archive/js/Auto TP 7Statue to SwitchParty/assets/Team.json diff --git a/archive/Auto TP 7Statue to SwitchParty/main.js b/archive/js/Auto TP 7Statue to SwitchParty/main.js similarity index 100% rename from archive/Auto TP 7Statue to SwitchParty/main.js rename to archive/js/Auto TP 7Statue to SwitchParty/main.js diff --git a/archive/Auto TP 7Statue to SwitchParty/manifest.json b/archive/js/Auto TP 7Statue to SwitchParty/manifest.json similarity index 100% rename from archive/Auto TP 7Statue to SwitchParty/manifest.json rename to archive/js/Auto TP 7Statue to SwitchParty/manifest.json diff --git a/archive/Auto TP 7Statue to SwitchParty/readme.md b/archive/js/Auto TP 7Statue to SwitchParty/readme.md similarity index 100% rename from archive/Auto TP 7Statue to SwitchParty/readme.md rename to archive/js/Auto TP 7Statue to SwitchParty/readme.md diff --git a/archive/Auto TP 7Statue to SwitchParty/settings.json b/archive/js/Auto TP 7Statue to SwitchParty/settings.json similarity index 100% rename from archive/Auto TP 7Statue to SwitchParty/settings.json rename to archive/js/Auto TP 7Statue to SwitchParty/settings.json diff --git a/archive/AutoCatherine/assets/枫丹凯瑟琳.json b/archive/js/AutoCatherine/assets/枫丹凯瑟琳.json similarity index 100% rename from archive/AutoCatherine/assets/枫丹凯瑟琳.json rename to archive/js/AutoCatherine/assets/枫丹凯瑟琳.json diff --git a/archive/AutoCatherine/assets/璃月凯瑟琳.json b/archive/js/AutoCatherine/assets/璃月凯瑟琳.json similarity index 100% rename from archive/AutoCatherine/assets/璃月凯瑟琳.json rename to archive/js/AutoCatherine/assets/璃月凯瑟琳.json diff --git a/archive/AutoCatherine/assets/稻妻凯瑟琳.json b/archive/js/AutoCatherine/assets/稻妻凯瑟琳.json similarity index 100% rename from archive/AutoCatherine/assets/稻妻凯瑟琳.json rename to archive/js/AutoCatherine/assets/稻妻凯瑟琳.json diff --git a/archive/AutoCatherine/assets/纳塔凯瑟琳.json b/archive/js/AutoCatherine/assets/纳塔凯瑟琳.json similarity index 100% rename from archive/AutoCatherine/assets/纳塔凯瑟琳.json rename to archive/js/AutoCatherine/assets/纳塔凯瑟琳.json diff --git a/archive/AutoCatherine/assets/蒙德凯瑟琳.json b/archive/js/AutoCatherine/assets/蒙德凯瑟琳.json similarity index 100% rename from archive/AutoCatherine/assets/蒙德凯瑟琳.json rename to archive/js/AutoCatherine/assets/蒙德凯瑟琳.json diff --git a/archive/AutoCatherine/assets/须弥凯瑟琳.json b/archive/js/AutoCatherine/assets/须弥凯瑟琳.json similarity index 100% rename from archive/AutoCatherine/assets/须弥凯瑟琳.json rename to archive/js/AutoCatherine/assets/须弥凯瑟琳.json diff --git a/archive/AutoCatherine/main.js b/archive/js/AutoCatherine/main.js similarity index 100% rename from archive/AutoCatherine/main.js rename to archive/js/AutoCatherine/main.js diff --git a/archive/AutoCatherine/manifest.json b/archive/js/AutoCatherine/manifest.json similarity index 100% rename from archive/AutoCatherine/manifest.json rename to archive/js/AutoCatherine/manifest.json diff --git a/archive/AutoCatherine/settings.json b/archive/js/AutoCatherine/settings.json similarity index 100% rename from archive/AutoCatherine/settings.json rename to archive/js/AutoCatherine/settings.json diff --git a/archive/Back/main.js b/archive/js/Back/main.js similarity index 100% rename from archive/Back/main.js rename to archive/js/Back/main.js diff --git a/archive/Back/manifest.json b/archive/js/Back/manifest.json similarity index 100% rename from archive/Back/manifest.json rename to archive/js/Back/manifest.json diff --git a/archive/BeginFish/main.js b/archive/js/BeginFish/main.js similarity index 100% rename from archive/BeginFish/main.js rename to archive/js/BeginFish/main.js diff --git a/archive/BeginFish/manifest.json b/archive/js/BeginFish/manifest.json similarity index 100% rename from archive/BeginFish/manifest.json rename to archive/js/BeginFish/manifest.json diff --git a/archive/Daily Commission/main.js b/archive/js/Daily Commission/main.js similarity index 100% rename from archive/Daily Commission/main.js rename to archive/js/Daily Commission/main.js diff --git a/archive/Daily Commission/manifest.json b/archive/js/Daily Commission/manifest.json similarity index 100% rename from archive/Daily Commission/manifest.json rename to archive/js/Daily Commission/manifest.json diff --git a/repo/js/Decompose artifact/main.js b/archive/js/Decompose artifact/main.js similarity index 95% rename from repo/js/Decompose artifact/main.js rename to archive/js/Decompose artifact/main.js index 301951c9..17043d8d 100644 --- a/repo/js/Decompose artifact/main.js +++ b/archive/js/Decompose artifact/main.js @@ -1,32 +1,32 @@ -(async function () { - setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI - keyPress("B"); - await sleep(3000); - click(670,40); - await sleep(2000); - click(660,1010); - await sleep(2000); - click(300,1020); - await sleep(1000); - click(300,380); - await sleep(400); - click(300,300); - await sleep(400); - click(300,220); - await sleep(400); - click(300,150); - await sleep(800); - click(340,1010); - await sleep(800); - click(1740,1020); - await sleep(800); - click(1180,750); - await sleep(800); - click(950,800); - await sleep(800); - keyPress("Escape"); - await sleep(1000); - keyPress("Escape"); - - log.info("已分解狗粮"); +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + keyPress("B"); + await sleep(3000); + click(670,40); + await sleep(2000); + click(660,1010); + await sleep(2000); + click(300,1020); + await sleep(1000); + click(300,380); + await sleep(400); + click(300,300); + await sleep(400); + click(300,220); + await sleep(400); + click(300,150); + await sleep(800); + click(340,1010); + await sleep(800); + click(1740,1020); + await sleep(800); + click(1180,750); + await sleep(800); + click(950,800); + await sleep(800); + keyPress("Escape"); + await sleep(1000); + keyPress("Escape"); + + log.info("已分解狗粮"); })(); \ No newline at end of file diff --git a/repo/js/Decompose artifact/manifest.json b/archive/js/Decompose artifact/manifest.json similarity index 94% rename from repo/js/Decompose artifact/manifest.json rename to archive/js/Decompose artifact/manifest.json index 02e094a7..31c425a8 100644 --- a/repo/js/Decompose artifact/manifest.json +++ b/archive/js/Decompose artifact/manifest.json @@ -1,12 +1,12 @@ -{ - "manifest_version": 1, - "name": "分解狗粮", - "version": "1.0", - "description": "用于分解狗粮", - "authors": [ - { - "name": "鹤望兰", - } - ], - "main": "main.js", +{ + "manifest_version": 1, + "name": "分解狗粮", + "version": "1.0", + "description": "用于分解狗粮", + "authors": [ + { + "name": "鹤望兰", + } + ], + "main": "main.js", } \ No newline at end of file diff --git a/repo/js/Destruction artifact/main.js b/archive/js/Destruction artifact/main.js similarity index 95% rename from repo/js/Destruction artifact/main.js rename to archive/js/Destruction artifact/main.js index b7857cf8..f331ad65 100644 --- a/repo/js/Destruction artifact/main.js +++ b/archive/js/Destruction artifact/main.js @@ -1,30 +1,30 @@ -(async function () { - setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI - keyPress("B"); - await sleep(3000); - click(670,40); - await sleep(2000); - click(80,1010); - await sleep(2000); - click(170,1020); - await sleep(1000); - click(300,380); - await sleep(400); - click(300,300); - await sleep(400); - click(300,220); - await sleep(400); - click(300,150); - await sleep(800); - click(340,1010); - await sleep(800); - click(1740,1020); - await sleep(3000); - click(1180,830); - await sleep(800); - click(950,800); - await sleep(1000); - keyPress("Escape"); - - log.info("已摧毁狗粮"); +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + keyPress("B"); + await sleep(3000); + click(670,40); + await sleep(2000); + click(80,1010); + await sleep(2000); + click(170,1020); + await sleep(1000); + click(300,380); + await sleep(400); + click(300,300); + await sleep(400); + click(300,220); + await sleep(400); + click(300,150); + await sleep(800); + click(340,1010); + await sleep(800); + click(1740,1020); + await sleep(3000); + click(1180,830); + await sleep(800); + click(950,800); + await sleep(1000); + keyPress("Escape"); + + log.info("已摧毁狗粮"); })(); \ No newline at end of file diff --git a/repo/js/Destruction artifact/manifest.json b/archive/js/Destruction artifact/manifest.json similarity index 94% rename from repo/js/Destruction artifact/manifest.json rename to archive/js/Destruction artifact/manifest.json index ef8a3f59..829ec1cb 100644 --- a/repo/js/Destruction artifact/manifest.json +++ b/archive/js/Destruction artifact/manifest.json @@ -1,12 +1,12 @@ -{ - "manifest_version": 1, - "name": "摧毁狗粮", - "version": "1.0", - "description": "用于摧毁狗粮获取摩拉", - "authors": [ - { - "name": "鹤望兰", - } - ], - "main": "main.js", -} +{ + "manifest_version": 1, + "name": "摧毁狗粮", + "version": "1.0", + "description": "用于摧毁狗粮获取摩拉", + "authors": [ + { + "name": "鹤望兰", + } + ], + "main": "main.js", +} diff --git a/archive/EncounterPoints/main.js b/archive/js/EncounterPoints/main.js similarity index 100% rename from archive/EncounterPoints/main.js rename to archive/js/EncounterPoints/main.js diff --git a/archive/EncounterPoints/manifest.json b/archive/js/EncounterPoints/manifest.json similarity index 100% rename from archive/EncounterPoints/manifest.json rename to archive/js/EncounterPoints/manifest.json diff --git a/archive/EndFish/main.js b/archive/js/EndFish/main.js similarity index 100% rename from archive/EndFish/main.js rename to archive/js/EndFish/main.js diff --git a/archive/EndFish/manifest.json b/archive/js/EndFish/manifest.json similarity index 100% rename from archive/EndFish/manifest.json rename to archive/js/EndFish/manifest.json diff --git a/archive/Expedition/main.js b/archive/js/Expedition/main.js similarity index 100% rename from archive/Expedition/main.js rename to archive/js/Expedition/main.js diff --git a/archive/Expedition/manifest.json b/archive/js/Expedition/manifest.json similarity index 100% rename from archive/Expedition/manifest.json rename to archive/js/Expedition/manifest.json diff --git a/archive/JustAwait/main.js b/archive/js/JustAwait/main.js similarity index 100% rename from archive/JustAwait/main.js rename to archive/js/JustAwait/main.js diff --git a/archive/JustAwait/manifest.json b/archive/js/JustAwait/manifest.json similarity index 100% rename from archive/JustAwait/manifest.json rename to archive/js/JustAwait/manifest.json diff --git a/archive/JustAwait/settings.json b/archive/js/JustAwait/settings.json similarity index 100% rename from archive/JustAwait/settings.json rename to archive/js/JustAwait/settings.json diff --git a/archive/JustMove/main.js b/archive/js/JustMove/main.js similarity index 100% rename from archive/JustMove/main.js rename to archive/js/JustMove/main.js diff --git a/archive/JustMove/manifest.json b/archive/js/JustMove/manifest.json similarity index 100% rename from archive/JustMove/manifest.json rename to archive/js/JustMove/manifest.json diff --git a/archive/JustMove/settings.json b/archive/js/JustMove/settings.json similarity index 100% rename from archive/JustMove/settings.json rename to archive/js/JustMove/settings.json diff --git a/archive/JustTp/main.js b/archive/js/JustTp/main.js similarity index 100% rename from archive/JustTp/main.js rename to archive/js/JustTp/main.js diff --git a/archive/JustTp/manifest.json b/archive/js/JustTp/manifest.json similarity index 100% rename from archive/JustTp/manifest.json rename to archive/js/JustTp/manifest.json diff --git a/archive/JustTp/settings.json b/archive/js/JustTp/settings.json similarity index 100% rename from archive/JustTp/settings.json rename to archive/js/JustTp/settings.json diff --git a/archive/LastParty/main.js b/archive/js/LastParty/main.js similarity index 100% rename from archive/LastParty/main.js rename to archive/js/LastParty/main.js diff --git a/archive/LastParty/manifest.json b/archive/js/LastParty/manifest.json similarity index 100% rename from archive/LastParty/manifest.json rename to archive/js/LastParty/manifest.json diff --git a/repo/js/Login/main.js b/archive/js/Login/main.js similarity index 96% rename from repo/js/Login/main.js rename to archive/js/Login/main.js index 08d2856b..4ff42f7a 100644 --- a/repo/js/Login/main.js +++ b/archive/js/Login/main.js @@ -1,109 +1,109 @@ -(async function () { - //特殊字符键盘映射集 - const map = { - '(': '9', - ')': '0', - '`': 'VK_OEM_3', - '!': '1', - '@': '2', - '#': '3', - '$': '4', - '%': '5', - '^': '6', - '&': '7', - '*': '8', - '_': 'VK_SUBTRACT', - '-': 'VK_SUBTRACT', - '+': 'VK_ADD', - '=': 'VK_ADD', - '|': 'VK_SEPARATOR', - '{': 'VK_OEM_4', - '}': 'VK_OEM_6', - '[': 'VK_OEM_4', - ']': 'VK_OEM_6', - ':': 'VK_OEM_1', - ';': 'VK_OEM_1', - '\'': 'VK_OEM_7', - '"': 'VK_OEM_7', - '<': 'VK_OEM_COMMA', - '>': 'VK_OEM_PERIOD', - ',': 'VK_OEM_COMMA', - '.': 'VK_OEM_PERIOD', - '?': 'VK_OEM_2', - }; - function replaceUsingMap(input) { - return map[input] || input; // 如果找到映射,返回对应的值;否则返回原值 - } - setGameMetrics(1920, 1080, 2); - await sleep(3000); - //同意用户协议 - click(698, 610); - await sleep(1000); - //点击用户名输入框 - click(800, 400); - await sleep(1000); - //输入用户名 - log.info("输入用户名"); - let username = settings.username; - let usernameList = username.split(''); - usernameList.forEach(element => { - charCode = element.charCodeAt(0); - let arr = [40,41,33,64,35,36,37,94,38,42,95,43,124,123,125,58,34,60,62,63]; - if(charCode > 64 && charCode < 91 || arr.includes(charCode)==1){ - element=replaceUsingMap(element); - keyDown("SHIFT"); - keyPress(element); - keyUp("SHIFT"); - }else{ - element=replaceUsingMap(element); - keyPress(element); - } - }); - log.info("用户名={xx}",username) - await sleep(3000); - //点击用户名输入框 - click(800, 500); - await sleep(1000); - //输入密码 - log.info("输入密码") - let password = settings.password; - let passwordList = password.split(''); - passwordList.forEach(element => { - charCode = element.charCodeAt(0); - let arr = [40,41,33,64,35,36,37,94,38,42,95,43,124,123,125,58,34,60,62,63]; - if(charCode > 64 && charCode < 91 || arr.includes(charCode)==1){ - element=replaceUsingMap(element); - keyDown("SHIFT"); - keyPress(element); - keyUp("SHIFT"); - }else{ - element=replaceUsingMap(element); - keyPress(element); - } - }); - log.info("密码={xx}",password); - await sleep(1000); - //登录 - keyPress("RETURN"); - await sleep(10000); - //进入世界 - click(950, 1000); - log.info("进入世界"); - await sleep(10000); - //进入世界2 - click(950, 1000); - log.info("进入世界2"); - await sleep(10000); - //点击领月卡 - click(950, 1000); - log.info("点击领月卡"); - await sleep(1000); - //点击领月卡2 - click(950, 1000); - log.info("点击领月卡2"); - await sleep(1000); - //点击领月卡2 - click(950, 1000); - log.info("点击领月卡3"); - await sleep(1000); +(async function () { + //特殊字符键盘映射集 + const map = { + '(': '9', + ')': '0', + '`': 'VK_OEM_3', + '!': '1', + '@': '2', + '#': '3', + '$': '4', + '%': '5', + '^': '6', + '&': '7', + '*': '8', + '_': 'VK_SUBTRACT', + '-': 'VK_SUBTRACT', + '+': 'VK_ADD', + '=': 'VK_ADD', + '|': 'VK_SEPARATOR', + '{': 'VK_OEM_4', + '}': 'VK_OEM_6', + '[': 'VK_OEM_4', + ']': 'VK_OEM_6', + ':': 'VK_OEM_1', + ';': 'VK_OEM_1', + '\'': 'VK_OEM_7', + '"': 'VK_OEM_7', + '<': 'VK_OEM_COMMA', + '>': 'VK_OEM_PERIOD', + ',': 'VK_OEM_COMMA', + '.': 'VK_OEM_PERIOD', + '?': 'VK_OEM_2', + }; + function replaceUsingMap(input) { + return map[input] || input; // 如果找到映射,返回对应的值;否则返回原值 + } + setGameMetrics(1920, 1080, 2); + await sleep(3000); + //同意用户协议 + click(698, 610); + await sleep(1000); + //点击用户名输入框 + click(800, 400); + await sleep(1000); + //输入用户名 + log.info("输入用户名"); + let username = settings.username; + let usernameList = username.split(''); + usernameList.forEach(element => { + charCode = element.charCodeAt(0); + let arr = [40,41,33,64,35,36,37,94,38,42,95,43,124,123,125,58,34,60,62,63]; + if(charCode > 64 && charCode < 91 || arr.includes(charCode)==1){ + element=replaceUsingMap(element); + keyDown("SHIFT"); + keyPress(element); + keyUp("SHIFT"); + }else{ + element=replaceUsingMap(element); + keyPress(element); + } + }); + log.info("用户名={xx}",username) + await sleep(3000); + //点击用户名输入框 + click(800, 500); + await sleep(1000); + //输入密码 + log.info("输入密码") + let password = settings.password; + let passwordList = password.split(''); + passwordList.forEach(element => { + charCode = element.charCodeAt(0); + let arr = [40,41,33,64,35,36,37,94,38,42,95,43,124,123,125,58,34,60,62,63]; + if(charCode > 64 && charCode < 91 || arr.includes(charCode)==1){ + element=replaceUsingMap(element); + keyDown("SHIFT"); + keyPress(element); + keyUp("SHIFT"); + }else{ + element=replaceUsingMap(element); + keyPress(element); + } + }); + log.info("密码={xx}",password); + await sleep(1000); + //登录 + keyPress("RETURN"); + await sleep(10000); + //进入世界 + click(950, 1000); + log.info("进入世界"); + await sleep(10000); + //进入世界2 + click(950, 1000); + log.info("进入世界2"); + await sleep(10000); + //点击领月卡 + click(950, 1000); + log.info("点击领月卡"); + await sleep(1000); + //点击领月卡2 + click(950, 1000); + log.info("点击领月卡2"); + await sleep(1000); + //点击领月卡2 + click(950, 1000); + log.info("点击领月卡3"); + await sleep(1000); })(); \ No newline at end of file diff --git a/repo/js/Login/manifest.json b/archive/js/Login/manifest.json similarity index 95% rename from repo/js/Login/manifest.json rename to archive/js/Login/manifest.json index 13665b8e..215e59b8 100644 --- a/repo/js/Login/manifest.json +++ b/archive/js/Login/manifest.json @@ -1,13 +1,13 @@ -{ - "manifest_version": 1, - "name": "登录游戏", - "version": "1.0", - "description": "输入账号和密码并进入游戏", - "authors": [ - { - "name": "愚溪", - } - ], - "settings_ui": "settings.json", - "main": "main.js" +{ + "manifest_version": 1, + "name": "登录游戏", + "version": "1.0", + "description": "输入账号和密码并进入游戏", + "authors": [ + { + "name": "愚溪", + } + ], + "settings_ui": "settings.json", + "main": "main.js" } \ No newline at end of file diff --git a/repo/js/Login/settings.json b/archive/js/Login/settings.json similarity index 93% rename from repo/js/Login/settings.json rename to archive/js/Login/settings.json index 18f0822e..79a4961c 100644 --- a/repo/js/Login/settings.json +++ b/archive/js/Login/settings.json @@ -1,12 +1,12 @@ -[ - { - "name": "username", - "type": "input-text", - "label": "账号" - }, - { - "name": "password", - "type": "input-text", - "label": "密码" - } -] +[ + { + "name": "username", + "type": "input-text", + "label": "账号" + }, + { + "name": "password", + "type": "input-text", + "label": "密码" + } +] diff --git a/repo/js/Logout/main.js b/archive/js/Logout/main.js similarity index 96% rename from repo/js/Logout/main.js rename to archive/js/Logout/main.js index 39e41483..f64d2523 100644 --- a/repo/js/Logout/main.js +++ b/archive/js/Logout/main.js @@ -1,18 +1,18 @@ -(async function () { - setGameMetrics(1920, 1080, 2); - await sleep(1000); - keyPress("ESCAPE") - await sleep(1000); - click(50, 1030); - log.info("退出"); - await sleep(1000); - click(1000, 750); - log.info("确认"); - await sleep(20000); - click(1800, 1000); - log.info("切换账号"); - await sleep(1000); - click(1000, 550); - log.info("确认"); - await sleep(4000); +(async function () { + setGameMetrics(1920, 1080, 2); + await sleep(1000); + keyPress("ESCAPE") + await sleep(1000); + click(50, 1030); + log.info("退出"); + await sleep(1000); + click(1000, 750); + log.info("确认"); + await sleep(20000); + click(1800, 1000); + log.info("切换账号"); + await sleep(1000); + click(1000, 550); + log.info("确认"); + await sleep(4000); })(); \ No newline at end of file diff --git a/repo/js/Logout/manifest.json b/archive/js/Logout/manifest.json similarity index 94% rename from repo/js/Logout/manifest.json rename to archive/js/Logout/manifest.json index 3ca1e23e..a2d07ea4 100644 --- a/repo/js/Logout/manifest.json +++ b/archive/js/Logout/manifest.json @@ -1,12 +1,12 @@ -{ - "manifest_version": 1, - "name": "退出并重登", - "version": "1.0", - "description": "退出游戏并退出账号", - "authors": [ - { - "name": "愚溪", - } - ], - "main": "main.js" +{ + "manifest_version": 1, + "name": "退出并重登", + "version": "1.0", + "description": "退出游戏并退出账号", + "authors": [ + { + "name": "愚溪", + } + ], + "main": "main.js" } \ No newline at end of file diff --git a/archive/MeetKatheryne/main.js b/archive/js/MeetKatheryne/main.js similarity index 100% rename from archive/MeetKatheryne/main.js rename to archive/js/MeetKatheryne/main.js diff --git a/archive/MeetKatheryne/manifest.json b/archive/js/MeetKatheryne/manifest.json similarity index 100% rename from archive/MeetKatheryne/manifest.json rename to archive/js/MeetKatheryne/manifest.json diff --git a/archive/NextParty/main.js b/archive/js/NextParty/main.js similarity index 100% rename from archive/NextParty/main.js rename to archive/js/NextParty/main.js diff --git a/archive/NextParty/manifest.json b/archive/js/NextParty/manifest.json similarity index 100% rename from archive/NextParty/manifest.json rename to archive/js/NextParty/manifest.json diff --git a/repo/js/SalvageArtifacts/main.js b/archive/js/SalvageArtifacts/main.js similarity index 95% rename from repo/js/SalvageArtifacts/main.js rename to archive/js/SalvageArtifacts/main.js index 148f11a8..1d6708a7 100644 --- a/repo/js/SalvageArtifacts/main.js +++ b/archive/js/SalvageArtifacts/main.js @@ -1,33 +1,33 @@ -(async function () { - setGameMetrics(3840, 2160, 2); - keyPress("b"); - await sleep(1500); - click(1350, 90); - await sleep(1240); - click(1310, 2030); - await sleep(1000); - click(580, 2030); - await sleep(1240); - click(250, 300); - await sleep(500); - click(250, 450); - await sleep(500); - click(250, 600); - await sleep(500); - click(250, 750); - await sleep(500); - click(700, 2030); - await sleep(1240); - click(3500, 2030); - await sleep(1240); - click(2300, 1500); - await sleep(1000); - keyPress("Escape"); - await sleep(800); - keyPress("Escape"); - await sleep(1000); - keyPress("Escape"); - await sleep(1000); - - log.info("已分解狗粮"); +(async function () { + setGameMetrics(3840, 2160, 2); + keyPress("b"); + await sleep(1500); + click(1350, 90); + await sleep(1240); + click(1310, 2030); + await sleep(1000); + click(580, 2030); + await sleep(1240); + click(250, 300); + await sleep(500); + click(250, 450); + await sleep(500); + click(250, 600); + await sleep(500); + click(250, 750); + await sleep(500); + click(700, 2030); + await sleep(1240); + click(3500, 2030); + await sleep(1240); + click(2300, 1500); + await sleep(1000); + keyPress("Escape"); + await sleep(800); + keyPress("Escape"); + await sleep(1000); + keyPress("Escape"); + await sleep(1000); + + log.info("已分解狗粮"); })(); \ No newline at end of file diff --git a/repo/js/SalvageArtifacts/manifest.json b/archive/js/SalvageArtifacts/manifest.json similarity index 94% rename from repo/js/SalvageArtifacts/manifest.json rename to archive/js/SalvageArtifacts/manifest.json index a0fe77d2..f13c85ec 100644 --- a/repo/js/SalvageArtifacts/manifest.json +++ b/archive/js/SalvageArtifacts/manifest.json @@ -1,12 +1,12 @@ -{ - "manifest_version": 1, - "name": "分解狗粮", - "version": "1.0", - "description": "用于分解狗粮", - "authors": [ - { - "name": "HZYgrandma", - } - ], - "main": "main.js", +{ + "manifest_version": 1, + "name": "分解狗粮", + "version": "1.0", + "description": "用于分解狗粮", + "authors": [ + { + "name": "HZYgrandma", + } + ], + "main": "main.js", } \ No newline at end of file diff --git a/archive/SetMapZoom/main.js b/archive/js/SetMapZoom/main.js similarity index 100% rename from archive/SetMapZoom/main.js rename to archive/js/SetMapZoom/main.js diff --git a/archive/SetMapZoom/manifest.json b/archive/js/SetMapZoom/manifest.json similarity index 100% rename from archive/SetMapZoom/manifest.json rename to archive/js/SetMapZoom/manifest.json diff --git a/archive/SetMapZoom/settings.json b/archive/js/SetMapZoom/settings.json similarity index 100% rename from archive/SetMapZoom/settings.json rename to archive/js/SetMapZoom/settings.json diff --git a/archive/Switch roles/main.js b/archive/js/Switch roles/main.js similarity index 100% rename from archive/Switch roles/main.js rename to archive/js/Switch roles/main.js diff --git a/archive/Switch roles/manifest.json b/archive/js/Switch roles/manifest.json similarity index 100% rename from archive/Switch roles/manifest.json rename to archive/js/Switch roles/manifest.json diff --git a/archive/Switch roles/settings.json b/archive/js/Switch roles/settings.json similarity index 100% rename from archive/Switch roles/settings.json rename to archive/js/Switch roles/settings.json diff --git a/archive/Switch teams/assets/Team.json b/archive/js/Switch teams/assets/Team.json similarity index 100% rename from archive/Switch teams/assets/Team.json rename to archive/js/Switch teams/assets/Team.json diff --git a/archive/Switch teams/main.js b/archive/js/Switch teams/main.js similarity index 100% rename from archive/Switch teams/main.js rename to archive/js/Switch teams/main.js diff --git a/archive/Switch teams/manifest.json b/archive/js/Switch teams/manifest.json similarity index 100% rename from archive/Switch teams/manifest.json rename to archive/js/Switch teams/manifest.json diff --git a/archive/Switch teams/settings.json b/archive/js/Switch teams/settings.json similarity index 100% rename from archive/Switch teams/settings.json rename to archive/js/Switch teams/settings.json diff --git a/archive/Wait 10s/main.js b/archive/js/Wait 10s/main.js similarity index 100% rename from archive/Wait 10s/main.js rename to archive/js/Wait 10s/main.js diff --git a/archive/Wait 10s/manifest.json b/archive/js/Wait 10s/manifest.json similarity index 100% rename from archive/Wait 10s/manifest.json rename to archive/js/Wait 10s/manifest.json diff --git a/archive/切换1号角色/main.js b/archive/js/切换1号角色/main.js similarity index 100% rename from archive/切换1号角色/main.js rename to archive/js/切换1号角色/main.js diff --git a/archive/切换1号角色/manifest.json b/archive/js/切换1号角色/manifest.json similarity index 100% rename from archive/切换1号角色/manifest.json rename to archive/js/切换1号角色/manifest.json diff --git a/archive/切换2号角色/main.js b/archive/js/切换2号角色/main.js similarity index 100% rename from archive/切换2号角色/main.js rename to archive/js/切换2号角色/main.js diff --git a/archive/切换2号角色/manifest.json b/archive/js/切换2号角色/manifest.json similarity index 100% rename from archive/切换2号角色/manifest.json rename to archive/js/切换2号角色/manifest.json diff --git a/archive/切换3号角色/main.js b/archive/js/切换3号角色/main.js similarity index 100% rename from archive/切换3号角色/main.js rename to archive/js/切换3号角色/main.js diff --git a/archive/切换3号角色/manifest.json b/archive/js/切换3号角色/manifest.json similarity index 100% rename from archive/切换3号角色/manifest.json rename to archive/js/切换3号角色/manifest.json diff --git a/archive/切换4号角色/main.js b/archive/js/切换4号角色/main.js similarity index 100% rename from archive/切换4号角色/main.js rename to archive/js/切换4号角色/main.js diff --git a/archive/切换4号角色/manifest.json b/archive/js/切换4号角色/manifest.json similarity index 100% rename from archive/切换4号角色/manifest.json rename to archive/js/切换4号角色/manifest.json diff --git a/archive/切换武器 自定义/assets/pageScroll.json b/archive/js/切换武器 自定义/assets/pageScroll.json similarity index 100% rename from archive/切换武器 自定义/assets/pageScroll.json rename to archive/js/切换武器 自定义/assets/pageScroll.json diff --git a/archive/切换武器 自定义/assets/pageScroll2.json b/archive/js/切换武器 自定义/assets/pageScroll2.json similarity index 100% rename from archive/切换武器 自定义/assets/pageScroll2.json rename to archive/js/切换武器 自定义/assets/pageScroll2.json diff --git a/archive/切换武器 自定义/main.js b/archive/js/切换武器 自定义/main.js similarity index 100% rename from archive/切换武器 自定义/main.js rename to archive/js/切换武器 自定义/main.js diff --git a/archive/切换武器 自定义/manifest.json b/archive/js/切换武器 自定义/manifest.json similarity index 100% rename from archive/切换武器 自定义/manifest.json rename to archive/js/切换武器 自定义/manifest.json diff --git a/archive/切换武器 自定义/settings.json b/archive/js/切换武器 自定义/settings.json similarity index 100% rename from archive/切换武器 自定义/settings.json rename to archive/js/切换武器 自定义/settings.json diff --git a/archive/向前行走5秒/main.js b/archive/js/向前行走5秒/main.js similarity index 100% rename from archive/向前行走5秒/main.js rename to archive/js/向前行走5秒/main.js diff --git a/archive/向前行走5秒/manifest.json b/archive/js/向前行走5秒/manifest.json similarity index 100% rename from archive/向前行走5秒/manifest.json rename to archive/js/向前行走5秒/manifest.json diff --git a/archive/向右行走5秒/main.js b/archive/js/向右行走5秒/main.js similarity index 100% rename from archive/向右行走5秒/main.js rename to archive/js/向右行走5秒/main.js diff --git a/archive/向右行走5秒/manifest.json b/archive/js/向右行走5秒/manifest.json similarity index 100% rename from archive/向右行走5秒/manifest.json rename to archive/js/向右行走5秒/manifest.json diff --git a/archive/向右行走Xms/main.js b/archive/js/向右行走Xms/main.js similarity index 100% rename from archive/向右行走Xms/main.js rename to archive/js/向右行走Xms/main.js diff --git a/archive/向右行走Xms/manifest.json b/archive/js/向右行走Xms/manifest.json similarity index 100% rename from archive/向右行走Xms/manifest.json rename to archive/js/向右行走Xms/manifest.json diff --git a/archive/向右行走Xms/settings.json b/archive/js/向右行走Xms/settings.json similarity index 100% rename from archive/向右行走Xms/settings.json rename to archive/js/向右行走Xms/settings.json diff --git a/archive/向后行走5秒/main.js b/archive/js/向后行走5秒/main.js similarity index 100% rename from archive/向后行走5秒/main.js rename to archive/js/向后行走5秒/main.js diff --git a/archive/向后行走5秒/manifest.json b/archive/js/向后行走5秒/manifest.json similarity index 100% rename from archive/向后行走5秒/manifest.json rename to archive/js/向后行走5秒/manifest.json diff --git a/archive/向左行走5秒/main.js b/archive/js/向左行走5秒/main.js similarity index 100% rename from archive/向左行走5秒/main.js rename to archive/js/向左行走5秒/main.js diff --git a/archive/向左行走5秒/manifest.json b/archive/js/向左行走5秒/manifest.json similarity index 100% rename from archive/向左行走5秒/manifest.json rename to archive/js/向左行走5秒/manifest.json diff --git a/archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/assets/游逸旅闻-凝光1-璃月群玉阁内.json b/archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/assets/游逸旅闻-凝光1-璃月群玉阁内.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/assets/游逸旅闻-凝光1-璃月群玉阁内.json rename to archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/assets/游逸旅闻-凝光1-璃月群玉阁内.json diff --git a/archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/assets/进入璃月群玉阁.json b/archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/assets/进入璃月群玉阁.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/assets/进入璃月群玉阁.json rename to archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/assets/进入璃月群玉阁.json diff --git a/archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/main.js b/archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/main.js similarity index 100% rename from archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/main.js rename to archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/main.js diff --git a/archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/manifest.json b/archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/manifest.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/manifest.json rename to archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/manifest.json diff --git a/archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/settings.json b/archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/settings.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-凝光1-群玉阁/settings.json rename to archive/js/游逸旅闻/游逸旅闻-凝光1-群玉阁/settings.json diff --git a/archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/assets/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠内.json b/archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/assets/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠内.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/assets/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠内.json rename to archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/assets/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠内.json diff --git a/archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/assets/进入蒙德天使的馈赠.json b/archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/assets/进入蒙德天使的馈赠.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/assets/进入蒙德天使的馈赠.json rename to archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/assets/进入蒙德天使的馈赠.json diff --git a/archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/main.js b/archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/main.js similarity index 100% rename from archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/main.js rename to archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/main.js diff --git a/archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/manifest.json b/archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/manifest.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/manifest.json rename to archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/manifest.json diff --git a/archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/settings.json b/archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/settings.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/settings.json rename to archive/js/游逸旅闻/游逸旅闻-罗莎莉亚2-蒙德天使的馈赠/settings.json diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/assets/游逸旅闻-菲谢尔1&3-蒙德西风骑士团内.json b/archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/assets/游逸旅闻-菲谢尔1&3-蒙德西风骑士团内.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/assets/游逸旅闻-菲谢尔1&3-蒙德西风骑士团内.json rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/assets/游逸旅闻-菲谢尔1&3-蒙德西风骑士团内.json diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/assets/进入蒙德西风骑士团.json b/archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/assets/进入蒙德西风骑士团.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/assets/进入蒙德西风骑士团.json rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/assets/进入蒙德西风骑士团.json diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/main.js b/archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/main.js similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/main.js rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/main.js diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/manifest.json b/archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/manifest.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/manifest.json rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/manifest.json diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/settings.json b/archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/settings.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/settings.json rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔1&3-蒙德西风骑士团/settings.json diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/assets/游逸旅闻-菲谢尔2-蒙德西风骑士团内.json b/archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/assets/游逸旅闻-菲谢尔2-蒙德西风骑士团内.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/assets/游逸旅闻-菲谢尔2-蒙德西风骑士团内.json rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/assets/游逸旅闻-菲谢尔2-蒙德西风骑士团内.json diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/assets/进入蒙德西风骑士团.json b/archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/assets/进入蒙德西风骑士团.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/assets/进入蒙德西风骑士团.json rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/assets/进入蒙德西风骑士团.json diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/main.js b/archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/main.js similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/main.js rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/main.js diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/manifest.json b/archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/manifest.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/manifest.json rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/manifest.json diff --git a/archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/settings.json b/archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/settings.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/settings.json rename to archive/js/游逸旅闻/游逸旅闻-菲谢尔2-蒙德西风骑士团/settings.json diff --git a/archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/assets/游逸旅闻-迪卢克1-蒙德晨曦酒庄内.json b/archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/assets/游逸旅闻-迪卢克1-蒙德晨曦酒庄内.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/assets/游逸旅闻-迪卢克1-蒙德晨曦酒庄内.json rename to archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/assets/游逸旅闻-迪卢克1-蒙德晨曦酒庄内.json diff --git a/archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/assets/进入蒙德晨曦酒庄.json b/archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/assets/进入蒙德晨曦酒庄.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/assets/进入蒙德晨曦酒庄.json rename to archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/assets/进入蒙德晨曦酒庄.json diff --git a/archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/main.js b/archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/main.js similarity index 100% rename from archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/main.js rename to archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/main.js diff --git a/archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/manifest.json b/archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/manifest.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/manifest.json rename to archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/manifest.json diff --git a/archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/settings.json b/archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/settings.json similarity index 100% rename from archive/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/settings.json rename to archive/js/游逸旅闻/游逸旅闻-迪卢克1-蒙德晨曦酒庄/settings.json diff --git a/archive/自动杂货商购买/assets/咖啡厅露泽店主阿鲁埃.json b/archive/js/自动杂货商购买/assets/咖啡厅露泽店主阿鲁埃.json similarity index 100% rename from archive/自动杂货商购买/assets/咖啡厅露泽店主阿鲁埃.json rename to archive/js/自动杂货商购买/assets/咖啡厅露泽店主阿鲁埃.json diff --git a/archive/自动杂货商购买/assets/枫丹杂货商布希柯.json b/archive/js/自动杂货商购买/assets/枫丹杂货商布希柯.json similarity index 100% rename from archive/自动杂货商购买/assets/枫丹杂货商布希柯.json rename to archive/js/自动杂货商购买/assets/枫丹杂货商布希柯.json diff --git a/archive/自动杂货商购买/assets/璃月杂货商东升.json b/archive/js/自动杂货商购买/assets/璃月杂货商东升.json similarity index 100% rename from archive/自动杂货商购买/assets/璃月杂货商东升.json rename to archive/js/自动杂货商购买/assets/璃月杂货商东升.json diff --git a/archive/自动杂货商购买/assets/稻妻九十九物店主.json b/archive/js/自动杂货商购买/assets/稻妻九十九物店主.json similarity index 100% rename from archive/自动杂货商购买/assets/稻妻九十九物店主.json rename to archive/js/自动杂货商购买/assets/稻妻九十九物店主.json diff --git a/archive/自动杂货商购买/assets/稻妻志村屋店主.json b/archive/js/自动杂货商购买/assets/稻妻志村屋店主.json similarity index 100% rename from archive/自动杂货商购买/assets/稻妻志村屋店主.json rename to archive/js/自动杂货商购买/assets/稻妻志村屋店主.json diff --git a/archive/自动杂货商购买/assets/纳塔杂货商布纳马.json b/archive/js/自动杂货商购买/assets/纳塔杂货商布纳马.json similarity index 100% rename from archive/自动杂货商购买/assets/纳塔杂货商布纳马.json rename to archive/js/自动杂货商购买/assets/纳塔杂货商布纳马.json diff --git a/archive/自动杂货商购买/main.js b/archive/js/自动杂货商购买/main.js similarity index 100% rename from archive/自动杂货商购买/main.js rename to archive/js/自动杂货商购买/main.js diff --git a/archive/自动杂货商购买/manifest.json b/archive/js/自动杂货商购买/manifest.json similarity index 100% rename from archive/自动杂货商购买/manifest.json rename to archive/js/自动杂货商购买/manifest.json diff --git a/archive/自动杂货商购买/settings.json b/archive/js/自动杂货商购买/settings.json similarity index 100% rename from archive/自动杂货商购买/settings.json rename to archive/js/自动杂货商购买/settings.json diff --git a/archive/pathing/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹.json b/archive/pathing/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹.json new file mode 100644 index 00000000..8ce7ec30 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹.json @@ -0,0 +1,99 @@ +{ + "info": { + "name": "000如果执行了这条路径说明你启用了错误的文件夹请阅读README", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/25012璃月遁玉陵.json b/archive/pathing/9_0_低效路线(不跑)/25012璃月遁玉陵.json new file mode 100644 index 00000000..85ee66c0 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/25012璃月遁玉陵.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "25012璃月遁玉陵", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/3103稻妻绀田村南3.json b/archive/pathing/9_0_低效路线(不跑)/3103稻妻绀田村南3.json new file mode 100644 index 00000000..0bddffc0 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/3103稻妻绀田村南3.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "3103稻妻绀田村南3", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/3203稻妻踏鞴神像.json b/archive/pathing/9_0_低效路线(不跑)/3203稻妻踏鞴神像.json new file mode 100644 index 00000000..0406c6ab --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/3203稻妻踏鞴神像.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "3203稻妻踏鞴神像", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3233.25390625, + "y": -3534.1357421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -3230.505859375, + "y": -3530.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -3213.2587890625, + "y": -3512.5244140625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "500", + "type": "path" + }, + { + "id": 4, + "x": -3194.0654296875, + "y": -3511.3623046875, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -3194.0654296875, + "y": -3511.3623046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -3152.5908203125, + "y": -3507.740234375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -3126.849609375, + "y": -3521.4375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -3076.654296875, + "y": -3523.0419921875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -3056.552734375, + "y": -3522.6220703125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -3040.3173828125, + "y": -3522.3408203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -3034.0087890625, + "y": -3529.0107421875, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -3034.0087890625, + "y": -3529.0107421875, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -3023.83984375, + "y": -3550.1865234375, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -2993.138671875, + "y": -3594.9248046875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -2985.345703125, + "y": -3623.0625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -2985.345703125, + "y": -3623.0625, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/archive/pathing/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json b/archive/pathing/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json new file mode 100644 index 00000000..e1521768 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "3402稻妻海祇岛东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/3404稻妻海祇岛北.json b/archive/pathing/9_0_低效路线(不跑)/3404稻妻海祇岛北.json new file mode 100644 index 00000000..0a3f71d1 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/3404稻妻海祇岛北.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "3404稻妻海祇岛北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/51012枫丹廷东北.json b/archive/pathing/9_0_低效路线(不跑)/51012枫丹廷东北.json new file mode 100644 index 00000000..e59820f1 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/51012枫丹廷东北.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "51012枫丹廷东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4865.38623046875, + "y": 3913.11572265625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 4903.42626953125, + "y": 3941.13818359375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 4915.53564453125, + "y": 3936.3984375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 4948.33837890625, + "y": 3954.460693359375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 4982.76904296875, + "y": 3935.888671875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 4996.71826171875, + "y": 3957.602294921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 4990.357421875, + "y": 3947.964599609375, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 4990.357421875, + "y": 3947.964599609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 5004.8369140625, + "y": 3998.894287109375, + "action": "combat_script", + "move_mode": "walk", + "action_params": "keypress(f),wait(0.1),dash", + "type": "path" + }, + { + "id": 10, + "x": 5004.8369140625, + "y": 3998.894287109375, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 5004.8369140625, + "y": 3998.894287109375, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/archive/pathing/9_0_低效路线(不跑)/51014枫丹廷东北.json b/archive/pathing/9_0_低效路线(不跑)/51014枫丹廷东北.json new file mode 100644 index 00000000..3add7c2b --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/51014枫丹廷东北.json @@ -0,0 +1,58 @@ +{ + "info": { + "name": "51014枫丹廷东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4865.46875, + "y": 3912.95703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 4876.5654296875, + "y": 3972.333251953125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 4851.49560546875, + "y": 4016.47802734375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 4839.66650390625, + "y": 4011.04541015625, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 5, + "x": 4839.66650390625, + "y": 4011.04541015625, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/archive/pathing/9_0_低效路线(不跑)/52092枫丹露景泉东.json b/archive/pathing/9_0_低效路线(不跑)/52092枫丹露景泉东.json new file mode 100644 index 00000000..cb447e25 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/52092枫丹露景泉东.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "52092枫丹露景泉东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/5302枫丹卡布堡南.json b/archive/pathing/9_0_低效路线(不跑)/5302枫丹卡布堡南.json new file mode 100644 index 00000000..65342d5b --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/5302枫丹卡布堡南.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "5302枫丹卡布堡南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/5601枫丹场力东南.json b/archive/pathing/9_0_低效路线(不跑)/5601枫丹场力东南.json new file mode 100644 index 00000000..b168c5dc --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/5601枫丹场力东南.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "5601枫丹场力东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/5602枫丹场力东南.json b/archive/pathing/9_0_低效路线(不跑)/5602枫丹场力东南.json new file mode 100644 index 00000000..b7afbbdb --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/5602枫丹场力东南.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "5602枫丹场力东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/5606枫丹新科学院.json b/archive/pathing/9_0_低效路线(不跑)/5606枫丹新科学院.json new file mode 100644 index 00000000..63b2165f --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/5606枫丹新科学院.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "5606枫丹新科学院", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_0_低效路线(不跑)/61051--纳塔_镜璧山_神像1_(4-0).json b/archive/pathing/9_0_低效路线(不跑)/61051--纳塔_镜璧山_神像1_(4-0).json new file mode 100644 index 00000000..2299addc --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/61051--纳塔_镜璧山_神像1_(4-0).json @@ -0,0 +1,49 @@ +{ + "info": { + "name": "61051--纳塔_镜璧山_神像1_(4-0)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.4", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9519.966796875, + "y": -1779.22021484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 9517.5703125, + "y": -1785.0126953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 9506.7978515625, + "y": -1769.9169921875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 4, + "x": 9506.7978515625, + "y": -1769.9169921875, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/archive/pathing/9_0_低效路线(不跑)/64051--纳塔_万火之瓯_竞技场5_(3-5).json b/archive/pathing/9_0_低效路线(不跑)/64051--纳塔_万火之瓯_竞技场5_(3-5).json new file mode 100644 index 00000000..300c21d2 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/64051--纳塔_万火之瓯_竞技场5_(3-5).json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "64051--纳塔_万火之瓯_竞技场5_(3-5)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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": 9085.17578125, + "y": -2049.4921875, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(0.5)", + "type": "path" + }, + { + "id": 5, + "x": 9106.9296875, + "y": -2049.5712890625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "50", + "type": "path" + }, + { + "id": 6, + "x": 9141.5859375, + "y": -2047.1552734375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 7, + "x": 9141.5859375, + "y": -2047.1552734375, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/archive/pathing/9_0_低效路线(不跑)/66103--纳塔_涌流地_东侧小岛_(10-14).json b/archive/pathing/9_0_低效路线(不跑)/66103--纳塔_涌流地_东侧小岛_(10-14).json new file mode 100644 index 00000000..7b85c04d --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/66103--纳塔_涌流地_东侧小岛_(10-14).json @@ -0,0 +1,85 @@ +{ + "info": { + "name": "66103--纳塔_涌流地_东侧小岛_(10-14)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8291.626953125, + "y": -2922.3984375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 8309.968597921807, + "y": -2910.999128417101, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "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": 4, + "x": 8358.44140625, + "y": -2879.669921875, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 8315.892578125, + "y": -2837.9189453125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 8326.5576171875, + "y": -2813.564453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 8328.2666015625, + "y": -2808.953125, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 8, + "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/archive/pathing/9_0_低效路线(不跑)/68092--纳塔_安饶之野_石火坠陨处_(12).json b/archive/pathing/9_0_低效路线(不跑)/68092--纳塔_安饶之野_石火坠陨处_(12).json new file mode 100644 index 00000000..bb9e23a0 --- /dev/null +++ b/archive/pathing/9_0_低效路线(不跑)/68092--纳塔_安饶之野_石火坠陨处_(12).json @@ -0,0 +1,49 @@ +{ + "info": { + "name": "68092--纳塔_安饶之野_石火坠陨处_(12)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 10595.94140625, + "y": -2665.2509765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 10611.6484375, + "y": -2697.0615234375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 10623.3232421875, + "y": -2716.884765625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 4, + "x": 10623.3232421875, + "y": -2716.884765625, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/新版锄地--小怪/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json b/archive/pathing/9_0_低效路线(不跑)/68121--纳塔_安饶之野_孑遗的留迹东南_(20).json similarity index 60% rename from repo/pathing/新版锄地--小怪/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json rename to archive/pathing/9_0_低效路线(不跑)/68121--纳塔_安饶之野_孑遗的留迹东南_(20).json index f47768c1..ecb4f178 100644 --- a/repo/pathing/新版锄地--小怪/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json +++ b/archive/pathing/9_0_低效路线(不跑)/68121--纳塔_安饶之野_孑遗的留迹东南_(20).json @@ -1,8 +1,8 @@ { "info": { - "name": "6812--纳塔_安饶之野_孑遗的留迹东南_(20)", + "name": "68121--纳塔_安饶之野_孑遗的留迹东南_(20)", "type": "collect", - "author": "汐", + "author": "汐&mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -96,71 +96,17 @@ "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", + "id": 11, + "x": 10391.4853515625, + "y": -3199.9208984375, + "action": "combat_script", "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": "" + "action_params": "wait(1)", + "type": "orientation" } ] } \ No newline at end of file diff --git a/archive/pathing/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json new file mode 100644 index 00000000..8ce7ec30 --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json @@ -0,0 +1,99 @@ +{ + "info": { + "name": "000如果执行了这条路径说明你启用了错误的文件夹请阅读README", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json new file mode 100644 index 00000000..17615982 --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json @@ -0,0 +1,392 @@ +{ + "info": { + "name": "7020稻妻清濑岛01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json new file mode 100644 index 00000000..a48fe84f --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json @@ -0,0 +1,122 @@ +{ + "info": { + "name": "7020稻妻清濑岛02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4251.88671875, + "y": -4785.4658203125, + "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, + "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, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json new file mode 100644 index 00000000..4725f3a9 --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json @@ -0,0 +1,130 @@ +{ + "info": { + "name": "7020稻妻清濑岛03", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4472.234375, + "y": -4577.8359375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4455.9765625, + "y": -4594.8212890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4422.591796875, + "y": -4591.1064453125, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 4, + "x": -4471.634765625, + "y": -4586.94921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4503.013671875, + "y": -4611.1064453125, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 6, + "x": -4530.8515625, + "y": -4623.6923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4521.525390625, + "y": -4665.9130859375, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 8, + "x": -4521.525390625, + "y": -4665.9130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4520.18359375, + "y": -4684.240234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4532.75390625, + "y": -4751.3681640625, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 11, + "x": -4476.91796875, + "y": -4781.0576171875, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 12, + "x": -4463.6796875, + "y": -4792.8447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4463.33984375, + "y": -4803.2998046875, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json new file mode 100644 index 00000000..69c09aee --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "7020稻妻清濑岛04", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json new file mode 100644 index 00000000..3d2bb422 --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json @@ -0,0 +1,58 @@ +{ + "info": { + "name": "7020稻妻清濑岛05", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json new file mode 100644 index 00000000..c27cfa9b --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "7020稻妻清濑岛07", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json new file mode 100644 index 00000000..20f4cbc9 --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "7020稻妻清濑岛08", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json new file mode 100644 index 00000000..d99b1117 --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "7020稻妻清濑岛09", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3891.5595703125, + "y": -4389.912109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3837.9765625, + "y": -4423.3623046875, + "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", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3878.26953125, + "y": -4460.1044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3862.830078125, + "y": -4497.224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3849.4736328125, + "y": -4482.794921875, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json new file mode 100644 index 00000000..579aa02f --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "7020稻妻清濑岛12", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/archive/pathing/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json b/archive/pathing/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json new file mode 100644 index 00000000..7e3fbe95 --- /dev/null +++ b/archive/pathing/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json @@ -0,0 +1,161 @@ +{ + "info": { + "name": "7022稻妻鹤冠05", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2811.3515625, + "y": -6048.8544921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -2835.333984375, + "y": -6087.1005859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 3, + "x": -2865.9521484375, + "y": -6100.3896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 4, + "x": -2877.912109375, + "y": -6084.5029296875, + "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, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "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, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": -2972.94921875, + "y": -6059.4375, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 12, + "x": -2978.5927734375, + "y": -6035.0517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2958.5859375, + "y": -6018.224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2930.0595703125, + "y": -6032.0576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2911.685546875, + "y": -6040.9033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2888.931640625, + "y": -6028.6396484375, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/成就/尘世巡游·第五辑_大世界探索收集/火山之印与烈火之针/《火山大王与缝影针》-传送(路径追踪).json b/archive/pathing/火山之印与烈火之针/《火山大王与缝影针》-传送(路径追踪).json similarity index 100% rename from repo/pathing/成就/尘世巡游·第五辑_大世界探索收集/火山之印与烈火之针/《火山大王与缝影针》-传送(路径追踪).json rename to archive/pathing/火山之印与烈火之针/《火山大王与缝影针》-传送(路径追踪).json diff --git a/repo/pathing/成就/尘世巡游·第五辑_大世界探索收集/火山之印与烈火之针/《火山大王与缝影针》-拾取(键鼠回放,少女角色).json b/archive/pathing/火山之印与烈火之针/《火山大王与缝影针》-拾取(键鼠回放,少女角色).json similarity index 100% rename from repo/pathing/成就/尘世巡游·第五辑_大世界探索收集/火山之印与烈火之针/《火山大王与缝影针》-拾取(键鼠回放,少女角色).json rename to archive/pathing/火山之印与烈火之针/《火山大王与缝影针》-拾取(键鼠回放,少女角色).json diff --git a/build/build.js b/build/build.js index 5fbfc4ef..9b1e93ef 100644 --- a/build/build.js +++ b/build/build.js @@ -1,6 +1,7 @@ const fs = require('fs'); const path = require('path'); const crypto = require('crypto'); +const { execSync } = require('child_process'); // 在文件开头添加全局变量 const pathingDirsWithoutIcon = new Set(); @@ -12,6 +13,16 @@ function calculateSHA1(filePath) { return hashSum.digest('hex'); } +function getGitTimestamp(filePath) { + try { + const time = execSync(`git log -1 --format="%ai" -- ${filePath}`).toString().trim(); + return time || 'No commit found'; + } catch (e) { + console.warn(`无法通过 Git 获取时间: ${filePath}`, e); + return null; + } +} + function convertNewlines(text) { return text.replace(/\\n/g, '\n'); } @@ -25,11 +36,19 @@ function extractInfoFromCombatFile(filePath) { const tags = [...new Set(characterMatches || [])] .map(char => char.trim()) .filter(char => char.length > 0 && !char.match(/^[,.]$/)); // 过滤掉单个逗号或句号 - + + let version = getGitTimestamp(filePath); + if (!version) { + version = calculateSHA1(filePath).substring(0, 7); + } else { + version = formatTime(version); + } + return { author: authorMatch ? authorMatch[1].trim() : '', description: descriptionMatch ? convertNewlines(descriptionMatch[1].trim()) : '', - tags: tags + tags: tags, + version: version }; } @@ -57,13 +76,11 @@ function extractInfoFromJSFolder(folderPath) { } function extractInfoFromPathingFile(filePath, parentFolders) { - // 读取文件内容 let content = fs.readFileSync(filePath, 'utf8'); // 检测并移除BOM if (content.charCodeAt(0) === 0xFEFF) { content = content.replace(/^\uFEFF/, ''); - // 检测到BOM时,保存无BOM的版本 try { fs.writeFileSync(filePath, content, 'utf8'); console.log(`已移除文件BOM标记: ${filePath}`); @@ -74,37 +91,31 @@ function extractInfoFromPathingFile(filePath, parentFolders) { const contentObj = JSON.parse(content); + // 提取版本字段,若不存在则使用上传时间,还不存在就使用 SHA + let version = contentObj.info && contentObj.info.version; + if (!version) { + const gitDate = getGitTimestamp(filePath); + version = gitDate ? formatTime(gitDate) : calculateSHA1(filePath).substring(0, 7); + } + let tags = parentFolders.slice(2) .filter(tag => !tag.includes('@')) .filter((tag, index, self) => self.indexOf(tag) === index); - // 检查positions数组中是否存在特定动作 if (contentObj.positions && Array.isArray(contentObj.positions)) { - const hasNahidaCollect = contentObj.positions.some(pos => pos.action === 'nahida_collect'); - const hasHydroCollect = contentObj.positions.some(pos => pos.action === 'hydro_collect'); - const hasAnemoCollect = contentObj.positions.some(pos => pos.action === 'anemo_collect'); - const hasElectroCollect = contentObj.positions.some(pos => pos.action === 'electro_collect'); - const hasUpDownGrabLeaf = contentObj.positions.some(pos => pos.action === 'up_down_grab_leaf'); - if (hasNahidaCollect) { - tags.push('纳西妲'); - } - if (hasHydroCollect) { - tags.push('水元素力收集'); - } - if (hasAnemoCollect) { - tags.push('风元素力收集'); - } - if (hasElectroCollect) { - tags.push('雷元素力收集'); - } - if (hasUpDownGrabLeaf) { - tags.push('四叶印'); - } + const actions = contentObj.positions.map(pos => pos.action); + if (actions.includes('nahida_collect')) tags.push('纳西妲'); + if (actions.includes('hydro_collect')) tags.push('水元素力收集'); + if (actions.includes('anemo_collect')) tags.push('风元素力收集'); + if (actions.includes('electro_collect')) tags.push('雷元素力收集'); + if (actions.includes('up_down_grab_leaf')) tags.push('四叶印'); + if (actions.includes('fight')) tags.push('战斗'); } return { - author: contentObj.info && contentObj.info.author ? contentObj.info.author : '', - description: convertNewlines(contentObj.info && contentObj.info.description ? contentObj.info.description : ''), + author: contentObj.info.author || '', + description: convertNewlines(contentObj.info.description || ''), + version: version, tags: tags }; } @@ -126,11 +137,19 @@ function extractInfoFromTCGFile(filePath, parentFolder) { if (filePath.includes('酒馆挑战')) { tags = ['酒馆挑战', ...tags]; } - + + let version = getGitTimestamp(filePath); + if (!version) { + version = calculateSHA1(filePath).substring(0, 7); + } else { + version = formatTime(version); + } + return { author: authorMatch ? authorMatch[1].trim() : '', description: descriptionMatch ? convertNewlines(descriptionMatch[1].trim()) : '', - tags: [...new Set(tags)] // 去重 + tags: [...new Set(tags)], // 去重 + version: version }; } diff --git a/repo.json b/repo.json index 268a62e2..0d36daa8 100644 --- a/repo.json +++ b/repo.json @@ -1,5 +1,5 @@ { - "time": "20250419012752", + "time": "20250428223530", "url": "https://github.com/babalae/bettergi-scripts-list/archive/refs/heads/main.zip", "file": "repo.json", "indexes": [ @@ -19,1598 +19,2499 @@ "error": "Unexpected token # in JSON at position 0" }, { - "name": "薄荷A01-蒙德-望风角1.json", - "type": "file", - "hash": "4fc28d8ee11eaea2d215970c421fdc0e60e60644", - "version": "4fc28d8", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A02-蒙德-望风角2.json", - "type": "file", - "hash": "f78395c15968560e52b4ad6703b5850edff1fa58", - "version": "f78395c", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A03-蒙德-望风山地1.json", - "type": "file", - "hash": "9b65c3300fcee1e246768dcb6f47267880641b6c", - "version": "9b65c33", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A04-蒙德-望风山地2.json", - "type": "file", - "hash": "3505b3ffcb8f46d0ce79a0cfec245f93c4246b3d", - "version": "3505b3f", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A05-蒙德-摘星崖.json", - "type": "file", - "hash": "5b1ff87568318f257120f43665845f6e8d9cae01", - "version": "5b1ff87", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A06-蒙德-星落湖.json", - "type": "file", - "hash": "ec5b8311cbd4ab6b283acfcfd3665ffc053a6710", - "version": "ec5b831", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A07-蒙德-风起地1(收集50).json", - "type": "file", - "hash": "7f867108df1020e37bda1fafae26e0eb7581bc1e", - "version": "7f86710", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A08-蒙德-风起地2.json", - "type": "file", - "hash": "450e82c9d051e084a3952ca8d407721a0ebdeb8c", - "version": "450e82c", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A09-蒙德-风起地3.json", - "type": "file", - "hash": "d6037e28e77e3f23b9b3b5bb25d2bcc541808fc8", - "version": "d6037e2", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A10-蒙德-鹰翔海滩.json", - "type": "file", - "hash": "e02265d0bef9d6511a7bc89ba141aa66e8b28a4e", - "version": "e02265d", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A11-蒙德-千风神殿.json", - "type": "file", - "hash": "0b44691b5fd1ecc16880d0cd18c09c93a8428203", - "version": "0b44691", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A12-蒙德-誓言岬.json", - "type": "file", - "hash": "53956beecc6f4238086003371ee4a2f0b3dd5615", - "version": "53956be", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A13-蒙德-达达乌帕谷1(运行0.5h).json", - "type": "file", - "hash": "1d8796066a1ed0548fd47ada0eb99dba5fff0cea", - "version": "1d87960", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A14-蒙德-达达乌帕谷2(收集100).json", - "type": "file", - "hash": "a39ec6d215ffe83de8aabf10355f35f3c423132e", - "version": "a39ec6d", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A15-蒙德-晨曦酒馆.json", - "type": "file", - "hash": "d9523360b7c32b289111eaf8227ac55159cad749", - "version": "d952336", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A16-蒙德-奔狼领1.json", - "type": "file", - "hash": "dd971368ec430234779969c93ed37dda065fe99a", - "version": "dd97136", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A17-蒙德-奔狼领2.json", - "type": "file", - "hash": "8b3435dd16e4d53bef4e0d0c8eefb7d8633c415c", - "version": "8b3435d", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A18-蒙德-奔狼领3.json", - "type": "file", - "hash": "92052036ce401ec05889ab04ca782782d440f29d", - "version": "9205203", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A19-蒙德-明冠峡1.json", - "type": "file", - "hash": "138cb3527262a8399e3eb69fe036c34788e1cd44", - "version": "138cb35", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A20-蒙德-明冠峡2.json", - "type": "file", - "hash": "80e653c4e1c4269aecbc70d32ac261a40347b131", - "version": "80e653c", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A21-蒙德-明冠峡3.json", - "type": "file", - "hash": "a1788a8854d71423a1b5d6d635ca05f9e2d11b3b", - "version": "a1788a8", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A22-蒙德-风龙废墟1.json", - "type": "file", - "hash": "62beae1c92527e54140e696233036d0525e55e71", - "version": "62beae1", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A23-蒙德-风龙废墟2.json", - "type": "file", - "hash": "6fc882c44c617e11ef977465c3f0d1c94ffe519f", - "version": "6fc882c", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A24-蒙德-风龙废墟3(收集150,运行1h).json", - "type": "file", - "hash": "a7bb9c77d648192b007a28edc4de182a26f0f85e", - "version": "a7bb9c7", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A25-蒙德-风龙废墟4.json", - "type": "file", - "hash": "7b2623029543bb677b9bfcbb6b650c3a766b1dd4", - "version": "7b26230", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A26-蒙德-清泉镇.json", - "type": "file", - "hash": "15a377606eefaeeecbdad4e11a31527d3f60d3ef", - "version": "15a3776", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A27-蒙德-蒙德城.json", - "type": "file", - "hash": "7590cb89fb6d98753905c46d671dcfde323d14f6", - "version": "7590cb8", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A28-雪山-覆雪之路1.json", - "type": "file", - "hash": "87ad5e0bb349f04d96fb7365223a9ccaa5c19302", - "version": "87ad5e0", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A29-雪山-覆雪之路2.json", - "type": "file", - "hash": "af8856121b274b33ff83843e2f86c9eb36561e97", - "version": "af88561", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A30-雪山-旧宫1.json", - "type": "file", - "hash": "27b7149c588ca8e40ef0eae4fa103a2b6367394d", - "version": "27b7149", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A31-雪山-旧宫2(收集200).json", - "type": "file", - "hash": "cc081e66bbadf3d3109a6cd629a58d0b21c0618e", - "version": "cc081e6", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A32-雪山-星荧洞窟1(运行1.5h).json", - "type": "file", - "hash": "566bf3e5c9693e7ea2bac51a2e6579f66a35aeb9", - "version": "566bf3e", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A33-雪山-星荧洞窟2.json", - "type": "file", - "hash": "39c50e4946661dae957384e82cea16f2db1f1867", - "version": "39c50e4", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A34-雪山-眠龙谷1(收集250).json", - "type": "file", - "hash": "90c1aecd0984fbd0bd79f72b5a1d50026a4e611f", - "version": "90c1aec", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A35-雪山-眠龙谷2.json", - "type": "file", - "hash": "5a3de33c34320637df6bbf72f9c0d6aa6306c404", - "version": "5a3de33", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A36-雪山-眠龙谷3.json", - "type": "file", - "hash": "54e573604b6c7e2688e5f55e1e9f269906f3de87", - "version": "54e5736", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A37-雪山-寒天之钉.json", - "type": "file", - "hash": "77396aab2a7bd0aecd6e457f85d69ca27562ef36", - "version": "77396aa", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A38-雪山-近郊1.json", - "type": "file", - "hash": "f0935442d9c86149f4992c8ff2f5fe4cf46a626f", - "version": "f093544", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷A39-雪山-近郊2.json", - "type": "file", - "hash": "4aab46b54a38b523e2af42544e01e3acc610cb41", - "version": "4aab46b", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B01-璃月-石门1(收集300).json", - "type": "file", - "hash": "7811aa74ce0f9ccf8de482111d8fa6f3e98e044c", - "version": "7811aa7", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B02-璃月-石门2.json", - "type": "file", - "hash": "4d354c73b72b504f340bc3ad9e4c6b62b1707c8f", - "version": "4d354c7", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B03-璃月-无妄坡1.json", - "type": "file", - "hash": "23c062aa03c4316ae61978f1a44981743981d202", - "version": "23c062a", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B04-璃月-无妄坡2.json", - "type": "file", - "hash": "5c18954237c68181f8340691b5a357d59f206f74", - "version": "5c18954", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B05-璃月-无妄坡3(收集350,运行2h).json", - "type": "file", - "hash": "62092e7a0b9cb07ce1f5c5800229de6a15851cef", - "version": "62092e7", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B06-璃月-无妄坡4.json", - "type": "file", - "hash": "f978b29d2e74acbf48b57f1d3ac6dd8c8ccc928d", - "version": "f978b29", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B07-璃月-荻花洲.json", - "type": "file", - "hash": "0d2904b92ad5d96ffd218d6b62d1c7cee0b0c08d", - "version": "0d2904b", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B08-璃月-明藴镇1.json", - "type": "file", - "hash": "088833f5fccd494b9a09c703bc78bfe7540f1f3a", - "version": "088833f", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B09-璃月-明藴镇2(收集400).json", - "type": "file", - "hash": "8f1f62aa6683f5a608b033dbecd091aba6a4bf00", - "version": "8f1f62a", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B10-璃月-归离原1.json", - "type": "file", - "hash": "68892fcd92bdf9c880dcff247dce443972f24ef4", - "version": "68892fc", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B11-璃月-归离原2.json", - "type": "file", - "hash": "354a573f83cdab18b49e819e52a03fb80a680489", - "version": "354a573", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B12-璃月-归离原3.json", - "type": "file", - "hash": "befb2cd01b4f0970cc358e28230a6a07decca0f0", - "version": "befb2cd", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B13-璃月-归离原4.json", - "type": "file", - "hash": "0431a8c1df73123a1029c2dc82fc419ab976bd4b", - "version": "0431a8c", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B14-璃月-归离原5(收集450).json", - "type": "file", - "hash": "23f9aa16ff6b0deee575c130d06d31f0f2a608c9", - "version": "23f9aa1", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B15-璃月-孤云阁.json", - "type": "file", - "hash": "bc608436b8d5da83c89233e6ed69ba60050350c4", - "version": "bc60843", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B16-璃月-渌华池1(运行2.5h).json", - "type": "file", - "hash": "066d93eacb4c02df3a9ae0c5f6f0b255549c7377", - "version": "066d93e", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B17-璃月-渌华池2.json", - "type": "file", - "hash": "c156576fce687002be703541b2ea50db056a23da", - "version": "c156576", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B18-璃月-渌华池3.json", - "type": "file", - "hash": "eab6000118187e11f6cedb78a34a95fb34a67d70", - "version": "eab6000", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B19-璃月-遁玉陵.json", - "type": "file", - "hash": "4d388a8f3f2da3d3c75815a7f94ae79b69f37c4d", - "version": "4d388a8", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B20-璃月-璃月港.json", - "type": "file", - "hash": "039c7e2a99476a65112529d74876078079da68fe", - "version": "039c7e2", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B21-璃月-天衡山1(收集500).json", - "type": "file", - "hash": "f3585acb70c75b3552131ee3a87860b7338f402f", - "version": "f3585ac", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B22-璃月-天衡山2.json", - "type": "file", - "hash": "e22adb96b04cbb60aeb0bdd37d4ce7160cb197e8", - "version": "e22adb9", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B23-璃月-天衡山3.json", - "type": "file", - "hash": "0576dac10db87797fd82ab471469af7b61c7720e", - "version": "0576dac", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B24-璃月-青墟浦1.json", - "type": "file", - "hash": "7678df1a5235f0e04bd8e8481755ee06d651fa26", - "version": "7678df1", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B25-璃月-青墟浦2.json", - "type": "file", - "hash": "75bff82001bd134cfd666427df5b558b48de4635", - "version": "75bff82", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B26-璃月-灵矩关1.json", - "type": "file", - "hash": "c1a8e7ab08438b581cc9d2dc0c05c139840f9416", - "version": "c1a8e7a", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B27-璃月-灵矩关2(收集550).json", - "type": "file", - "hash": "a595e2333810f9ddf0cec62761eb5500bb4f72b3", - "version": "a595e23", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B28-璃月-灵矩关3(运行3h).json", - "type": "file", - "hash": "d7078209f89cf33ebf8e76f614c617c8b7f09edb", - "version": "d707820", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B29-璃月-天遒谷1.json", - "type": "file", - "hash": "e7fc39aa0beb2f21622c5c049bf5eb45181fce2f", - "version": "e7fc39a", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B30-璃月-天遒谷2.json", - "type": "file", - "hash": "80ce0b6baa9dbe3808e9ec97eebe596512b14c31", - "version": "80ce0b6", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B31-璃月-翠玦坡1(收集600).json", - "type": "file", - "hash": "56a23a86660821a36bd40c373c7ed6f83a2dd1e5", - "version": "56a23a8", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B32-璃月-翠玦坡2.json", - "type": "file", - "hash": "d69498838d0c0ba436d50c7de2e41b7c10f09e1f", - "version": "d694988", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B33-璃月-奥藏山1.json", - "type": "file", - "hash": "736837cc6e2cdc228213f5fb87eddc7c1d5d474a", - "version": "736837c", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B34-璃月-奥藏山2.json", - "type": "file", - "hash": "4b8eb3ec1b016f60a5eb8ba969c9b3862deee406", - "version": "4b8eb3e", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B35-璃月-绝云间1(收集650h,运行3.5h).json", - "type": "file", - "hash": "44aec8016ebba3f07c87ef9dab276fb41dd83528", - "version": "44aec80", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B36-璃月-绝云间2.json", - "type": "file", - "hash": "fc02c6e5206ee612abcb6fffeed200f32cc8aad9", - "version": "fc02c6e", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B37-璃月-绝云间3.json", - "type": "file", - "hash": "52ae22e4578ff4c81050c7d0458a71ff9bb371b3", - "version": "52ae22e", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B38-璃月-绝云间4.json", - "type": "file", - "hash": "cb1aa791da24ebf0c8e3732b642f4e6e8d27b733", - "version": "cb1aa79", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B39-璃月-庆云顶.json", - "type": "file", - "hash": "3bbc2630083817173dbace5c138e59be95306ae5", - "version": "3bbc263", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B40-璃月-琥牢山1.json", - "type": "file", - "hash": "1d89a69178b100909b9816932b80efc24ecf04f4", - "version": "1d89a69", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B41-璃月-琥牢山2.json", - "type": "file", - "hash": "60d5c13f3c7d5d1fb4ecca98e8b824f6cf134655", - "version": "60d5c13", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B42-璃月-南天门(收集700).json", - "type": "file", - "hash": "e99c805c4a210188ead8c41df25000b22208fc66", - "version": "e99c805", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B43-璃月-采樵谷1.json", - "type": "file", - "hash": "180c85ff35962f8b54c38785b4ec9ab27dff7835", - "version": "180c85f", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷B44-璃月-采樵谷2(收集750).json", - "type": "file", - "hash": "274069075729ddcb87ce9229934573bf861b2341", - "version": "2740690", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C01-稻妻-鸣神岛-离岛.json", - "type": "file", - "hash": "44a4a42e6c39a4419141904972095e9835ae3dfc", - "version": "44a4a42", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C02-稻妻-鸣神岛-荒海1.json", - "type": "file", - "hash": "1b4c03fd8c1d0bfadaafc9c9bc51ef0e4e1e40bd", - "version": "1b4c03f", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C03-稻妻-鸣神岛-荒海2.json", - "type": "file", - "hash": "6a88e07ddcc35b625372b1b3187d438f562c7163", - "version": "6a88e07", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C04-稻妻-鸣神岛-绀田村.json", - "type": "file", - "hash": "f27d1f973dca504f794e855baa13129098a8361d", - "version": "f27d1f9", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C05-稻妻-鸣神岛-神樱大社(运行4h).json", - "type": "file", - "hash": "eb425041a280b7e905e3bd8c9017fc5ddea6efc2", - "version": "eb42504", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C06-稻妻-鸣神岛-神里屋敷.json", - "type": "file", - "hash": "38873162a3092ddeca0a30f2f77fd9233c76f7f6", - "version": "3887316", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C07-稻妻-鸣神岛-白狐之野.json", - "type": "file", - "hash": "ec7bf7652e40e3f6b49aacc4ec7fba242e2e01e0", - "version": "ec7bf76", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C08-稻妻-鸣神岛-稻妻城1.json", - "type": "file", - "hash": "178cdac1889a4dd0fb21d350f9dfea08d5d16111", - "version": "178cdac", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C09-稻妻-鸣神岛-稻妻城2.json", - "type": "file", - "hash": "f6954d5b57ce3241d7c897e07f1d45149f9b3dd5", - "version": "f6954d5", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C10-稻妻-鸣神岛-堇色之庭.json", - "type": "file", - "hash": "fd885a54099801f6b2e9839a1b35244752e1e291", - "version": "fd885a5", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C11-稻妻-神无冢-九条阵屋1.json", - "type": "file", - "hash": "b2b10d2e2db1163f512df69b59779f3782fefb78", - "version": "b2b10d2", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C12-稻妻-神无冢-九条阵屋2.json", - "type": "file", - "hash": "43108fdd5db044f5acd61586dc0a5a42a00a2016", - "version": "43108fd", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C13-稻妻-神无冢-无相之火(收集800).json", - "type": "file", - "hash": "cf29d7d507e5a5172c4010eaaca4d9106d2950f7", - "version": "cf29d7d", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C14-稻妻-神无冢-踏鞴砂1.json", - "type": "file", - "hash": "f36cbea557dba4881408d20e3bd58631c869a435", - "version": "f36cbea", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C15-稻妻-神无冢-踏鞴砂2.json", - "type": "file", - "hash": "a1f286b84ef58ca228ed3e8890c188e6801c6515", - "version": "a1f286b", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C16-稻妻-神无冢-踏鞴砂3.json", - "type": "file", - "hash": "b78fff66fe78c052d2bbc78b449a506e3e9f8d62", - "version": "b78fff6", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C17-稻妻-神无冢-踏鞴砂4.json", - "type": "file", - "hash": "d5078ee029122eac36c9e1fdeab3f37fd508cf93", - "version": "d5078ee", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C18-稻妻-神无冢-名椎滩.json", - "type": "file", - "hash": "8be2b8faffc2a12f7252dad0154e9809996d6b0f", - "version": "8be2b8f", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C19-稻妻-八酝岛-无想刃狭间.json", - "type": "file", - "hash": "038d01725754359974ae957c067c06ef5ac1cec3", - "version": "038d017", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C20-稻妻-八酝岛-藤兜砦1.json", - "type": "file", - "hash": "72f1b2ac7b20212e7f91d686ffb5e4ebdfb285e4", - "version": "72f1b2a", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C21-稻妻-八酝岛-藤兜砦2(收集850).json", - "type": "file", - "hash": "5a5ac57db567b85b1cf9412e22f530d9a696158e", - "version": "5a5ac57", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C22-稻妻-八酝岛-绯木村.json", - "type": "file", - "hash": "30403cbdf6cb7cd68ccc30251dce5c3297ba032b", - "version": "30403cb", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C23-稻妻-八酝岛-蛇神之首1.json", - "type": "file", - "hash": "5f1acea08a6f987f03b62af8791e9def8e0cda27", - "version": "5f1acea", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C24-稻妻-八酝岛-蛇神之首2.json", - "type": "file", - "hash": "1a034f374704fa8bdd92901f1ab60758d1532c11", - "version": "1a034f3", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C25-稻妻-八酝岛-蛇骨矿洞1(运行4.5h).json", - "type": "file", - "hash": "760c52faba19d0f688cacb5b1c4901e15c8e08e5", - "version": "760c52f", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C26-稻妻-八酝岛-蛇骨矿洞2.json", - "type": "file", - "hash": "0af16d1e0c360acf4bbfa9135785e134dc78bebf", - "version": "0af16d1", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C27-稻妻-八酝岛-蛇骨矿洞3.json", - "type": "file", - "hash": "0e2a1401047ead2ebce0f0ae60ad5e0815d3ee3d", - "version": "0e2a140", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C28-稻妻-海祇岛-水月池1.json", - "type": "file", - "hash": "92da8427b3c66bd39957effb175382f2003afa0a", - "version": "92da842", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C29-稻妻-海祇岛-水月池2.json", - "type": "file", - "hash": "2ae04d1ea036c0c31f1eb817bce13362635162f9", - "version": "2ae04d1", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C30-稻妻-海祇岛-曚云神社(收集900).json", - "type": "file", - "hash": "cbae478fd4d59e5d98be544c4cc5bdf0e9f93172", - "version": "cbae478", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C31-稻妻-海祇岛-珊瑚宫.json", - "type": "file", - "hash": "4b0c8f92db8316eec899cc40b90be1aeb1752da6", - "version": "4b0c8f9", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C32-稻妻-海祇岛-望泷村1.json", - "type": "file", - "hash": "649a00ce23797c20c12cc0abdcc84b4c500cff25", - "version": "649a00c", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C33-稻妻-海祇岛-望泷村2.json", - "type": "file", - "hash": "42fea95663fb9957caacf8720f1b5df2dfee0a7d", - "version": "42fea95", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C34-稻妻-清籁岛-越石村.json", - "type": "file", - "hash": "9cd10f8632ea6a39dd89c1e9b0a23d13aab42f50", - "version": "9cd10f8", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C35-稻妻-清籁岛-平海砦.json", - "type": "file", - "hash": "93ff80f7dbe9d67fcd474f4bffe342d56d169255", - "version": "93ff80f", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C36-稻妻-清籁岛-天云峠1.json", - "type": "file", - "hash": "b8730c4990b719eb4e5160ff90895b648f33158d", - "version": "b8730c4", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C37-稻妻-清籁岛-天云峠2.json", - "type": "file", - "hash": "2c2e552402344cc3e6aed0c7b83f3ce34aaa8df2", - "version": "2c2e552", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C38-稻妻-清籁岛-浅濑神社.json", - "type": "file", - "hash": "4a6d474d5f45a1a900a49adecaed73e65ab84755", - "version": "4a6d474", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C39-稻妻-鹤观-知比山.json", - "type": "file", - "hash": "85544c6fd5021075688b0c683cf98c13817bff3a", - "version": "85544c6", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C40-稻妻-鹤观-笈名海滨.json", - "type": "file", - "hash": "f31fffe8802e5294ad39c36c58670be25e87c748", - "version": "f31fffe", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C41-稻妻-鹤观-茂知祭场1.json", - "type": "file", - "hash": "5baf4693f491e7fae09011118e941c8534afa1f4", - "version": "5baf469", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C42-稻妻-鹤观-茂知祭场2(运行5h).json", - "type": "file", - "hash": "b25fe8bd13319e84ae8e11e4118da8e5e283dc86", - "version": "b25fe8b", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C43-稻妻-鹤观-茂知祭场3.json", - "type": "file", - "hash": "44fe4d1d3e755e4d3ed38a78913553cdb055d8e3", - "version": "44fe4d1", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C44-稻妻-鹤观-茂知祭场4.json", - "type": "file", - "hash": "e77235593409dbbbf29cb766320ebae193e2ba09", - "version": "e772355", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C45-稻妻-鹤观-惑饲滩.json", - "type": "file", - "hash": "621e0f991f7bc4aae59101b4bf84bd85031e5e83", - "version": "621e0f9", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷C46-稻妻-鸣神岛-镇守之森.json", - "type": "file", - "hash": "138d6bd6df1dc60c081cd819ad97baf71cae5129", - "version": "138d6bd", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F01-纳塔-回声之子.json", - "type": "file", - "hash": "cb7749750fc0836599ed882c8930a4a389b5335e", - "version": "cb77497", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F02-纳塔-流泉之众1(收集1000).json", - "type": "file", - "hash": "2abbf7241fcdfa8002524fef0f9e88d479ad03eb", - "version": "2abbf72", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F03-纳塔-流泉之众2.json", - "type": "file", - "hash": "609218605051e518b9182f94c017febda398c21d", - "version": "6092186", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F04-纳塔-流泉之众3.json", - "type": "file", - "hash": "7b5f94b29ef26df3732f93b5fc65ffaaa5745229", - "version": "7b5f94b", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F05-纳塔-流泉之众4.json", - "type": "file", - "hash": "d67431ec27ac6e5823790a5bc7ce9b2c52ef1da2", - "version": "d67431e", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F06-纳塔-流泉之众5.json", - "type": "file", - "hash": "609daf5b5554ddbe29357c8e2c475a749ae44383", - "version": "609daf5", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F07-纳塔-烟密主1.json", - "type": "file", - "hash": "8c0f2e7480f7f60ebc70981c032f92546dee47f3", - "version": "8c0f2e7", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F08-纳塔-烟密主2.json", - "type": "file", - "hash": "c3953f9b61c6f1d733ab3e445fe5dd287da861d7", - "version": "c3953f9", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F09-纳塔-烟密主3.json", - "type": "file", - "hash": "21b4841e1e09c73360a284421feb1ff94787b9e3", - "version": "21b4841", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F10-纳塔-烟密主4.json", - "type": "file", - "hash": "731ce36fd3bdd82c1a7d8fc308e1ef200860b737", - "version": "731ce36", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F11-纳塔-花语会1.json", - "type": "file", - "hash": "6424cba023378d6d53bb8ee251133ed82f5c657c", - "version": "6424cba", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F12-纳塔-花语会2.json", - "type": "file", - "hash": "07a7d46b6d453b7d59dd78bca21cfe99bec8a97b", - "version": "07a7d46", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F13-纳塔-花语会3.json", - "type": "file", - "hash": "d3f505cbd1310afc0e1748ab1238d5642147985e", - "version": "d3f505c", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F14-纳塔-花语会4.json", - "type": "file", - "hash": "d93d38547945db9aa371483889a9a4297f216d3e", - "version": "d93d385", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F15-纳塔-花语会5.json", - "type": "file", - "hash": "df5b9cb6ee916ffdb07c7887938943448645e0d3", - "version": "df5b9cb", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" - ] - }, - { - "name": "薄荷F16-纳塔-花语会6(收集1031,运行5.35).json", - "type": "file", - "hash": "81029e4d4849adf8a056530a0173e57eabfac200", - "version": "81029e4", - "author": "Tool_tingsu", - "description": "", - "tags": [ - "薄荷" + "name": "薄荷全收集", + "type": "directory", + "children": [ + { + "name": "薄荷A01-蒙德-望风角1.json", + "type": "file", + "hash": "4fc28d8ee11eaea2d215970c421fdc0e60e60644", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A02-蒙德-望风角2.json", + "type": "file", + "hash": "f78395c15968560e52b4ad6703b5850edff1fa58", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A03-蒙德-望风山地1.json", + "type": "file", + "hash": "9b65c3300fcee1e246768dcb6f47267880641b6c", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A04-蒙德-望风山地2.json", + "type": "file", + "hash": "3505b3ffcb8f46d0ce79a0cfec245f93c4246b3d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A05-蒙德-摘星崖.json", + "type": "file", + "hash": "5b1ff87568318f257120f43665845f6e8d9cae01", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A06-蒙德-星落湖.json", + "type": "file", + "hash": "ec5b8311cbd4ab6b283acfcfd3665ffc053a6710", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A07-蒙德-风起地1(收集50).json", + "type": "file", + "hash": "7f867108df1020e37bda1fafae26e0eb7581bc1e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A08-蒙德-风起地2.json", + "type": "file", + "hash": "450e82c9d051e084a3952ca8d407721a0ebdeb8c", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A09-蒙德-风起地3.json", + "type": "file", + "hash": "d6037e28e77e3f23b9b3b5bb25d2bcc541808fc8", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A10-蒙德-鹰翔海滩.json", + "type": "file", + "hash": "e02265d0bef9d6511a7bc89ba141aa66e8b28a4e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A11-蒙德-千风神殿.json", + "type": "file", + "hash": "0b44691b5fd1ecc16880d0cd18c09c93a8428203", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A12-蒙德-誓言岬.json", + "type": "file", + "hash": "53956beecc6f4238086003371ee4a2f0b3dd5615", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A13-蒙德-达达乌帕谷1(运行0.5h).json", + "type": "file", + "hash": "1d8796066a1ed0548fd47ada0eb99dba5fff0cea", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A14-蒙德-达达乌帕谷2(收集100).json", + "type": "file", + "hash": "a39ec6d215ffe83de8aabf10355f35f3c423132e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A15-蒙德-晨曦酒馆.json", + "type": "file", + "hash": "d9523360b7c32b289111eaf8227ac55159cad749", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A16-蒙德-奔狼领1.json", + "type": "file", + "hash": "dd971368ec430234779969c93ed37dda065fe99a", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A17-蒙德-奔狼领2.json", + "type": "file", + "hash": "8b3435dd16e4d53bef4e0d0c8eefb7d8633c415c", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A18-蒙德-奔狼领3.json", + "type": "file", + "hash": "92052036ce401ec05889ab04ca782782d440f29d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A19-蒙德-明冠峡1.json", + "type": "file", + "hash": "138cb3527262a8399e3eb69fe036c34788e1cd44", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A20-蒙德-明冠峡2.json", + "type": "file", + "hash": "80e653c4e1c4269aecbc70d32ac261a40347b131", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A21-蒙德-明冠峡3.json", + "type": "file", + "hash": "a1788a8854d71423a1b5d6d635ca05f9e2d11b3b", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A22-蒙德-风龙废墟1.json", + "type": "file", + "hash": "62beae1c92527e54140e696233036d0525e55e71", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A23-蒙德-风龙废墟2.json", + "type": "file", + "hash": "6fc882c44c617e11ef977465c3f0d1c94ffe519f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A24-蒙德-风龙废墟3(收集150,运行1h).json", + "type": "file", + "hash": "a7bb9c77d648192b007a28edc4de182a26f0f85e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A25-蒙德-风龙废墟4.json", + "type": "file", + "hash": "7b2623029543bb677b9bfcbb6b650c3a766b1dd4", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A26-蒙德-清泉镇.json", + "type": "file", + "hash": "15a377606eefaeeecbdad4e11a31527d3f60d3ef", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A27-蒙德-蒙德城.json", + "type": "file", + "hash": "7590cb89fb6d98753905c46d671dcfde323d14f6", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A28-雪山-覆雪之路1.json", + "type": "file", + "hash": "87ad5e0bb349f04d96fb7365223a9ccaa5c19302", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A29-雪山-覆雪之路2.json", + "type": "file", + "hash": "af8856121b274b33ff83843e2f86c9eb36561e97", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A30-雪山-旧宫1.json", + "type": "file", + "hash": "27b7149c588ca8e40ef0eae4fa103a2b6367394d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A31-雪山-旧宫2(收集200).json", + "type": "file", + "hash": "cc081e66bbadf3d3109a6cd629a58d0b21c0618e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A32-雪山-星荧洞窟1(运行1.5h).json", + "type": "file", + "hash": "566bf3e5c9693e7ea2bac51a2e6579f66a35aeb9", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A33-雪山-星荧洞窟2.json", + "type": "file", + "hash": "39c50e4946661dae957384e82cea16f2db1f1867", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A34-雪山-眠龙谷1(收集250).json", + "type": "file", + "hash": "90c1aecd0984fbd0bd79f72b5a1d50026a4e611f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A35-雪山-眠龙谷2.json", + "type": "file", + "hash": "5a3de33c34320637df6bbf72f9c0d6aa6306c404", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A36-雪山-眠龙谷3.json", + "type": "file", + "hash": "54e573604b6c7e2688e5f55e1e9f269906f3de87", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A37-雪山-寒天之钉.json", + "type": "file", + "hash": "77396aab2a7bd0aecd6e457f85d69ca27562ef36", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A38-雪山-近郊1.json", + "type": "file", + "hash": "f0935442d9c86149f4992c8ff2f5fe4cf46a626f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷A39-雪山-近郊2.json", + "type": "file", + "hash": "4aab46b54a38b523e2af42544e01e3acc610cb41", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B01-璃月-石门1(收集300).json", + "type": "file", + "hash": "7811aa74ce0f9ccf8de482111d8fa6f3e98e044c", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B02-璃月-石门2.json", + "type": "file", + "hash": "4d354c73b72b504f340bc3ad9e4c6b62b1707c8f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B03-璃月-无妄坡1.json", + "type": "file", + "hash": "23c062aa03c4316ae61978f1a44981743981d202", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B04-璃月-无妄坡2.json", + "type": "file", + "hash": "5c18954237c68181f8340691b5a357d59f206f74", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B05-璃月-无妄坡3(收集350,运行2h).json", + "type": "file", + "hash": "62092e7a0b9cb07ce1f5c5800229de6a15851cef", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B06-璃月-无妄坡4.json", + "type": "file", + "hash": "f978b29d2e74acbf48b57f1d3ac6dd8c8ccc928d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B07-璃月-荻花洲.json", + "type": "file", + "hash": "0d2904b92ad5d96ffd218d6b62d1c7cee0b0c08d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B08-璃月-明藴镇1.json", + "type": "file", + "hash": "088833f5fccd494b9a09c703bc78bfe7540f1f3a", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B09-璃月-明藴镇2(收集400).json", + "type": "file", + "hash": "8f1f62aa6683f5a608b033dbecd091aba6a4bf00", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B10-璃月-归离原1.json", + "type": "file", + "hash": "68892fcd92bdf9c880dcff247dce443972f24ef4", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B11-璃月-归离原2.json", + "type": "file", + "hash": "354a573f83cdab18b49e819e52a03fb80a680489", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B12-璃月-归离原3.json", + "type": "file", + "hash": "befb2cd01b4f0970cc358e28230a6a07decca0f0", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B13-璃月-归离原4.json", + "type": "file", + "hash": "0431a8c1df73123a1029c2dc82fc419ab976bd4b", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B14-璃月-归离原5(收集450).json", + "type": "file", + "hash": "23f9aa16ff6b0deee575c130d06d31f0f2a608c9", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B15-璃月-孤云阁.json", + "type": "file", + "hash": "bc608436b8d5da83c89233e6ed69ba60050350c4", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B16-璃月-渌华池1(运行2.5h).json", + "type": "file", + "hash": "066d93eacb4c02df3a9ae0c5f6f0b255549c7377", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B17-璃月-渌华池2.json", + "type": "file", + "hash": "c156576fce687002be703541b2ea50db056a23da", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B18-璃月-渌华池3.json", + "type": "file", + "hash": "eab6000118187e11f6cedb78a34a95fb34a67d70", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B19-璃月-遁玉陵.json", + "type": "file", + "hash": "4d388a8f3f2da3d3c75815a7f94ae79b69f37c4d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B20-璃月-璃月港.json", + "type": "file", + "hash": "039c7e2a99476a65112529d74876078079da68fe", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B21-璃月-天衡山1(收集500).json", + "type": "file", + "hash": "f3585acb70c75b3552131ee3a87860b7338f402f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B22-璃月-天衡山2.json", + "type": "file", + "hash": "e22adb96b04cbb60aeb0bdd37d4ce7160cb197e8", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B23-璃月-天衡山3.json", + "type": "file", + "hash": "0576dac10db87797fd82ab471469af7b61c7720e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B24-璃月-青墟浦1.json", + "type": "file", + "hash": "7678df1a5235f0e04bd8e8481755ee06d651fa26", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B25-璃月-青墟浦2.json", + "type": "file", + "hash": "75bff82001bd134cfd666427df5b558b48de4635", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B26-璃月-灵矩关1.json", + "type": "file", + "hash": "c1a8e7ab08438b581cc9d2dc0c05c139840f9416", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B27-璃月-灵矩关2(收集550).json", + "type": "file", + "hash": "a595e2333810f9ddf0cec62761eb5500bb4f72b3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B28-璃月-灵矩关3(运行3h).json", + "type": "file", + "hash": "d7078209f89cf33ebf8e76f614c617c8b7f09edb", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B29-璃月-天遒谷1.json", + "type": "file", + "hash": "e7fc39aa0beb2f21622c5c049bf5eb45181fce2f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B30-璃月-天遒谷2.json", + "type": "file", + "hash": "80ce0b6baa9dbe3808e9ec97eebe596512b14c31", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B31-璃月-翠玦坡1(收集600).json", + "type": "file", + "hash": "56a23a86660821a36bd40c373c7ed6f83a2dd1e5", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B32-璃月-翠玦坡2.json", + "type": "file", + "hash": "d69498838d0c0ba436d50c7de2e41b7c10f09e1f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B33-璃月-奥藏山1.json", + "type": "file", + "hash": "736837cc6e2cdc228213f5fb87eddc7c1d5d474a", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B34-璃月-奥藏山2.json", + "type": "file", + "hash": "4b8eb3ec1b016f60a5eb8ba969c9b3862deee406", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B35-璃月-绝云间1(收集650h,运行3.5h).json", + "type": "file", + "hash": "44aec8016ebba3f07c87ef9dab276fb41dd83528", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B36-璃月-绝云间2.json", + "type": "file", + "hash": "fc02c6e5206ee612abcb6fffeed200f32cc8aad9", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B37-璃月-绝云间3.json", + "type": "file", + "hash": "52ae22e4578ff4c81050c7d0458a71ff9bb371b3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B38-璃月-绝云间4.json", + "type": "file", + "hash": "cb1aa791da24ebf0c8e3732b642f4e6e8d27b733", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B39-璃月-庆云顶.json", + "type": "file", + "hash": "3bbc2630083817173dbace5c138e59be95306ae5", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B40-璃月-琥牢山1.json", + "type": "file", + "hash": "1d89a69178b100909b9816932b80efc24ecf04f4", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B41-璃月-琥牢山2.json", + "type": "file", + "hash": "60d5c13f3c7d5d1fb4ecca98e8b824f6cf134655", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B42-璃月-南天门(收集700).json", + "type": "file", + "hash": "e99c805c4a210188ead8c41df25000b22208fc66", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B43-璃月-采樵谷1.json", + "type": "file", + "hash": "180c85ff35962f8b54c38785b4ec9ab27dff7835", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B44-璃月-采樵谷2(收集750).json", + "type": "file", + "hash": "274069075729ddcb87ce9229934573bf861b2341", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B45-沉玉谷-翘英庄1(运行4h).json", + "type": "file", + "hash": "a4d79e2cd6608258ba90f9940b20b6680f310c07", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B46-沉玉谷-翘英庄2.json", + "type": "file", + "hash": "2a6153895c6cb0873f48a9ca324d446e5d319ec0", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B47-沉玉谷-翘英庄3.json", + "type": "file", + "hash": "325d7476dc78ca6186fbb376815a3a0b654c33c6", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B48-沉玉谷-灵濛山1.json", + "type": "file", + "hash": "74a9615a286ace267adc3377a8c62de1f904857d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B49-沉玉谷-灵濛山2.json", + "type": "file", + "hash": "d498fc2d46718c4f7a69e4e3da011c7d4849d346", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B50-沉玉谷-药蝶谷(收集800).json", + "type": "file", + "hash": "1b974d402ab8f68e3d5f7b1c7438d25929326bbb", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B51-沉玉谷-古茶树坡.json", + "type": "file", + "hash": "c8ec5f4225f1641262b0bbcf66cf0058bc6803c7", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B52-沉玉谷-赤璋城垣1.json", + "type": "file", + "hash": "b3d29951475f4fcd16ce441902ab41d071836d45", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B53-沉玉谷-赤璋城垣2.json", + "type": "file", + "hash": "522e82ba975f49ac17e118af1d40712671f2ce52", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B54-沉玉谷-赤璋城垣3(运行4.5h).json", + "type": "file", + "hash": "c24c4d6d8ad0c035872630e8c24c9bb7bda255c3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B55-沉玉谷-悬练山(收集850).json", + "type": "file", + "hash": "a4351569a1bf07a6881c251b34e0bebd9232e997", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B56-沉玉谷-遗珑埠.json", + "type": "file", + "hash": "67c75d3d75dd3aeea9e4478f21e2a1b9309a48a9", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B57-沉玉谷-暝垣山.json", + "type": "file", + "hash": "61a052fb521392c3be44d08ac797b5a0c0d84371", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B58-沉玉谷-宝玦口.json", + "type": "file", + "hash": "0385543517fc41f8b5b74dd39158f4693905e551", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B59-沉玉谷-赤望台1.json", + "type": "file", + "hash": "f4be8a8dd71d639538f5c36165c48c1dde679b85", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B60-沉玉谷-赤望台2(收集900).json", + "type": "file", + "hash": "02622b51795644869146824045d2bef6ba33756e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B61-沉玉谷-赤望台3.json", + "type": "file", + "hash": "559c1dc848e2da75c76aac64afc742e0578cb059", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷B62-沉玉谷-赤望台4.json", + "type": "file", + "hash": "efeab03fa78a97f7a934c8b002de28ec6df1f672", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C01-稻妻-鸣神岛-离岛.json", + "type": "file", + "hash": "44a4a42e6c39a4419141904972095e9835ae3dfc", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C02-稻妻-鸣神岛-荒海1.json", + "type": "file", + "hash": "1b4c03fd8c1d0bfadaafc9c9bc51ef0e4e1e40bd", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C03-稻妻-鸣神岛-荒海2.json", + "type": "file", + "hash": "6a88e07ddcc35b625372b1b3187d438f562c7163", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C04-稻妻-鸣神岛-绀田村.json", + "type": "file", + "hash": "f27d1f973dca504f794e855baa13129098a8361d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C05-稻妻-鸣神岛-神樱大社.json", + "type": "file", + "hash": "eb425041a280b7e905e3bd8c9017fc5ddea6efc2", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C06-稻妻-鸣神岛-神里屋敷.json", + "type": "file", + "hash": "38873162a3092ddeca0a30f2f77fd9233c76f7f6", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C07-稻妻-鸣神岛-白狐之野(运行5h).json", + "type": "file", + "hash": "ec7bf7652e40e3f6b49aacc4ec7fba242e2e01e0", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C08-稻妻-鸣神岛-稻妻城1.json", + "type": "file", + "hash": "178cdac1889a4dd0fb21d350f9dfea08d5d16111", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C09-稻妻-鸣神岛-稻妻城2.json", + "type": "file", + "hash": "f6954d5b57ce3241d7c897e07f1d45149f9b3dd5", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C10-稻妻-鸣神岛-堇色之庭(收集950).json", + "type": "file", + "hash": "fd885a54099801f6b2e9839a1b35244752e1e291", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C11-稻妻-神无冢-九条阵屋1.json", + "type": "file", + "hash": "b2b10d2e2db1163f512df69b59779f3782fefb78", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C12-稻妻-神无冢-九条阵屋2.json", + "type": "file", + "hash": "43108fdd5db044f5acd61586dc0a5a42a00a2016", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C13-稻妻-神无冢-无相之火.json", + "type": "file", + "hash": "cf29d7d507e5a5172c4010eaaca4d9106d2950f7", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C14-稻妻-神无冢-踏鞴砂1.json", + "type": "file", + "hash": "f36cbea557dba4881408d20e3bd58631c869a435", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C15-稻妻-神无冢-踏鞴砂2.json", + "type": "file", + "hash": "a1f286b84ef58ca228ed3e8890c188e6801c6515", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C16-稻妻-神无冢-踏鞴砂3.json", + "type": "file", + "hash": "b78fff66fe78c052d2bbc78b449a506e3e9f8d62", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C17-稻妻-神无冢-踏鞴砂4.json", + "type": "file", + "hash": "d5078ee029122eac36c9e1fdeab3f37fd508cf93", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C18-稻妻-神无冢-名椎滩.json", + "type": "file", + "hash": "8be2b8faffc2a12f7252dad0154e9809996d6b0f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C19-稻妻-八酝岛-无想刃狭间.json", + "type": "file", + "hash": "038d01725754359974ae957c067c06ef5ac1cec3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C20-稻妻-八酝岛-藤兜砦1(收集1000).json", + "type": "file", + "hash": "72f1b2ac7b20212e7f91d686ffb5e4ebdfb285e4", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C21-稻妻-八酝岛-藤兜砦2.json", + "type": "file", + "hash": "5a5ac57db567b85b1cf9412e22f530d9a696158e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C22-稻妻-八酝岛-绯木村.json", + "type": "file", + "hash": "30403cbdf6cb7cd68ccc30251dce5c3297ba032b", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C23-稻妻-八酝岛-蛇神之首1.json", + "type": "file", + "hash": "5f1acea08a6f987f03b62af8791e9def8e0cda27", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C24-稻妻-八酝岛-蛇神之首2.json", + "type": "file", + "hash": "1a034f374704fa8bdd92901f1ab60758d1532c11", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C25-稻妻-八酝岛-蛇骨矿洞1.json", + "type": "file", + "hash": "760c52faba19d0f688cacb5b1c4901e15c8e08e5", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C26-稻妻-八酝岛-蛇骨矿洞2(运行5.5h).json", + "type": "file", + "hash": "0af16d1e0c360acf4bbfa9135785e134dc78bebf", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C27-稻妻-八酝岛-蛇骨矿洞3(收集1050).json", + "type": "file", + "hash": "0e2a1401047ead2ebce0f0ae60ad5e0815d3ee3d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C28-稻妻-海祇岛-水月池1.json", + "type": "file", + "hash": "92da8427b3c66bd39957effb175382f2003afa0a", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C29-稻妻-海祇岛-水月池2.json", + "type": "file", + "hash": "2ae04d1ea036c0c31f1eb817bce13362635162f9", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C30-稻妻-海祇岛-曚云神社.json", + "type": "file", + "hash": "cbae478fd4d59e5d98be544c4cc5bdf0e9f93172", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C31-稻妻-海祇岛-珊瑚宫.json", + "type": "file", + "hash": "4b0c8f92db8316eec899cc40b90be1aeb1752da6", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C32-稻妻-海祇岛-望泷村1.json", + "type": "file", + "hash": "649a00ce23797c20c12cc0abdcc84b4c500cff25", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C33-稻妻-海祇岛-望泷村2.json", + "type": "file", + "hash": "42fea95663fb9957caacf8720f1b5df2dfee0a7d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C34-稻妻-清籁岛-越石村.json", + "type": "file", + "hash": "9cd10f8632ea6a39dd89c1e9b0a23d13aab42f50", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C35-稻妻-清籁岛-平海砦.json", + "type": "file", + "hash": "93ff80f7dbe9d67fcd474f4bffe342d56d169255", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C36-稻妻-清籁岛-天云峠1.json", + "type": "file", + "hash": "b8730c4990b719eb4e5160ff90895b648f33158d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C37-稻妻-清籁岛-天云峠2(收集1100).json", + "type": "file", + "hash": "2c2e552402344cc3e6aed0c7b83f3ce34aaa8df2", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C38-稻妻-清籁岛-浅濑神社.json", + "type": "file", + "hash": "4a6d474d5f45a1a900a49adecaed73e65ab84755", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C39-稻妻-鹤观-知比山.json", + "type": "file", + "hash": "85544c6fd5021075688b0c683cf98c13817bff3a", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C40-稻妻-鹤观-笈名海滨.json", + "type": "file", + "hash": "f31fffe8802e5294ad39c36c58670be25e87c748", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C41-稻妻-鹤观-茂知祭场1.json", + "type": "file", + "hash": "5baf4693f491e7fae09011118e941c8534afa1f4", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C42-稻妻-鹤观-茂知祭场2.json", + "type": "file", + "hash": "b25fe8bd13319e84ae8e11e4118da8e5e283dc86", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C43-稻妻-鹤观-茂知祭场3(收集1150,运行6h).json", + "type": "file", + "hash": "44fe4d1d3e755e4d3ed38a78913553cdb055d8e3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C44-稻妻-鹤观-茂知祭场4.json", + "type": "file", + "hash": "e77235593409dbbbf29cb766320ebae193e2ba09", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C45-稻妻-鹤观-惑饲滩.json", + "type": "file", + "hash": "621e0f991f7bc4aae59101b4bf84bd85031e5e83", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷C46-稻妻-鸣神岛-镇守之森.json", + "type": "file", + "hash": "138d6bd6df1dc60c081cd819ad97baf71cae5129", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E01-枫丹-海露港.json", + "type": "file", + "hash": "ef61ac9c8a853a92c48a071de036669b32884e94", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E02-枫丹-厄里那斯1.json", + "type": "file", + "hash": "c3ffe51ab777b5080d6c051131dd7b05c2f70272", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E03-枫丹-厄里那斯2.json", + "type": "file", + "hash": "236b3711a796b1be2a7a31c4489864b9cfda44d4", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E04-枫丹-厄里那斯3.json", + "type": "file", + "hash": "6046b57da52621717ce3a92529df8c64440fa905", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E05-枫丹-厄里那斯4.json", + "type": "file", + "hash": "3ec968b8d723c2b4e655d89f8d05963c50c3d809", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E06-枫丹-厄里那斯5.json", + "type": "file", + "hash": "ab3111a9e9961c16c3c085ef721385e18e7f2839", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E07-枫丹-秋分山西侧.json", + "type": "file", + "hash": "3e6052e431320aa836c16d8c65cabfa57a67369a", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E08-枫丹-秋分山东侧(收集1200).json", + "type": "file", + "hash": "d8448f713eb87c3ab6b4c80f3f8511881735d7a6", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E09-枫丹-枫丹廷1.json", + "type": "file", + "hash": "ad89c2162fb510afcdaed2e9b135f8fbfce2f743", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E10-枫丹-枫丹廷2.json", + "type": "file", + "hash": "8351d78529d5efc96ff7c1f725cf5085b1970908", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E11-枫丹-芒索斯山东麓.json", + "type": "file", + "hash": "23a3e80ded3935fc7f332a66e08d89ff855b0bbe", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E12-枫丹-新枫丹科学院1.json", + "type": "file", + "hash": "b00de26fba89aace6e6ef089413de4ad72c1d68a", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E13-枫丹-新枫丹科学院2(运行6.5h).json", + "type": "file", + "hash": "ba8912c9324fbb9f8cb03c57a9f7f11810339644", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E14-枫丹-新枫丹科学院3.json", + "type": "file", + "hash": "02a72fd0666612b4c405b6a49e36cbb8f8fc8b06", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E15-枫丹-新枫丹科学院4(收集1250).json", + "type": "file", + "hash": "f86944c72f0e96ab241541530da13a7bc08269ab", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E16-枫丹-新枫丹科学院5.json", + "type": "file", + "hash": "834b05586d13628f0b622c9380e22bb9064462f8", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E17-枫丹-中央实验室遗址1.json", + "type": "file", + "hash": "e06c8f6f9a15335d2fb5ca62a085b1760c8c7d46", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E18-枫丹-中央实验室遗址2.json", + "type": "file", + "hash": "4469c0dd8874a9ed09caad232fcc2c016f2797c8", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E19-枫丹-中央实验室遗址3.json", + "type": "file", + "hash": "48c5881c298143ec62c1ab6b6542f959e58f4735", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E20-枫丹-优兰尼娅湖(收集1300).json", + "type": "file", + "hash": "0583046c1053afb10f2aac7678961c470cf6181b", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E21-枫丹-茉洁站.json", + "type": "file", + "hash": "baaa21ece125162b7abbd3d84df0b0416c9fb048", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E22-枫丹-幽林雾道1.json", + "type": "file", + "hash": "a807106a780e1fdfa2e5bd98e12f535c157fd8f3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E23-枫丹-幽林雾道2.json", + "type": "file", + "hash": "b9eb123ae7bf3c2311221ccfd0942766589db6ae", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E24-枫丹-湖中垂柳.json", + "type": "file", + "hash": "680436d5851ae468cf0f5f7e90a44807b68cd6ed", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E25-枫丹-卡布狄斯堡遗迹(收集1350,运行7h).json", + "type": "file", + "hash": "d2a18a387b71ea552dd1958561f54262bec181f6", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷E26-枫丹-佩特莉可镇.json", + "type": "file", + "hash": "07abe5718d2e5883add03847add9308f0a94fdd8", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F01-纳塔-回声之子.json", + "type": "file", + "hash": "cb7749750fc0836599ed882c8930a4a389b5335e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F02-纳塔-流泉之众1.json", + "type": "file", + "hash": "2abbf7241fcdfa8002524fef0f9e88d479ad03eb", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F03-纳塔-流泉之众2.json", + "type": "file", + "hash": "609218605051e518b9182f94c017febda398c21d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F04-纳塔-流泉之众3.json", + "type": "file", + "hash": "7b5f94b29ef26df3732f93b5fc65ffaaa5745229", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F05-纳塔-流泉之众4.json", + "type": "file", + "hash": "d67431ec27ac6e5823790a5bc7ce9b2c52ef1da2", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F06-纳塔-流泉之众5.json", + "type": "file", + "hash": "609daf5b5554ddbe29357c8e2c475a749ae44383", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F07-纳塔-烟密主1.json", + "type": "file", + "hash": "8c0f2e7480f7f60ebc70981c032f92546dee47f3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F08-纳塔-烟密主2.json", + "type": "file", + "hash": "c3953f9b61c6f1d733ab3e445fe5dd287da861d7", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F09-纳塔-烟密主3.json", + "type": "file", + "hash": "21b4841e1e09c73360a284421feb1ff94787b9e3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F10-纳塔-烟密主4.json", + "type": "file", + "hash": "731ce36fd3bdd82c1a7d8fc308e1ef200860b737", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F11-纳塔-花语会1.json", + "type": "file", + "hash": "6424cba023378d6d53bb8ee251133ed82f5c657c", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F12-纳塔-花语会2.json", + "type": "file", + "hash": "07a7d46b6d453b7d59dd78bca21cfe99bec8a97b", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F13-纳塔-花语会3.json", + "type": "file", + "hash": "d3f505cbd1310afc0e1748ab1238d5642147985e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F14-纳塔-花语会4.json", + "type": "file", + "hash": "d93d38547945db9aa371483889a9a4297f216d3e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F15-纳塔-花语会5.json", + "type": "file", + "hash": "df5b9cb6ee916ffdb07c7887938943448645e0d3", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + }, + { + "name": "薄荷F16-纳塔-花语会6(收集1396,运行7.35h).json", + "type": "file", + "hash": "81029e4d4849adf8a056530a0173e57eabfac200", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷全收集" + ] + } + ] + }, + { + "name": "薄荷效率(半小时200个,每天刷新)", + "type": "directory", + "children": [ + { + "name": "薄荷效率01-枫丹-佩特莉可镇.json", + "type": "file", + "hash": "1c869d59d2f9b6db38cadb14ac60f62e3dd62f09", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率02-枫丹-秋分山东侧.json", + "type": "file", + "hash": "81cd766c498b1e5fffdbb40204ea7426d82ddd06", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率03-枫丹-幽林雾道2.json", + "type": "file", + "hash": "3ca64eb505cb5640fdc27c7769929ea582236f74", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率04-雪山-近郊2.json", + "type": "file", + "hash": "b98238b3c2a79f1e1a2baf2cdeca521467d36459", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率05-雪山-近郊1.json", + "type": "file", + "hash": "d5a2fde19acc31e6164ca4d2f5de03f5bce9a49d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率06-稻妻-清籁岛-浅濑神社.json", + "type": "file", + "hash": "968e518ae5f8f2f5c60ba66c7617033ab416ccda", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率07-枫丹-湖中垂柳.json", + "type": "file", + "hash": "03f003bf7e808ec37830cb100362b0f41d55352d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率08-璃月-归离原1.json", + "type": "file", + "hash": "f3ffd60890708fb260c5870f6aaf892988ffa8ad", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率09-稻妻-海祇岛-珊瑚宫.json", + "type": "file", + "hash": "903613cbf63c512c30dcc4dc4c734e9ce5bf2ec8", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率10-蒙德-风起地2.json", + "type": "file", + "hash": "79de18dcf5f4f1f67801116888b807729ef02e27", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率11-稻妻-八酝岛-蛇骨矿洞3.json", + "type": "file", + "hash": "a7ca0a100aff994e8bcef8f6afe2834738551f4d", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率12-稻妻-鸣神岛-绀田村.json", + "type": "file", + "hash": "15ab1bdc991c481d8b577266473393d4ce6dcfa6", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率13-枫丹-优兰尼娅湖.json", + "type": "file", + "hash": "82ceebebe66f77bba7e215bab8c445a2ae6006dd", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率14-稻妻-八酝岛-藤兜砦2.json", + "type": "file", + "hash": "1d05dd75ffa147a13da75524ac9a6aacc80dfb49", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率15-枫丹-新枫丹科学院5.json", + "type": "file", + "hash": "150c65acd5804561a142858b1a9e94c3785e1a7f", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率16-稻妻-鹤观-茂知祭场2.json", + "type": "file", + "hash": "eb6b3c1f9fb693f3c9e90e2fe26d4c942910e400", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率17-枫丹-幽林雾道1.json", + "type": "file", + "hash": "8017ade85efe16bb9dfcb6f207ea49b339d1f4e5", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + }, + { + "name": "薄荷效率18-璃月-归离原2.json", + "type": "file", + "hash": "d5af5ceb204d99aa57a71f52323e9f2895ac83b6", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "薄荷", + "薄荷效率(半小时200个,每天刷新)" + ] + } ] } ] @@ -1623,7 +2524,7 @@ "name": "沉玉仙茗-灵濛山(一)-璃月1个.json", "type": "file", "hash": "1cfec371d29c4150f9a5fbe5724a62a4de260b51", - "version": "1cfec37", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -1634,7 +2535,7 @@ "name": "沉玉仙茗-灵濛山(二)-璃月1个.json", "type": "file", "hash": "db965ec2a66bec9386ba01774af83035b1dc5925", - "version": "db965ec", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -1645,7 +2546,7 @@ "name": "沉玉仙茗-翘英庄-璃月9个.json", "type": "file", "hash": "a6032c4596265b8d06f32faf0c4724e3ebf82091", - "version": "a6032c4", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -1656,7 +2557,7 @@ "name": "沉玉仙茗-翘英庄-璃月X个.json", "type": "file", "hash": "f927d942378b74127de61f8085a6777f7b37ac8b", - "version": "f927d94", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -1667,7 +2568,7 @@ "name": "沉玉仙茗-药蝶谷-璃月2个.json", "type": "file", "hash": "3d78445513575bc4b468a8ab081e03cb7f2e35ec", - "version": "3d78445", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -1678,7 +2579,7 @@ "name": "沉玉仙茗-遗珑埠(上)-璃月3个.json", "type": "file", "hash": "e46ec3d65fd55b57e6fd3e5da1f3891273031a62", - "version": "e46ec3d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -1689,7 +2590,7 @@ "name": "沉玉仙茗-遗珑埠(下)-璃月6个.json", "type": "file", "hash": "0ed4b41868f07643e88ef1ad8ebdcce3777b9cc2", - "version": "0ed4b41", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -1706,7 +2607,7 @@ "name": "赤念果.json", "type": "file", "hash": "1853f164090b437d58112afe8f22409660df85b8", - "version": "1853f16", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1718,7 +2619,7 @@ "name": "赤念果10.json", "type": "file", "hash": "4674a727614d3f126d8c608b74420c7736e69706", - "version": "4674a72", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1730,7 +2631,7 @@ "name": "赤念果11.json", "type": "file", "hash": "4c36f555cf8a17b83e06a51730a255cc296627a4", - "version": "4c36f55", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1742,7 +2643,7 @@ "name": "赤念果12.json", "type": "file", "hash": "bce96d50e77fd06bd3d8214b20e261024fb2c553", - "version": "bce96d5", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1754,7 +2655,7 @@ "name": "赤念果13.json", "type": "file", "hash": "a3a12e1bc1564c4e6542970cb5bae673b06b3e4a", - "version": "a3a12e1", + "version": "1.0", "author": "½", "description": "", "tags": [ @@ -1767,7 +2668,7 @@ "name": "赤念果14.json", "type": "file", "hash": "a2eaa75e1954817c96403ec6f8a70ba9e637af26", - "version": "a2eaa75", + "version": "1.0", "author": "½", "description": "", "tags": [ @@ -1779,7 +2680,7 @@ "name": "赤念果15.json", "type": "file", "hash": "f2f4743e4baeed69710d844b9ddf18b623505cd8", - "version": "f2f4743", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1791,7 +2692,7 @@ "name": "赤念果16.json", "type": "file", "hash": "587f0cd8f0430261f060dde64d1127aff9542c87", - "version": "587f0cd", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1803,7 +2704,7 @@ "name": "赤念果2.json", "type": "file", "hash": "9dbf9850be992d6ac12465e5474c743bbf7f8d84", - "version": "9dbf985", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1815,7 +2716,7 @@ "name": "赤念果3.json", "type": "file", "hash": "17f438724c8d3081718b65371786b6a0c3430f2b", - "version": "17f4387", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1827,7 +2728,7 @@ "name": "赤念果4.json", "type": "file", "hash": "1427e77154c3b0015151dfdbf9ce05c4a2ae2673", - "version": "1427e77", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1839,7 +2740,7 @@ "name": "赤念果5.json", "type": "file", "hash": "8c1a4b1feea806835d482c5085ffbcc2f0ebdbb2", - "version": "8c1a4b1", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1851,7 +2752,7 @@ "name": "赤念果6.json", "type": "file", "hash": "125fa14fa7c8c3221604a6812b4fa572cc3b6a53", - "version": "125fa14", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1863,7 +2764,7 @@ "name": "赤念果7.json", "type": "file", "hash": "912bec12512e516f2e3b4416c1e5b358cc2b4d4d", - "version": "912bec1", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1875,7 +2776,7 @@ "name": "赤念果8.json", "type": "file", "hash": "30683966b713a6364254995ac8d4acfd37503c18", - "version": "3068396", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1887,7 +2788,7 @@ "name": "赤念果9.json", "type": "file", "hash": "8b7632080cea9b32a78005e7efcd729e7e3029ea", - "version": "8b76320", + "version": "1.0", "author": "½", "description": "需要纳西妲", "tags": [ @@ -1905,7 +2806,7 @@ "name": "中央实验室基地东.json", "type": "file", "hash": "4d69ed80349243716937b1ce6c4ba1c5e99a02af", - "version": "4d69ed8", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -1916,7 +2817,7 @@ "name": "中央实验室基地东北.json", "type": "file", "hash": "6b64b73f68c236351f411113ea702a9e202ee307", - "version": "6b64b73", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -1927,7 +2828,7 @@ "name": "中央实验室基地东南.json", "type": "file", "hash": "5ebb9cf83146f5f31dbb7cbc4161bd49bb4a4e02", - "version": "5ebb9cf", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -1938,7 +2839,7 @@ "name": "仓晶区南.json", "type": "file", "hash": "2a956ad0ccfc6f6e2ffbcd30fc239c53cc580187", - "version": "2a956ad", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -1949,7 +2850,7 @@ "name": "仓晶区南2.json", "type": "file", "hash": "28f8727c1dfb368185eb202c780ea5b9053c4d5b", - "version": "28f8727", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -1960,7 +2861,7 @@ "name": "仓晶区南3.json", "type": "file", "hash": "8a0ca1013030fb996cfea7216a94a60415dfb888", - "version": "8a0ca10", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -1971,7 +2872,7 @@ "name": "优兰尼娅湖北.json", "type": "file", "hash": "3ea4c4d0e6188befa73f804a816a333d913d5b51", - "version": "3ea4c4d", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -1982,7 +2883,7 @@ "name": "卡布狄斯堡1.json", "type": "file", "hash": "e941885c087ab5e49bdce3583bb7e8bb42867856", - "version": "e941885", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -1993,7 +2894,7 @@ "name": "幽林雾道北.json", "type": "file", "hash": "b4c7b9c215d21b58f040fe949a75f3779088a386", - "version": "b4c7b9c", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2004,7 +2905,7 @@ "name": "新枫丹科学院东北.json", "type": "file", "hash": "66ad9707838fbbcf84d4e2008daa7e7b3f1279d7", - "version": "66ad970", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2015,7 +2916,7 @@ "name": "新枫丹科学院东南.json", "type": "file", "hash": "4c06eee3a7e938acf4ce9f779550cb6ffa7f5284", - "version": "4c06eee", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2026,7 +2927,7 @@ "name": "新枫丹科学院西北.json", "type": "file", "hash": "72189128a0881780cfddae6ae3949b7d6c6f1f16", - "version": "7218912", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2037,7 +2938,7 @@ "name": "枫丹厅西北.json", "type": "file", "hash": "1060d8163c8ad88f770d58609847e1d636d42257", - "version": "1060d81", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2048,7 +2949,7 @@ "name": "枫丹厅西北2.json", "type": "file", "hash": "ec1f035362e77a4e096a8099b68bf2b3817a4ad8", - "version": "ec1f035", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2059,7 +2960,7 @@ "name": "枫丹厅西北下.json", "type": "file", "hash": "f15057c12251ba32a7f075e97d3a4fc17b7e491a", - "version": "f15057c", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2070,7 +2971,7 @@ "name": "猎人本南.json", "type": "file", "hash": "4b84aef6960babc19e408230bd58c891aa4ffa40", - "version": "4b84aef", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2081,7 +2982,7 @@ "name": "秋分山西侧北.json", "type": "file", "hash": "5e5d573d1046d7348f4c11cdc953aa5bb856cdf9", - "version": "5e5d573", + "version": "1.0", "author": "cy", "description": "", "tags": [ @@ -2092,7 +2993,7 @@ "name": "纳塔万火之欧01.json", "type": "file", "hash": "b148a3dca9e3b3718ace59fcc953a2607f692a49", - "version": "b148a3d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2103,7 +3004,7 @@ "name": "纳塔万火之欧02.json", "type": "file", "hash": "37420e20125242c2bbde28642864225ea0439724", - "version": "37420e2", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2114,7 +3015,7 @@ "name": "纳塔万火之欧03 (1).json", "type": "file", "hash": "8654db94fe14836b41f184366a3d07591c0feae9", - "version": "8654db9", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2125,7 +3026,7 @@ "name": "纳塔坚岩缢谷01.json", "type": "file", "hash": "cfd3386ae10f2ec4354ca3a3a350287c7b29db32", - "version": "cfd3386", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2136,7 +3037,7 @@ "name": "纳塔坚岩缢谷02.json", "type": "file", "hash": "cbb21a0bdcc6d1b2b4a1c86dca30e9210c14f4d7", - "version": "cbb21a0", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2147,7 +3048,7 @@ "name": "纳塔坚岩缢谷03.json", "type": "file", "hash": "f7b6c18608d8e2aade5c712b9f8564a842e0016e", - "version": "f7b6c18", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2158,7 +3059,7 @@ "name": "纳塔坚岩缢谷04.json", "type": "file", "hash": "06ce8d0fef49f8f0f6ec37c8bbba0104dd52e88e", - "version": "06ce8d0", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2169,7 +3070,7 @@ "name": "纳塔坚岩缢谷七天神像 (1).json", "type": "file", "hash": "7ab56640c2373cdc96c3d0db355407bc70aa0481", - "version": "7ab5664", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -2180,7 +3081,7 @@ "name": "纳塔坚岩缢谷七天神像 2 (1).json", "type": "file", "hash": "d9e8e957155e48e89a8596e1833c968e8d332496", - "version": "d9e8e95", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2191,7 +3092,7 @@ "name": "纳塔奥奇卡纳塔下01.json", "type": "file", "hash": "f5ef1379fb276aeb5856c6f34b6362fbb9017444", - "version": "f5ef137", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2202,7 +3103,7 @@ "name": "纳塔奥奇卡纳塔右边小岛01.json", "type": "file", "hash": "f995e003e9a18a238b0cd1d7be0f549b73a1ca3b", - "version": "f995e00", + "version": "1.0", "author": "mfkvfhdx", "description": "", "tags": [ @@ -2213,7 +3114,7 @@ "name": "纳塔彩石顶01.json", "type": "file", "hash": "5c26715edd803f90e4ea51b2e95e7b7cc8c1ea68", - "version": "5c26715", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2224,7 +3125,7 @@ "name": "纳塔柴薪之丘01.json", "type": "file", "hash": "7af4acce81dfee6cd1f4319bbe806728e2e3df71", - "version": "7af4acc", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2235,7 +3136,7 @@ "name": "纳塔涌流地01 (1).json", "type": "file", "hash": "3c45082874850262785cdaf39c358b737bfed8fc", - "version": "3c45082", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -2246,7 +3147,7 @@ "name": "纳塔深渊古瞭望所01.json", "type": "file", "hash": "143a4dd73fcdb9f4cdfe25541621a20ba80d683b", - "version": "143a4dd", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2257,7 +3158,7 @@ "name": "纳塔深渊古瞭望所02.json", "type": "file", "hash": "e1a1f04cf7f32e9ff6dedcdec011748a89d65eea", - "version": "e1a1f04", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2268,7 +3169,7 @@ "name": "纳塔溶水域01 (1).json", "type": "file", "hash": "94974b1fc45bf2ee8ccee12d31900c87f60412ea", - "version": "94974b1", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2279,7 +3180,7 @@ "name": "纳塔溶水域02.json", "type": "file", "hash": "628862c88d9059288e82baca1188a4ca23189b18", - "version": "628862c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2290,7 +3191,7 @@ "name": "纳塔烟迷主.json", "type": "file", "hash": "95625d9dd0b2209989eab6754a2e650c3dd98cbd", - "version": "95625d9", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2301,7 +3202,7 @@ "name": "纳塔翘枝崖 (1).json", "type": "file", "hash": "ae21dd70d2a768198dbad81c7bbfcc7bf67b92ee", - "version": "ae21dd7", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2312,7 +3213,7 @@ "name": "纳塔花羽会.json", "type": "file", "hash": "18e2a6def1013ae01a7a06d34c4a0221fd11dbbb", - "version": "18e2a6d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2323,7 +3224,7 @@ "name": "纳塔花羽会003.json", "type": "file", "hash": "bd94939a50beefcbb3be5980fc1a68ad3182eea3", - "version": "bd94939", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2334,7 +3235,7 @@ "name": "纳塔花羽会004.json", "type": "file", "hash": "71434a623b861d281ba08d516138d26f32add553", - "version": "71434a6", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2345,7 +3246,7 @@ "name": "纳塔花羽会02 (1).json", "type": "file", "hash": "370c48ee2fd95fa29b80f37ea8e2d01d4016cc21", - "version": "370c48e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2356,7 +3257,7 @@ "name": "纳塔蕴火的废墟.json", "type": "file", "hash": "ace7d0cdb7ec834b84f4b02b32c1d76d47604043", - "version": "ace7d0c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2367,7 +3268,7 @@ "name": "纳塔虹灵净土.json", "type": "file", "hash": "a7ac02e44b1334b636709e5382142fd2764f3b6b", - "version": "a7ac02e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2378,7 +3279,7 @@ "name": "纳塔踞石山01.json", "type": "file", "hash": "1ecc2d1c077ae380a7aabd8dd3efe116f1f2df09", - "version": "1ecc2d1", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2389,7 +3290,7 @@ "name": "纳塔踞石山02.json", "type": "file", "hash": "7c0e1a67e5319385663397fb4c4b160cc7b13fa1", - "version": "7c0e1a6", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2400,7 +3301,7 @@ "name": "纳塔踞石山03 (1).json", "type": "file", "hash": "5144f88ceb67256ea384a0f51cbb9a5f3597f75b", - "version": "5144f88", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2411,7 +3312,7 @@ "name": "纳塔镜壁山.json", "type": "file", "hash": "08fc8eaa9ab8fe40f06e725ea16bc7f5519f7157", - "version": "08fc8ea", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2422,7 +3323,7 @@ "name": "纳塔镜壁山七天神像 (1).json", "type": "file", "hash": "d2a66d45891d348948670122bb4496ac1d0beda0", - "version": "d2a66d4", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2433,7 +3334,7 @@ "name": "纳塔镜壁山七天神像02 (1).json", "type": "file", "hash": "2cb1199a80f350691172aa7a7183f2aa7248ae41", - "version": "2cb1199", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -2450,7 +3351,7 @@ "name": "悼灵花-铁穆山-21个.json", "type": "file", "hash": "b4d15e735945b6f87982f6e8f8b9188413fb3dd3", - "version": "b4d15e7", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -2461,7 +3362,7 @@ "name": "悼灵花-锋刃林泽上侧-4个.json", "type": "file", "hash": "a892fdd9e5ac7719f93a301e83835b4a95c50021", - "version": "a892fdd", + "version": "1.0", "author": "曦", "description": "完成对应世界任务后可运行", "tags": [ @@ -2472,7 +3373,7 @@ "name": "悼灵花-锋刃林泽上侧02-10个.json", "type": "file", "hash": "c294647c34588d583190bcdff115ea0a6910289e", - "version": "c294647", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -2483,7 +3384,7 @@ "name": "悼灵花-锋刃林泽右侧-12个.json", "type": "file", "hash": "b9c0caf183363c078e82dba1dfa28736b0dcae7b", - "version": "b9c0caf", + "version": "1.0", "author": "曦", "description": "请带血牛", "tags": [ @@ -2496,6 +3397,67 @@ "name": "嘟嘟莲", "type": "directory", "children": [ + { + "name": "嘟嘟莲-无草神@忆雪晴", + "type": "directory", + "children": [ + { + "name": "01-嘟嘟莲-蒙德-清泉镇-x11-无草神.json", + "type": "file", + "hash": "5bcfca27ccf2b3d83867e2e67cb7c0449e9c4a35", + "version": "1.4", + "author": "忆雪晴-828632080", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "02-嘟嘟莲-蒙德-苍风高地-x2-无草神.json", + "type": "file", + "hash": "49a637a459b73c6c65fe590af8d2664184ff16b7", + "version": "1.3", + "author": "忆雪晴-828632080", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "03-嘟嘟莲-蒙德-摘星崖-x3-无草神.json", + "type": "file", + "hash": "31e218dfc8ec11faf43a93fc6ef7f8edd67ce1a0", + "version": "1.3", + "author": "忆雪晴-828632080", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "04-嘟嘟莲-蒙德-星落湖神像-x4-无草神.json", + "type": "file", + "hash": "e1b84eb98ff205e5e81755ea37771167fee14ed3", + "version": "1.3", + "author": "忆雪晴-828632080", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "05-嘟嘟莲-蒙德-奔狼领-x4-无草神.json", + "type": "file", + "hash": "1a40ca9583b0476786d77bf934ee704e7876c6a8", + "version": "1.3", + "author": "忆雪晴-828632080", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "tags": [ + "嘟嘟莲" + ] + } + ] + }, { "name": "嘟嘟莲@yulalaa&不瘦五十斤不改名", "type": "directory", @@ -2504,7 +3466,7 @@ "name": "嘟嘟莲1-清泉镇-11个.json", "type": "file", "hash": "68fb57993ea5a197e26961104d38f387cedcc6a9", - "version": "68fb579", + "version": "1.0", "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ @@ -2516,7 +3478,7 @@ "name": "嘟嘟莲2-达达乌帕谷-7个.json", "type": "file", "hash": "faac61d74660fe278a55c61f64a0f3edb14c47a9", - "version": "faac61d", + "version": "1.0", "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ @@ -2528,7 +3490,7 @@ "name": "嘟嘟莲3-晨曦酒庄-3个.json", "type": "file", "hash": "c0c3a1a9c10f8dbfbc6322602cf78a4832da6e1e", - "version": "c0c3a1a", + "version": "1.0", "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ @@ -2540,7 +3502,7 @@ "name": "嘟嘟莲4-奔狼领-4个.json", "type": "file", "hash": "dd111938f2ab685bd2a8251bf31bf72adf16076a", - "version": "dd11193", + "version": "1.0", "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ @@ -2552,7 +3514,7 @@ "name": "嘟嘟莲5-千风神殿-3个.json", "type": "file", "hash": "a780c604dc97799777df5110bd22fbefa72426a6", - "version": "a780c60", + "version": "1.0", "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ @@ -2564,7 +3526,7 @@ "name": "嘟嘟莲6-星落湖-2个.json", "type": "file", "hash": "473c71ba8d6f1bc341dfffc9fda3b0c52528f1f1", - "version": "473c71b", + "version": "1.0", "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ @@ -2582,7 +3544,7 @@ "name": "嘟嘟莲1.json", "type": "file", "hash": "45313326b838df1f99aaf0976bf3cc41a6332c6a", - "version": "4531332", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -2594,7 +3556,7 @@ "name": "嘟嘟莲2.json", "type": "file", "hash": "c4a454365bf9a7ae63cf75ce8ca279b9b5db5ed5", - "version": "c4a4543", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -2614,7 +3576,7 @@ "name": "墩墩桃1.json", "type": "file", "hash": "3f4fb3ff926c6ee6efe27211bdcd4a2f1d208f6a", - "version": "3f4fb3f", + "version": "1.0", "author": "风埠", "description": "卡萨扎莱宫左边墩墩桃20个", "tags": [ @@ -2625,7 +3587,7 @@ "name": "墩墩桃10.json", "type": "file", "hash": "9a6687f1d039e946c18c16c23b5e2044e974f0c8", - "version": "9a6687f", + "version": "1.0", "author": "风埠", "description": "墩墩桃", "tags": [ @@ -2636,7 +3598,7 @@ "name": "墩墩桃11.json", "type": "file", "hash": "bd08bce66f0317b6b0ad142172b1d946b9b98579", - "version": "bd08bce", + "version": "1.0", "author": "风埠", "description": "墩墩桃", "tags": [ @@ -2647,7 +3609,7 @@ "name": "墩墩桃14.json", "type": "file", "hash": "532ae399343fe8e27740ad1e49a8095b91d4ba61", - "version": "532ae39", + "version": "1.0", "author": "风埠", "description": "", "tags": [ @@ -2658,7 +3620,7 @@ "name": "墩墩桃16.json", "type": "file", "hash": "7596274eb73c57999d292e8ff26ed30c759933ec", - "version": "7596274", + "version": "1.0", "author": "风埠", "description": "", "tags": [ @@ -2669,7 +3631,7 @@ "name": "墩墩桃18.json", "type": "file", "hash": "cee03b9d31b802ed40000852db2eeff2c7719c30", - "version": "cee03b9", + "version": "1.0", "author": "风埠", "description": "", "tags": [ @@ -2680,7 +3642,7 @@ "name": "墩墩桃19.json", "type": "file", "hash": "c579c96efa733b48335b792197164ba4796284f5", - "version": "c579c96", + "version": "1.0", "author": "风埠", "description": "", "tags": [ @@ -2691,7 +3653,7 @@ "name": "墩墩桃2.json", "type": "file", "hash": "babb9c41f91fce004e1a48cc56cfbf22e929bfde", - "version": "babb9c4", + "version": "1.0", "author": "风埠", "description": "卡萨扎莱宫右下4个墩墩桃", "tags": [ @@ -2702,7 +3664,7 @@ "name": "墩墩桃20 .json", "type": "file", "hash": "9bbb2e47da975216cee6a6105679423ab3f73a4a", - "version": "9bbb2e4", + "version": "1.0", "author": "风埠", "description": "", "tags": [ @@ -2713,7 +3675,7 @@ "name": "墩墩桃3.json", "type": "file", "hash": "5fe572c9e72fd8de9cb4eb5f181781e7f58e5986", - "version": "5fe572c", + "version": "1.0", "author": "风埠", "description": "4个墩墩桃", "tags": [ @@ -2724,7 +3686,7 @@ "name": "墩墩桃4.json", "type": "file", "hash": "72bca26f902917c44757e08e7b90ba1e78d981fb", - "version": "72bca26", + "version": "1.0", "author": "风埠", "description": "4个墩墩桃", "tags": [ @@ -2735,7 +3697,7 @@ "name": "墩墩桃5.json", "type": "file", "hash": "bd6a2622fb1a9cee5bffab892311568e1f56bb79", - "version": "bd6a262", + "version": "1.0", "author": "墩墩桃5", "description": "4个墩墩桃", "tags": [ @@ -2746,7 +3708,7 @@ "name": "墩墩桃7.json", "type": "file", "hash": "5d0aeea40b8c7d60e5f47bdd84f17a3e50e6b671", - "version": "5d0aeea", + "version": "1.0", "author": "风埠", "description": "", "tags": [ @@ -2757,7 +3719,7 @@ "name": "墩墩桃8.json", "type": "file", "hash": "bd2cd9d95c3395eb89f7604c5604f1aba806c72a", - "version": "bd2cd9d", + "version": "1.0", "author": "风埠", "description": "墩墩桃", "tags": [ @@ -2768,7 +3730,7 @@ "name": "墩墩桃9.json", "type": "file", "hash": "461afd279e59cb6ffbaa57691c904be1581b643e", - "version": "461afd2", + "version": "1.0", "author": "风埠", "description": "", "tags": [ @@ -2785,7 +3747,7 @@ "name": "01绯樱绣球-稻妻城-6个.json", "type": "file", "hash": "4607882461060c773a027e100ef2ce11565645de", - "version": "4607882", + "version": "1.0", "author": "起个名字好难", "description": "雷元素法师可采集全,久歧忍漏第4个(大部分路径是久岐忍(二命行走/治疗位)可采集全,可两个都带,久岐忍序号排前)", "tags": [ @@ -2797,7 +3759,7 @@ "name": "02绯樱绣球-白狐之野-5个.json", "type": "file", "hash": "a931e6d21ee2fc1592cb5ac0060f06f6c82f4d42", - "version": "a931e6d", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -2809,7 +3771,7 @@ "name": "03绯樱绣球-绀田村-3个.json", "type": "file", "hash": "fefc03eb25f79b7cea9487919c1214dffc2a94bd", - "version": "fefc03e", + "version": "1.0", "author": "起个名字好难", "description": "久歧忍可采集全,引战导致雷元素法师漏采集1个", "tags": [ @@ -2821,7 +3783,7 @@ "name": "04绯樱绣球-荒海-10个.json", "type": "file", "hash": "29beb8a283f0e43a013d5e0784a7bd556eea468a", - "version": "29beb8a", + "version": "1.0", "author": "起个名字好难", "description": "久歧忍可采集全,引战导致雷元素法师漏采集最后1~2个", "tags": [ @@ -2833,7 +3795,7 @@ "name": "05绯樱绣球-荒海(砂流)-2个.json", "type": "file", "hash": "474a46aab31fa5432d35cc2e37f4a1df28183c36", - "version": "474a46a", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -2845,7 +3807,7 @@ "name": "06绯樱绣球-神里屋敷-10个.json", "type": "file", "hash": "c7ecfee995a668f444bb7864490f546119333424", - "version": "c7ecfee", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -2857,7 +3819,7 @@ "name": "07绯樱绣球-镇守之森-8个.json", "type": "file", "hash": "e55f8f5dfd6b3bfad02e90e94ee5ec38bc73deb8", - "version": "e55f8f5", + "version": "1.0", "author": "起个名字好难", "description": "雷元素法师可采集全,久岐忍漏最后1个(大部分路径是久岐忍(二命行走/治疗位)可采集全,可两个都带,久岐忍序号排前)", "tags": [ @@ -2869,7 +3831,7 @@ "name": "08绯樱绣球-鸣神大社-3个.json", "type": "file", "hash": "621d932e4843b44fe954917e7cd7feae53342bfc", - "version": "621d932", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -2881,7 +3843,7 @@ "name": "09绯樱绣球-鸣神大社神樱-3个.json", "type": "file", "hash": "343cf0496e2408e0f7c4d1ab2aadd66b5bd9068b", - "version": "343cf04", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -2893,7 +3855,7 @@ "name": "10绯樱绣球-影向山山顶-4个.json", "type": "file", "hash": "9b0a1d4fc07d6cd16ad8ba4043ac6bbbb56e54cb", - "version": "9b0a1d4", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -2905,7 +3867,7 @@ "name": "11绯樱绣球-影向山-7个.json", "type": "file", "hash": "5e3d7cb65be0f4fe8d0276ee1adfb3bca4af1d17", - "version": "5e3d7cb", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -2917,7 +3879,7 @@ "name": "12绯樱绣球-影向山山底-4个.json", "type": "file", "hash": "b86c53352708d4dfa45992318db195f9985e268e", - "version": "b86c533", + "version": "1.0", "author": "起个名字好难", "description": "丽莎可采集全,久岐忍漏第2个", "tags": [ @@ -2929,7 +3891,7 @@ "name": "13绯樱绣球-神樱大祓-8个.json", "type": "file", "hash": "cc150d9daf0de5eb7f589a9d671120045f17d645", - "version": "cc150d9", + "version": "1.0", "author": "起个名字好难", "description": "丽莎可采集全,久岐忍漏最后2个", "tags": [ @@ -2951,7 +3913,7 @@ "name": "风车菊_蒙德_8个.json", "type": "file", "hash": "5bc30a9c2171f6434936193923eacad2d17181ba", - "version": "5bc30a9", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -2968,7 +3930,7 @@ "name": "风车11.json", "type": "file", "hash": "b9feb1f94a7e46cf77b5774d5c489e3d436b148f", - "version": "b9feb1f", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -2979,7 +3941,7 @@ "name": "风车2.json", "type": "file", "hash": "d824cb49931454e3a4db0b001b92ac4ae87cd864", - "version": "d824cb4", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -2990,7 +3952,7 @@ "name": "风车3.json", "type": "file", "hash": "557934475274e3d15f30f22fce01e100d006b8ed", - "version": "5579344", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -3001,7 +3963,7 @@ "name": "风车4 (2).json", "type": "file", "hash": "25b2ab28c9d7a755e0de91838f644a6b39ab9098", - "version": "25b2ab2", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -3012,7 +3974,7 @@ "name": "风车4.json", "type": "file", "hash": "f4f40ddd7eb90b2c0ac8449c9b2e4ab82a121e8e", - "version": "f4f40dd", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -3023,7 +3985,7 @@ "name": "风车5.json", "type": "file", "hash": "13a95ddc053f48358ecf38b72f58a13d3b7f31f2", - "version": "13a95dd", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -3034,7 +3996,7 @@ "name": "风车6.json", "type": "file", "hash": "71dc4b6217851701f22b2d92d9fa9e4c57154782", - "version": "71dc4b6", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -3045,7 +4007,7 @@ "name": "风车8.json", "type": "file", "hash": "962f12ab0ba2e4c10f5fddef0bb77faa0e92e488", - "version": "962f12a", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -3056,7 +4018,7 @@ "name": "风车9 (2).json", "type": "file", "hash": "13e6dc173f202987d2419406e2ae06ab12f6c11c", - "version": "13e6dc1", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -3067,7 +4029,7 @@ "name": "风车9.json", "type": "file", "hash": "deeb0b76e950749c36db6d6392ed60075cbb4356", - "version": "deeb0b7", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -3084,7 +4046,7 @@ "name": "风车菊1.json", "type": "file", "hash": "c645861e5ab9d37f9eb29c9e08e89966f06828b2", - "version": "c645861", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -3096,7 +4058,7 @@ "name": "风车菊2.json", "type": "file", "hash": "d64f778c07c14bf504c62526bbd2ef077daf3138", - "version": "d64f778", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -3108,7 +4070,7 @@ "name": "风车菊3.json", "type": "file", "hash": "1e7ac6ace7db9fadbb43c24632aa19aec3f69f4e", - "version": "1e7ac6a", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -3128,7 +4090,7 @@ "name": "钩钩果-30个(有几率卡树洞里).json", "type": "file", "hash": "e7e7d6c872448f7bb1dd3a3de945b38fc22c3914", - "version": "e7e7d6c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3139,7 +4101,7 @@ "name": "钩钩果-奔狼岭-蒙德30个-需纳西妲.json", "type": "file", "hash": "a65911b2317386aa03355b85a02620fccecd2b40", - "version": "a65911b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3161,7 +4123,7 @@ "name": "鬼兜虫-白狐之野-1个.json", "type": "file", "hash": "c0e8faaedb8eff1aa83c3cdbe99c7ec9cf3c7de5", - "version": "c0e8faa", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3172,7 +4134,7 @@ "name": "鬼兜虫-神樱大祓-8个.json", "type": "file", "hash": "614d5978f370e1a997ca47b5864cb1dfc98fa7b0", - "version": "614d597", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3183,7 +4145,7 @@ "name": "鬼兜虫-神里屋敷-1个.json", "type": "file", "hash": "5670f95fff499739d01625474fcd1e6557dd1270", - "version": "5670f95", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3194,7 +4156,7 @@ "name": "鬼兜虫-荒海-1个.json", "type": "file", "hash": "3900a0abc40d198a50eb9bb34570c83adb3dbfed", - "version": "3900a0a", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3205,7 +4167,7 @@ "name": "鬼兜虫-镇守之森-3个.json", "type": "file", "hash": "21e176a9c208d192ab64ab27a287f6c7e9378217", - "version": "21e176a", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3216,7 +4178,7 @@ "name": "鬼兜虫01-踏鞴砂(东北侧)-2个.json", "type": "file", "hash": "167bda44a9e31ddff52432e578a65f25991c6fc0", - "version": "167bda4", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3227,7 +4189,7 @@ "name": "鬼兜虫02-踏鞴砂(西北侧)-7个(中途会引怪).json", "type": "file", "hash": "cc93b767b1619e2b8e63add0484eabb4178a958a", - "version": "cc93b76", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3238,7 +4200,7 @@ "name": "鬼兜虫03-踏鞴砂(北侧)-2个(会引怪).json", "type": "file", "hash": "366e124e03b653ec0f6e20ae773b4ac8ab2f9bd9", - "version": "366e124", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3249,7 +4211,7 @@ "name": "鬼兜虫04-无想刀狭间(东侧)-1个.json", "type": "file", "hash": "88d8d6b13d07b11827d9262fd9e1f8e885501d82", - "version": "88d8d6b", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3260,7 +4222,7 @@ "name": "鬼兜虫05-八酝岛(东南侧)-2个.json", "type": "file", "hash": "90876925a9b6f34f6bc102defd043c4fe67d1abe", - "version": "9087692", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3271,7 +4233,7 @@ "name": "鬼兜虫06-八酝岛(西南侧)-1个.json", "type": "file", "hash": "565192c2d6199fe26c53620f77eb8a04efe001f3", - "version": "565192c", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3282,7 +4244,7 @@ "name": "鬼兜虫07-八酝岛(中部)-1个 .json", "type": "file", "hash": "ef9e7841d992863315980a5fb3f3b356231f9e01", - "version": "ef9e784", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3293,7 +4255,7 @@ "name": "鬼兜虫08-八酝岛(西北侧龙骨南)-1个.json", "type": "file", "hash": "47482ec71fc7ba06da3bc410078e3f04eedaf9be", - "version": "47482ec", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3304,7 +4266,7 @@ "name": "鬼兜虫09-八酝岛(西北侧龙骨北)-1个.json", "type": "file", "hash": "424bdcc52e0e07cdec04ebd00d0a124bf5a81194", - "version": "424bdcc", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3321,7 +4283,7 @@ "name": "鬼兜虫-绀田村-1个(纳西妲).json", "type": "file", "hash": "2657d6eea9ee5d7977dd454c6d52d6bf987dbe52", - "version": "2657d6e", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3333,7 +4295,7 @@ "name": "鬼兜虫-镇守之森-4个(纳西妲).json", "type": "file", "hash": "774e2b8f1230bab83aa61c831a997b610c0d30d0", - "version": "774e2b8", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3345,7 +4307,7 @@ "name": "鬼兜虫01-稻妻城山洞-6个(纳西妲).json", "type": "file", "hash": "6b7e465fbf7cdaafa8527344f936f47005bf178c", - "version": "6b7e465", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3357,7 +4319,7 @@ "name": "鬼兜虫02-鸣神大社-6个(纳西妲).json", "type": "file", "hash": "08e2e42d25636512c27c5e5051fc31a95b1e7114", - "version": "08e2e42", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3369,7 +4331,7 @@ "name": "鬼兜虫03-砂流之庭-1个(纳西妲).json", "type": "file", "hash": "28bc44de67ba94001236f80d6e5411c6b7f54377", - "version": "28bc44d", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3381,7 +4343,7 @@ "name": "鬼兜虫04-九条阵屋-4个(纳西妲).json", "type": "file", "hash": "0b27c958993fd34187bb93855272ee5b20dfed47", - "version": "0b27c95", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3393,7 +4355,7 @@ "name": "鬼兜虫05-踏鞴砂(东北侧)-1个(纳西妲).json", "type": "file", "hash": "1881fe8d85e43c90cdac2215dea621ac72a5254b", - "version": "1881fe8", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3405,7 +4367,7 @@ "name": "鬼兜虫06-踏鞴砂(公义)-1个(纳西妲).json", "type": "file", "hash": "0bddf7b813eb81ae0094e70556f077e4a3847805", - "version": "0bddf7b", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3417,7 +4379,7 @@ "name": "鬼兜虫07-踏鞴砂(中部)-4个(纳西妲).json", "type": "file", "hash": "0292962ecdd357494960f3448758576169e016b3", - "version": "0292962", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -3437,7 +4399,7 @@ "name": "海草01-绀田村-稻妻6个.json", "type": "file", "hash": "2b876555d53d071e77b1c721171d127038e3c8c8", - "version": "2b87655", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3449,7 +4411,7 @@ "name": "海草02-荒海-稻妻3个.json", "type": "file", "hash": "652a1af89f5e55e753c713c469a34126b2607a16", - "version": "652a1af", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3461,7 +4423,7 @@ "name": "海草03-荒海-稻妻5个.json", "type": "file", "hash": "61b8f17c1da0c4d8c74a19c8f3b8184c8daba9a2", - "version": "61b8f17", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3473,7 +4435,7 @@ "name": "海草04-离岛-稻妻4个.json", "type": "file", "hash": "6a9c3dc903173964262787856400209ca3e8effb", - "version": "6a9c3dc", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3485,7 +4447,7 @@ "name": "海草05-白狐之野-稻妻3个.json", "type": "file", "hash": "1578f685b46cc7934fb4522e4ec3efae1a75cf92", - "version": "1578f68", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3497,7 +4459,7 @@ "name": "海草06-白狐之野-稻妻4个.json", "type": "file", "hash": "d6adaee891dcc2af7c8d70331f22f5da63fd82a9", - "version": "d6adaee", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3509,7 +4471,7 @@ "name": "海草07-堇色之庭-稻妻2个.json", "type": "file", "hash": "b1f428cb2e362fe830146dea8339e4fef00289f7", - "version": "b1f428c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3521,7 +4483,7 @@ "name": "海草08-九条阵屋-稻妻4个.json", "type": "file", "hash": "3ac55324eda1729557af97cac052ea8ed155ce1d", - "version": "3ac5532", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3533,7 +4495,7 @@ "name": "海草09-鞳鞴砂-稻妻4个.json", "type": "file", "hash": "586d239c6941cb29efb5d03f484354962ead8cf3", - "version": "586d239", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3545,7 +4507,7 @@ "name": "海草10-鞳鞴砂(无危)-稻妻7个.json", "type": "file", "hash": "46b3097a7db0366989a9aab437b23195f7297026", - "version": "46b3097", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3557,7 +4519,7 @@ "name": "海草10-鞳鞴砂(高危)-稻妻11个.json", "type": "file", "hash": "c793d067126b8247a1e013f0aaff965fa260b05b", - "version": "c793d06", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3569,7 +4531,7 @@ "name": "海草11-无想刃狭间(中危)-稻妻5个.json", "type": "file", "hash": "0fcd19bb2f362d74724f514091f840258ba65675", - "version": "0fcd19b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3581,7 +4543,7 @@ "name": "海草12-海祇岛-稻妻4个.json", "type": "file", "hash": "9fa8b57bfc03ba020c2c889888245c6c410e3cfe", - "version": "9fa8b57", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3593,7 +4555,7 @@ "name": "海草13-千来神祠-稻妻2个.json", "type": "file", "hash": "0806c2460ea507216105a6bcb85cb3cd072be391", - "version": "0806c24", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3605,7 +4567,7 @@ "name": "海草14-鹤观神像-稻妻2个.json", "type": "file", "hash": "dbfee40b26dfd5be7c58a0c1d26575f8867c2ea5", - "version": "dbfee40", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3617,7 +4579,7 @@ "name": "海草15-鹤观神像-稻妻3个.json", "type": "file", "hash": "4d1be5d9d1cc7a255b53c5def977cc768066188c", - "version": "4d1be5d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3629,7 +4591,7 @@ "name": "海草16-天云峠-稻妻4个.json", "type": "file", "hash": "7761677ba9fe7288d116229c781df3f3737b7ee7", - "version": "7761677", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3641,7 +4603,7 @@ "name": "海草17-越石村-稻妻4个.json", "type": "file", "hash": "9fc216434303b321971eaa1216e392422f22d41e", - "version": "9fc2164", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -3663,7 +4625,7 @@ "name": "海灵芝_九条阵屋下_稻妻_7个.json", "type": "file", "hash": "6bebbe728e4b9f6919e01b89445639972fa9dd45", - "version": "6bebbe7", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3674,7 +4636,7 @@ "name": "海灵芝_九条阵屋右_稻妻_7个.json", "type": "file", "hash": "16176fdeb82f15a85970030797517969b430264c", - "version": "16176fd", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3685,7 +4647,7 @@ "name": "海灵芝_九条阵屋左_稻妻_2个.json", "type": "file", "hash": "ef8170aa741634f9370436eceb42abceedff4da0", - "version": "ef8170a", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3696,7 +4658,7 @@ "name": "海灵芝_天云峠北方_稻妻_3个.json", "type": "file", "hash": "e9ecfe7a71c24390ff5d70313ab7c1b845de0e43", - "version": "e9ecfe7", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3707,7 +4669,7 @@ "name": "海灵芝_曚云神社西_稻妻_6个.json", "type": "file", "hash": "33bbae28f1b8db8ee56de15bd5e8737edc6320aa", - "version": "33bbae2", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3718,7 +4680,7 @@ "name": "海灵芝_望泷村东_稻妻_3个.json", "type": "file", "hash": "f39a67ba1bd41291822442851aa2e2afe7717788", - "version": "f39a67b", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3729,7 +4691,7 @@ "name": "海灵芝_望泷村西南_稻妻_3个.json", "type": "file", "hash": "9e686be8a1100cbc8973bb4e1b9c9d3007a30821", - "version": "9e686be", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3740,7 +4702,7 @@ "name": "海灵芝_水月池东南远处离岛_稻妻_2个.json", "type": "file", "hash": "75801ec897cd0b6cd209ca1daf54c7058b8574b6", - "version": "75801ec", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3751,7 +4713,7 @@ "name": "海灵芝_浅濑神社_稻妻_4个.json", "type": "file", "hash": "9bd06a579f74dbf368b2d906b4b32d6c274979d3", - "version": "9bd06a5", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3762,7 +4724,7 @@ "name": "海灵芝_清籁丸西北_稻妻_4个.json", "type": "file", "hash": "bff4154867cee556bbb77d99f18d706c5736d49b", - "version": "bff4154", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3773,7 +4735,7 @@ "name": "海灵芝_珊瑚宫西北_稻妻_5个.json", "type": "file", "hash": "24ce573730cfb21ca78c66d63f0ae78891c6d4ed", - "version": "24ce573", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3784,7 +4746,7 @@ "name": "海灵芝_绀田村左上角_稻妻_5个.json", "type": "file", "hash": "6470c3c4619e130e32459f17eabcab4c62c006f9", - "version": "6470c3c", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3795,7 +4757,7 @@ "name": "海灵芝_蛇神之首右_稻妻_5个.json", "type": "file", "hash": "dfe6e57cbd81fc484557c224a85734037782dbfa", - "version": "dfe6e57", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3806,7 +4768,7 @@ "name": "海灵芝_越石村东北_稻妻_8个.json", "type": "file", "hash": "0ebfc22de2f57c823874efde49d67cecd962cd0a", - "version": "0ebfc22", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3817,7 +4779,7 @@ "name": "海灵芝_踏鞴沙右下_稻妻_6个.json", "type": "file", "hash": "07a30bad8428c6688625251032f01b0f808f1e65", - "version": "07a30ba", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3828,7 +4790,7 @@ "name": "海灵芝_踏鞴沙左上_稻妻_9个.json", "type": "file", "hash": "a817a33c4fd56d55d86003d13e76220525e55c09", - "version": "a817a33", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -3845,7 +4807,7 @@ "name": "海灵芝1.json", "type": "file", "hash": "026a57d87a53dec15da68bc6b0121e34e538026f", - "version": "026a57d", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神性价比路线,要求队伍:必须带小草神", "tags": [ @@ -3857,7 +4819,7 @@ "name": "海灵芝2.json", "type": "file", "hash": "cbafe355439c9f88c86625cbbb74535d9e66394c", - "version": "cbafe35", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -3877,7 +4839,7 @@ "name": "海露花-中央实验室右侧-2个.json", "type": "file", "hash": "e78ba76f3b3c493ed13e7e07dcb035f410725ce2", - "version": "e78ba76", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -3889,7 +4851,7 @@ "name": "海露花-厄里那斯上侧-4个.json", "type": "file", "hash": "7e5d687b8f84f6708ab63aaa3c296780ddb75079", - "version": "7e5d687", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -3901,7 +4863,7 @@ "name": "海露花-厄里那斯右下角-6个.json", "type": "file", "hash": "6ec0ecad935b9cc1a71d3010c46470ca71ef5cca", - "version": "6ec0eca", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -3913,7 +4875,7 @@ "name": "海露花-幽林雾道-5个.json", "type": "file", "hash": "40396b12ba4cad4d934078295406c2208b38dfd0", - "version": "40396b1", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -3925,7 +4887,7 @@ "name": "海露花-柔灯港-10个.json", "type": "file", "hash": "85fa1f2f81837811aa68fb8b2b1b60f30f6019cb", - "version": "85fa1f2", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -3937,7 +4899,7 @@ "name": "海露花-茉洁站-6个.json", "type": "file", "hash": "e5d49a704bf503ac0f6ca0ee7976f8760e4663be", - "version": "e5d49a7", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -3955,7 +4917,7 @@ "name": "红果果菇-6个.json", "type": "file", "hash": "b9290d031315374d16e984e627cf0d07dd839640", - "version": "b9290d0", + "version": "1.0", "author": "HZYgrandma", "description": "", "tags": [ @@ -3972,7 +4934,7 @@ "name": "虹彩蔷薇-中央实验室遗址下方-4个.json", "type": "file", "hash": "5f0bbc95a8dc528306ab4a219c55f101861252a9", - "version": "5f0bbc9", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -3983,7 +4945,7 @@ "name": "虹彩蔷薇-厄里那斯左下角-11个.json", "type": "file", "hash": "28da19f31f13ad451817bf1d38e177b35a86188e", - "version": "28da19f", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -3994,7 +4956,7 @@ "name": "虹彩蔷薇-枫丹廷左上角-14个.json", "type": "file", "hash": "9810dad561b2273244b4ef84c8af2b4d8e2b4427", - "version": "9810dad", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4005,7 +4967,7 @@ "name": "虹彩蔷薇-枫丹廷左侧-15个.json", "type": "file", "hash": "f80bfb303e170fb1e112385fe3502c62cc2b3a2a", - "version": "f80bfb3", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4016,7 +4978,7 @@ "name": "虹彩蔷薇-秋分山西侧-5个.json", "type": "file", "hash": "1721903afe216e2ddb949adc9bd385664bf521b7", - "version": "1721903", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4027,7 +4989,7 @@ "name": "虹彩蔷薇-秋分山西侧海岛-11个.json", "type": "file", "hash": "2f8d6d77390a370c3fbf9f7fdcb10ade184980d7", - "version": "2f8d6d7", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4038,7 +5000,7 @@ "name": "虹彩蔷薇-茉洁站-5个.json", "type": "file", "hash": "9e3bc0fc1f03459e75092de7c3fb7912ba52953a", - "version": "9e3bc0f", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4055,7 +5017,7 @@ "name": "胡萝卜-奔狼岭(上)-蒙德8个.json", "type": "file", "hash": "656ea264e98b4e011a983b2887135bf428dc673d", - "version": "656ea26", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4066,7 +5028,7 @@ "name": "胡萝卜-奔狼岭(右)-蒙德4个.json", "type": "file", "hash": "0cf06635d277475ea94bdc796e77f25d2cb4785d", - "version": "0cf0663", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4077,7 +5039,7 @@ "name": "胡萝卜-归离原-璃月4个.json", "type": "file", "hash": "afe07709e482590b64d361be7e010bdef2145a7d", - "version": "afe0770", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4088,7 +5050,7 @@ "name": "胡萝卜-无相火-稻妻2个.json", "type": "file", "hash": "e4e2ab20593625f5ac6c7be1a793f7c6e01645ad", - "version": "e4e2ab2", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4099,7 +5061,7 @@ "name": "胡萝卜-明冠峡-蒙德4个.json", "type": "file", "hash": "bfa1e362ac4832ff95316f4f46acd12c23b6e283", - "version": "bfa1e36", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4110,7 +5072,7 @@ "name": "胡萝卜-晨曦酒庄-蒙德12个.json", "type": "file", "hash": "c5dd0cbdd3a3febb0e0a65456fda1bfa345131f2", - "version": "c5dd0cb", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4121,7 +5083,7 @@ "name": "胡萝卜-望泷村-稻妻5个.json", "type": "file", "hash": "15866c10627e8c4627ccad5ad952f8a3f3ef51ee", - "version": "15866c1", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4132,7 +5094,7 @@ "name": "胡萝卜-望风山地-蒙德-4个.json", "type": "file", "hash": "cb784bad919bd717a3afac669e49117bfc23c155", - "version": "cb784ba", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4143,7 +5105,7 @@ "name": "胡萝卜-枫丹廷(上)-枫丹3个.json", "type": "file", "hash": "a3e943927db0c4c5e4508698f7b8c729adaa6aa8", - "version": "a3e9439", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4154,7 +5116,7 @@ "name": "胡萝卜-清泉镇-蒙德-8个.json", "type": "file", "hash": "1b8fe3781c69fc6689ef34b53c417bc7da9b1bf8", - "version": "1b8fe37", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4165,7 +5127,7 @@ "name": "胡萝卜-绯木村-稻妻3个.json", "type": "file", "hash": "918900221fcd81edda379cbf429e45dafaaf29ea", - "version": "9189002", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4176,7 +5138,7 @@ "name": "胡萝卜-蛇骨矿洞-稻妻3个.json", "type": "file", "hash": "7c73f3c4c2cb1a7e731e8989e569907d673d6bf8", - "version": "7c73f3c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4187,7 +5149,7 @@ "name": "胡萝卜-越石村-稻妻4个.json", "type": "file", "hash": "02294b545606b39b2f4301aa62c76dbff55c8953", - "version": "02294b5", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4198,7 +5160,7 @@ "name": "胡萝卜-风龙废墟(上)-蒙德-7个.json", "type": "file", "hash": "a738ce71d1186206e0592a42116adb0d95bc37be", - "version": "a738ce7", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4209,7 +5171,7 @@ "name": "胡萝卜-风龙废墟(下)-蒙德-4个.json", "type": "file", "hash": "fbdaed36caf5a26422aa344dc29c64cd89f68fea", - "version": "fbdaed3", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -4226,7 +5188,7 @@ "name": "湖光铃兰-优兰尼娅湖-9个.json", "type": "file", "hash": "18c8e68ebc169e94df594388eeb20dbb4eca1d0b", - "version": "18c8e68", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4237,7 +5199,7 @@ "name": "湖光铃兰-优兰尼娅湖左上角-3个.json", "type": "file", "hash": "82a27d3d83946b9b5d6c94e8891cbcea1569a688", - "version": "82a27d3", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4248,7 +5210,7 @@ "name": "湖光铃兰-优兰尼娅湖左下角-3个.json", "type": "file", "hash": "ffe6b793bf752fb3f013b22eda6ed209b6093993", - "version": "ffe6b79", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4259,7 +5221,7 @@ "name": "湖光铃兰-枫丹-幽林雾道-10个.json", "type": "file", "hash": "36515656329998b8ad71420c7416b170eda74e49", - "version": "3651565", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4270,7 +5232,7 @@ "name": "湖光铃兰-枫丹-湖中垂柳右下角-3个.json", "type": "file", "hash": "a51949afaac9dfbb2c954603708556aefc751410", - "version": "a51949a", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4281,7 +5243,7 @@ "name": "湖光铃兰-枫丹-湖中垂柳(未净化23个,净化37个).json", "type": "file", "hash": "f798e60523ca1f423274c697861dc5be0f7c94e2", - "version": "f798e60", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4292,7 +5254,7 @@ "name": "湖光铃兰-湖中垂柳左下-6个.json", "type": "file", "hash": "4b5dacdbcf9e62a6449b2d23ce6b3a252243d634", - "version": "4b5dacd", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4313,7 +5275,7 @@ "name": "劫波莲 化城郭.json", "type": "file", "hash": "aef5ea30709e5cb754a956bc164bc9debe43c3fa", - "version": "aef5ea3", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -4324,7 +5286,7 @@ "name": "劫波莲 天臂池左上.json", "type": "file", "hash": "1c8487b26a32ee1709709f68159da7be0f1b8ecb", - "version": "1c8487b", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -4335,7 +5297,7 @@ "name": "劫波莲 桓那兰那左侧.json", "type": "file", "hash": "d3f1013ec4dfc203f2e9f7e6ac53355e7224c2af", - "version": "d3f1013", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -4346,7 +5308,7 @@ "name": "劫波莲 水田丛林.json", "type": "file", "hash": "4b11cabf227d8f2c2357b64f6b6574bbc98ef711", - "version": "4b11cab", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -4357,7 +5319,7 @@ "name": "劫波莲 水田丛林左上.json", "type": "file", "hash": "cf4399d0b64a318d8b116061ec9e6f1c1f845183", - "version": "cf4399d", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -4368,7 +5330,7 @@ "name": "劫波莲 维摩庄下方.json", "type": "file", "hash": "0dde35986e373b90e12089277ce6c1d3f9e6dff1", - "version": "0dde359", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -4379,7 +5341,7 @@ "name": "劫波莲 觉王之殿上方.json", "type": "file", "hash": "7205f7979ad0952d6c6e44767a5aecf8ca79a4a7", - "version": "7205f79", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -4390,7 +5352,7 @@ "name": "劫波莲 降诸魔山右下.json", "type": "file", "hash": "57ffe8d0dd29fcd7924edce3458ccf046711b171", - "version": "57ffe8d", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -4407,7 +5369,7 @@ "name": "001劫波莲 化城郭6个.json", "type": "file", "hash": "96aa205c4981955029c75ed99b41d1c067ae57ee", - "version": "96aa205", + "version": "1.0", "author": "lifrom", "description": "成熟的纳西妲要学会自己采材料。感谢米游社大佬“@吃瓜的喵”的优质路线!(本引导的所有路线均已精修过,请放心使用)", "tags": [ @@ -4419,7 +5381,7 @@ "name": "002劫波莲 降诸魔山4个.json", "type": "file", "hash": "0dd531eccc4ee25004ab76df8dc1f753b57962fa", - "version": "0dd531e", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4431,7 +5393,7 @@ "name": "003劫波莲 降诸魔山2个.json", "type": "file", "hash": "45ad72dee07bbc014773cb75a7055552674caa07", - "version": "45ad72d", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4443,7 +5405,7 @@ "name": "004劫波莲 维摩庄西南7个.json", "type": "file", "hash": "bf8d792196889cc0dde4fa2aecddf84576b4bd53", - "version": "bf8d792", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4455,7 +5417,7 @@ "name": "005劫波莲 水天丛林7个.json", "type": "file", "hash": "58c0edbd2fc418cc88704d5223aa76e6c6502119", - "version": "58c0edb", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4467,7 +5429,7 @@ "name": "006劫波莲 谒颂幽境14个.json", "type": "file", "hash": "3b16d4b622e46478556cb38d647ddcc38d705d02", - "version": "3b16d4b", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4479,7 +5441,7 @@ "name": "007劫波莲 觉王之殿3个.json", "type": "file", "hash": "fd6b2a19c0cd95266f53c7260475ea2192ed54d4", - "version": "fd6b2a1", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4491,7 +5453,7 @@ "name": "008劫波莲 须弥城西边7个.json", "type": "file", "hash": "47b0bd550dbe7c9c2ba4c34a0e4b38788aae95ff", - "version": "47b0bd5", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4503,7 +5465,7 @@ "name": "009劫波莲 觉王之殿北边5个.json", "type": "file", "hash": "f813b94c395fdcc2930eb6736735998ba8d986af", - "version": "f813b94", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4515,7 +5477,7 @@ "name": "010劫波莲 翠翎恐蕈西南2个.json", "type": "file", "hash": "99563e2df9d3e9ef5db8f9b7d437063a1f2b8687", - "version": "99563e2", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4527,7 +5489,7 @@ "name": "011劫波莲 无郁稠林西边1个.json", "type": "file", "hash": "ff779a776c0b5a89ac4432c18518b783a3ae58da", - "version": "ff779a7", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4539,7 +5501,7 @@ "name": "012劫波莲 无郁稠林东边6个.json", "type": "file", "hash": "406206ef3be4b68e8e201da7fd575846ad29a304", - "version": "406206e", + "version": "1.0", "author": "lifrom", "description": "", "tags": [ @@ -4559,7 +5521,7 @@ "name": "金鱼草-南天门-1个.json", "type": "file", "hash": "3fdc6c26aee45252450a5891109ceb0b839db69f", - "version": "3fdc6c2", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4570,7 +5532,7 @@ "name": "金鱼草-古茶树坡右侧-3个.json", "type": "file", "hash": "2bb2173d15cc528af636fa85f77e08c600628678", - "version": "2bb2173", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4581,7 +5543,7 @@ "name": "金鱼草-地中之盐-3个.json", "type": "file", "hash": "bde2e43a9a909f2ff1ab80571c164195221a9323", - "version": "bde2e43", + "version": "1.0", "author": "曦", "description": "完成钟离传说任务后可用", "tags": [ @@ -4592,7 +5554,7 @@ "name": "金鱼草-奔狼岭右上角-1个.json", "type": "file", "hash": "6a6b4e54194c6e079a938b8bca2e38ddbf9fdcfa", - "version": "6a6b4e5", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4603,7 +5565,7 @@ "name": "金鱼草-奥藏山右上角-15个.json", "type": "file", "hash": "5bfd95e0f9383bca94e6db79087a9534cd6bb599", - "version": "5bfd95e", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4614,7 +5576,7 @@ "name": "金鱼草-奥藏山右下角-4个.json", "type": "file", "hash": "40560c8f11b121e7f2d8091c16c7075f39b0f521", - "version": "40560c8", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4625,7 +5587,7 @@ "name": "金鱼草-宝玦口左侧-2个.json", "type": "file", "hash": "1a00b49bbb789fb698a9bb561fff0d7ecd5c2b7f", - "version": "1a00b49", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4636,7 +5598,7 @@ "name": "金鱼草-庆云顶右侧-5个.json", "type": "file", "hash": "b88ede1f12bf23ff973676d504cd79ce1cfa37c6", - "version": "b88ede1", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4647,7 +5609,7 @@ "name": "金鱼草-归离原-1个.json", "type": "file", "hash": "5451590c8d74a31ebec83aa0c678153a0dccaa98", - "version": "5451590", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4658,7 +5620,7 @@ "name": "金鱼草-归离原左侧-1个.json", "type": "file", "hash": "779c47095f468c2f2aef680bd49f5d448608c01d", - "version": "779c470", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4669,7 +5631,7 @@ "name": "金鱼草-无妄坡-2个.json", "type": "file", "hash": "457dca5de37ac644b4d8d1c04db4a9d824a78401", - "version": "457dca5", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4680,7 +5642,7 @@ "name": "金鱼草-无妄坡左下角-9个.json", "type": "file", "hash": "8f7b737b60497c2ece7d21075958ae31a955f7cb", - "version": "8f7b737", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4691,7 +5653,7 @@ "name": "金鱼草-无妄坡左侧-1个.json", "type": "file", "hash": "b933d6035edbf7386cca35258ab3eb0cbb5ad8c3", - "version": "b933d60", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4702,7 +5664,7 @@ "name": "金鱼草-望风山地-6个.json", "type": "file", "hash": "f0823c1da4a8cdc804d7e2b637a050675cb29096", - "version": "f0823c1", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4713,7 +5675,7 @@ "name": "金鱼草-清泉镇左上角-1个.json", "type": "file", "hash": "6df3362caeba472142826976e6ef15a662bde865", - "version": "6df3362", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4724,7 +5686,7 @@ "name": "金鱼草-渌华池-2个.json", "type": "file", "hash": "2b5478d8ebccc789045b6e2e79b0318241dae64b", - "version": "2b5478d", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4735,7 +5697,7 @@ "name": "金鱼草-湖中垂柳右侧-1个.json", "type": "file", "hash": "c208a5d835ac507c3f2e16233fdedda40fea2ba5", - "version": "c208a5d", + "version": "1.0", "author": "曦", "description": "由于地下小地图不可用少1个", "tags": [ @@ -4746,7 +5708,7 @@ "name": "金鱼草-石门右上角-3个.json", "type": "file", "hash": "f93965dccd3e05b4c103c51fde040c4ffa58b2f4", - "version": "f93965d", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4757,7 +5719,7 @@ "name": "金鱼草-绝云间-4个.json", "type": "file", "hash": "56fe30142bcc6e2d1509e4c762d21936266d15bc", - "version": "56fe301", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4768,7 +5730,7 @@ "name": "金鱼草-药蝶谷右侧-4个.json", "type": "file", "hash": "24133a4666e362ceaca5dc0a5d34874512d04064", - "version": "24133a4", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4779,7 +5741,7 @@ "name": "金鱼草-荻花洲-10个.json", "type": "file", "hash": "8a006f18bf78ca5025d5668e71d432ac1de13afe", - "version": "8a006f1", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4790,7 +5752,7 @@ "name": "金鱼草-荻花洲过河左侧-2个.json", "type": "file", "hash": "9b4c9d53a1072f6385a50ce7b0991425fb2fb15e", - "version": "9b4c9d5", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4801,7 +5763,7 @@ "name": "金鱼草-赤璋城桓01-1个.json", "type": "file", "hash": "9037621e7f12c52544b8f04a7b9e1c8d4cd49b5d", - "version": "9037621", + "version": "1.0", "author": "曦", "description": "由于小地图无法识别少1个", "tags": [ @@ -4812,7 +5774,7 @@ "name": "金鱼草-赤璋城桓02-2个.json", "type": "file", "hash": "4485a2e5b6b247ff875fa0118e53dac90fe452f2", - "version": "4485a2e", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4823,7 +5785,7 @@ "name": "金鱼草-赤璋城桓03-3个.json", "type": "file", "hash": "aaa67c29e540500e13a82817f8a9a4f36bc5db3a", - "version": "aaa67c2", + "version": "1.0", "author": "曦", "description": "action中缺少T交互少1个", "tags": [ @@ -4834,7 +5796,7 @@ "name": "金鱼草-雪葬之都·近郊-2个.json", "type": "file", "hash": "099579d99034c9fa44c9df22e3b167ac1c547409", - "version": "099579d", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4845,7 +5807,7 @@ "name": "金鱼草-风起地-14个.json", "type": "file", "hash": "92cde70b8d1295d075904694614d91c56970c02d", - "version": "92cde70", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4856,7 +5818,7 @@ "name": "金鱼草-风起地左上角-3个.json", "type": "file", "hash": "5fd7686bb5ab9cb93e9183f484ca1825be59c785", - "version": "5fd7686", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -4873,7 +5835,7 @@ "name": "烬芯花01-彩石顶右侧-4个.json", "type": "file", "hash": "e82456b18843a809ea2c7777ac8c5c7922310ab3", - "version": "e82456b", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4884,7 +5846,7 @@ "name": "烬芯花02-柴薪之丘右侧-1个.json", "type": "file", "hash": "a24d33ada6df2c1022905c6d1698cdd7aa7eb210", - "version": "a24d33a", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4895,7 +5857,7 @@ "name": "烬芯花03-硫晶支脉-3个.json", "type": "file", "hash": "8fdc9cf4772d2252e7bfe42b6f217af0c1ceb74a", - "version": "8fdc9cf", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4906,7 +5868,7 @@ "name": "烬芯花04-硫晶支脉下方-8个.json", "type": "file", "hash": "032502519b9b85e54f509944f8ccc2d53320a30d", - "version": "0325025", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4917,7 +5879,7 @@ "name": "烬芯花05-深古瞭望所-1个.json", "type": "file", "hash": "f9ae9e989f50a3671cb67e9d81b6d19db1d3e603", - "version": "f9ae9e9", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4928,7 +5890,7 @@ "name": "烬芯花06-圣火竞技场-1个.json", "type": "file", "hash": "103adcd98201423bfed664fbd344b1356dce5e33", - "version": "103adcd", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4939,7 +5901,7 @@ "name": "烬芯花07-水溶域-1个.json", "type": "file", "hash": "81271fd3f567340b234ba1bae9ce9e08a5cbde65", - "version": "81271fd", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4950,7 +5912,7 @@ "name": "烬芯花08-悬木人上侧-2个.json", "type": "file", "hash": "31add3ff9b27be990396bbf1bb54f92d99669695", - "version": "31add3f", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4961,7 +5923,7 @@ "name": "烬芯花09-祖遗庙宇-1个.json", "type": "file", "hash": "1bd12f186ee4f2237f5d7beec77e05226729f860", - "version": "1bd12f1", + "version": "1.0", "author": "Tool_tingsu", "description": "感谢 @曦 老师的路线脚本", "tags": [ @@ -4972,7 +5934,7 @@ "name": "烬芯花10-彩石顶-3个.json", "type": "file", "hash": "e26ef25c4080499fcbe9afb69b8d91a2eb9d8bcf", - "version": "e26ef25", + "version": "1.0", "author": "Tool_tingsu", "description": "", "tags": [ @@ -4983,7 +5945,7 @@ "name": "烬芯花11-烟谜主下方-8个.json", "type": "file", "hash": "7d08c12c0e02c1b1fbd98f4567073e94e9f8d994", - "version": "7d08c12", + "version": "1.0", "author": "Tool_tingsu", "description": "", "tags": [ @@ -4994,7 +5956,7 @@ "name": "烬芯花12-烟谜主右方-3个.json", "type": "file", "hash": "040e592de55c6e4ef14a81dbbc1fccba0494446b", - "version": "040e592", + "version": "1.0", "author": "Tool_tingsu", "description": "", "tags": [ @@ -5005,7 +5967,7 @@ "name": "烬芯花13-花语会-2个.json", "type": "file", "hash": "3d80145d1a8e1311576439c6c56dea057cab0022", - "version": "3d80145", + "version": "1.0", "author": "Tool_tingsu", "description": "", "tags": [ @@ -5016,7 +5978,7 @@ "name": "烬芯花14-花语会上方岛屿-3个.json", "type": "file", "hash": "2dfa0fc5934b42bb8fc325644a32d025a67bbad1", - "version": "2dfa0fc", + "version": "1.0", "author": "Tool_tingsu", "description": "", "tags": [ @@ -5027,7 +5989,7 @@ "name": "烬芯花15-沃陆之邦右侧-1个.json", "type": "file", "hash": "c0b82835711a3637c88fafe0034f3715fd9f1674", - "version": "c0b8283", + "version": "1.0", "author": "Tool_tingsu", "description": "", "tags": [ @@ -5038,7 +6000,7 @@ "name": "烬芯花16-石火陨落处-2个.json", "type": "file", "hash": "cafd08879b106e07ebe5a405ad5151b3e37f73df", - "version": "cafd088", + "version": "1.0", "author": "Tool_tingsu", "description": "", "tags": [ @@ -5049,7 +6011,7 @@ "name": "烬芯花17-沃陆之邦右下-1个.json", "type": "file", "hash": "df993e471f1da3945bac07092a5879a5437aef94", - "version": "df993e4", + "version": "1.0", "author": "Tool_tingsu", "description": "", "tags": [ @@ -5066,7 +6028,7 @@ "name": "晶化骨髓01-无想刃狭间-5个.json", "type": "file", "hash": "ea0200b84b874edaa4600d0c55d488929f31e75d", - "version": "ea0200b", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -5077,7 +6039,7 @@ "name": "晶化骨髓02-藤兜砦-4个.json", "type": "file", "hash": "2ed6c1c1acd003cd6d4be7c1ee05fa2acfe67405", - "version": "2ed6c1c", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -5088,7 +6050,7 @@ "name": "晶化骨髓03-藤兜砦-3个.json", "type": "file", "hash": "c2708ff9294f7106be4615c91bc9c1453948cea5", - "version": "c2708ff", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -5099,7 +6061,7 @@ "name": "晶化骨髓04-藤兜砦-5个.json", "type": "file", "hash": "1c000768fe8c2d46f352045bc0d42fe105a635bb", - "version": "1c00076", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -5110,7 +6072,7 @@ "name": "晶化骨髓05-踏鞴砂-10个.json", "type": "file", "hash": "98454b5ed2cb0f13056039ef8771417b146e8f3a", - "version": "98454b5", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -5121,7 +6083,7 @@ "name": "晶化骨髓06-八酝岛-11个.json", "type": "file", "hash": "86a65ae49c1c9997b5e1ab0ba4bb87aa977bd0ac", - "version": "86a65ae", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -5142,7 +6104,7 @@ "name": "绝云椒椒_地中之盐上方.json", "type": "file", "hash": "67c246761122d4deb902253b1ba8333d0e5bc064", - "version": "67c2467", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -5153,7 +6115,7 @@ "name": "绝云椒椒_绝云间上方.json", "type": "file", "hash": "7b077ec5090c9f9b11af53a76ce602916c322e6f", - "version": "7b077ec", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -5164,7 +6126,7 @@ "name": "绝云椒椒_轻策庄.json", "type": "file", "hash": "5e50280e38d3f2d0c4f3b18b92d1028c54e467f8", - "version": "5e50280", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -5175,7 +6137,7 @@ "name": "绝云椒椒_轻策庄左侧.json", "type": "file", "hash": "5ea596f32ee14e0f51902281c7bd625e6084ee25", - "version": "5ea596f", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -5192,7 +6154,7 @@ "name": "绝云椒椒-奥藏山(一)-璃月1×3个.json", "type": "file", "hash": "69d66f063a1aafde4bf443bf1fdf10cd67e34bf8", - "version": "69d66f0", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5203,7 +6165,7 @@ "name": "绝云椒椒-奥藏山(二)-璃月6×3个.json", "type": "file", "hash": "fd5bfe9cba42b54e2091b291d3399a99695c6e7a", - "version": "fd5bfe9", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5214,7 +6176,7 @@ "name": "绝云椒椒-宗室本-璃月4×3个.json", "type": "file", "hash": "ef7cc25f620de5aa6872646756ace4224fd4d458", - "version": "ef7cc25", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5225,7 +6187,7 @@ "name": "绝云椒椒-苍白本-璃月7×3个.json", "type": "file", "hash": "b1e64a4f6d538483ebeed2afd54850e4738439de", - "version": "b1e64a4", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5236,7 +6198,7 @@ "name": "绝云椒椒-轻策庄(一)-璃月1×3个.json", "type": "file", "hash": "8f8d523cf94b30a4c3313a660bb56c8d9bd2d860", - "version": "8f8d523", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5247,7 +6209,7 @@ "name": "绝云椒椒-轻策庄(三)-璃月1×3个.json", "type": "file", "hash": "4356212e9f14ebf26277316ff7be76992eebe265", - "version": "4356212", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5258,7 +6220,7 @@ "name": "绝云椒椒-轻策庄(二)-璃月7×3个.json", "type": "file", "hash": "08de4e5641ed56d342f564f767c15da914758b61", - "version": "08de4e5", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5277,7 +6239,7 @@ "name": "颗粒果01-回声之子-纳塔5个.json", "type": "file", "hash": "896333dd09cea9c218283d7369cc4ce7f9e04523", - "version": "896333d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5288,7 +6250,7 @@ "name": "颗粒果02-隆崛坡-纳塔6个.json", "type": "file", "hash": "163e3c55639d2232f0efa1dc4d6998da8780b697", - "version": "163e3c5", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5299,7 +6261,7 @@ "name": "颗粒果03-祖遗庙宇-纳塔3个.json", "type": "file", "hash": "8bff28bae1e827ac1623226735e0007700b88b63", - "version": "8bff28b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5310,7 +6272,7 @@ "name": "颗粒果04-悬木人-纳塔26个.json", "type": "file", "hash": "79504bc7483665370d7396cab98c026d14f3d4dc", - "version": "79504bc", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5321,7 +6283,7 @@ "name": "颗粒果05-圣火竞技场-纳塔6个.json", "type": "file", "hash": "8288c6c1eb0b3e3e9fe63aa670256ada5e6cd25c", - "version": "8288c6c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5332,7 +6294,7 @@ "name": "颗粒果06-悬木人-纳塔13个.json", "type": "file", "hash": "2697f4b22ee10b1538e5395a5e7bdbcd21fb0fc6", - "version": "2697f4b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5343,7 +6305,7 @@ "name": "颗粒果07-圣火竞技场-纳塔3个.json", "type": "file", "hash": "8bd56422bd17ad39b94e26cdbaf5e73086b91a45", - "version": "8bd5642", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5354,7 +6316,7 @@ "name": "颗粒果08-柴薪之丘(中危)-纳塔10个.json", "type": "file", "hash": "a4b3577e7bf7f8d7f42ab2c795b60344c4e1909c", - "version": "a4b3577", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5365,7 +6327,7 @@ "name": "颗粒果09-柴薪之丘(高危)-纳塔18个.json", "type": "file", "hash": "bc2d26cbc59f0d72542f75468eaa3b44a14bc17c", - "version": "bc2d26c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5376,7 +6338,7 @@ "name": "颗粒果10-烟谜主-纳塔10个.json", "type": "file", "hash": "e2b5bb5b5a98c6a39e1d0318e8eb60a5939559d5", - "version": "e2b5bb5", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5387,7 +6349,7 @@ "name": "颗粒果11-花羽会-纳塔6个.json", "type": "file", "hash": "bd15a8b7b873401ab546de5d3890a2d4e7979c47", - "version": "bd15a8b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5404,7 +6366,7 @@ "name": "枯叶紫英-天蛇船下方-11个.json", "type": "file", "hash": "7a687d180a571a056c54b89a4447a23c79bcfcd1", - "version": "7a687d1", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -5415,7 +6377,7 @@ "name": "枯叶紫英-奥奇卡纳塔右01-1个.json", "type": "file", "hash": "59c4a80f9558abe19ade4e50a9e5c8c556344a78", - "version": "59c4a80", + "version": "1.0", "author": "曦", "description": "有神瞳标识可能影响识别,建议先拿", "tags": [ @@ -5426,7 +6388,7 @@ "name": "枯叶紫英-奥奇卡纳塔神像右-7个.json", "type": "file", "hash": "65a2ca73746e220f443b736bc439e532e02b0c84", - "version": "65a2ca7", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -5437,7 +6399,7 @@ "name": "枯叶紫英-奥斯卡纳塔左02-11个.json", "type": "file", "hash": "c17caf1df345defd201bcdbcc26708d508a53ee0", - "version": "c17caf1", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -5448,7 +6410,7 @@ "name": "枯叶紫英-奥斯卡纳塔神像左-5个.json", "type": "file", "hash": "2f235024c5f1fd9f7bcc6b1a66b3b3e207cc4197", - "version": "2f23502", + "version": "1.0", "author": "曦", "description": "需要盾位", "tags": [ @@ -5459,7 +6421,7 @@ "name": "枯叶紫英-托佐兹之岛-2个.json", "type": "file", "hash": "a527be7c636b39ebe5299dbd57586b716e1e874d", - "version": "a527be7", + "version": "1.0", "author": "曦", "description": "有一个解密,剩余1个枯叶紫英", "tags": [ @@ -5470,7 +6432,7 @@ "name": "枯叶紫英-火鹦之塔-18个.json", "type": "file", "hash": "c2d9745f995a404899cec6392c05c7ab51dbdeca", - "version": "c2d9745", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -5481,7 +6443,7 @@ "name": "枯叶紫英-空梦的起始-11个.json", "type": "file", "hash": "eaaf5b65b0cfb90c3fb4c81fc9bc7d241ea9e10e", - "version": "eaaf5b6", + "version": "1.0", "author": "曦", "description": "该处有首杀宝箱,9个枯叶紫英", "tags": [ @@ -5498,7 +6460,7 @@ "name": "苦种01-隆崛坡-纳塔3个.json", "type": "file", "hash": "5719a43f3a789b445ef9c621257c3eaf27f4d257", - "version": "5719a43", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5509,7 +6471,7 @@ "name": "苦种02-硫晶支脉-纳塔2个.json", "type": "file", "hash": "e959dc465d3112560e4d5189bf40973cf722b5f8", - "version": "e959dc4", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5520,7 +6482,7 @@ "name": "苦种03-硫晶支脉-纳塔6个.json", "type": "file", "hash": "968e2a90338f5d05a8457284fc835daff2d687bb", - "version": "968e2a9", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5531,7 +6493,7 @@ "name": "苦种04-硫晶支脉-纳塔8个.json", "type": "file", "hash": "700163c88605668d56a668d469962c39b58d7033", - "version": "700163c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5542,7 +6504,7 @@ "name": "苦种05-硫晶支脉-纳塔2个.json", "type": "file", "hash": "d393a9bf83e786c55037046f4a64586884628a5d", - "version": "d393a9b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5553,7 +6515,7 @@ "name": "苦种06-回声之子-纳塔10个.json", "type": "file", "hash": "23d00c1b6dc864b9867df59872243e08a9c6bd00", - "version": "23d00c1", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5564,7 +6526,7 @@ "name": "苦种07-悬木人-纳塔5个.json", "type": "file", "hash": "e3d8205f4dd53ce85a9de56a68e8c9ca6ab6a2cd", - "version": "e3d8205", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5575,7 +6537,7 @@ "name": "苦种08-彩石顶-纳塔7个.json", "type": "file", "hash": "589b4ad1b62e3322b70ee49ae4212fb68624e739", - "version": "589b4ad", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5586,7 +6548,7 @@ "name": "苦种09-溶水域-纳塔2个.json", "type": "file", "hash": "b558468c902bdf700d2fe1a7ece0823f6e52e7cd", - "version": "b558468", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5597,7 +6559,7 @@ "name": "苦种10-溶水域-纳塔2个.json", "type": "file", "hash": "4144d637a53692bac58225cad810f5be3533972e", - "version": "4144d63", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5608,7 +6570,7 @@ "name": "苦种11-悬木人(高危)-纳塔13个.json", "type": "file", "hash": "496531b4a09ac47bc07dfa5f7982d8d6dff526f3", - "version": "496531b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5619,7 +6581,7 @@ "name": "苦种12-柴薪之丘-纳塔4个.json", "type": "file", "hash": "aa2c8a5a96b0b7f48b80dbdd96498dd2df15e067", - "version": "aa2c8a5", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5630,7 +6592,7 @@ "name": "苦种13-花羽会-纳塔2个.json", "type": "file", "hash": "29920e0884c14520662957d2fea7043a1658a36f", - "version": "29920e0", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5641,7 +6603,7 @@ "name": "苦种14-花羽会-纳塔4个.json", "type": "file", "hash": "d5ff0ab62ebd2d3efe0582621c22f51d5b4c5d3d", - "version": "d5ff0ab", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5652,7 +6614,7 @@ "name": "苦种15-花羽会-纳塔2个.json", "type": "file", "hash": "8003492fc048dbb91f7c7f0801ffee37e31966d3", - "version": "8003492", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5663,7 +6625,7 @@ "name": "苦种16-花羽会-纳塔3个.json", "type": "file", "hash": "afd2cffb2d5b8d07a4b5ee627701854d2fc71292", - "version": "afd2cff", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5674,7 +6636,7 @@ "name": "苦种17-烟谜主-纳塔8个.json", "type": "file", "hash": "9c3bdfdccecd85b5da31edbaa6f4812ab9a2e132", - "version": "9c3bdfd", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5691,7 +6653,7 @@ "name": "浪沫羽鳃1-流泉之众上-11个.json", "type": "file", "hash": "93499dfea3ea0b8dbf1b03ab2acf2111f32fe512", - "version": "93499df", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5702,7 +6664,7 @@ "name": "浪沫羽鳃2-溶水域七天神像下-8个.json", "type": "file", "hash": "f320671c87a29720744249e86c80c0f3d8c6ea59", - "version": "f320671", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5713,7 +6675,7 @@ "name": "浪沫羽鳃3-溶水域七天神像左-14个.json", "type": "file", "hash": "e9dac026ab48c9b6d6e2176ce94ea3a28df6f1ff", - "version": "e9dac02", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5724,7 +6686,7 @@ "name": "浪沫羽鳃4-溶水域七天神像右-12个.json", "type": "file", "hash": "892fe5757741180d7e9ebff44e902f8d26ae79c2", - "version": "892fe57", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5735,7 +6697,7 @@ "name": "浪沫羽鳃5-溶水域右上-9个.json", "type": "file", "hash": "4fa2565c7daf06ffeff258b1d20152a3bdf73ba5", - "version": "4fa2565", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5752,7 +6714,7 @@ "name": "莲蓬1-狄花州-璃月2个.json", "type": "file", "hash": "b6875a3e6cd87b37bb9e8c73db581a744f5e14be", - "version": "b6875a3", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5764,7 +6726,7 @@ "name": "莲蓬2-宗室本-璃月4个.json", "type": "file", "hash": "5eed6fc48aea8e75c922b85bc08c53863beb5c9b", - "version": "5eed6fc", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5776,7 +6738,7 @@ "name": "莲蓬3-若陀周本-璃月3个.json", "type": "file", "hash": "e29a2e7f0983df9495c8484308bffd66f7e8d398", - "version": "e29a2e7", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5788,7 +6750,7 @@ "name": "莲蓬4-归离原(一)-璃月3个.json", "type": "file", "hash": "5ec61fa2f403d0c64f8a230a019fec696df3b920", - "version": "5ec61fa", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5800,7 +6762,7 @@ "name": "莲蓬5-归离原(二)-璃月2个.json", "type": "file", "hash": "1ea0685c327005720440e150638146d10aac99bb", - "version": "1ea0685", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5812,7 +6774,7 @@ "name": "莲蓬6-归离原(三)-璃月2个.json", "type": "file", "hash": "56cc63beea989f0027daeaf2dbe41cb7a6bc12e2", - "version": "56cc63b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5824,7 +6786,7 @@ "name": "莲蓬7-渌华池-璃月12个.json", "type": "file", "hash": "967bc808ba60c66ba8a72757d1c2bc7657ba393d", - "version": "967bc80", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5836,7 +6798,7 @@ "name": "莲蓬8-遁玉陵-璃月7个.json", "type": "file", "hash": "4e024b7c768542763c5423c8f3375595a47ea24e", - "version": "4e024b7", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5848,7 +6810,7 @@ "name": "莲蓬9-天衡山-璃月3个.json", "type": "file", "hash": "81a2c8d48858c6a8d9f147b816252dfc39a814af", - "version": "81a2c8d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -5866,7 +6828,7 @@ "name": "琉璃百合1-璃月港右-3个.json", "type": "file", "hash": "962232fea11fbcd02d209267aac086e488676e25", - "version": "962232f", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5877,7 +6839,7 @@ "name": "琉璃百合2-璃月港左-7个+霓裳花4x2个.json", "type": "file", "hash": "d2ce8e9318eb577e726896e61f85d9ff9a198e25", - "version": "d2ce8e9", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5888,7 +6850,7 @@ "name": "琉璃百合3-璃月港左-11个+霓裳花3x2个.json", "type": "file", "hash": "8ad3096b625301499474f70d7a0d9af1cd74b8e8", - "version": "8ad3096", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5899,7 +6861,7 @@ "name": "琉璃百合4-轻策庄下-2个+绝云椒椒2x3个.json", "type": "file", "hash": "f3d55211ea91a00772a3a70ee0016e44987259db", - "version": "f3d5521", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5910,7 +6872,7 @@ "name": "琉璃百合5-轻策庄右-1个+绝云椒椒1x3个.json", "type": "file", "hash": "473c129970eaea33408954c1f8fd4655b249bae8", - "version": "473c129", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5921,7 +6883,7 @@ "name": "琉璃百合6-轻策庄下-1个+绝云椒椒1x3个.json", "type": "file", "hash": "8c6b309216fbdeaa5cbd1c9484b79f2aba8db69e", - "version": "8c6b309", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5932,7 +6894,7 @@ "name": "琉璃百合7-轻策庄左-5个+绝云椒椒1x3个.json", "type": "file", "hash": "5170be695fd8fb88f813c55ab7868ade14793a17", - "version": "5170be6", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5943,7 +6905,7 @@ "name": "琉璃百合8-轻策庄上-11个+绝云椒椒1x3个.json", "type": "file", "hash": "322da91f265eaa865670ef9c8325ae52d7dc5114", - "version": "322da91", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -5960,7 +6922,7 @@ "name": "琉璃袋-天遒谷-2个.json", "type": "file", "hash": "9b6c6a05d1cfc87d6344cb4dc9f42a3ca71cfa47", - "version": "9b6c6a0", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -5972,7 +6934,7 @@ "name": "琉璃袋-孤云阁-2个.json", "type": "file", "hash": "89de102a818f1806d75f09436b8dc9f44a443f05", - "version": "89de102", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -5984,7 +6946,7 @@ "name": "琉璃袋-层岩巨渊-丹砂崖-4个.json", "type": "file", "hash": "bea2c0a52a9f371e4728917d32b8ef7d84af3093", - "version": "bea2c0a", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -5996,7 +6958,7 @@ "name": "琉璃袋-层岩巨渊-天工峡-12个.json", "type": "file", "hash": "8880e6fd97a909218b47d7af1158768bf9f09806", - "version": "8880e6f", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -6008,7 +6970,7 @@ "name": "琉璃袋-层岩巨渊-天工峡-8个.json", "type": "file", "hash": "c872fcb4ed5fde5431d677a74ade8a2cc42178c8", - "version": "c872fcb", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -6020,7 +6982,7 @@ "name": "琉璃袋-无妄坡-3个.json", "type": "file", "hash": "e11842137b75c96c22c720ff271d5cc1bd587260", - "version": "e118421", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -6032,7 +6994,7 @@ "name": "琉璃袋-无妄坡2-6个.json", "type": "file", "hash": "3155477c8666672ddf40b06056580851729412cf", - "version": "3155477", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -6044,7 +7006,7 @@ "name": "琉璃袋-明蕴镇-6个.json", "type": "file", "hash": "7a0b5056aaac60d897beb0e5306d0a4158b06d90", - "version": "7a0b505", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -6056,7 +7018,7 @@ "name": "琉璃袋-池中盐水-5个.json", "type": "file", "hash": "8440ed72b6347e47ffec04aa7d03afc8c3f30cdd", - "version": "8440ed7", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -6068,7 +7030,7 @@ "name": "琉璃袋-灵矩关-6个.json", "type": "file", "hash": "943bdbd22eb4664e2b3e64a67e5764870ec126ca", - "version": "943bdbd", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -6080,7 +7042,7 @@ "name": "琉璃袋-珉林-奥藏山右侧-7个.json", "type": "file", "hash": "7df276d0f8243f4c6135469b6046a68904d33fc2", - "version": "7df276d", + "version": "1.0", "author": "起个名字好难的喵", "description": "https://www.bilibili.com/video/BV1Uh411L7Z4/?p=5", "tags": [ @@ -6102,7 +7064,7 @@ "name": "望风山地1x24.json", "type": "file", "hash": "6741e92b02685ea6b0b61e3e6144a9bebf298a00", - "version": "6741e92", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -6113,7 +7075,7 @@ "name": "望风山地2x28.json", "type": "file", "hash": "7e448105cca18b0244208b20da9251c5804ab339", - "version": "7e44810", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -6124,7 +7086,7 @@ "name": "望风山地3x16.json", "type": "file", "hash": "77ae822100966642bbb90faf5f054142769633ab", - "version": "77ae822", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -6141,7 +7103,7 @@ "name": "落落莓1.json", "type": "file", "hash": "502357ba63328c839aac5828c436007ad096a710", - "version": "502357b", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -6153,7 +7115,7 @@ "name": "落落莓2.json", "type": "file", "hash": "39327f8b70fd96b42c1098e574667c85acb7e828", - "version": "39327f8", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -6173,7 +7135,7 @@ "name": "马尾1.json", "type": "file", "hash": "d9bb0009ffb7d026a8b172238a1deef58537fdef", - "version": "d9bb000", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -6185,7 +7147,7 @@ "name": "马尾2.json", "type": "file", "hash": "3212ad300237bc7a1f3a107e3b6b2df11730bfc3", - "version": "3212ad3", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -6197,7 +7159,7 @@ "name": "马尾3.json", "type": "file", "hash": "ab541d780f6d2943f7525776dd5a9ffaf0bf054a", - "version": "ab541d7", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -6215,7 +7177,7 @@ "name": "1沙漠合集-17.json", "type": "file", "hash": "e33c9894882f46bf8af5f172cf536a24d0262b53", - "version": "e33c989", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -6226,7 +7188,7 @@ "name": "2珊瑚宫北-9.json", "type": "file", "hash": "b637870a4830f6305ebfd43ccb983d5ede6b9d5c", - "version": "b637870", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -6237,7 +7199,7 @@ "name": "3曚云神社-6.json", "type": "file", "hash": "ee0c24db14c16a354fe54611042bb87cfad90304", - "version": "ee0c24d", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -6248,7 +7210,7 @@ "name": "4望泷村南-3.json", "type": "file", "hash": "1553825c4c018d258389d7559a9c0e57982b3b8b", - "version": "1553825", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -6259,7 +7221,7 @@ "name": "5望泷村东-6.json", "type": "file", "hash": "80be7a8291f6d6977b5b27d09b57d9ef7f7d9cba", - "version": "80be7a8", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -6270,7 +7232,7 @@ "name": "6水月池南-4.json", "type": "file", "hash": "4e0df8ecc4cd0f98fadc8e622a03dd560c2dc3a8", - "version": "4e0df8e", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -6287,7 +7249,7 @@ "name": "鸣草_九条阵屋_3个.json", "type": "file", "hash": "ffd71c917f173cc8f684a6d154f8907b119c3dd7", - "version": "ffd71c9", + "version": "1.0", "author": "花见木易", "description": "鸣草_九条阵屋_3个 的初始点类型修改为“传送”", "tags": [ @@ -6298,7 +7260,7 @@ "name": "鸣草_越石村1号线_7个.json", "type": "file", "hash": "760a67edd349ad4b3145defd58646544cfd44af1", - "version": "760a67e", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -6309,7 +7271,7 @@ "name": "鸣草_越石村2号线_6个.json", "type": "file", "hash": "6cde8ad8eba173724fc4897659350cc622674326", - "version": "6cde8ad", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -6320,7 +7282,7 @@ "name": "鸣草_踏鞴砂1号线_15个.json", "type": "file", "hash": "5ba5fae496a2beeda69f72c3f88a73c9ad9c9090", - "version": "5ba5fae", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -6331,7 +7293,7 @@ "name": "鸣草_踏鞴砂2号线_6个.json", "type": "file", "hash": "a3b89894a9597cfba24bb080211d93f32d887997", - "version": "a3b8989", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -6348,7 +7310,7 @@ "name": "茉洁草01-猎人本-枫丹3个.json", "type": "file", "hash": "2292dde3483cb4ac1d2fd8fbac6b9225164fddea", - "version": "2292dde", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6359,7 +7321,7 @@ "name": "茉洁草02-猎人本-枫丹5个.json", "type": "file", "hash": "9b76404b724f83e8a6bf4c9926fbb9b251651415", - "version": "9b76404", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6370,7 +7332,7 @@ "name": "茉洁草03-厄里那斯左下-枫丹12个.json", "type": "file", "hash": "4a5190d75cdc380ed2522bff43418075327aa39a", - "version": "4a5190d", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -6381,7 +7343,7 @@ "name": "茉洁草04-厄里那斯左下-枫丹4个.json", "type": "file", "hash": "cece87e422d4e07832f376838e35c8f2a908cf97", - "version": "cece87e", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6392,7 +7354,7 @@ "name": "茉洁草05-厄里那斯左下-枫丹9个.json", "type": "file", "hash": "c3cd22497158b45b014b2c5a85f406a7dedcef01", - "version": "c3cd224", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -6403,7 +7365,7 @@ "name": "茉洁草06-厄里那斯右下-枫丹6个.json", "type": "file", "hash": "3c48a53600f3a9ee0690c3387a37dd841672f3d4", - "version": "3c48a53", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6414,7 +7376,7 @@ "name": "茉洁草07-厄里那斯右下-枫丹4个.json", "type": "file", "hash": "e212b2ec0f0bb8899b4f482fe7191c63f4d35401", - "version": "e212b2e", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6425,7 +7387,7 @@ "name": "茉洁草08-厄里那斯神像-枫丹13个.json", "type": "file", "hash": "4953cbb751068c8d9d8f988beae9d18e6c855afa", - "version": "4953cbb", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6436,7 +7398,7 @@ "name": "茉洁草09-厄里那斯左-枫丹5个.json", "type": "file", "hash": "1e39d150d25dbf4ce95084956ecf765270943045", - "version": "1e39d15", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6447,7 +7409,7 @@ "name": "茉洁草10-厄里那斯左-枫丹4个.json", "type": "file", "hash": "a361df8961cdcf3a44e55cb3f1f856672e8e62e8", - "version": "a361df8", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6458,7 +7420,7 @@ "name": "茉洁草11-枫丹廷左-枫丹5个.json", "type": "file", "hash": "91c9c16df2ba4d5cde931f2603edfccb0539ffeb", - "version": "91c9c16", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6469,7 +7431,7 @@ "name": "茉洁草12-枫丹廷左-枫丹4个.json", "type": "file", "hash": "099dbaf79633371898959bc8e7f247b8213c4587", - "version": "099dbaf", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6480,7 +7442,7 @@ "name": "茉洁草13-枫丹廷左上-枫丹4个.json", "type": "file", "hash": "bcd38d7f262471a96be35fae7d6fe0395be9dcb1", - "version": "bcd38d7", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -6491,7 +7453,7 @@ "name": "茉洁草14-枫丹廷左上-枫丹4个.json", "type": "file", "hash": "17759c3c57518032bbdbd06be81bd1915c2a3ad6", - "version": "17759c3", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -6502,7 +7464,7 @@ "name": "茉洁草15-枫丹廷左上-枫丹6个.json", "type": "file", "hash": "1ce66d6eeffae222124e4283717eadf594988816", - "version": "1ce66d6", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -6513,7 +7475,7 @@ "name": "茉洁草16-枫丹廷左上-枫丹8个.json", "type": "file", "hash": "49710722f8b7607c5d1bcf2fe2c17103cb0db10d", - "version": "4971072", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -6524,7 +7486,7 @@ "name": "茉洁草17-枫丹廷左上-枫丹4个.json", "type": "file", "hash": "5aac32c78eee396106aa8c3869d46c42d63fdb28", - "version": "5aac32c", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -6535,7 +7497,7 @@ "name": "茉洁草18-枫丹廷上-枫丹5个.json", "type": "file", "hash": "835f9d68f3b474c14f47d401aa0da7e93fc6b6a9", - "version": "835f9d6", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6546,7 +7508,7 @@ "name": "茉洁草19-枫丹科学院-枫丹4个.json", "type": "file", "hash": "602f1c7ea37b8907063feab14abc43f1530e438b", - "version": "602f1c7", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6557,7 +7519,7 @@ "name": "茉洁草20-枫丹科学院-枫丹5个.json", "type": "file", "hash": "e8acebd8ab9530dd0d969f2432138bbbfacb8d3f", - "version": "e8acebd", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6568,7 +7530,7 @@ "name": "茉洁草21-枫丹科学院-枫丹5个.json", "type": "file", "hash": "a9500cfb78037501ba09ac2ca93f15a70bec40ae", - "version": "a9500cf", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6579,7 +7541,7 @@ "name": "茉洁草22-中央实验室遗址-枫丹7个.json", "type": "file", "hash": "5f22b5d57c601037eb61653d914b07bb6bba1e11", - "version": "5f22b5d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6590,7 +7552,7 @@ "name": "茉洁草23-中央实验室遗址西-枫丹3个.json", "type": "file", "hash": "d2d1b0711dffc442350e8eb918a427715207217f", - "version": "d2d1b07", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6601,7 +7563,7 @@ "name": "茉洁草24-中央实验室遗址西-枫丹6个.json", "type": "file", "hash": "0b27e6d655bae9bf0386ae62f724b1675546e398", - "version": "0b27e6d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6612,7 +7574,7 @@ "name": "茉洁草25-中央实验室遗址西-枫丹4个.json", "type": "file", "hash": "e5e8908dbf3707416bd661e1aea509c1c89d5e98", - "version": "e5e8908", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6623,7 +7585,7 @@ "name": "茉洁草26-优兰尼娅湖-枫丹3个.json", "type": "file", "hash": "c729438c9fdd8114e0423659eb27beba711053be", - "version": "c729438", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6634,7 +7596,7 @@ "name": "茉洁草27-茉洁站-枫丹6个.json", "type": "file", "hash": "a360fb058e3898ec5229efa9bec4497b2f0b6104", - "version": "a360fb0", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6645,7 +7607,7 @@ "name": "茉洁草28-湖中垂柳-枫丹12个.json", "type": "file", "hash": "8a27f3199584bfc4152efc52d875f25c996c98d5", - "version": "8a27f31", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6656,7 +7618,7 @@ "name": "茉洁草29-湖中垂柳-枫丹3个.json", "type": "file", "hash": "4f2a4ae767f90456f78bd11217074d6bbec1342b", - "version": "4f2a4ae", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6667,7 +7629,7 @@ "name": "茉洁草30-湖中垂柳-枫丹3个.json", "type": "file", "hash": "12a6efdd50570a892fec686ce0dd178d122d4247", - "version": "12a6efd", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6678,7 +7640,7 @@ "name": "茉洁草31-湖中垂柳-枫丹4个.json", "type": "file", "hash": "f6b67a43bd8207ed894c04857e02d9b25de32d88", - "version": "f6b67a4", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6689,7 +7651,7 @@ "name": "茉洁草32-幽林雾道-枫丹9个.json", "type": "file", "hash": "93af8f2e6788c146c1adb48ce92a505982108198", - "version": "93af8f2", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6700,7 +7662,7 @@ "name": "茉洁草33-幽林雾道-枫丹16个.json", "type": "file", "hash": "fcc4790ef947fa4c777d2661169e464a1d759a8f", - "version": "fcc4790", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6711,7 +7673,7 @@ "name": "茉洁草34-幽林雾道-枫丹3个.json", "type": "file", "hash": "73393946e7ac6ce449c6098fe034e05bda376232", - "version": "7339394", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6722,7 +7684,7 @@ "name": "茉洁草35-欧庇克莱歌剧院-枫丹2个.json", "type": "file", "hash": "5f14b539ad836fde22b8c83e9fe886e765e26c7c", - "version": "5f14b53", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6733,7 +7695,7 @@ "name": "茉洁草36-欧庇克莱歌剧院-枫丹15个.json", "type": "file", "hash": "59f6bbabbf0b698bf7b2c04fd1d2ae1b08d603e5", - "version": "59f6bba", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6744,7 +7706,7 @@ "name": "茉洁草37-莫尔泰区-枫丹7个.json", "type": "file", "hash": "ce153c88aebed57c5ea2c3d14cdd0c20779365f9", - "version": "ce153c8", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6755,7 +7717,7 @@ "name": "茉洁草38-卡布狄斯堡遗迹-枫丹11个.json", "type": "file", "hash": "4f361b0633a45b07c03ed270c205acc9566cb02b", - "version": "4f361b0", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6766,7 +7728,7 @@ "name": "茉洁草39-秋分山西侧-枫丹2个.json", "type": "file", "hash": "5fc07f8e84a8e00de238d6fbf6f01cbe2f423502", - "version": "5fc07f8", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6777,7 +7739,7 @@ "name": "茉洁草40-秋分山西侧-枫丹4个.json", "type": "file", "hash": "2030032b9469b26786ee41163c4945965206e688", - "version": "2030032", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6794,7 +7756,7 @@ "name": "01-慕风蘑菇-蒙德城北2个.json", "type": "file", "hash": "fe564dd027a322c226b4157db000db7d9137840b", - "version": "fe564dd", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -6806,7 +7768,7 @@ "name": "02-慕风蘑菇-蒙德城北2个.json", "type": "file", "hash": "6b660cebdcf6552fa21d895172986bfc00f61be8", - "version": "6b660ce", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -6818,7 +7780,7 @@ "name": "03-慕风蘑菇-蒙德城东北5个.json", "type": "file", "hash": "e120e66cbef56b352fcc0072d246fbd9de4ef33c", - "version": "e120e66", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -6830,7 +7792,7 @@ "name": "04-慕风蘑菇-蒙德城东南下层6个.json", "type": "file", "hash": "2bf16be3f4ec5ae5d70bb035e9496462dc41792a", - "version": "2bf16be", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -6842,7 +7804,7 @@ "name": "05-慕风蘑菇-蒙德城东南上层6个.json", "type": "file", "hash": "71f0c0e47f7487395334a44eabdcc9f58c234e23", - "version": "71f0c0e", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -6854,7 +7816,7 @@ "name": "06-慕风蘑菇-蒙德城南大风车4个.json", "type": "file", "hash": "cc9decb9e62d09f6f5f6a53ba371394d44bbd503", - "version": "cc9decb", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -6866,7 +7828,7 @@ "name": "07-慕风蘑菇-蒙德城南大风车2个.json", "type": "file", "hash": "29b7a28cac65cf50f1acb916d124cc70e15e27b9", - "version": "29b7a28", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -6878,7 +7840,7 @@ "name": "09-慕风蘑菇-晨曦酒庄7个.json", "type": "file", "hash": "563ae88b54b997f13e99d1f3007a2033bbef5530", - "version": "563ae88", + "version": "1.0", "author": "yulalaa&秋云&取个名字好难", "description": "", "tags": [ @@ -6890,7 +7852,7 @@ "name": "10-慕风蘑菇-清泉镇4个.json", "type": "file", "hash": "8d9edc26d0c6b1000e7d0c898d5cc7992f4b48e6", - "version": "8d9edc2", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -6902,7 +7864,7 @@ "name": "11-慕风蘑菇-清泉镇14个.json", "type": "file", "hash": "4f9d549b2279fae1bb2b12ff06b1fbed4a740cdb", - "version": "4f9d549", + "version": "1.0", "author": "秋云&起个名字好难", "description": "", "tags": [ @@ -6920,7 +7882,7 @@ "name": "霓裳花_望舒客栈_璃月_7个.json", "type": "file", "hash": "f4b047379e9ad63cec9ed2670f3149ddf3fd6372", - "version": "f4b0473", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -6931,7 +7893,7 @@ "name": "霓裳花_璃月港_璃月_14個.json", "type": "file", "hash": "08bb644756c3367bbe61231d67e0e7347546f575", - "version": "08bb644", + "version": "1.0", "author": "Mochi麻糬", "description": "修复路径爬墙,精确定位点位", "tags": [ @@ -6948,7 +7910,7 @@ "name": "鸟蛋-云来海-璃月2个.json", "type": "file", "hash": "296980ca27dad158173972f915443c9cea5b6cf3", - "version": "296980c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6959,7 +7921,7 @@ "name": "鸟蛋-地中之盐-璃月2个.json", "type": "file", "hash": "36122ad7b0551b037cba73738a9a2d042ed6bb68", - "version": "36122ad", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6971,7 +7933,7 @@ "name": "鸟蛋-奥藏山-璃月8个.json", "type": "file", "hash": "6188cc87871fe7dda726c642ffffe0e86136a566", - "version": "6188cc8", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6982,7 +7944,7 @@ "name": "鸟蛋-孤云阁-璃月2个.json", "type": "file", "hash": "52043f8685977a6b6440c51553d666f931d9dd11", - "version": "52043f8", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -6994,7 +7956,7 @@ "name": "鸟蛋-明蕴镇(神像)-璃月2个.json", "type": "file", "hash": "406fd56d576d8ca85b6a4da781e87d59bc9b4917", - "version": "406fd56", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7006,7 +7968,7 @@ "name": "鸟蛋-明蕴镇-璃月2个.json", "type": "file", "hash": "3996d3ae9f5464654f153cd908ce4175d6ce4432", - "version": "3996d3a", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7018,7 +7980,7 @@ "name": "鸟蛋-清泉镇-蒙德2个.json", "type": "file", "hash": "198a2b015582c7e5adee7a14d141a094361458f6", - "version": "198a2b0", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7030,7 +7992,7 @@ "name": "鸟蛋-珉林-璃月2个.json", "type": "file", "hash": "f9c6716b7c6223dd7b51301dcb8c3fc55a3f616a", - "version": "f9c6716", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7042,7 +8004,7 @@ "name": "鸟蛋-瑶光滩-璃月2个.json", "type": "file", "hash": "7078d6e49ef97d95c8ded2b2db3e150b8af8b2b9", - "version": "7078d6e", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7054,7 +8016,7 @@ "name": "鸟蛋-纳塔-回声之子下方锚点-2个.json", "type": "file", "hash": "aedf18daf5bf484007e31d91b51677d380d0f06e", - "version": "aedf18d", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -7066,7 +8028,7 @@ "name": "鸟蛋-绝云间上-璃月2个.json", "type": "file", "hash": "421b272e230b5b5209eb3cede9a71a338493174b", - "version": "421b272", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7078,7 +8040,7 @@ "name": "鸟蛋-荻花洲-璃月2个.json", "type": "file", "hash": "3bafc780296c4b2843762c855c5e7277a7bc5e48", - "version": "3bafc78", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7090,7 +8052,7 @@ "name": "鸟蛋-震雷连山密宫-璃月2个.json", "type": "file", "hash": "b904f90abc28e233ae604839b135a7f58b096642", - "version": "b904f90", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7108,7 +8070,7 @@ "name": "帕蒂沙兰 卡萨扎莱宫.json", "type": "file", "hash": "06396312d9d432466bad33d23af8c7392ce4ce5b", - "version": "0639631", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -7119,7 +8081,7 @@ "name": "帕蒂沙兰 桓那兰那.json", "type": "file", "hash": "1b8498113a43284b408546a1af43fc0bef6516ee", - "version": "1b84981", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -7130,7 +8092,7 @@ "name": "帕蒂沙兰 桓那兰那右上.json", "type": "file", "hash": "1fe73fe565a08f4fc551e4d6a9e72e93890220ec", - "version": "1fe73fe", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -7141,7 +8103,7 @@ "name": "帕蒂沙兰 桓那兰那右下.json", "type": "file", "hash": "67bc9ebe1a5314ce29d661ffee86c5b01559e931", - "version": "67bc9eb", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -7152,7 +8114,7 @@ "name": "帕蒂沙兰 禅那园.json", "type": "file", "hash": "50b01dbd2f972b3907d9935c3647c942b3339b38", - "version": "50b01db", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -7163,7 +8125,7 @@ "name": "帕蒂沙兰 须弥城1.json", "type": "file", "hash": "fa45d16db72d302f062e4e1f68b163871bace8c9", - "version": "fa45d16", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -7174,7 +8136,7 @@ "name": "帕蒂沙兰 须弥城右下.json", "type": "file", "hash": "8b7e142b8960cc35f23871028a70b9bf40da68f5", - "version": "8b7e142", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -7185,7 +8147,7 @@ "name": "帕蒂沙兰 须弥城左上.json", "type": "file", "hash": "854161a42405f3a9b321739d4e806ec6f75815c8", - "version": "854161a", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -7202,7 +8164,7 @@ "name": "泡泡桔01-厄里纳斯-枫丹6个.json", "type": "file", "hash": "fa50200ec51b79ddfa8fffc1ac14fd1d6e7e00d6", - "version": "fa50200", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7214,7 +8176,7 @@ "name": "泡泡桔02-厄里纳斯-枫丹9个.json", "type": "file", "hash": "e7aaf2f072aa0a4a6094418bdef98a94c03274d6", - "version": "e7aaf2f", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7226,7 +8188,7 @@ "name": "泡泡桔03-厄里纳斯-枫丹6个.json", "type": "file", "hash": "1e789f1797e264f90cd29c24a352be4215efebab", - "version": "1e789f1", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7238,7 +8200,7 @@ "name": "泡泡桔04-枫丹廷-枫丹18个.json", "type": "file", "hash": "24201d6c0a1c3a6943b4a79020a6b155fcbccd93", - "version": "24201d6", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7250,7 +8212,7 @@ "name": "泡泡桔05-枫丹廷(高危)-枫丹20个.json", "type": "file", "hash": "08f4f75239ded344cbf0a1a252fe35dacded6e1e", - "version": "08f4f75", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7262,7 +8224,7 @@ "name": "泡泡桔06-枫丹科学院-枫丹4个.json", "type": "file", "hash": "46ae1eef3e6585d6da4da050d638a98f172d583d", - "version": "46ae1ee", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7274,7 +8236,7 @@ "name": "泡泡桔07-中央实验室遗址-枫丹3个.json", "type": "file", "hash": "ba41feb4d36852ba7059bb592545f9b12cbd501e", - "version": "ba41feb", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7286,7 +8248,7 @@ "name": "泡泡桔08-茉洁站上-枫丹5个.json", "type": "file", "hash": "f5c78bd5396d6caa14aea97ab90e1f47e06f732a", - "version": "f5c78bd", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7298,7 +8260,7 @@ "name": "泡泡桔09-优兰尼娅湖-枫丹3个.json", "type": "file", "hash": "109e94d3212394b0c7425b87a35ccde6a9d94958", - "version": "109e94d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7310,7 +8272,7 @@ "name": "泡泡桔10-茉洁站-枫丹3个.json", "type": "file", "hash": "5cda66d88ff4054a645d043ee0c89947f5535f68", - "version": "5cda66d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7321,7 +8283,7 @@ "name": "泡泡桔11-茉洁站-枫丹9个.json", "type": "file", "hash": "ac77f3e014443791cf344ea550a275444abea675", - "version": "ac77f3e", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7339,7 +8301,7 @@ "name": "苹果01-低语森林-蒙德7个.json", "type": "file", "hash": "cf91daef16b178980c04866f26564039ca7a9d55", - "version": "cf91dae", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7351,7 +8313,7 @@ "name": "苹果02-清泉镇-蒙德5个.json", "type": "file", "hash": "d94fc269ee6f100be3e8730f5898e4b7a7b5a527", - "version": "d94fc26", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7363,7 +8325,7 @@ "name": "苹果03-晨曦酒庄-蒙德7个.json", "type": "file", "hash": "fe864494b9e73dcfc5cf552621837746a9cb1e46", - "version": "fe86449", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7375,7 +8337,7 @@ "name": "苹果04-奔狼岭-蒙德3个.json", "type": "file", "hash": "3ddf604647ca737ef686def84a0d36bb090edcbf", - "version": "3ddf604", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7387,7 +8349,7 @@ "name": "苹果05-奔狼岭-蒙德3个.json", "type": "file", "hash": "6d04f92e8f57abb6da95e7294f9f1f5c666094b5", - "version": "6d04f92", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7399,7 +8361,7 @@ "name": "苹果06-地中之盐-璃月3个.json", "type": "file", "hash": "c86358e16ef97dc8a7ed0835c0cd41bb3988f1de", - "version": "c86358e", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7411,7 +8373,7 @@ "name": "苹果07-归离原-璃月6个.json", "type": "file", "hash": "f9bbee7bc5cff20215ebeb5621d4196a66b48154", - "version": "f9bbee7", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7423,7 +8385,7 @@ "name": "苹果08-遁玉陵-璃月3个.json", "type": "file", "hash": "046ae73fbc2ba8a58e44eeb67196f14ebae16588", - "version": "046ae73", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7435,7 +8397,7 @@ "name": "苹果09-遁玉陵-璃月3个.json", "type": "file", "hash": "233492be4fd07ae2b145d97936b0a90e1d845a6e", - "version": "233492b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7447,7 +8409,7 @@ "name": "苹果10-卡萨扎莱宫-须弥3个.json", "type": "file", "hash": "91999d98dca88c9f0864f0daab252d6f7bdd5289", - "version": "91999d9", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7459,7 +8421,7 @@ "name": "苹果11-化城郭-须弥6个.json", "type": "file", "hash": "d899ddbfc88a751e0e1a32712352e90ae9cbdd4b", - "version": "d899ddb", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7471,7 +8433,7 @@ "name": "苹果12-天臂池-须弥6个.json", "type": "file", "hash": "b3306c6de770bf5ccd3df4fbd27ac1bf4aa7273e", - "version": "b3306c6", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7483,7 +8445,7 @@ "name": "苹果13-禅那园(高危)-须弥5个.json", "type": "file", "hash": "c9730aec091b1d98dec397d646008ecdccd94e0d", - "version": "c9730ae", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7495,7 +8457,7 @@ "name": "苹果14-谒颂幽境-须弥3个.json", "type": "file", "hash": "d9d0ffe54e77b0469231cb530b8de929e1e7e528", - "version": "d9d0ffe", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -7517,7 +8479,7 @@ "name": "01-蒲公英-蒙德城门口9个.json", "type": "file", "hash": "0afec0469c4212f16717ebc42ee0d93d45631226", - "version": "0afec04", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7529,7 +8491,7 @@ "name": "02-蒲公英-山脊守望西10个.json", "type": "file", "hash": "d3a5c0514b44b33c47810451581ebacade425113", - "version": "d3a5c05", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7541,7 +8503,7 @@ "name": "03-蒲公英-西风庙宇东2个(有怪).json", "type": "file", "hash": "5948b8a4cf0796a83c613132abbd1fb9a34ea88e", - "version": "5948b8a", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7553,7 +8515,7 @@ "name": "04-蒲公英-星落湖南3个.json", "type": "file", "hash": "d9d7e6b318d6f339fe7d221c7ea0f0df4325f481", - "version": "d9d7e6b", + "version": "1.0", "author": "秋云", "description": "修复第二个蒲公英无法捡起来的情况。", "tags": [ @@ -7565,7 +8527,7 @@ "name": "05-蒲公英-仲夏庭园3个(有怪).json", "type": "file", "hash": "d763d56e8b9990ef6485ad4f0cf24ce85e2576cf", - "version": "d763d56", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7577,7 +8539,7 @@ "name": "07-蒲公英-达达乌帕谷3个(有怪).json", "type": "file", "hash": "00dc266a8641a91b17e4148b94b81e07c8375a08", - "version": "00dc266", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7589,7 +8551,7 @@ "name": "08-蒲公英-达达乌帕谷南3个(有怪).json", "type": "file", "hash": "be087d78889468c1263d637ca81cdcd3eb8300df", - "version": "be087d7", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7601,7 +8563,7 @@ "name": "09-蒲公英-风起地南3个(有怪).json", "type": "file", "hash": "b5f23c3ebf63b58dcfe2de15f47fd308e21e5ea8", - "version": "b5f23c3", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7613,7 +8575,7 @@ "name": "10-蒲公英-奔狼领北2个.json", "type": "file", "hash": "9dc5f9b17291d6c47f8d43b0379e733602252634", - "version": "9dc5f9b", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7625,7 +8587,7 @@ "name": "11-蒲公英-晨曦酒庄东2个.json", "type": "file", "hash": "6847ba921af8334537ac5a6b8149f3d9733c4011", - "version": "6847ba9", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7637,7 +8599,7 @@ "name": "12-蒲公英-晨曦酒庄北3个(路远,不建议).json", "type": "file", "hash": "63ff2b733583fe6eb94324de6a6d4a4420fb3dc3", - "version": "63ff2b7", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7649,7 +8611,7 @@ "name": "13-蒲公英-清泉镇西1个(路远,不建议).json", "type": "file", "hash": "a07c10c4b9bbe66cf4ef36ca9d3b9bbe8fddaf22", - "version": "a07c10c", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7661,7 +8623,7 @@ "name": "14-蒲公英-清泉镇1个(路远,不建议).json", "type": "file", "hash": "e940e523c83d1c996de74cb7ec119c9d43200ed9", - "version": "e940e52", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7673,7 +8635,7 @@ "name": "15-蒲公英-望风角1个(路远,不建议).json", "type": "file", "hash": "6da1e338d6c0452d679e342a756f2bb834025f3c", - "version": "6da1e33", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7685,7 +8647,7 @@ "name": "16-蒲公英-望风山地2个(路远,不建议).json", "type": "file", "hash": "b1cf79ad6dd244abb24c6f9923e81bf5bc3e3545", - "version": "b1cf79a", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7697,7 +8659,7 @@ "name": "20-蒲公英-北风庙宇东3个(有怪).json", "type": "file", "hash": "56dc0b5eba661776e20719feda03e277b2c87c01", - "version": "56dc0b5", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7715,7 +8677,7 @@ "name": "01蒲公英_9(性价比).json", "type": "file", "hash": "3f89324a1798a7fa8c8a7f5be6bb8ac15ad31ccb", - "version": "3f89324", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7727,7 +8689,7 @@ "name": "02蒲公英_3.json", "type": "file", "hash": "a55e79e6c09c70d87739f11a21699c579062d5da", - "version": "a55e79e", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7740,7 +8702,7 @@ "name": "04蒲公英_3.json", "type": "file", "hash": "5a3d696862b99216a66db8beb52293aaaeebe04a", - "version": "5a3d696", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7754,7 +8716,7 @@ "name": "05蒲公英_2.json", "type": "file", "hash": "75eb66c64161781464d8000aff4893107033476b", - "version": "75eb66c", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7767,7 +8729,7 @@ "name": "06-蒲公英-誓言岬2个.json", "type": "file", "hash": "175e54d8dbe9fe4ba0b7b500299d24c3578baa6f", - "version": "175e54d", + "version": "1.0", "author": "秋云", "description": "", "tags": [ @@ -7779,7 +8741,7 @@ "name": "06蒲公英_2.json", "type": "file", "hash": "e3f0906a0ec41c1da360f3edc79c1dfb8c6d072f", - "version": "e3f0906", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7791,7 +8753,7 @@ "name": "07蒲公英_2.json", "type": "file", "hash": "871ae4535066fda423ed3b13ce30e727c79968ec", - "version": "871ae45", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7804,7 +8766,7 @@ "name": "08蒲公英_2.json", "type": "file", "hash": "c982a8b1055102b0e02eac46dd35832a353422cc", - "version": "c982a8b", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7817,7 +8779,7 @@ "name": "09蒲公英_1.json", "type": "file", "hash": "47064781baed55e13477cd6ded62c1d88b10134d", - "version": "4706478", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7830,7 +8792,7 @@ "name": "10蒲公英_10(性价比).json", "type": "file", "hash": "d12162c7932876e10dd7b81d5f3ff9d79f4bf21f", - "version": "d12162c", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:小草神+琴团长(琴可以换万叶,不建议法器角色,可能会攻击到怪)", "tags": [ @@ -7852,7 +8814,7 @@ "name": "青蜜莓1-踞石山上-4x3个.json", "type": "file", "hash": "e481470ba309018d4b7d5d988d75c63a353b8e4f", - "version": "e481470", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -7863,7 +8825,7 @@ "name": "青蜜莓2-彩石顶右-2x3个.json", "type": "file", "hash": "a3ced8628151272b0170075e6888407fd0b61de0", - "version": "a3ced86", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -7874,7 +8836,7 @@ "name": "青蜜莓3-彩石顶中-3x3个.json", "type": "file", "hash": "dbcdd6e9c5d82e2402e97cbf036057c983f5d434", - "version": "dbcdd6e", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -7885,7 +8847,7 @@ "name": "青蜜莓4-彩石顶中-1x3个.json", "type": "file", "hash": "19105b94ccd71e4479a9eca91b93fadab1a89213", - "version": "19105b9", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -7896,7 +8858,7 @@ "name": "青蜜莓5-彩石顶上-4x3个.json", "type": "file", "hash": "6f57e968fd7474d4e11da8b2b060bd8a30beb089", - "version": "6f57e96", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -7907,7 +8869,7 @@ "name": "青蜜莓6-悬木人-5x3个.json", "type": "file", "hash": "b502a8ebc3478337b1da582640d295c0513dab54", - "version": "b502a8e", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -7918,7 +8880,7 @@ "name": "青蜜莓7-坚岩隘谷-5x3个.json", "type": "file", "hash": "19835ab91a8a934297ba806ad9ae623a74679c10", - "version": "19835ab", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -7939,7 +8901,7 @@ "name": "1灵濛山.json", "type": "file", "hash": "bbea9bb6ba5ce16e2785ab7e41cc65819dcba727", - "version": "bbea9bb", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -7950,7 +8912,7 @@ "name": "2古茶树坡.json", "type": "file", "hash": "88b4c1a21afc8b3cd7d6c522fa3f430b8e9a33dc", - "version": "88b4c1a", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -7961,7 +8923,7 @@ "name": "3药蝶谷.json", "type": "file", "hash": "1d047d4407dda71a76447038bab7735d4ad247f4", - "version": "1d047d4", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -7972,7 +8934,7 @@ "name": "4悬练山.json", "type": "file", "hash": "7d2e8e4edb2508dacad74e81f9c8805c31ee92ca", - "version": "7d2e8e4", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -7983,7 +8945,7 @@ "name": "5沉玉谷南陵.json", "type": "file", "hash": "9de50d62db5e2034c01b9a600875efa9e00dccf6", - "version": "9de50d6", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -8000,7 +8962,7 @@ "name": "P2(挖)清水玉-沉玉谷上谷-鼋背(陆)-6个.json", "type": "file", "hash": "f1049a922c56d3b5c8dffb9625d4f2cdb9a24782", - "version": "f1049a9", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -8011,7 +8973,7 @@ "name": "P2(挖)清水玉01-沉玉谷上谷-鼋背(水)-6个.json", "type": "file", "hash": "623d4b1912e85078fce9c754f4f3b1e24b4ff186", - "version": "623d4b1", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -8022,7 +8984,7 @@ "name": "P2(捡)清水玉01-沉玉谷上谷-鼋背-6个.json", "type": "file", "hash": "a496ee116d35f2e0ff9410887e9c72b387a92245", - "version": "a496ee1", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -8033,7 +8995,7 @@ "name": "清水玉-古茶树坡-东侧-8个.json", "type": "file", "hash": "20a773a979b9737c3a4f29e302c71d961a8c3aae", - "version": "20a773a", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -8044,7 +9006,7 @@ "name": "清水玉-古茶树坡-东南-3个.json", "type": "file", "hash": "87c261614d2c1f699e6553e5ed2ff0511bce093b", - "version": "87c2616", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -8055,7 +9017,7 @@ "name": "清水玉-古茶树坡-西侧-5个.json", "type": "file", "hash": "0f52cbaa08cc66f504c32d745c1d6bbf809b8e35", - "version": "0f52cba", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -8066,7 +9028,7 @@ "name": "清水玉-沉玉谷南陵-南侧-1个.json", "type": "file", "hash": "c1f7cbfd706fef55712f31e0d0824f1dc015ba1c", - "version": "c1f7cbf", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -8077,7 +9039,7 @@ "name": "清水玉-沉玉谷南陵-悬练山-下方-6个(带拾取).json", "type": "file", "hash": "589f890e8f621c7f58b97070116c76d07daf518f", - "version": "589f890", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -8088,7 +9050,7 @@ "name": "清水玉-沉玉谷南陵-悬练山-东北-5个(带拾取).json", "type": "file", "hash": "3e9f30e7e551c36eb9ba88e077b5ee8f8b7559e7", - "version": "3e9f30e", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -8099,7 +9061,7 @@ "name": "清水玉-沉玉谷南陵-悬练山-北侧山洞-4个(带拾取).json", "type": "file", "hash": "18dc6bfbdb7b5c6b2e2128698efd11d2c92b01f8", - "version": "18dc6bf", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -8110,7 +9072,7 @@ "name": "清水玉-沉玉谷南陵-药蝶谷-4个(带拾取).json", "type": "file", "hash": "9f70c4df7ba5888165197684a7976ec70de764f0", - "version": "9f70c4d", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -8121,7 +9083,7 @@ "name": "清水玉-沉玉谷南陵-赤璋城垣-七天神像-3个(带拾取).json", "type": "file", "hash": "d152b9c8a90996e23ba99bd6aea3b4e8c2d9e8f3", - "version": "d152b9c", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -8132,7 +9094,7 @@ "name": "清水玉-灵濛山-北侧-2个.json", "type": "file", "hash": "e5844c8cda3de2f957fb50441b6a4b25782d35d7", - "version": "e5844c8", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -8143,7 +9105,7 @@ "name": "清水玉-灵濛山-西北-2个.json", "type": "file", "hash": "09448420e940ab3590bf9fb052f0e4edd8cfaee2", - "version": "0944842", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -8162,7 +9124,7 @@ "name": "狄花洲13.json", "type": "file", "hash": "75a549a9c2e2e926094d3e0bc23befc7e25ec9fd", - "version": "75a549a", + "version": "1.0", "author": "MOMO", "description": "带早柚或瑶瑶,实际上只能拿到6只左右", "tags": [ @@ -8173,7 +9135,7 @@ "name": "石门2.json", "type": "file", "hash": "7f837813027363576ac8c5b388e9cb777803d936", - "version": "7f83781", + "version": "1.0", "author": "MOMO", "description": "带早柚或瑶瑶", "tags": [ @@ -8186,11 +9148,67 @@ "name": "日落果", "type": "directory", "children": [ + { + "name": "日落果-须弥-二净甸-7个.json", + "type": "file", + "hash": "da1f0377e8dd724c78653e5539ffbda50e1c4040", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "日落果" + ] + }, + { + "name": "日落果-须弥-二净甸-觉王之殿-8个.json", + "type": "file", + "hash": "d582b68a248ee9bfb795d000ea224d93d76f6b99", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "日落果" + ] + }, + { + "name": "日落果-须弥-善见地-禅那园-11个.json", + "type": "file", + "hash": "fbf17e037bc6b4d99be6ccd710666e6f6f1eb9ac", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果-须弥-道成林-化成郭-5个.json", + "type": "file", + "hash": "8b6e33e4cc187c57cf04ba581cc9d8a03934c4c4", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "日落果" + ] + }, + { + "name": "日落果-须弥-阿陀河谷-6个.json", + "type": "file", + "hash": "3d5a80bb3d3797ae29591f30da71549e0c3bcb66", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "日落果" + ] + }, { "name": "日落果01-望风山地-蒙德3个.json", "type": "file", "hash": "ecba4b905ef62867825a13d956e23c1a346cdcb8", - "version": "ecba4b9", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8202,7 +9220,7 @@ "name": "日落果02-蒙德城外-蒙德7个.json", "type": "file", "hash": "0ec1d81839c65eaa68bd6fdeaee11cd9b7ea18b5", - "version": "0ec1d81", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8214,7 +9232,7 @@ "name": "日落果03-蒙德城外-蒙德6个.json", "type": "file", "hash": "0c22b04f6f256841663bf8d46133254882c9306a", - "version": "0c22b04", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8226,7 +9244,7 @@ "name": "日落果04-星落湖-蒙德36个.json", "type": "file", "hash": "ecd1e9f66f50308cf6977c0048e5630d9a167870", - "version": "ecd1e9f", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8238,7 +9256,7 @@ "name": "日落果05-奔狼岭-蒙德3个.json", "type": "file", "hash": "50ec42599841741fc5047e402732e5105261a6bf", - "version": "50ec425", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8250,7 +9268,7 @@ "name": "日落果06-奔狼岭-蒙德6个.json", "type": "file", "hash": "c0d59b711fdf89da12b50c28c5f964490e0bb1c8", - "version": "c0d59b7", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8262,7 +9280,7 @@ "name": "日落果07-清泉镇-蒙德6个.json", "type": "file", "hash": "3ebd1b7e82d192b8fc8e56dc541fa5117260d09c", - "version": "3ebd1b7", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8274,7 +9292,7 @@ "name": "日落果08-南风之狮的庙宇-蒙德9个.json", "type": "file", "hash": "7f989a31cfcbdeafaea2e2da516fabd5646a36fd", - "version": "7f989a3", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8286,7 +9304,7 @@ "name": "日落果09-誓言岬-蒙德6个.json", "type": "file", "hash": "ec6ed175ba11ba1eaa1bb41e9b43cd6894a39933", - "version": "ec6ed17", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8298,7 +9316,7 @@ "name": "日落果10-誓言岬-蒙德6个.json", "type": "file", "hash": "ba09681144516d50637d02393ef9c5b01e3ffce5", - "version": "ba09681", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8310,7 +9328,7 @@ "name": "日落果11-达达乌帕谷-蒙德15个.json", "type": "file", "hash": "63d8ea5789a72e1bcaaa58ac3615430e5f8feb2c", - "version": "63d8ea5", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8322,7 +9340,7 @@ "name": "日落果12-鹰之门-蒙德9个.json", "type": "file", "hash": "e38b49e77fea12cc49392c129d10f0be725eec20", - "version": "e38b49e", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8334,7 +9352,7 @@ "name": "日落果13-荻花洲-璃月5个.json", "type": "file", "hash": "704dd5036b6840fce1f4d08a4ad6719fc9d77e67", - "version": "704dd50", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8346,7 +9364,7 @@ "name": "日落果14-明蕴镇-璃月3个.json", "type": "file", "hash": "fd6c9657eddd66361c45ef747bd8affddc5a570f", - "version": "fd6c965", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8358,7 +9376,7 @@ "name": "日落果15-云来海-璃月6个.json", "type": "file", "hash": "c7ef6b6eeb3be98f44c1add6bf60292ad45d16f2", - "version": "c7ef6b6", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8370,7 +9388,7 @@ "name": "日落果16-云来海-璃月3个.json", "type": "file", "hash": "c26f019c34489d86e0449b29913fc67f903bb565", - "version": "c26f019", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8382,7 +9400,7 @@ "name": "日落果17-归离原-璃月3个.json", "type": "file", "hash": "d3db82e3b85bc494e3bcbe5e21b96e4987086a9f", - "version": "d3db82e", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8394,7 +9412,7 @@ "name": "日落果18-灵矩关-璃月3个.json", "type": "file", "hash": "d5d02b4df5e19b7507e01189c71da1940716e907", - "version": "d5d02b4", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8406,7 +9424,7 @@ "name": "日落果19-化城郭-须弥4个.json", "type": "file", "hash": "b669fc05a677db96eb9e92483ad24e8ace3904d7", - "version": "b669fc0", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8418,7 +9436,7 @@ "name": "日落果20-遏颂幽境-须弥6个.json", "type": "file", "hash": "d1b10ef265c6c441f1fc1ed0d0fde008f4a8b983", - "version": "d1b10ef", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -8436,7 +9454,7 @@ "name": "柔灯铃——1——12个.json", "type": "file", "hash": "889b36d5e2ebce15c9e5640b7cc667c8cac9fee1", - "version": "889b36d", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8447,7 +9465,7 @@ "name": "柔灯铃——2——9个.json", "type": "file", "hash": "755717259cc3cd3f1886b6959ae75e8bd58f7496", - "version": "7557172", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8458,7 +9476,7 @@ "name": "柔灯铃——3——3个.json", "type": "file", "hash": "f9c0b7ad22a3eca26aef343ce80f86eabd651922", - "version": "f9c0b7a", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8469,7 +9487,7 @@ "name": "柔灯铃——4——9个.json", "type": "file", "hash": "4703ec1aeb1865f33110ba7d202b47ecca0f30a1", - "version": "4703ec1", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8480,7 +9498,7 @@ "name": "柔灯铃——5——6个.json", "type": "file", "hash": "ad17ed72483ddfa0cd1554e1a0f48c334b2ca79c", - "version": "ad17ed7", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8491,7 +9509,7 @@ "name": "柔灯铃——6——27个.json", "type": "file", "hash": "88132aee7087943e30a974e0ea34de1ca05647d0", - "version": "88132ae", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8502,7 +9520,7 @@ "name": "柔灯铃——7——6个.json", "type": "file", "hash": "05845a0584b888f5d75f841bd0a707d8da9501e3", - "version": "05845a0", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8513,7 +9531,7 @@ "name": "柔灯铃——8——9个.json", "type": "file", "hash": "d522dc4951a0d1b9a469e4c78dce2ef8ea858abe", - "version": "d522dc4", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8524,7 +9542,7 @@ "name": "柔灯铃——9——6个.json", "type": "file", "hash": "ae3ab12a6fa20d55c64172e681124de60f3ac14d", - "version": "ae3ab12", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -8541,7 +9559,7 @@ "name": "肉龙掌1-坚岩隘谷上-2个.json", "type": "file", "hash": "9aa0a0903a12f00d109379411b45646ed07f64b5", - "version": "9aa0a09", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8552,7 +9570,7 @@ "name": "肉龙掌2-坚岩隘谷上-18个.json", "type": "file", "hash": "3ba01519b1f81c029223a148c70bcb4011c12ff5", - "version": "3ba0151", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8563,7 +9581,7 @@ "name": "肉龙掌3-坚岩隘谷右-14个.json", "type": "file", "hash": "b02b7f810a587a5c015262743b813a4fbb3c7a69", - "version": "b02b7f8", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8574,7 +9592,7 @@ "name": "肉龙掌4-硫晶支脉左-2个.json", "type": "file", "hash": "d8c85fff0a2e65425a5372c9c8b2e6e04a65e7ee", - "version": "d8c85ff", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8585,7 +9603,7 @@ "name": "肉龙掌5-硫晶支脉左-5个.json", "type": "file", "hash": "05d6555d974c561926bdb130ac508c155c2aa1f0", - "version": "05d6555", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8596,7 +9614,7 @@ "name": "肉龙掌6-回血.json", "type": "file", "hash": "883138b2e9dc86486b37a7e0e493446c3b75202c", - "version": "883138b", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8607,7 +9625,7 @@ "name": "肉龙掌7-隆崛坡-13个.json", "type": "file", "hash": "f65b566d27f03f84b89d9db2796f0525a5ef8d5e", - "version": "f65b566", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8628,7 +9646,7 @@ "name": "塞西莉亚花37个.json", "type": "file", "hash": "6c107952b03ba2e9d98a39ce68ca48132255319c", - "version": "6c10795", + "version": "1.0", "author": "yulalaa", "description": "", "tags": [ @@ -8645,7 +9663,7 @@ "name": "塞西莉亚(性价比).json", "type": "file", "hash": "08810ac788be6d5588cdbdae2228cbb91f4dfd60", - "version": "08810ac", + "version": "1.0", "author": "彩虹QQ人", "description": "塞西莉亚花性价比路线,包括三个蒲公英三个小灯草,要求队伍:草神-团长,不建议风系法器,可能会攻击到怪。", "tags": [ @@ -8670,7 +9688,7 @@ "name": "珊瑚珍珠1-望泷村右上-9个.json", "type": "file", "hash": "cf60b54261c84ce9015ab3ebe190368fdf54e7f3", - "version": "cf60b54", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8681,7 +9699,7 @@ "name": "珊瑚珍珠2-珊瑚宫下-7个.json", "type": "file", "hash": "bb99a63d2a87fabaac4c7293cc00b8ecd4756f4a", - "version": "bb99a63", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8692,7 +9710,7 @@ "name": "珊瑚珍珠3-珊瑚宫右-3个.json", "type": "file", "hash": "9e39a49d142fc289c62d0f95255a3399985a1bcd", - "version": "9e39a49", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8703,7 +9721,7 @@ "name": "珊瑚珍珠4-珊瑚宫上-12个.json", "type": "file", "hash": "52efd5bb41ae7b3e0cfdb92259ca45eda4b8067b", - "version": "52efd5b", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8714,7 +9732,7 @@ "name": "珊瑚珍珠5-水月池-5个.json", "type": "file", "hash": "84d831c461b0d60f30e43c225f95b7a0057660f1", - "version": "84d831c", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8725,7 +9743,7 @@ "name": "珊瑚珍珠6-水月池下-6个.json", "type": "file", "hash": "93df2c080bb513cf8bb148c8d48029cdeabdc6f9", - "version": "93df2c0", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -8742,7 +9760,7 @@ "name": "珊瑚真珠01.json", "type": "file", "hash": "3949c7be1c59e13efdee259bed0aa905719ace01", - "version": "3949c7b", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -8754,7 +9772,7 @@ "name": "珊瑚真珠02.json", "type": "file", "hash": "c86e50201f964e08ec577ca3b58cb3171dbc7f40", - "version": "c86e502", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -8774,7 +9792,7 @@ "name": "圣金虫_丰饶绿洲东南_4.json", "type": "file", "hash": "6f2d4f706fa6cb2fff36b8c65692dce68da4d598", - "version": "6f2d4f7", + "version": "1.0", "author": "Tim", "description": "少一个点要用四叶印", "tags": [ @@ -8785,7 +9803,7 @@ "name": "圣金虫_丰饶绿洲北_4.json", "type": "file", "hash": "a1436487c7cc47ac03e0d96261842184be31350c", - "version": "a143648", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8796,7 +9814,7 @@ "name": "圣金虫_丰饶绿洲南_1.json", "type": "file", "hash": "3d57db63a011386d57c0ace8653fbf7689006986", - "version": "3d57db6", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8807,7 +9825,7 @@ "name": "圣金虫_显圣厅西_4.json", "type": "file", "hash": "54bd12bb9a4e4bfdddbe64736fdca1009f3db5cf", - "version": "54bd12b", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8818,7 +9836,7 @@ "name": "圣金虫_秘仪圣殿北_1.json", "type": "file", "hash": "3594ecacc2430986d9b03056670c1d77bca5f114", - "version": "3594eca", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8829,7 +9847,7 @@ "name": "圣金虫_荼诃落谷西_3.json", "type": "file", "hash": "18e16dc51b705b92cb241837515f58f323aa5402", - "version": "18e16dc", + "version": "1.0", "author": "Tim", "description": "少一个点要用四叶印", "tags": [ @@ -8840,7 +9858,7 @@ "name": "圣金虫_阿如村东_1.json", "type": "file", "hash": "1be36f43a4788f72738a86477c677152089e422d", - "version": "1be36f4", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8851,7 +9869,7 @@ "name": "圣金虫_阿如村西北_5.json", "type": "file", "hash": "d95f148bbd488ab47a9e2122e4e000728a3ef116", - "version": "d95f148", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8862,7 +9880,7 @@ "name": "圣金虫_饱饮之丘西_5.json", "type": "file", "hash": "41de902720bd8f5ff16072cd713aa163d4b65e3f", - "version": "41de902", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8883,7 +9901,7 @@ "name": "狗粮_枫丹_佩特莉可镇_3.json", "type": "file", "hash": "fa20bcfb23c66179e3d10753dacb0063b5b4177b", - "version": "fa20bcf", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8894,7 +9912,7 @@ "name": "狗粮_枫丹_学术讲堂_1.json", "type": "file", "hash": "643ba38ce48bee03f282e6295b02db4ad4794f4c", - "version": "643ba38", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8905,7 +9923,7 @@ "name": "狗粮_枫丹_新枫科院东南_7.json", "type": "file", "hash": "5ae08fc9a7586ec57dfbe4178adc9c1f79232212", - "version": "5ae08fc", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8916,7 +9934,7 @@ "name": "狗粮_枫丹_新枫科院宿舍_4.json", "type": "file", "hash": "b1dd7741ad7dda2221bc55f592af82455fc61a4a", - "version": "b1dd774", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8927,7 +9945,7 @@ "name": "狗粮_枫丹_新枫科院西北_3.json", "type": "file", "hash": "283c823740ff1d630a956e62cc8e4e06ae3b1f94", - "version": "283c823", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8938,7 +9956,7 @@ "name": "狗粮_枫丹_新枫科院西南_7.json", "type": "file", "hash": "bd84179e01910f957225dc8770906a0cd9a71c5f", - "version": "bd84179", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8949,7 +9967,7 @@ "name": "狗粮_枫丹_欧庇克莱歌剧院东南_2.json", "type": "file", "hash": "9a4debf10464c3652a169d33d4b85b4a8a8030ea", - "version": "9a4debf", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8960,7 +9978,7 @@ "name": "狗粮_枫丹_芒索斯山脉东麓_2.json", "type": "file", "hash": "0eda993343a359548826e69f4ddecfda85f47636", - "version": "0eda993", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8971,7 +9989,7 @@ "name": "狗粮_枫丹_黎翡区神像_3.json", "type": "file", "hash": "6508fc3907842204c79e1796c30233adb1b51931", - "version": "6508fc3", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8982,7 +10000,7 @@ "name": "狗粮_璃月_地中之盐_3.json", "type": "file", "hash": "1213a4e2c3fa3f851df3a930853a62d993f4c073", - "version": "1213a4e", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -8993,7 +10011,7 @@ "name": "狗粮_璃月_沉玉谷上谷_2.json", "type": "file", "hash": "15ecc74a6a41f356283bf79bc2210c55669653d3", - "version": "15ecc74", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9004,7 +10022,7 @@ "name": "狗粮_璃月_渌华池_3.json", "type": "file", "hash": "00f2643a9b45040f0a2bc83769a68842eb0956c2", - "version": "00f2643", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9015,7 +10033,7 @@ "name": "狗粮_璃月_老窖_6.json", "type": "file", "hash": "7ec1a1c88f85f3ae89499e3b9bad446d8bf3bc70", - "version": "7ec1a1c", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9026,7 +10044,7 @@ "name": "狗粮_璃月_荻花洲_2.json", "type": "file", "hash": "3a70e1a68f2487faf5f876a5a8f0e7b3b329f2c1", - "version": "3a70e1a", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9037,7 +10055,7 @@ "name": "狗粮_璃月_轻策庄_2.json", "type": "file", "hash": "3e3872c1cfd52fa62462794a5ea93c4d45767e47", - "version": "3e3872c", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9048,7 +10066,7 @@ "name": "狗粮_稻妻_平海砦_3.json", "type": "file", "hash": "8d2070a880f006ae1b2e691940a8eb0526c0d715", - "version": "8d2070a", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9059,7 +10077,7 @@ "name": "狗粮_稻妻_惑饲滩西_2.json", "type": "file", "hash": "36f5e937a14192d74e8613aff23b6442ad882589", - "version": "36f5e93", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9070,7 +10088,7 @@ "name": "狗粮_稻妻_望泷村西南_4.json", "type": "file", "hash": "8cafaee5d1d584b10c708a67ee07be188326c2ed", - "version": "8cafaee", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9081,7 +10099,7 @@ "name": "狗粮_稻妻_浅籁神社_3.json", "type": "file", "hash": "170536bf4127f34c0f55625424c9d3412abbc676", - "version": "170536b", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9092,7 +10110,7 @@ "name": "狗粮_稻妻_海祈岛东_2.json", "type": "file", "hash": "0f7512e5965076c83d1e0dc7daf1b2eae138ae09", - "version": "0f7512e", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9103,7 +10121,7 @@ "name": "狗粮_稻妻_清籁丸_7.json", "type": "file", "hash": "572227a358c7f47361e6222365e368aa5765f31b", - "version": "572227a", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9114,7 +10132,7 @@ "name": "狗粮_稻妻_神无冢_3.json", "type": "file", "hash": "e8a1ff04342b3baf7df4b6a11e0544e2145e2fe8", - "version": "e8a1ff0", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9125,7 +10143,7 @@ "name": "狗粮_稻妻_越石村_5.json", "type": "file", "hash": "56ef77379439bc0d28a11d9fda42f4d110c2770d", - "version": "56ef773", + "version": "1.0", "author": "Tim", "description": "狗粮_越石村_5个", "tags": [ @@ -9136,7 +10154,7 @@ "name": "狗粮_稻妻_鹤观神像_3.json", "type": "file", "hash": "de3c1830f76f35ac05d6a9d74f2f54974eb1f4e1", - "version": "de3c183", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9147,7 +10165,7 @@ "name": "狗粮_纳塔_圣火竞技场东_3.json", "type": "file", "hash": "426ecd8a516bd4b5334300681e7f71fc482f6e61", - "version": "426ecd8", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9158,7 +10176,7 @@ "name": "狗粮_纳塔_流泉之众_4.json", "type": "file", "hash": "46fd3c40b05023ac4d6e7df748637f15e35b6ff1", - "version": "46fd3c4", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9169,7 +10187,7 @@ "name": "狗粮_须弥_化城郭西_2.json", "type": "file", "hash": "671450ece82746a632c19255ae6a2bf43d5bdd15", - "version": "671450e", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9180,7 +10198,7 @@ "name": "狗粮_须弥_无郁绸林_3.json", "type": "file", "hash": "f12fcae41b63b28fce59e00af737fa41420f8ef0", - "version": "f12fcae", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9191,7 +10209,7 @@ "name": "狗粮_须弥_水天丛林水泡点_7.json", "type": "file", "hash": "c6efee5cc71981414770568d050d75fc9075704c", - "version": "c6efee5", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9202,7 +10220,7 @@ "name": "狗粮_须弥_神的棋盘_3.json", "type": "file", "hash": "bbc643100a35f6f259dc00993d9e6fe59f75bf76", - "version": "bbc6431", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9213,7 +10231,7 @@ "name": "狗粮_须弥_维摩庄_3.json", "type": "file", "hash": "6b7786b7e808e3fd365a7849603c0f3eb7811afa", - "version": "6b7786b", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9224,7 +10242,7 @@ "name": "狗粮_须弥_表恒纳兰那_9.json", "type": "file", "hash": "fbf0f80cf4f7b4d4d08234c5eb05d898ef98fbd0", - "version": "fbf0f80", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9235,7 +10253,7 @@ "name": "狗粮_须弥_觉王之殿南_4.json", "type": "file", "hash": "3d5b18a7ffc18b83f368b82b62e54f4084dd8dba", - "version": "3d5b18a", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9246,7 +10264,7 @@ "name": "狗粮_须弥_须弥城北_2.json", "type": "file", "hash": "9e38ba1031ff79420559c592cc9fdebcdb5c79b1", - "version": "9e38ba1", + "version": "1.0", "author": "Tim", "description": "", "tags": [ @@ -9263,7 +10281,7 @@ "name": "佩特莉可01 1.json", "type": "file", "hash": "a82adfacd6307f690df4c83779c07e3592dadab4", - "version": "a82adfa", + "version": "1.0", "author": "lwh9346", "description": "", "tags": [ @@ -9274,7 +10292,7 @@ "name": "地中之岩01 3.json", "type": "file", "hash": "4fbcb259f1ad76063ea0982ba6be5e6c5b246b9d", - "version": "4fbcb25", + "version": "1.0", "author": "lwh9346", "description": "", "tags": [ @@ -9285,7 +10303,7 @@ "name": "天云峠 01 6.json", "type": "file", "hash": "6157b7d45cdccc40797df847ee67578a1506af65", - "version": "6157b7d", + "version": "1.0", "author": "lwh9346", "description": "", "tags": [ @@ -9296,7 +10314,7 @@ "name": "海祇岛01 8.json", "type": "file", "hash": "a878f47096cf385f3820d568594213b35cd1a266", - "version": "a878f47", + "version": "1.0", "author": "lwh9346", "description": "", "tags": [ @@ -9307,7 +10325,7 @@ "name": "特尔柯西01 4.json", "type": "file", "hash": "d9eee0d367b044aee337d0245791f643d4d9a52c", - "version": "d9eee0d", + "version": "1.0", "author": "lwh9346", "description": "", "tags": [ @@ -9318,7 +10336,7 @@ "name": "碧水原01 5.json", "type": "file", "hash": "8baf1e5196dab3a1e5e514f9ecfd1e11bff32150", - "version": "8baf1e5", + "version": "1.0", "author": "lwh9346", "description": "", "tags": [ @@ -9329,7 +10347,7 @@ "name": "碧水原02 9.json", "type": "file", "hash": "bcdb6c1dc9a969cf296c897e60f660a59119cce9", - "version": "bcdb6c1", + "version": "1.0", "author": "lwh9346", "description": "", "tags": [ @@ -9340,7 +10358,7 @@ "name": "神的棋盘01 2.json", "type": "file", "hash": "7bdbd492422a84441e474e1445e9e8cbf8fccc72", - "version": "7bdbd49", + "version": "1.0", "author": "lwh9346", "description": "", "tags": [ @@ -9356,8 +10374,8 @@ { "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json", "type": "file", - "hash": "078966db9e4fb526bf2dadd75395531a77c7b7b5", - "version": "078966d", + "hash": "7bce071dfab3dab63588909efcd98ba73f6489af", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9367,8 +10385,8 @@ { "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json", "type": "file", - "hash": "8ec6a95b237a1f0283b6bcf567896ae59447d202", - "version": "8ec6a95", + "hash": "231cefa351c8c245f42afb5cd59cad87d7f1ef60", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9378,8 +10396,8 @@ { "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json", "type": "file", - "hash": "faa7be96314f50677544547821937af78d0fa25d", - "version": "faa7be9", + "hash": "2f5175d916d05b1747d7ef7fe888a7e6d516badd", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9393,8 +10411,8 @@ { "name": "(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json", "type": "file", - "hash": "10ab96ae34a2937526f1e7ce15fbc729f7eecaca", - "version": "10ab96a", + "hash": "168ee44603e2f86e2f57d069d2a2cf651e1d642c", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9405,8 +10423,8 @@ { "name": "(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json", "type": "file", - "hash": "a1df7b7d144d4bf48c4fd959031166081ff59a5d", - "version": "a1df7b7", + "hash": "4e5e1b4cf2c72da2598d926440b36d237f7ce6b9", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9417,8 +10435,8 @@ { "name": "狗粮-璃月-层岩巨渊-采樵谷-4个.json", "type": "file", - "hash": "0694dd4bbc8058b4be01465ecb797bda632d1905", - "version": "0694dd4", + "hash": "ac345c73b391338f51ce4147d4adb968cb5f48d2", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9429,8 +10447,8 @@ { "name": "狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json", "type": "file", - "hash": "df78a2fefde3056a210b7db8d7b919c1a5f43577", - "version": "df78a2f", + "hash": "f80b748f644dc9764c8c167284864f582c70f7bf", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9441,8 +10459,8 @@ { "name": "狗粮-璃月-沉玉谷上谷-东-2个.json", "type": "file", - "hash": "2533a1450ddaf77614592cdcc5412c7c244265d1", - "version": "2533a14", + "hash": "e3be316c28c30f16781c8935626597ae8a1e1772", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9453,8 +10471,8 @@ { "name": "狗粮-璃月-沉玉谷上谷-遗珑埠-3个.json", "type": "file", - "hash": "d51b516453b3d980fce41ce499a0515ece6c92d5", - "version": "d51b516", + "hash": "d4bf7a47c97b451741ce4ec193bc3c60146021d5", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9465,8 +10483,8 @@ { "name": "狗粮-璃月-沉玉谷上谷-遗珑埠东-4个/5个.json", "type": "file", - "hash": "4b31d957d09d5d40835087fd2acbd3f6f6d1e1fe", - "version": "4b31d95", + "hash": "c3b4379a63a6e0543d3b6046807d06f80a2bb7a3", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9477,8 +10495,8 @@ { "name": "狗粮-璃月-沉玉谷南陵-3个/4个.json", "type": "file", - "hash": "e604f11446ec8004ebcb54fb7ad24198e7c7a57e", - "version": "e604f11", + "hash": "33ed475a458d84f22b9d3408714c480164e3f594", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9489,8 +10507,8 @@ { "name": "狗粮-璃月-珉林-华光林-2个.json", "type": "file", - "hash": "ccf82683ef074c0640b2fcc4adceceb2228f8439", - "version": "ccf8268", + "hash": "05b2ea8585e4846f52b528e301120301547ab7ef", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9501,8 +10519,8 @@ { "name": "狗粮-璃月-珉林-天道谷-3个.json", "type": "file", - "hash": "5b878716b2f712cf335c1ff426195a80813b8c5b", - "version": "5b87871", + "hash": "0d2f74785e22424657aac1f4007fc06f2bd2de0b", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9513,8 +10531,8 @@ { "name": "狗粮-璃月-碧水源-望舒客栈-1个.json", "type": "file", - "hash": "5f624c4ed1cbe3e7b09aa3a1e38b086bad9858ce", - "version": "5f624c4", + "hash": "6b8c0d161df836b5ca0461cd1bd9397ad94807a6", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9525,8 +10543,8 @@ { "name": "狗粮-璃月-碧水源-石门-1个.json", "type": "file", - "hash": "a49f20dadaf76f8a20aaace92bf00cfa90f3d76c", - "version": "a49f20d", + "hash": "8506a4f0e92b254cb4b1e96ab4325ef22027a5bc", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9537,8 +10555,8 @@ { "name": "狗粮-璃月-碧水源-轻策庄-3个.json", "type": "file", - "hash": "b523711814b0b3e7cd3abe03929c11e5d3def1bf", - "version": "b523711", + "hash": "1e146e7767f1c2206d65cd417940acd8182a2fe0", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9549,8 +10567,8 @@ { "name": "狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点过近).json", "type": "file", - "hash": "953e4d027b7d4281d7112429ba4f1da84ae04d21", - "version": "953e4d0", + "hash": "a9a0385676bd1764ddb035d044688e026714e207", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9561,8 +10579,8 @@ { "name": "狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json", "type": "file", - "hash": "6b05fcd967cbe78feb74f63f128d26daf302b8a6", - "version": "6b05fcd", + "hash": "74303b255bf228f5bf3a0fdeb089086ea05f2fdd", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9571,10 +10589,10 @@ ] }, { - "name": "狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个 .json", + "name": "狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个.json", "type": "file", - "hash": "48b8570ee11948a69e1959e4ccddecfc5e0b4101", - "version": "48b8570", + "hash": "2f133953fc8bbe164d03cdafb31151a0a13aff9d", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9585,8 +10603,8 @@ { "name": "狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,未测试).json", "type": "file", - "hash": "dac510da7aa8ddad4ad38e1c6367bf176174481c", - "version": "dac510d", + "hash": "60616f29f2c24881ea358948861e519beff52692", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9597,8 +10615,8 @@ { "name": "狗粮-纳塔-涌流地-副本周边-2个/3个.json", "type": "file", - "hash": "2045dd46bae8425cf2a809a95d461eca116eeecb", - "version": "2045dd4", + "hash": "e5185d6a579c7aa51f2c1db0d9de82a907c66fba", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9609,8 +10627,8 @@ { "name": "狗粮-纳塔-涌流地-北部山洞-1个.json", "type": "file", - "hash": "7e3b7ba8baf41560a84dd116392f12d5f9575583", - "version": "7e3b7ba", + "hash": "a5744b293a2a449c07ba20badfbd2846a1ad5dea", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9621,8 +10639,8 @@ { "name": "狗粮-纳塔-翘枝崖-花羽会北-4个-f.json", "type": "file", - "hash": "d25ca938d64e9566264d10888ae93f7655979d8f", - "version": "d25ca93", + "hash": "9cbd9a92c0742d94ee3c916a528b416363875e3f", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9633,8 +10651,8 @@ { "name": "狗粮-纳塔-踞石山-东-1个.json", "type": "file", - "hash": "7aa8aa4f6d1cad12ee6d18d3f2830ba150999877", - "version": "7aa8aa4", + "hash": "f192a5edfc82809e1970af85316fa289fdbf8a73", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9645,8 +10663,8 @@ { "name": "狗粮-纳塔-踞石山-悬木人-2个.json", "type": "file", - "hash": "d29287c335220e303ca92956a4bc54bcf3c9d998", - "version": "d29287c", + "hash": "71db3bbee7de13931c48394844ca816c199488d1", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9657,8 +10675,8 @@ { "name": "狗粮-蒙德-龙脊雪山-南-4个-f.json", "type": "file", - "hash": "81cda56665bb137e517fc16013891f0f7ef92a87", - "version": "81cda56", + "hash": "ab8b141632af822d4f8d002c49da6ff922a78c31", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9669,8 +10687,8 @@ { "name": "狗粮-须弥-上风蚀地-东北营地-2个.json", "type": "file", - "hash": "625bfecc62b3faaacb06f1ddb77ea146e2120574", - "version": "625bfec", + "hash": "f5fed9a188d96162a9570d35466c28df3a3f6037", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9681,8 +10699,8 @@ { "name": "狗粮-须弥-下风蚀地-阿如村-4个.json", "type": "file", - "hash": "d126172d7b9baf33f5207461e80aed168551d7c7", - "version": "d126172", + "hash": "dbc8f83fffb85f3459375a13b59285302f40f794", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9693,8 +10711,8 @@ { "name": "狗粮-须弥-下风蚀地-阿如村-北-1个-f.json", "type": "file", - "hash": "c68dbb1be31d0c4f5589af919364f06978392a97", - "version": "c68dbb1", + "hash": "9d9dbdf7d86e6f821f4dded9052799bd9d0d495e", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9705,8 +10723,8 @@ { "name": "狗粮-须弥-下风蚀地-阿如村-西北-2个.json", "type": "file", - "hash": "2e24222d3e9d92c775a4f33ac7b3ae7e0bbb7a7b", - "version": "2e24222", + "hash": "7a19b3fae0e87e2c69c84e09b6bd7c74a407da64", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9717,8 +10735,8 @@ { "name": "狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json", "type": "file", - "hash": "c19254081f5cb2780dad27293b9d981b5dbb6e3b", - "version": "c192540", + "hash": "d4fb055a6334ba37920b1e88eb17e42a1e6cbc66", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9729,8 +10747,8 @@ { "name": "狗粮-须弥-千壑沙地-圣显厅西-3个.json", "type": "file", - "hash": "7079b3f962c2acf5c713ded43201013ee9c901ee", - "version": "7079b3f", + "hash": "6510dbdb4671923cd6ef7c09190ad480c5406fdd", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9741,8 +10759,8 @@ { "name": "狗粮-须弥-千壑沙地-塔尼特露营地-4个/6个.json", "type": "file", - "hash": "ec463e990f3dd724ac0c9c89545e81add596ea93", - "version": "ec463e9", + "hash": "9df40a5970ed080062f7601439248dc96de0440f", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9753,8 +10771,8 @@ { "name": "狗粮-须弥-千壑沙地-神的棋盘-1个/3个.json", "type": "file", - "hash": "e94d7c969aa45962deaa516210eccb4ff0821baf", - "version": "e94d7c9", + "hash": "6f27772973273911d1c21d7bae27cee632127398", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9765,8 +10783,8 @@ { "name": "狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json", "type": "file", - "hash": "b66a9a10d3c5139359683682cfb9ecbca2fcbc0d", - "version": "b66a9a1", + "hash": "7dd51c577bd8435456c6f1e7b78cae135f95adf0", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9777,8 +10795,8 @@ { "name": "狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json", "type": "file", - "hash": "b7871ffaa44578c904068da767986c99b551c0d3", - "version": "b7871ff", + "hash": "473a5db357fefc4b5f5ae7de6540a2a0b4bc8202", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9789,8 +10807,8 @@ { "name": "狗粮-须弥-护世森-卡萨扎莱宫南-2个.json", "type": "file", - "hash": "36e08f1aa5b31eed975cf42f97e37a976e96d836", - "version": "36e08f1", + "hash": "5f99c0fcafafdf14ae6fe78f1a66133028821cb6", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9801,8 +10819,8 @@ { "name": "狗粮-须弥-护世森-无郁稠林南-2个/3个(重兵把守+交互干扰).json", "type": "file", - "hash": "e6499935d11515ea522fe8061e017a00ec0c6bf4", - "version": "e649993", + "hash": "42f8e5997fdcedb4e5fe0139a3e1ea5793c27d6f", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9813,8 +10831,8 @@ { "name": "狗粮-须弥-浮罗囿-甘露花海北-4个.json", "type": "file", - "hash": "a397db9ba1c8e64857a4572933f645cf2bfe8766", - "version": "a397db9", + "hash": "b394d4714cb573c02d1398b4a656be9d94473607", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9825,8 +10843,8 @@ { "name": "狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json", "type": "file", - "hash": "953ab3ecf678c9754ae801bda26944655c9d8441", - "version": "953ab3e", + "hash": "d64d25e232198c0b220b19f540c07c60bb018e69", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9837,8 +10855,8 @@ { "name": "狗粮-须弥-道成林-化城郭-西-3个.json", "type": "file", - "hash": "5083760d481a6c4a183fd0abf9f0df9f5afa06c3", - "version": "5083760", + "hash": "3d0b21bcc0e8e192a0ef00e0da4489b6e45f93f8", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9849,8 +10867,8 @@ { "name": "狗粮-须弥-阿陀河谷-维摩庄-3个.json", "type": "file", - "hash": "4ae16561ee31a4078561d17eadfa179604a63ec7", - "version": "4ae1656", + "hash": "fab26e2b81d887e600b83078438bf8d1448ae95e", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9861,8 +10879,8 @@ { "name": "狗粮-须弥-须弥城西-4个(重兵把守).json", "type": "file", - "hash": "3d1790a9c79410287ecfcb27d195a502bf0df14f", - "version": "3d1790a", + "hash": "88bd2d265f1a7de8f691191509a79bf6039037c9", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9873,8 +10891,8 @@ { "name": "(恢复)狗粮-璃月-沉玉谷南陵.json", "type": "file", - "hash": "c05d5b3067c4e94b6ad0070f70f8601780b376d9", - "version": "c05d5b3", + "hash": "34727173818e86adb361778e7194dd9bf8057f78", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9885,8 +10903,8 @@ { "name": "(恢复)狗粮-璃月-珉林.json", "type": "file", - "hash": "86c3c880a8c093f7ad8893e0078e256b66b748c4", - "version": "86c3c88", + "hash": "407ac58b8e5ebc5e6fb5fe522dfa8766690555f3", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9897,8 +10915,8 @@ { "name": "(恢复)狗粮-纳塔-镜璧山.json", "type": "file", - "hash": "9ff27346df1c71b1cdadedfb3ba9fcd4b21db703", - "version": "9ff2734", + "hash": "48601fd7fd8ff25c99277d7c1111b7454566c0fc", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9909,8 +10927,8 @@ { "name": "(恢复)狗粮-须弥-二净甸.json", "type": "file", - "hash": "4da9e87be8b3c8995d09a6a2ada221e3817076b4", - "version": "4da9e87", + "hash": "ecc84fd98526ff0b6b231eedbd726e7f02f35939", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9921,8 +10939,8 @@ { "name": "(恢复)狗粮-须弥-千壑沙地.json", "type": "file", - "hash": "120c7c5fc32959f9321f56c51eb58b867c4268bb", - "version": "120c7c5", + "hash": "10bad209abefcdde07336f422af37c6f2cb4b269", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9935,8 +10953,8 @@ { "name": "狗粮-璃月-珉林-东北-9个-f.json", "type": "file", - "hash": "b63eb1dd83c62f5bf1063db06412b4e9ab68207f", - "version": "b63eb1d", + "hash": "3ae7596a74b0f6f284d787d04e160517af68660e", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9946,8 +10964,8 @@ { "name": "狗粮-璃月-珉林-北-5个.json", "type": "file", - "hash": "c3d402d6c831e680c29575cb5791224bb9769236", - "version": "c3d402d", + "hash": "8413ae3d0500bcf1b21b84ff2aceedaa3de34059", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9957,8 +10975,8 @@ { "name": "狗粮-璃月-珉林-奥藏山南-2个/3个-f.json", "type": "file", - "hash": "8ea94a0ca991b28be825bcd1fc1c2b41e96569ec", - "version": "8ea94a0", + "hash": "7212add96bfadc2bb53e67bb3f8a985f2bc50e93", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9968,8 +10986,8 @@ { "name": "狗粮-璃月-珉林-绝云间-3个-m.json", "type": "file", - "hash": "7b59dd5b07bd2add6d388c149d6e0daec716bb83", - "version": "7b59dd5", + "hash": "96aac49add6afd7c2e85095d9f07418fc6c03eac", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9979,8 +10997,8 @@ { "name": "狗粮-璃月-琼玑野-绿华池-3个-f.json", "type": "file", - "hash": "30a7e69cca30489d371b1ae6ccbcad05cf764654", - "version": "30a7e69", + "hash": "46a183e40dd5c5dde574971d1c1304896add780a", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -9990,8 +11008,8 @@ { "name": "狗粮-璃月-碧水源-盐中之地-3个-f.json", "type": "file", - "hash": "50c81e5dee4867ac84736015f7269d84e171b0cf", - "version": "50c81e5", + "hash": "d3e5c8fa29c2e9c32973dfa4f823473e9b9e47f2", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10001,8 +11019,8 @@ { "name": "狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json", "type": "file", - "hash": "305c74b0701d93d5d0114a5b7b335f56fb6664a9", - "version": "305c74b", + "hash": "92d2f0c392845dc350d9022d551a4f7569eef093", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10012,8 +11030,8 @@ { "name": "狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json", "type": "file", - "hash": "8a6068a56ff5e4645236399062ff024386ea1898", - "version": "8a6068a", + "hash": "96464050accc991534a288ce422b897bc4a10ef1", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10023,8 +11041,8 @@ { "name": "狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json", "type": "file", - "hash": "8e77ba655f8557bb90711af9a77964d646032bba", - "version": "8e77ba6", + "hash": "8ece53bc9c473830f861cfe3425a76e61b03fa1d", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10034,8 +11052,8 @@ { "name": "狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json", "type": "file", - "hash": "55b2ba4c3e9fa3c89696837ec818e1b2e633d64e", - "version": "55b2ba4", + "hash": "997321eebac2800355523497f25def24dba6d9fb", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10045,8 +11063,8 @@ { "name": "狗粮-纳塔-涌流地-流泉之众-4个.json", "type": "file", - "hash": "162dc873cbb308e8c59587f3a70a9f94def58cf2", - "version": "162dc87", + "hash": "bbd4bb4f1bd4a3d6cbd235a0a37cd0455244cd50", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10056,8 +11074,8 @@ { "name": "狗粮-纳塔-翘枝崖-北-6个-f.json", "type": "file", - "hash": "50f066de2968aa8ae02b998a4cbc0fc0a01edcb8", - "version": "50f066d", + "hash": "359f77775df28d6f8c24b594817d9ff035120102", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10067,8 +11085,8 @@ { "name": "狗粮-纳塔-镜璧山-七天神像下-3个-f.json", "type": "file", - "hash": "591d2299a6526da6bcfa866dd04b5078211c747f", - "version": "591d229", + "hash": "355b20a42ac97f5a898c707ebb5f3305cb3b7115", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10078,8 +11096,8 @@ { "name": "狗粮-纳塔-镜璧山-南-9个-f.json", "type": "file", - "hash": "9c5817b2cc84f52be8b0b72be766791fc1fce0b6", - "version": "9c5817b", + "hash": "48b1f0668113eaae730a27f1588231dad87c07a4", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10089,8 +11107,8 @@ { "name": "狗粮-蒙德-龙脊雪山-西-3个-f.json", "type": "file", - "hash": "7f1d3ec91ecf82e6c18df4d260e65b877154611c", - "version": "7f1d3ec", + "hash": "7777876090128ea9d93dbfa2acd164001b609085", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10100,8 +11118,8 @@ { "name": "狗粮-须弥-二净甸-七天神像-4个/8个.json", "type": "file", - "hash": "8d7f4be3e946eafb3ae2468ae91c0053d3cc5695", - "version": "8d7f4be", + "hash": "8235db27847b41227c24c7fb6b6992d6667dcab3", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10111,8 +11129,8 @@ { "name": "狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json", "type": "file", - "hash": "cf05965eb8cf3d5c5b04b608b2c0def6b26f87d4", - "version": "cf05965", + "hash": "bd4e2859617d56d8f60560cc7f612860c43f4594", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10122,8 +11140,8 @@ { "name": "狗粮-须弥-失落的苗圃-南-8个-f.json", "type": "file", - "hash": "706356b6f568ee9b2f5a9d28cec53b2c1bd42c0e", - "version": "706356b", + "hash": "39628714a006a06ae20b742518941069f285d129", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10133,8 +11151,8 @@ { "name": "狗粮-须弥-须弥城-4个.json", "type": "file", - "hash": "4855ec8d7d3e6f9647c2dc847f13b3cee7762afd", - "version": "4855ec8", + "hash": "005c2a984f1c96f628960a34e5006896b0d4192c", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10144,8 +11162,8 @@ { "name": "(恢复)狗粮-璃月-琼玑野.json", "type": "file", - "hash": "2cb1c93bafc464f0326f08f6e88c4e2e782d8d7d", - "version": "2cb1c93", + "hash": "5a026eaac2b2e8e9aaeb18c05a124916160e90a9", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10155,8 +11173,8 @@ { "name": "(恢复)狗粮-稻妻-神无冢.json", "type": "file", - "hash": "189087df49927a5749e36134d7f77578b5987c94", - "version": "189087d", + "hash": "53c3a8e7f442d9c9b36114ecb8211427ed5e2985", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10166,8 +11184,8 @@ { "name": "(恢复)狗粮-纳塔-涌流地.json", "type": "file", - "hash": "50094bfd13e1f47bb4037335472b2a9deab2869f", - "version": "50094bf", + "hash": "d20077ca6b6ddb86e3c2737172928e3f059e6c49", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10177,8 +11195,8 @@ { "name": "(恢复)狗粮-须弥-失落的苗圃.json", "type": "file", - "hash": "df2c755eb291c51a099d63aeaada43d3867f3103", - "version": "df2c755", + "hash": "510f86d59fa309d9c2e648200e96b2bb63974056", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10194,8 +11212,8 @@ { "name": "【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json", "type": "file", - "hash": "b5ae388ba27913ecf25e5f9c41501ccf8204b7f5", - "version": "b5ae388", + "hash": "9cf4ac4be8f20ed11532558e172049ede7cd9135", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10209,8 +11227,8 @@ { "name": "狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json", "type": "file", - "hash": "d3185f2be6e813287c8bb513f40527ebaf6341be", - "version": "d3185f2", + "hash": "68fa0d44e05c150ac587df639da40f32d14c39c3", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10221,8 +11239,8 @@ { "name": "狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json", "type": "file", - "hash": "eaa49c7ffa518cc357cf06ac24232c6e45f3e488", - "version": "eaa49c7", + "hash": "5f1babbc6a0392eeeb0536b8f784af8cc96b337f", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10233,8 +11251,8 @@ { "name": "狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json", "type": "file", - "hash": "b3eda5fd0c4547aff8f967448bd9644951f495a1", - "version": "b3eda5f", + "hash": "35fcb4e0891fff45e7b40cfda306129531a2ddb1", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10245,8 +11263,8 @@ { "name": "狗粮-枫丹-白露区-秋分山西侧-北-2个.json", "type": "file", - "hash": "9ce59f5569c18f778deda2fcdccde6819b371db0", - "version": "9ce59f5", + "hash": "b71b41078a7b507b6d70ea9b8ee8d39c2922a3b8", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10257,8 +11275,8 @@ { "name": "狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json", "type": "file", - "hash": "4dfc70f14f44557d848bbbf4dbd2071cf33fe293", - "version": "4dfc70f", + "hash": "1566684f61a02d417fb189302afc4a2df0f24acc", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10269,8 +11287,8 @@ { "name": "狗粮-枫丹-研究院区-东-3个(重兵把守).json", "type": "file", - "hash": "0db4ad03c802c70c22aeb35ecdd0797d1a06bdfe", - "version": "0db4ad0", + "hash": "8842ae7d45b0d38d87e8bf3c2b7da967ec332bdf", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10281,8 +11299,8 @@ { "name": "狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json", "type": "file", - "hash": "854d8c32081187e78bee5754f7ac7b4387276e1f", - "version": "854d8c3", + "hash": "fab8848d4c1c680dea3f7ef54e49bf3d5a515c17", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10293,8 +11311,8 @@ { "name": "狗粮-枫丹-莫尔泰区-七天神像-1个.json", "type": "file", - "hash": "ac9866df5e92348bcb9af779d14a08d56344b3ea", - "version": "ac9866d", + "hash": "59c02d703159c641dd63bdc0aabfe2f69ae1684e", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10305,8 +11323,8 @@ { "name": "狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json", "type": "file", - "hash": "541ac072c7ddbc76d9b418dc719b5ff5f6a4df06", - "version": "541ac07", + "hash": "ef25b90184967314d65f98b94366ba8e863265c8", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10317,8 +11335,8 @@ { "name": "狗粮-稻妻-神无冢-无相之火-4个/5个.json", "type": "file", - "hash": "5178388deed3892ae94b0965e11c5de1361ff6a1", - "version": "5178388", + "hash": "c98f98d20e08d26e76fde66fbaa83ef69be79b80", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10329,8 +11347,8 @@ { "name": "狗粮-稻妻-鹤观-东-3个.json", "type": "file", - "hash": "fa52deeaebdded254679d231a0840eece2293756", - "version": "fa52dee", + "hash": "f97c1b9b22b78b311fdf9b95704ad7f4969881a6", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10341,8 +11359,8 @@ { "name": "(恢复)狗粮-枫丹-莫尔泰区.json", "type": "file", - "hash": "9220dece1cf959ce423cdf20374a6fa2dfcd4535", - "version": "9220dec", + "hash": "681fa2ccb278a6adfe62a883838332a997c3df4d", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10353,8 +11371,8 @@ { "name": "(恢复)狗粮-稻妻-鹤观.json", "type": "file", - "hash": "999beb5948b812802fefd625d16cfc4f588963c2", - "version": "999beb5", + "hash": "3529f1d0099acd0ad64dbdd21f05411d50d6588b", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10367,8 +11385,8 @@ { "name": "狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json", "type": "file", - "hash": "ffba4284fc455b8dd1373ef96f25f2c2cd1719fe", - "version": "ffba428", + "hash": "5684940be4826f8532d2590028a0e4764410e964", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10378,8 +11396,8 @@ { "name": "狗粮-枫丹-枫丹庭区-3个.json", "type": "file", - "hash": "71ef414508977add50f7f7db35e01eea1ed3b776", - "version": "71ef414", + "hash": "0d8fae11f71a9d62aa66f8433a8d8f988b60e696", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10389,8 +11407,8 @@ { "name": "狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json", "type": "file", - "hash": "20056f778aaf303199e6ccbbe2639a5ae7f8e1ac", - "version": "20056f7", + "hash": "414bfa8d6bc56b672a6b04c193270b459e18f80a", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10400,8 +11418,8 @@ { "name": "狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json", "type": "file", - "hash": "b9426c2a4e9af9832ed643e7ae6310cba41560d7", - "version": "b9426c2", + "hash": "038b1e2ebcc4d8d8ab3215ebce79645111f42afa", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10411,8 +11429,8 @@ { "name": "狗粮-枫丹-研究院区-中部塔内-9个.json", "type": "file", - "hash": "da6f7d983ee788471f60a64a6987b792936f9583", - "version": "da6f7d9", + "hash": "14d996bdf3c7a52933db9d4e287cdfeb2881d982", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10422,8 +11440,8 @@ { "name": "狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json", "type": "file", - "hash": "c649466f607ea86cbe709cd788649dfc05fd99e9", - "version": "c649466", + "hash": "2a48962836915ced0d1d14c8a8d26b5977216e18", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10433,8 +11451,8 @@ { "name": "狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json", "type": "file", - "hash": "3799464b0468a27b50d5fc371364d2887e847dd6", - "version": "3799464", + "hash": "750f9eca04283783eae1e8ec4d8ff4722a92b8af", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10444,8 +11462,8 @@ { "name": "狗粮-枫丹-研究院区-西北-6个/7个.json", "type": "file", - "hash": "2e76101cbce9fc663761c35cd678ea8f88b11bcd", - "version": "2e76101", + "hash": "1064304052f3f3d72fd38279d52743a3cee9f3f6", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10455,8 +11473,8 @@ { "name": "狗粮-枫丹-研究院区-西南偏南-6个-m-f.json", "type": "file", - "hash": "3bde7e6f46ad0b7961aa5c8649bde58f1ecc84c2", - "version": "3bde7e6", + "hash": "3b2359c8a2d932f6ae15f774b254e6cba42d7a65", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10466,8 +11484,8 @@ { "name": "狗粮-枫丹-研究院区-西南偏西-4个-f.json", "type": "file", - "hash": "cfcb586e6219074af019b09556ee420fbae3ff26", - "version": "cfcb586", + "hash": "8f46fff18cdfda4ad41a7f751e0e2580c4f31578", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10477,8 +11495,8 @@ { "name": "狗粮-枫丹-黎翡区-七天神像-3个/5个.json", "type": "file", - "hash": "fdd7c1792a54d6ec9a72ab2ca324e49dfa67e8d4", - "version": "fdd7c17", + "hash": "e87848f7e4ff2f4a5e096fc929446bd6bbcdd146", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10488,8 +11506,8 @@ { "name": "狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json", "type": "file", - "hash": "45c2365d79b5e22c5a4734000e5889725f865d54", - "version": "45c2365", + "hash": "5cf5a71d84c7fae048900dc96dcdef6e1230aa8f", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10499,8 +11517,8 @@ { "name": "狗粮-稻妻-海祇岛-东方小岛-2个-f.json", "type": "file", - "hash": "50ef65958e8ef837f245cd50919bc4a11e271be7", - "version": "50ef659", + "hash": "b0188e08c2e68d732d95dfd4e5b820c600fee131", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10510,8 +11528,8 @@ { "name": "狗粮-稻妻-海祇岛-望泷村西南-4个-f.json", "type": "file", - "hash": "933bea10d1f43cbaa19bf8510dec16c2c275269c", - "version": "933bea1", + "hash": "61bde507f85bf082beba1f4e036ee820c7d9e492", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10521,8 +11539,8 @@ { "name": "狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json", "type": "file", - "hash": "394235c562e5206db1629406ae19502a1b6a5976", - "version": "394235c", + "hash": "bb3daaff06101a2afc6ea7ac99a4580cb50b6756", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10532,8 +11550,8 @@ { "name": "狗粮-稻妻-清籁岛-平海砦西-8个-f.json", "type": "file", - "hash": "99d622e5f2de4a9c3196315256581bb72be3a4fd", - "version": "99d622e", + "hash": "9915e8a1ffa8a014f48d32c865170ec412346c47", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10543,8 +11561,8 @@ { "name": "狗粮-稻妻-清籁岛-浅濑神社-3个-f.json", "type": "file", - "hash": "376bd2d6f9cd6c6a787d80731a81aa40ed4d483f", - "version": "376bd2d", + "hash": "ac6f213fbf3ae161831b87f479ce16b826ef6e5e", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10554,8 +11572,8 @@ { "name": "狗粮-稻妻-清籁岛-越石村-8个-f.json", "type": "file", - "hash": "12bb91d2de4c51b4ac0ed3c4ebddcd962bc743d9", - "version": "12bb91d", + "hash": "9f2b692963d05d468c9c4b9a623f523d5fcdf34d", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10565,8 +11583,8 @@ { "name": "狗粮-稻妻-神无冢-东-5个/6个-f.json", "type": "file", - "hash": "27441a5a0d17824081944ed8abaf63c6fa3fe325", - "version": "27441a5", + "hash": "4a4707b495b610bb01112ef0c4eaa32a313371b9", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10576,8 +11594,8 @@ { "name": "狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json", "type": "file", - "hash": "b93ecae40a3022cf68e0840b7807a7091c204c12", - "version": "b93ecae", + "hash": "2df24f8974b31deaf11b156fefa22132e6ff3998", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10587,8 +11605,8 @@ { "name": "狗粮-稻妻-神无冢-堇色之庭-4个.json", "type": "file", - "hash": "7c552118119099d40e04a270ebbfddf1fcf2292a", - "version": "7c55211", + "hash": "c5891841368acc19c4ee49015dec737f875fb08d", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10598,8 +11616,8 @@ { "name": "狗粮-稻妻-鹤观-东偏中-2个-f.json", "type": "file", - "hash": "ccb90343cd14a3f4a102935cbf7c63d00b85e727", - "version": "ccb9034", + "hash": "dca5c7ffc8a24e18971685ede640320a8658b976", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10609,8 +11627,8 @@ { "name": "狗粮-稻妻-鹤观-南-2个-f.json", "type": "file", - "hash": "3072a55929b954595d1cbf154e93250f97f99eeb", - "version": "3072a55", + "hash": "931bbbf187a72986da8b432e61067501a82677d1", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10620,8 +11638,8 @@ { "name": "(恢复)狗粮-枫丹-研究院区.json", "type": "file", - "hash": "4194cbdc21ae69944d83255b0824bcee17271d51", - "version": "4194cbd", + "hash": "62b611040a536e6e041a84b9d1d882b6d671ad8b", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10631,8 +11649,8 @@ { "name": "(恢复)狗粮-枫丹-黎翡区.json", "type": "file", - "hash": "6dde5891a394269b9a32f8a3f43727b9950a648a", - "version": "6dde589", + "hash": "141ea0b5631aa3f5fd07416e7ccc06704795d7c9", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10642,8 +11660,8 @@ { "name": "(恢复)狗粮-稻妻-清籁岛.json", "type": "file", - "hash": "80c5d7ac3c8b91850835fe5f8be4fd8572e8cc16", - "version": "80c5d7a", + "hash": "86ed6765d48c3dd36fd45e2c0391c10ab6bb621f", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10653,8 +11671,8 @@ { "name": "(恢复)狗粮-稻妻-神无冢.json", "type": "file", - "hash": "189087df49927a5749e36134d7f77578b5987c94", - "version": "189087d", + "hash": "fdc8e77548afd99d50b7a8390f316cb1011723ad", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10670,8 +11688,8 @@ { "name": "【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json", "type": "file", - "hash": "49f758da5707b454b23bc3bb1da42733184c2483", - "version": "49f758d", + "hash": "b1b423c6b8b651f345cf733e9ac7579c71ed5c81", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10681,8 +11699,8 @@ { "name": "【额外】狗粮-纳塔-灵谜纹+13个.json", "type": "file", - "hash": "d78c5687f80d03241e0656be5ddb8d6ca9e27df3", - "version": "d78c568", + "hash": "b864e3b1802e7631ba031108264db8cae5e43495", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10692,8 +11710,8 @@ { "name": "【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json", "type": "file", - "hash": "dc3fbfdbf19d6d043a94f59ad6b912a97fc74a6e", - "version": "dc3fbfd", + "hash": "fb45db894f7c6d386b0a17707466219c55923fbc", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10703,8 +11721,8 @@ { "name": "【额外】狗粮-须弥-水天丛林+7个-f.json", "type": "file", - "hash": "734d2fe6d09644a16675c47aafe352ee242eb31a", - "version": "734d2fe", + "hash": "ffdd959bb402bf1b032b0049b61f6896c2cf839b", + "version": "1.1", "author": "Yang-z", "description": "", "tags": [ @@ -10723,7 +11741,7 @@ "name": "石珀-01奥藏山上.json", "type": "file", "hash": "8e66181ca535eb34a9e81a2c4ab1a4a5d59b79ea", - "version": "8e66181", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10734,7 +11752,7 @@ "name": "石珀-02奥藏山下.json", "type": "file", "hash": "82c4011e0388d3918f6cb06fcf0e46c5cdcf5199", - "version": "82c4011", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10745,7 +11763,7 @@ "name": "石珀-03奥藏山右.json", "type": "file", "hash": "0aa18d5f8f9ebbfe39006e70fe002a396d5d71b2", - "version": "0aa18d5", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10756,7 +11774,7 @@ "name": "石珀-04碧水源.json", "type": "file", "hash": "26b07f3cc5e2426a5eccfaeb4f16d90580e898f7", - "version": "26b07f3", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10767,7 +11785,7 @@ "name": "石珀-05纯水.json", "type": "file", "hash": "346f9331cd88e4ae7ba3b8a328f0f1cd9d7c8e72", - "version": "346f933", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10778,7 +11796,7 @@ "name": "石珀-06地中之岩.json", "type": "file", "hash": "5d9d5bff0543706f95424ca54138e708e6dbc546", - "version": "5d9d5bf", + "version": "1.0", "author": "爱凑热闹", "description": "地中之岩的石珀", "tags": [ @@ -10789,7 +11807,7 @@ "name": "石珀-07狄花州.json", "type": "file", "hash": "9d0cdba73f6dbbf067e8f15c918eddb3a6ed53cf", - "version": "9d0cdba", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10800,7 +11818,7 @@ "name": "石珀-08琥牢山-18.json", "type": "file", "hash": "fb92cf48df9f181cb7c0e8999cb853736a62ca62", - "version": "fb92cf4", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10811,7 +11829,7 @@ "name": "石珀-09教官套.json", "type": "file", "hash": "e36eb78c6742b440076d3aa3729f46c398cafec7", - "version": "e36eb78", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10822,7 +11840,7 @@ "name": "石珀-10明蕴镇矿洞.json", "type": "file", "hash": "0655ba48b860df09e153c068b1516818a2ce1d22", - "version": "0655ba4", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10833,7 +11851,7 @@ "name": "石珀-11明蕴镇密宫.json", "type": "file", "hash": "813f3a86d73b31fac00ac13a4d8b101c69e52479", - "version": "813f3a8", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10844,7 +11862,7 @@ "name": "石珀-12轻策庄右边.json", "type": "file", "hash": "1b6da418f740058afc8e3359bfb9c5f7f4cd8bee", - "version": "1b6da41", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10855,7 +11873,7 @@ "name": "石珀-13轻策庄左侧.json", "type": "file", "hash": "bf302fc2e5eb90337a92bfb29001dae7ac3b258e", - "version": "bf302fc", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10866,7 +11884,7 @@ "name": "石珀-14庆云顶.json", "type": "file", "hash": "5b99bb99f5a6661e6c58d264c5ddb338947b4b08", - "version": "5b99bb9", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10877,18 +11895,19 @@ "name": "石珀-15石门.json", "type": "file", "hash": "35370f4d482c43f60f47612bc835edff740808cf", - "version": "35370f4", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ - "石珀" + "石珀", + "战斗" ] }, { "name": "石珀-16天遒谷右.json", "type": "file", "hash": "ff653cb3bf5a32e997e48e6f1ae7264772f2ad6e", - "version": "ff653cb", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10899,7 +11918,7 @@ "name": "石珀-17无妄坡下.json", "type": "file", "hash": "d7a55c3432d8a7b340fe63affc8e6f63c0b615a4", - "version": "d7a55c3", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ @@ -10910,7 +11929,7 @@ "name": "石珀-18摇光摊.json", "type": "file", "hash": "139b822a4fdb630f6b6e0e0edc2611277f8904d2", - "version": "139b822", + "version": "1.0", "author": "爱凑热闹", "description": "顺手采了星罗", "tags": [ @@ -10927,7 +11946,7 @@ "name": "树莓1.json", "type": "file", "hash": "c3df336c446dac59939f90a776cfb8c13eb8c5db", - "version": "c3df336", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -10938,7 +11957,7 @@ "name": "树莓10.json", "type": "file", "hash": "7e1f93d8b81283fc3e0d7ff5b46416f89856735e", - "version": "7e1f93d", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -10949,7 +11968,7 @@ "name": "树莓11.json", "type": "file", "hash": "2dcb68fa71e695807ce6a350d459f0f6f662b680", - "version": "2dcb68f", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -10960,7 +11979,7 @@ "name": "树莓12.json", "type": "file", "hash": "ea425ce49bdcd315f5818a0f951504c1858f09bf", - "version": "ea425ce", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -10971,7 +11990,7 @@ "name": "树莓13.json", "type": "file", "hash": "23ecd5ea4ce32abf152a98bdfd7c13b5f26dc46f", - "version": "23ecd5e", + "version": "1.0", "author": "未知作者", "description": "树莓", "tags": [ @@ -10982,7 +12001,7 @@ "name": "树莓14.json", "type": "file", "hash": "ae2306401ed9bbc0ba37cea63cc145ebc6c0c6e9", - "version": "ae23064", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -10993,7 +12012,7 @@ "name": "树莓2.json", "type": "file", "hash": "7a0849017a299130e072548699bf30d3781aab6b", - "version": "7a08490", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -11004,7 +12023,7 @@ "name": "树莓3.json", "type": "file", "hash": "84dc26ee74ac063c9e49fc62df46486d66411a59", - "version": "84dc26e", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -11015,7 +12034,7 @@ "name": "树莓4.json", "type": "file", "hash": "8546104d8e475059ab84fcfcd8a3ca90dd726820", - "version": "8546104", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -11026,7 +12045,7 @@ "name": "树莓5.json", "type": "file", "hash": "c0baa6a7fbd43fa70fef4171a4b61a555b28a27b", - "version": "c0baa6a", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -11037,7 +12056,7 @@ "name": "树莓6.json", "type": "file", "hash": "d1c38a6aebebd3134ac00f2647d7593c2305f0d5", - "version": "d1c38a6", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -11048,7 +12067,7 @@ "name": "树莓7.json", "type": "file", "hash": "7fe8cb2997814cbb582daafb71a46689d66ee1ea", - "version": "7fe8cb2", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -11059,7 +12078,7 @@ "name": "树莓8.json", "type": "file", "hash": "779fd1c5a58de452a3f0002cbbc18ea1047731a2", - "version": "779fd1c", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -11070,7 +12089,7 @@ "name": "树莓9.json", "type": "file", "hash": "7762eaf3462bd4a422a28834c00a97793c91314e", - "version": "7762eaf", + "version": "1.0", "author": "风埠", "description": "树莓", "tags": [ @@ -11081,7 +12100,7 @@ "name": "树莓枫丹-科学院24个.json", "type": "file", "hash": "5d949c41638f727b4c9ecc3dd64857c9599383b5", - "version": "5d949c4", + "version": "1.0", "author": "抓不住我", "description": "", "tags": [ @@ -11092,7 +12111,7 @@ "name": "树莓枫丹-科学院左上27个.json", "type": "file", "hash": "1393e5a7310a09f72810a954ba2771b2f94bcac0", - "version": "1393e5a", + "version": "1.0", "author": "抓不住我", "description": "", "tags": [ @@ -11103,7 +12122,7 @@ "name": "树莓枫丹-科学院左侧18个.json", "type": "file", "hash": "3a6e6ef6a827957301e983bfadc2419d7906e5b4", - "version": "3a6e6ef", + "version": "1.0", "author": "抓不住我", "description": "", "tags": [ @@ -11120,7 +12139,7 @@ "name": "1树王圣体菇 二净甸 2个.json", "type": "file", "hash": "d415f7523ff7cd5538a9136bd7e932ac17b6bfb8", - "version": "d415f75", + "version": "1.0", "author": "梓默", "description": "", "tags": [ @@ -11131,7 +12150,7 @@ "name": "2树王圣体菇 水天丛林① 7个.json", "type": "file", "hash": "021c1e02e734485776b27d5175939b3b3f532abe", - "version": "021c1e0", + "version": "1.0", "author": "梓默", "description": "", "tags": [ @@ -11142,7 +12161,7 @@ "name": "3树王圣体菇 水天丛林② 3个.json", "type": "file", "hash": "d5bec1d68c8b3c6bb74457612cb01eed3763f896", - "version": "d5bec1d", + "version": "1.0", "author": "旋风破晓", "description": "善见地-3个树王圣体姑", "tags": [ @@ -11153,7 +12172,7 @@ "name": "4树王圣体菇 水天丛林③ 3个.json", "type": "file", "hash": "2e9c067851f38324a4776b19d36b95ad4412ec3e", - "version": "2e9c067", + "version": "1.0", "author": "梓默", "description": "", "tags": [ @@ -11164,7 +12183,7 @@ "name": "5树王圣体菇 无郁稠林① 5个.json", "type": "file", "hash": "1b727736ed22886c856c6c300318fe3d8b559b30", - "version": "1b72773", + "version": "1.0", "author": "梓默", "description": "", "tags": [ @@ -11175,7 +12194,7 @@ "name": "6树王圣体菇 无郁稠林② 5个 .json", "type": "file", "hash": "45c14916b48caed04d552dbc621da16aaab3c361", - "version": "45c1491", + "version": "1.0", "author": "梓默", "description": "", "tags": [ @@ -11192,7 +12211,7 @@ "name": "庆云顶01-12个(不稳定).json", "type": "file", "hash": "f9e5d3547c6fff84196f5110b0e3c2462ffa5cad", - "version": "f9e5d35", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11203,7 +12222,7 @@ "name": "沉玉古南陵.json", "type": "file", "hash": "9579268e83aa84845c9efeba69df00042a45c304", - "version": "9579268", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11214,7 +12233,7 @@ "name": "沉玉古南陵2.json", "type": "file", "hash": "fe87049143296f737f09e1eeb157f7906e7e0244", - "version": "fe87049", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11225,7 +12244,7 @@ "name": "沉玉谷上谷.json", "type": "file", "hash": "ca27f53ff9c69a9c79b291dd1ed93497b6f7c6e6", - "version": "ca27f53", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11236,7 +12255,7 @@ "name": "沉玉谷上谷2.json", "type": "file", "hash": "f9e7ce1c6d55cb688d95703e3fc676db1141e206", - "version": "f9e7ce1", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11247,7 +12266,7 @@ "name": "沉玉谷上谷3.json", "type": "file", "hash": "ca0ae37312baf7cbbe188b9d1cf2bd2ba063cf51", - "version": "ca0ae37", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11258,7 +12277,7 @@ "name": "沉玉谷暝还山01.json", "type": "file", "hash": "0667aabe3a8c88500099e48af2b2802111994c32", - "version": "0667aab", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11269,7 +12288,7 @@ "name": "沉玉谷暝还山02.json", "type": "file", "hash": "39c18f8de88dff66b99d99ee369097af61887871", - "version": "39c18f8", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11280,7 +12299,7 @@ "name": "璃月-01-轻策庄南-6个.json", "type": "file", "hash": "39a6300bde9bd2fd511f3f46989c1b4ea2c7c48a", - "version": "39a6300", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11291,7 +12310,7 @@ "name": "璃月-02-奥藏山-8个.json", "type": "file", "hash": "e4fae55ad9005d539ec11cabcfb1bb9322b2cd2a", - "version": "e4fae55", + "version": "1.0", "author": "愚溪", "description": "刚需钟离", "tags": [ @@ -11302,7 +12321,7 @@ "name": "璃月-03-宗室本北-2个.json", "type": "file", "hash": "db2aa3047822135e9e00f0cb65a7d1fbfc156b10", - "version": "db2aa30", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11313,7 +12332,7 @@ "name": "璃月-04-珉林中部-3个.json", "type": "file", "hash": "eedd52c570f2944d19f2e899b142e5ee751f4f3d", - "version": "eedd52c", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11324,7 +12343,7 @@ "name": "璃月-05-荻花洲西-1个.json", "type": "file", "hash": "9844720e49b5922575720b082c49d61ce628470e", - "version": "9844720", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11335,7 +12354,7 @@ "name": "璃月天衡山 (1).json", "type": "file", "hash": "81b33deca46abb575d5a099717ac26344b602796", - "version": "81b33de", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11346,7 +12365,7 @@ "name": "璃月天衡山2 (1).json", "type": "file", "hash": "16b10b2ccdc6c4f97d5fed0dcc504046db214a8a", - "version": "16b10b2", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11357,7 +12376,7 @@ "name": "璃月层岩01 (1).json", "type": "file", "hash": "d0bb405d2a9481b366bab471bca350f548462b04", - "version": "d0bb405", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11368,7 +12387,7 @@ "name": "璃月层岩02.json", "type": "file", "hash": "295e16714a8284e79fc0c3f4c769b60fd88e050c", - "version": "295e167", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11379,7 +12398,7 @@ "name": "璃月层岩03 (1).json", "type": "file", "hash": "df97b0fc1e36dfaadf5785d7e01d1340bd51c6fa", - "version": "df97b0f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11390,7 +12409,7 @@ "name": "璃月灵矩关1 (1).json", "type": "file", "hash": "d023b7d0118f697b1ef4e74b672b3fd3a482e8f5", - "version": "d023b7d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11401,7 +12420,7 @@ "name": "璃月璃沙郊.json", "type": "file", "hash": "49948ad8c63addda093f19b1407e51d9b7f1f5eb", - "version": "49948ad", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11412,7 +12431,7 @@ "name": "璃月遁玉陵1.json", "type": "file", "hash": "f9201909329a1d8dd83f5eb0fc627f58f529df17", - "version": "f920190", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -11423,7 +12442,7 @@ "name": "蒙德-01-望风山地东-2个.json", "type": "file", "hash": "104aa69d7b1edfe0731846931979e7e93f535e3e", - "version": "104aa69", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11434,7 +12453,7 @@ "name": "蒙德-02-望风角西-1个.json", "type": "file", "hash": "60b6c351ac72161d1ca89bba1b93ba414f259b08", - "version": "60b6c35", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11445,7 +12464,7 @@ "name": "蒙德-03-铭记之谷南-4个.json", "type": "file", "hash": "c2a8a8332d5dafadb0089ef360338fee6ea97423", - "version": "c2a8a83", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11456,7 +12475,7 @@ "name": "蒙德-04-苍风高地神像北-1个.json", "type": "file", "hash": "0a8929207c4c67168d15b311a7be03aed2b06ed0", - "version": "0a89292", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11467,7 +12486,7 @@ "name": "蒙德-05-奔狼领-3个.json", "type": "file", "hash": "36a9dafc2ebfdddd24561ac00fb9b7253ec0e32b", - "version": "36a9daf", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11478,7 +12497,7 @@ "name": "蒙德-06-奔狼岭东-1个.json", "type": "file", "hash": "270c07afc084e33a15694cdc37e1c65b3ab73454", - "version": "270c07a", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11489,7 +12508,7 @@ "name": "蒙德-07-奔狼领北-1个.json", "type": "file", "hash": "ab8534741d729ce69617921b02c72d16efae89f8", - "version": "ab85347", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11500,7 +12519,7 @@ "name": "蒙德-08-塞西莉亚苗圃东-3个.json", "type": "file", "hash": "935dfd5f2ea0b03cefad3803f0feabf9b8ed5654", - "version": "935dfd5", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11511,7 +12530,7 @@ "name": "蒙德-09-明冠峡东北-1个.json", "type": "file", "hash": "5861f287532dd38854e5c47b7c97ffe326b71635", - "version": "5861f28", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11522,7 +12541,7 @@ "name": "蒙德-10-晨曦酒庄西-1个.json", "type": "file", "hash": "d9e450b91821a531b5bbce0b34a83f4f4b087b25", - "version": "d9e450b", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11533,7 +12552,7 @@ "name": "蒙德-11-风龙废墟入口-5个.json", "type": "file", "hash": "b3b33c4b45937323ba5f4b86272dee83d4a0927f", - "version": "b3b33c4", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11544,7 +12563,7 @@ "name": "蒙德-12-风龙废墟西-8个.json", "type": "file", "hash": "5ee0ee9a2e706eb1b2c944533f76ebc6020f2fbc", - "version": "5ee0ee9", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11555,7 +12574,7 @@ "name": "蒙德-13-风龙废墟神像-9个.json", "type": "file", "hash": "c5f01658c9180d65ae2f704915129da5c3be3235", - "version": "c5f0165", + "version": "1.0", "author": "愚溪", "description": "", "tags": [ @@ -11572,7 +12591,7 @@ "name": "松果1.json", "type": "file", "hash": "3087af7283578e2b4b5e712a9f166b26ae6019f3", - "version": "3087af7", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -11584,7 +12603,7 @@ "name": "松果2.json", "type": "file", "hash": "570bbb2aa93d4ae17d5a94d5e0d5ec98ddf23591", - "version": "570bbb2", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -11596,7 +12615,7 @@ "name": "松果3.json", "type": "file", "hash": "51edf8e37467c9942e245b48bc172514dc0b1ea7", - "version": "51edf8e", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -11608,7 +12627,7 @@ "name": "松果4.json", "type": "file", "hash": "b4987e4aeb3bb1f02130eb2dc266ef4743f03a94", - "version": "b4987e4", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -11620,7 +12639,7 @@ "name": "松果5.json", "type": "file", "hash": "aa0b7ab536101f9864ced3edd312ba2be8ad3d1e", - "version": "aa0b7ab", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -11632,7 +12651,7 @@ "name": "松果6.json", "type": "file", "hash": "78c17daa10df112e6e7fc2a7acf75befdd53530d", - "version": "78c17da", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -11644,7 +12663,7 @@ "name": "松果7.json", "type": "file", "hash": "9eed4fabd7fee418ebfecce3c89605bb6acaa658", - "version": "9eed4fa", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -11662,7 +12681,7 @@ "name": "松茸1.json", "type": "file", "hash": "4f915db9025c2fc79070f038ec103fd0821a0236", - "version": "4f915db", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11674,7 +12693,7 @@ "name": "松茸10.json", "type": "file", "hash": "2d55bf927a06ff62ea5faa976ed2f1f4c6868568", - "version": "2d55bf9", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11686,7 +12705,7 @@ "name": "松茸11.json", "type": "file", "hash": "6e9414a6ad96524d77c3f3382f94041529a397ef", - "version": "6e9414a", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11698,7 +12717,7 @@ "name": "松茸12.json", "type": "file", "hash": "3288cf2b04cf2900b1a051692134aad88dcd5bb1", - "version": "3288cf2", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11710,7 +12729,7 @@ "name": "松茸13.json", "type": "file", "hash": "e6093456c15bdbbbd9f7a11ef38bd68c7c01dfb6", - "version": "e609345", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11722,7 +12741,7 @@ "name": "松茸14.json", "type": "file", "hash": "e7fc3dfc7166896034cf695915c2020af1054add", - "version": "e7fc3df", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11734,7 +12753,7 @@ "name": "松茸15.json", "type": "file", "hash": "79abdd4ed698b047da67f6b01a4646f061724c5b", - "version": "79abdd4", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11746,7 +12765,7 @@ "name": "松茸16.json", "type": "file", "hash": "b791c0381818159329a910fd10be234319a7f8d1", - "version": "b791c03", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11758,7 +12777,7 @@ "name": "松茸17.json", "type": "file", "hash": "49865b8fbbed93a339469a4fcff7657aa324e1aa", - "version": "49865b8", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11770,7 +12789,7 @@ "name": "松茸18.json", "type": "file", "hash": "28b74cb618390f0ee2640bbfe500f341234e7fc4", - "version": "28b74cb", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11782,7 +12801,7 @@ "name": "松茸19.json", "type": "file", "hash": "3f31b457323d04f093c2c90dfadcba5a35842876", - "version": "3f31b45", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11794,7 +12813,7 @@ "name": "松茸2.json", "type": "file", "hash": "d151eadfff7f8a20f972f40910362a07231010c8", - "version": "d151ead", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11806,7 +12825,7 @@ "name": "松茸20.json", "type": "file", "hash": "53001c02b05efcb5574863b9f072e4537ca03da0", - "version": "53001c0", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11818,7 +12837,7 @@ "name": "松茸21.json", "type": "file", "hash": "9c618a549222935399c8d8f483437724edd4f88b", - "version": "9c618a5", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11830,7 +12849,7 @@ "name": "松茸22.json", "type": "file", "hash": "220f2e2c6d45fb86a0c528a625f4c3f1ee6fd79f", - "version": "220f2e2", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11842,7 +12861,7 @@ "name": "松茸23.json", "type": "file", "hash": "3eec3cb3adb49fefd186423b360898288e046abc", - "version": "3eec3cb", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11854,7 +12873,7 @@ "name": "松茸24.json", "type": "file", "hash": "f60ec679f882af18deab6ca28374360845d5225c", - "version": "f60ec67", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11866,7 +12885,7 @@ "name": "松茸25.json", "type": "file", "hash": "0333fd6cf9fb34482e3b71e26244887e841c2b8c", - "version": "0333fd6", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11878,7 +12897,7 @@ "name": "松茸26.json", "type": "file", "hash": "193acb98f31251ac48631277dc8129ea9e20aad1", - "version": "193acb9", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11890,7 +12909,7 @@ "name": "松茸27.json", "type": "file", "hash": "96d9da80c9aa01528d9dbeab66952249da73cb90", - "version": "96d9da8", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11902,7 +12921,7 @@ "name": "松茸28.json", "type": "file", "hash": "21307621b5a68580061ee5b535d4133442c98445", - "version": "2130762", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11914,7 +12933,7 @@ "name": "松茸29.json", "type": "file", "hash": "a8f4558ae5eafd13d666b93a563d8b8fde2fc7e1", - "version": "a8f4558", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11926,7 +12945,7 @@ "name": "松茸3.json", "type": "file", "hash": "6fde818c16106829ac24d23b0a9c7d25c2297c61", - "version": "6fde818", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11938,7 +12957,7 @@ "name": "松茸4.json", "type": "file", "hash": "11cf58c12acc854ee0fdb6c5d32efc9d9f2976f1", - "version": "11cf58c", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11950,7 +12969,7 @@ "name": "松茸5.json", "type": "file", "hash": "da369027516cb7bdd527c50bbae359389d28f38d", - "version": "da36902", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11962,7 +12981,7 @@ "name": "松茸6.json", "type": "file", "hash": "e15b09cc0c561f537f3ffeea68da0f3aa7648b18", - "version": "e15b09c", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11974,7 +12993,7 @@ "name": "松茸7.json", "type": "file", "hash": "020965e54260348309dd2c6740a53ecd0229512c", - "version": "020965e", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11986,7 +13005,7 @@ "name": "松茸8.json", "type": "file", "hash": "629f191140b529644f2eecaadb008425365e5720", - "version": "629f191", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -11998,7 +13017,7 @@ "name": "松茸9.json", "type": "file", "hash": "30352fecc3cec9b4aeda1aa979a06d35481f2d68", - "version": "30352fe", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -12020,7 +13039,7 @@ "name": "天云草实+鸣草01.json", "type": "file", "hash": "b7e28d5378bb091c74507c838805532abfd1b2bb", - "version": "b7e28d5", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -12032,7 +13051,7 @@ "name": "天云草实+鸣草02.json", "type": "file", "hash": "5d166972ac13d0c7c41f877d0a9a324381142f63", - "version": "5d16697", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -12050,7 +13069,7 @@ "name": "天云草实-天云峠02-10个.json", "type": "file", "hash": "d53608cf4dc5bc4c8bccc3b8b0e5ac5ae7225da4", - "version": "d53608c", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12061,7 +13080,7 @@ "name": "天云草实-天云峠左下角-26个.json", "type": "file", "hash": "f75f92aa4e7191bae60562138a520d26986b3792", - "version": "f75f92a", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12072,7 +13091,7 @@ "name": "天云草实-石越村-6个.json", "type": "file", "hash": "af29b1fda0445836778d731863f609ad85661a67", - "version": "af29b1f", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12083,7 +13102,7 @@ "name": "天云草实-越石村右侧-6个.json", "type": "file", "hash": "c76d2aec98c170bc57475b94d42b79f6b688b4a0", - "version": "c76d2ae", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12102,7 +13121,7 @@ "name": "甜甜花-中央实验室遗址-枫丹7个.json", "type": "file", "hash": "a26f2455169ad142f4916260c5b8c7c1eb8a0e7f", - "version": "a26f245", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12113,7 +13132,7 @@ "name": "甜甜花-天遒谷(1)-璃月13个.json", "type": "file", "hash": "38b9ce5c4360e8d9eea58ec71e420548aa4140a0", - "version": "38b9ce5", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12124,7 +13143,7 @@ "name": "甜甜花-天遒谷(2)-璃月12个.json", "type": "file", "hash": "3e923f10cbc5a9b90cc0e715ef21d50473484d0b", - "version": "3e923f1", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12135,7 +13154,7 @@ "name": "甜甜花-天遒谷(3)-璃月11个.json", "type": "file", "hash": "68eaf00674d142f48174a9a9048314663f18f850", - "version": "68eaf00", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12146,7 +13165,7 @@ "name": "甜甜花-宗室本(上)-璃月15个.json", "type": "file", "hash": "56bf7d3922335a221ea8f0d4efa867846d457d85", - "version": "56bf7d3", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12157,7 +13176,7 @@ "name": "甜甜花-桓那兰那-须弥14个.json", "type": "file", "hash": "4a54841177850ff3293fb187d8399713a1313da8", - "version": "4a54841", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12168,7 +13187,7 @@ "name": "甜甜花-清泉镇-蒙德11个(回血).json", "type": "file", "hash": "7a0cc754e865a0a0a88a5e4887bd7824e303e008", - "version": "7a0cc75", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12179,7 +13198,7 @@ "name": "甜甜花-苍白本-蒙德20个.json", "type": "file", "hash": "0a50b1c7d827e1bdd69e51af645b5a663ca111fe", - "version": "0a50b1c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12190,7 +13209,7 @@ "name": "甜甜花_中央实验室遗址_枫丹_7个.json", "type": "file", "hash": "dbf6f5ea720e64a137a2560fbd27a3878da70233", - "version": "dbf6f5e", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -12201,7 +13220,7 @@ "name": "甜甜花_清泉镇_蒙德_11个.json", "type": "file", "hash": "98b37373aac820061e6bb8d528c805cce0d38cde", - "version": "98b3737", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -12218,7 +13237,7 @@ "name": "万相石-P02-1-4个(带拾取).json", "type": "file", "hash": "85ea239ad922a116fa05ca302088ad00e85bb551", - "version": "85ea239", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12229,7 +13248,7 @@ "name": "万相石-P02-2-2个(带拾取).json", "type": "file", "hash": "d38eaa48d01efd0707a09ec269fa2d3ded7b0026", - "version": "d38eaa4", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12240,7 +13259,7 @@ "name": "万相石-P02-3-5个(带拾取).json", "type": "file", "hash": "f3e19b50ea5e6711275974f384aa5a46864e0bcd", - "version": "f3e19b5", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12251,7 +13270,7 @@ "name": "万相石-P08-4-4个(带拾取).json", "type": "file", "hash": "9b4a4e8d9bdb154aee84b018a04f75a3d1176e21", - "version": "9b4a4e8", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12262,7 +13281,7 @@ "name": "万相石-P10-5-3个(带拾取).json", "type": "file", "hash": "583c0bb26f93a7fb6c81e6a43064e03bf92e5cd0", - "version": "583c0bb", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12273,7 +13292,7 @@ "name": "万相石-P11-6-4个(带拾取).json", "type": "file", "hash": "e30d749a4fa8b6537e097a86b7b19a9d4c81b5a4", - "version": "e30d749", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12284,7 +13303,7 @@ "name": "万相石-P12-7-2个(带拾取).json", "type": "file", "hash": "508e144ebe840e0aa3144f5fe7a6cf5dd51d64d6", - "version": "508e144", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12295,7 +13314,7 @@ "name": "万相石合-17个(MOMO版).json", "type": "file", "hash": "de9437c76e918f264e359b89b957e19c1ef735d2", - "version": "de9437c", + "version": "1.0", "author": "MOMO", "description": "", "tags": [ @@ -12312,7 +13331,7 @@ "name": "微光角菌-奥奇卡纳塔上-14个.json", "type": "file", "hash": "baacae39a07f2d2a2c1afa1b696d0caa15f2fe6a", - "version": "baacae3", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12323,7 +13342,7 @@ "name": "微光角菌-烟谜主01-27个.json", "type": "file", "hash": "57d7b2a5afcae35a0443665645983b9f3209cf83", - "version": "57d7b2a", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12334,7 +13353,7 @@ "name": "微光角菌-烟谜主02-12个.json", "type": "file", "hash": "88c19a88088b2324590e469c76f0c3b9128c278a", - "version": "88c19a8", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12345,7 +13364,7 @@ "name": "微光角菌-翘枝崖-5个.json", "type": "file", "hash": "de947256fab3226da65709fbb3e1d15286a2d61b", - "version": "de94725", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12356,7 +13375,7 @@ "name": "微光角菌-镜壁山-2个.json", "type": "file", "hash": "fc567d6c7135753d13b0ff12990c393cb9e89547", - "version": "fc567d6", + "version": "1.0", "author": "曦", "description": "", "tags": [ @@ -12371,7 +13390,7 @@ "name": "微光角菌1-1个.json", "type": "file", "hash": "97b7b3d6dec28ba4b57efb326507baabaa956d1d", - "version": "97b7b3d", + "version": "1.0", "author": "幻想千岁", "description": "参考B站-你的影月月\nhttps://www.bilibili.com/video/BV15TBiYbEMN/?share_source=copy_web&vd_source=6ca0c2f9d9bdb719f035bd21c9c56e87", "tags": [ @@ -12382,7 +13401,7 @@ "name": "微光角菌2-33个.json", "type": "file", "hash": "77dbeef29e5e90d2e97d846410cbe7154e42b3a4", - "version": "77dbeef", + "version": "1.0", "author": "幻想千岁", "description": "参考B站-你的影月月https://www.bilibili.com/video/BV15TBiYbEMN/?share_source=copy_web&vd_source=6ca0c2f9d9bdb719f035bd21c9c56e87", "tags": [ @@ -12393,7 +13412,7 @@ "name": "微光角菌3-13个.json", "type": "file", "hash": "0229409701112ccc709c00a73548862f351d050d", - "version": "0229409", + "version": "1.0", "author": "幻想千岁", "description": "参考B站-你的影月月https://www.bilibili.com/video/BV15TBiYbEMN/?share_source=copy_web&vd_source=6ca0c2f9d9bdb719f035bd21c9c56e87", "tags": [ @@ -12404,7 +13423,7 @@ "name": "微光角菌4-2个.json", "type": "file", "hash": "b8a8d06da24c59cae7ba2a16f9bb161911240eb9", - "version": "b8a8d06", + "version": "1.0", "author": "幻想千岁", "description": "参考B站-你的影月月https://www.bilibili.com/video/BV15TBiYbEMN/?share_source=copy_web&vd_source=6ca0c2f9d9bdb719f035bd21c9c56e87", "tags": [ @@ -12415,7 +13434,7 @@ "name": "微光角菌5-1个.json", "type": "file", "hash": "f8637ec9fa45cca1c34ea2be330c26758efc3624", - "version": "f8637ec", + "version": "1.0", "author": "幻想千岁", "description": "参考B站-你的影月月https://www.bilibili.com/video/BV15TBiYbEMN/?share_source=copy_web&vd_source=6ca0c2f9d9bdb719f035bd21c9c56e87", "tags": [ @@ -12426,7 +13445,7 @@ "name": "微光角菌6-14个.json", "type": "file", "hash": "0fcd89406734eda4a44359cf4a013268bfacf7f8", - "version": "0fcd894", + "version": "1.0", "author": "幻想千岁", "description": "参考B站-你的影月月https://www.bilibili.com/video/BV15TBiYbEMN/?share_source=copy_web&vd_source=6ca0c2f9d9bdb719f035bd21c9c56e87", "tags": [ @@ -12445,22 +13464,280 @@ "name": "香辛果@起个名字好难的喵", "type": "directory", "children": [ + { + "name": "香辛果-二净甸-善见地-8个.json", + "type": "file", + "hash": "0521c7e202a0dc0377699031c6128e389438b767", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-二净甸-天臂池-8个.json", + "type": "file", + "hash": "a94774db043fad934620d62b5eb9634d38af60a3", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-二净甸-觉王之殿(1)-4个.json", + "type": "file", + "hash": "286d4a37793516deab7a4b15ca77aa36e098f7db", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果", + "四叶印" + ] + }, + { + "name": "香辛果-二净甸-觉王之殿(2)-4个.json", + "type": "file", + "hash": "3afc2ae90295616fd09e9ff1902c57b642578346", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-二净甸-觉王之殿(3)-8个.json", + "type": "file", + "hash": "f6c0a1b601ee1b083c1f6e56c26ddd3c5ab66396", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果", + "四叶印" + ] + }, + { + "name": "香辛果-善见地-有顶塔-4个.json", + "type": "file", + "hash": "feefead8cdad18ded31c29370d3b6afa0d8d7f54", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?p=5", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-善见地-水天丛林-14个.json", + "type": "file", + "hash": "eec7754f853ba5fcf91c16bb5c1fc2151c4fcf56", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-善见地-水天丛林-6个.json", + "type": "file", + "hash": "74f5d64ada52b5ee678b0a44331980d8d9396adc", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?p=5", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-善见地-河谷的黯道-18个.json", + "type": "file", + "hash": "5d0477611f33693920d8447662521189f043a2f2", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-善见地-禅那园后山-10个.json", + "type": "file", + "hash": "b6580f6077e749244f92dc37d7ac32ebb2489598", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-善见地-谒颂幽境(善见地神像)-4个.json", + "type": "file", + "hash": "69dfd4d2237971224501c60b35240767d9a10c09", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-善见地-谒颂幽境-4个.json", + "type": "file", + "hash": "22b2b4cf416f2b629d4668c7ce51e8a72cd85da9", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-护世森-卡萨扎莱宫-10个.json", + "type": "file", + "hash": "25456609ece23854cb680f71211f83cc2ae5b142", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-护世森-卡萨扎莱宫-6个.json", + "type": "file", + "hash": "5f30ee46d8a3c817d68c0c435733c67eee80858c", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, { "name": "香辛果-道成林(化城郭)-阿陀河谷(降诸魔山锚点)-24个.json", "type": "file", "hash": "e939d7e5e77baaa4d1e05271c0a75a18b429f197", - "version": "e939d7e", + "version": "1.0", "author": "起个名字好难的喵", "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?p=2", "tags": [ "香辛果" ] }, + { + "name": "香辛果-道成林-离渡谷-14个.json", + "type": "file", + "hash": "cfc9d097a0716adbd5238163eb9e2359ed07b969", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果", + "四叶印" + ] + }, + { + "name": "香辛果-道成林-维摩庄(1)-4个.json", + "type": "file", + "hash": "9eecdc7c167499e6db200a786b50f02ce87e8900", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果", + "四叶印" + ] + }, + { + "name": "香辛果-道成林-维摩庄(2)-12个.json", + "type": "file", + "hash": "8bd0df364d88ccf8a0128666e6650611aab7ce0c", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果", + "四叶印" + ] + }, + { + "name": "香辛果-道成林-维摩庄(3)-10个.json", + "type": "file", + "hash": "62fd4112ba5aecc958b2af78b82503bbb244469a", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?&p=10", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-道成林-缘觉塔-2个.json", + "type": "file", + "hash": "530ed7a066ee5ec6f81b8b3b418983be69898080", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-道成林-须弥城-2个.json", + "type": "file", + "hash": "3265cd4da9a318a2899775b3457bb9bb0bd61453", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-道成林-香醉坡-2个.json", + "type": "file", + "hash": "2928795153880c6302bb99824ad03e3f90f8260d", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-道成林-香醉坡-4个.json", + "type": "file", + "hash": "08a6c507e734040da41463dd597b67b34adac686", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "", + "tags": [ + "香辛果" + ] + }, + { + "name": "香辛果-阿陀河谷-禅那园-8个.json", + "type": "file", + "hash": "b04175e0a571542ec7860d7263e2d70e508abdc4", + "version": "1.0", + "author": "起个名字好难的喵", + "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?p=8", + "tags": [ + "香辛果" + ] + }, { "name": "香辛果-阿陀河谷-降诸魔山(1)-8个.json", "type": "file", "hash": "976cfe06224bda7b2d1a16a66dc81fefee598101", - "version": "976cfe0", + "version": "1.0", "author": "起个名字好难的喵", "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?p=3", "tags": [ @@ -12471,7 +13748,7 @@ "name": "香辛果-阿陀河谷-降诸魔山(2)-4个.json", "type": "file", "hash": "c339a5cef3d1a58ffeb4241bcb08a7b89f82c677", - "version": "c339a5c", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12482,7 +13759,7 @@ "name": "香辛果-阿陀河谷-降诸魔山(3)-10个.json", "type": "file", "hash": "5b41c5e24bbcfc262c6a6ba43021919aacfc5fb6", - "version": "5b41c5e", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -12499,7 +13776,7 @@ "name": "香辛果1.json", "type": "file", "hash": "914d43b1d774866124d5d28df871705efb17a5b8", - "version": "914d43b", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -12511,7 +13788,7 @@ "name": "香辛果2.json", "type": "file", "hash": "409cb827f6eb6fa6354a119d737f3b55c03b6f51", - "version": "409cb82", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -12523,7 +13800,7 @@ "name": "香辛果3.json", "type": "file", "hash": "f096014dccfe45eb2393d32d4a718a67725e45f9", - "version": "f096014", + "version": "1.0", "author": "玛卡巴卡", "description": "", "tags": [ @@ -12547,7 +13824,7 @@ "name": "小灯草-仲夏庭院-蒙德2个.json", "type": "file", "hash": "0e8a27b15babb317a00c9edf474cd360899244f4", - "version": "0e8a27b", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12558,7 +13835,7 @@ "name": "小灯草-低语森林-蒙德17个.json", "type": "file", "hash": "6261e3e552cc1ef619040df9cfd3155baad6635c", - "version": "6261e3e", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12569,7 +13846,7 @@ "name": "小灯草-千风神殿-蒙德5个.json", "type": "file", "hash": "500a333b78269dbbfcade115d930926f7e0da113", - "version": "500a333", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12580,7 +13857,7 @@ "name": "小灯草-塞西莉亚苗圃-蒙德4个.json", "type": "file", "hash": "099f02fc8eb0eb5d2b46be832104a00b22cea7b9", - "version": "099f02f", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12591,7 +13868,7 @@ "name": "小灯草-奔狼岭(一)-蒙德3个.json", "type": "file", "hash": "9dfcbff319d03f710f53b42cf9617fd6dd9c7f25", - "version": "9dfcbff", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12602,7 +13879,7 @@ "name": "小灯草-奔狼岭(二)-蒙德4个.json", "type": "file", "hash": "502fc10c8aa95c1925da50880a048ade0241a9f2", - "version": "502fc10", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12613,7 +13890,7 @@ "name": "小灯草-晨曦酒庄-蒙德4个.json", "type": "file", "hash": "f4041dfabe8ba903f4558d96a3dbea4984604e41", - "version": "f4041df", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12624,7 +13901,7 @@ "name": "小灯草-风起地-蒙德6个.json", "type": "file", "hash": "fb1478c113f0dcd5792a71dcf5ff0ff27a4123d1", - "version": "fb1478c", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12641,7 +13918,7 @@ "name": "01小灯草.json", "type": "file", "hash": "84bb387c43982122cab0bfe9b638db8670fd3b20", - "version": "84bb387", + "version": "1.0", "author": "彩虹QQ人", "description": "小灯草性价比路线,要求队伍(草神-琴团长),琴可换但不建议法器角色", "tags": [ @@ -12653,7 +13930,7 @@ "name": "02小灯草.json", "type": "file", "hash": "cd811fb398bb133162d4351ea087be848035f66d", - "version": "cd811fb", + "version": "1.0", "author": "彩虹QQ人", "description": "小灯草性价比路线,要求队伍(草神-琴团长),琴可换但不建议法器角色", "tags": [ @@ -12666,7 +13943,7 @@ "name": "03小灯草.json", "type": "file", "hash": "21d5d89b1dbe41043eaaa81f7bdb34419e415e23", - "version": "21d5d89", + "version": "1.0", "author": "彩虹QQ人", "description": "小灯草性价比路线,要求队伍(草神-琴团长),琴可换但不建议法器角色", "tags": [ @@ -12686,7 +13963,7 @@ "name": "星螺12.json", "type": "file", "hash": "1db403cf5c73b905a0b90462bd8a8264d0ed1c19", - "version": "1db403c", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -12697,7 +13974,7 @@ "name": "星螺14.json", "type": "file", "hash": "0f9e57874cd5256ec2054dcc1c110e36665f848c", - "version": "0f9e578", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -12708,7 +13985,7 @@ "name": "星螺17.json", "type": "file", "hash": "4092d66b9b2105e29af736b4b0a6ef020cd01b6a", - "version": "4092d66", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -12719,7 +13996,7 @@ "name": "星螺4.json", "type": "file", "hash": "d6835b19d64aa5a83941acde1ae65d768d158a5f", - "version": "d6835b1", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -12730,7 +14007,7 @@ "name": "星螺9.json", "type": "file", "hash": "8628914c8dced0b84366337345852b9db1f751c0", - "version": "8628914", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -12747,7 +14024,7 @@ "name": "须弥蔷薇1-降诸魔山-须弥5个.json", "type": "file", "hash": "52285202d67ca84e925edf44995692c981cfd6b5", - "version": "5228520", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12759,7 +14036,7 @@ "name": "须弥蔷薇2-化城郭(一)-须弥8个.json", "type": "file", "hash": "5fb8b30ad6fb85287e51181092b292c81cb58d36", - "version": "5fb8b30", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12771,7 +14048,7 @@ "name": "须弥蔷薇3-化城郭(二)-须弥8个.json", "type": "file", "hash": "802c9e2f934e546ffdf1b89d76987b7e19f6ae96", - "version": "802c9e2", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12783,7 +14060,7 @@ "name": "须弥蔷薇4-天臂池-须弥9个.json", "type": "file", "hash": "71907a10abf9ac20c5596546f2c142b8bedd76a2", - "version": "71907a1", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12795,7 +14072,7 @@ "name": "须弥蔷薇5-觉王之殿-须弥6个.json", "type": "file", "hash": "df8c42afdd1356e8b2402e8320af88d7489b3587", - "version": "df8c42a", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12807,7 +14084,7 @@ "name": "须弥蔷薇6-谒颂幽境-须弥8个.json", "type": "file", "hash": "c6ac35a0dd4fb5094b916a8218a4affaaa01a374", - "version": "c6ac35a", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12819,7 +14096,7 @@ "name": "须弥蔷薇7-奥摩斯港-须弥9个.json", "type": "file", "hash": "4bf1997bf2aad14c935280cf2415284447c7908e", - "version": "4bf1997", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -12841,7 +14118,7 @@ "name": "血斛-九条阵屋-10个 .json", "type": "file", "hash": "a8307f5bd5f2d2e44f6b5598bc60f82127092a76", - "version": "a8307f5", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -12852,7 +14129,7 @@ "name": "血斛-九条阵屋-14个(末尾纳西妲4个).json", "type": "file", "hash": "e390c680e59d790d947a3a4412507e64b09fc2ea", - "version": "e390c68", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -12864,7 +14141,7 @@ "name": "血斛-名椎滩.json", "type": "file", "hash": "5dd881723074b414bbbd7ad8ad7a164c80f993e7", - "version": "5dd8817", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -12875,7 +14152,7 @@ "name": "血斛-名椎滩2.json", "type": "file", "hash": "5eafddb8682dff2f38f87aa4a3cde3eaa1a81206", - "version": "5eafddb", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -12886,7 +14163,7 @@ "name": "血斛-名椎滩3.json", "type": "file", "hash": "b7b188e9a0ade1fd71fab9191b0b543895039e56", - "version": "b7b188e", + "version": "1.0", "author": "透明人", "description": "", "tags": [ @@ -12897,7 +14174,7 @@ "name": "血斛-蛇神之首-12个.json", "type": "file", "hash": "8e0f69599181995425ef5c667bcd11332863742c", - "version": "8e0f695", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -12914,7 +14191,7 @@ "name": "血斛性价比.json", "type": "file", "hash": "37166c5e0d10b574a55b545b05ec7decc29b796f", - "version": "37166c5", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍:必须带小草神", "tags": [ @@ -12938,7 +14215,7 @@ "name": "幽光星星1.json", "type": "file", "hash": "0457786ce2cc40872a2a9f3810c2e3a8d9ccd376", - "version": "0457786", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -12949,7 +14226,7 @@ "name": "幽光星星2.json", "type": "file", "hash": "4b079e54e0f3b6e6a0a890c93797f5a6bc9216e8", - "version": "4b079e5", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -12960,7 +14237,7 @@ "name": "幽光星星3.json", "type": "file", "hash": "e49ba80e01780d6c24b718d90e49f169776feef6", - "version": "e49ba80", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -12971,7 +14248,7 @@ "name": "幽光星星4.json", "type": "file", "hash": "411e49486fcd3c99ce1fe8c8d3bae2387059dfce", - "version": "411e494", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -12982,7 +14259,7 @@ "name": "幽光星星5.json", "type": "file", "hash": "1fde004a641a5aa376c8e622f3a12a2ccb433ec0", - "version": "1fde004", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -12993,7 +14270,7 @@ "name": "幽光星星6.json", "type": "file", "hash": "384b4c2f58985c4f98fb0ab6ee422b58b40ab750", - "version": "384b4c2", + "version": "1.0", "author": "jbcaaa", "description": "", "tags": [ @@ -13010,7 +14287,7 @@ "name": "幽光星星4.json", "type": "file", "hash": "8f20c705eed10b209926ec11371d0df4bda1cacd", - "version": "8f20c70", + "version": "1.0", "author": "柠檬茶叶", "description": "幽光星星", "tags": [ @@ -13021,7 +14298,7 @@ "name": "幽光星星5--.json", "type": "file", "hash": "2891dbb7a042f691eea863021cdbfc8e47d42941", - "version": "2891dbb", + "version": "1.0", "author": "柠檬茶叶", "description": "幽光星星", "tags": [ @@ -13032,7 +14309,7 @@ "name": "幽光星星5-.json", "type": "file", "hash": "f95e46bff722a286f151cab0dace3f79c693307f", - "version": "f95e46b", + "version": "1.0", "author": "柠檬茶叶", "description": "幽光星星", "tags": [ @@ -13043,7 +14320,7 @@ "name": "幽光星星5.json", "type": "file", "hash": "47e737b5540661f3481d7f1a528d3a754f9439c1", - "version": "47e737b", + "version": "1.0", "author": "柠檬茶叶", "description": "幽光星星", "tags": [ @@ -13054,7 +14331,7 @@ "name": "幽光星星6.json", "type": "file", "hash": "167a6275b9bb484925c37f868503af9eb6c29281", - "version": "167a627", + "version": "1.0", "author": "柠檬茶叶", "description": "幽光星星", "tags": [ @@ -13077,7 +14354,7 @@ "name": "01-蒙德-清泉镇北-18.json", "type": "file", "hash": "104568a5a9afff2f9a9ae7b2cfc12e8a5967e21c", - "version": "104568a", + "version": "1.0", "author": "火山", "description": "蒙德-清泉镇北-18", "tags": [ @@ -13089,7 +14366,7 @@ "name": "02-蒙德-清泉镇南-10.json", "type": "file", "hash": "293313001c9185d9aa90d11fc331596f16dad548", - "version": "2933130", + "version": "1.0", "author": "火山", "description": "蒙德-清泉镇南-10", "tags": [ @@ -13101,7 +14378,7 @@ "name": "03-璃月-璃月港-西北-11.json", "type": "file", "hash": "0c1ad2a819076a8e44d3180bd46a45b56aa90ff0", - "version": "0c1ad2a", + "version": "1.0", "author": "火山", "description": "03-璃月港-西北-11", "tags": [ @@ -13113,7 +14390,7 @@ "name": "04-璃月-明蕴镇左-10.json", "type": "file", "hash": "7f937605ae1f576d5103ea546b9d2b8dc2fa1b8a", - "version": "7f93760", + "version": "1.0", "author": "火山", "description": "04-明蕴镇左-10", "tags": [ @@ -13125,7 +14402,7 @@ "name": "05-璃月-沉玉谷灵濛山-10.json", "type": "file", "hash": "4cafb4b1d1e5bca42cb39efa25f429e153f76514", - "version": "4cafb4b", + "version": "1.0", "author": "火山", "description": "璃月-沉玉谷灵濛山-10", "tags": [ @@ -13137,7 +14414,7 @@ "name": "06-璃月-沉玉谷翘英庄-5.json", "type": "file", "hash": "aa1351a208d337b6f4da7514bb9419dd5e771cca", - "version": "aa1351a", + "version": "1.0", "author": "火山", "description": "璃月-沉玉谷翘英庄-5", "tags": [ @@ -13149,7 +14426,7 @@ "name": "07-稻妻-稻妻主城-7.json", "type": "file", "hash": "3b837b04f93107b47958d43ff59f2cc6c424e851", - "version": "3b837b0", + "version": "1.0", "author": "火山", "description": "稻妻-稻妻主城-7", "tags": [ @@ -13161,7 +14438,7 @@ "name": "08-稻妻-主城地下-7.json", "type": "file", "hash": "ddd6184179eb126f2e24e96aa67a7eae8befaac2", - "version": "ddd6184", + "version": "1.0", "author": "火山", "description": "稻妻-主城地下-7", "tags": [ @@ -13173,7 +14450,7 @@ "name": "09-稻妻-九条阵屋左-7.json", "type": "file", "hash": "1e8df00e7b309e6585a5511480b589ef4dc463c0", - "version": "1e8df00", + "version": "1.0", "author": "火山", "description": "稻妻-九条阵屋左-7", "tags": [ @@ -13185,7 +14462,7 @@ "name": "10-稻妻-九条阵屋右-3.json", "type": "file", "hash": "8345ef7434511c19964ad5a9badd9ada7427f4f5", - "version": "8345ef7", + "version": "1.0", "author": "火山", "description": "稻妻-九条阵屋右-3", "tags": [ @@ -13205,7 +14482,7 @@ "name": "月莲_卡扎莱宫_须弥_5个.json", "type": "file", "hash": "19aaa04ac80ffb6f201f8bde58d1615e44717115", - "version": "19aaa04", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13216,7 +14493,7 @@ "name": "月莲_禅那园_须弥_4个.json", "type": "file", "hash": "eeec76bfc7759909172cc9c9d2f85cba1183ec7c", - "version": "eeec76b", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13227,7 +14504,7 @@ "name": "月莲_茸蕈窟_须弥_4个.json", "type": "file", "hash": "71c5c355efa2e10dd43cbed5e520bf52e3e585ed", - "version": "71c5c35", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13238,7 +14515,7 @@ "name": "月莲_觉王之殿右上_须弥_2个.json", "type": "file", "hash": "9e3d25b96da6d4d8dc1565d42f633989de5c9038", - "version": "9e3d25b", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13249,7 +14526,7 @@ "name": "月莲_须弥_护世森下_7个.json", "type": "file", "hash": "0b3c098846c81f978f0a93b54bcfac94d93a98dd", - "version": "0b3c098", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13260,7 +14537,7 @@ "name": "月莲_须弥_护世森左_4个.json", "type": "file", "hash": "2051d9a3e91833ba6d9ce5d181365942626e1a39", - "version": "2051d9a", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13271,7 +14548,7 @@ "name": "月莲_须弥_维摩庄_6个.json", "type": "file", "hash": "9a9c0dda947ba1eab0f447ca3bc53bbd6e1b7f76", - "version": "9a9c0dd", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13282,7 +14559,7 @@ "name": "月莲_须弥_维摩庄右_2个.json", "type": "file", "hash": "108f6d37be0be4e77a181807e0dce18ca7606ca1", - "version": "108f6d3", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13293,7 +14570,7 @@ "name": "月莲_须弥_降魔山下_7个.json", "type": "file", "hash": "6665645e65978e20fbaf1c75855e107255122a7c", - "version": "6665645", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13304,7 +14581,7 @@ "name": "月莲_须弥_降魔山左下_6个.json", "type": "file", "hash": "b9e036e736772e186802bfd39109a51514500d5e", - "version": "b9e036e", + "version": "1.0", "author": "tignioj", "description": "", "tags": [ @@ -13321,7 +14598,7 @@ "name": "枣椰01-活力之家(死域)-须弥4个.json", "type": "file", "hash": "d8bf3c9d28983a292226021e384cb885e30ff06e", - "version": "d8bf3c9", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -13333,7 +14610,7 @@ "name": "枣椰02-活力之家-须弥5个.json", "type": "file", "hash": "2f1541db42443d13af49a448606920561ea043d3", - "version": "2f1541d", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -13345,7 +14622,7 @@ "name": "枣椰03-阿如村-须弥2个.json", "type": "file", "hash": "9381efbfa597ebf00ee19c3bf2792c992b54e948", - "version": "9381efb", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -13357,7 +14634,7 @@ "name": "枣椰04-阿如村-须弥2个.json", "type": "file", "hash": "5ddd89103f5a7fc7c9884146a2bab11e08ca6f88", - "version": "5ddd891", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -13369,7 +14646,7 @@ "name": "枣椰05-饱饮之丘-须弥5个.json", "type": "file", "hash": "1bac2be155053a95fb4f03c12a7b34de6eb66353", - "version": "1bac2be", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -13381,7 +14658,7 @@ "name": "枣椰06-丰饶绿洲-须弥8个.json", "type": "file", "hash": "86733a2bed1c313ce01eb13acc873be136c92f55", - "version": "86733a2", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -13399,7 +14676,7 @@ "name": "竹笋(容易爬树).json", "type": "file", "hash": "ebb57db291c7ae44bc1ff008a694c88fce4a8c95", - "version": "ebb57db", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ @@ -13410,7 +14687,7 @@ "name": "竹笋1-轻策庄-璃月14个.json", "type": "file", "hash": "c95a8cc0c3f31fc3c9cf7c19e43a4828389c428e", - "version": "c95a8cc", + "version": "1.0", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -13427,7 +14704,7 @@ "name": "灼灼彩菊1-帕克斯神庙左-7个.json", "type": "file", "hash": "7d4ea16bd65d54ce0db14d7e7f16eee4367be05c", - "version": "7d4ea16", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -13438,7 +14715,7 @@ "name": "灼灼彩菊2-帕克斯神庙右-11个.json", "type": "file", "hash": "175ce6e2b0877d51f6d13908b18b3353a076743a", - "version": "175ce6e", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -13449,7 +14726,7 @@ "name": "灼灼彩菊3-圣火竞技场下-11个.json", "type": "file", "hash": "781cd46e727c8cbbfba0008de9fdc57752bf826a", - "version": "781cd46", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -13460,7 +14737,7 @@ "name": "灼灼彩菊4-圣火竞技场上-12个.json", "type": "file", "hash": "7d673da940947cc0d131b0c1fce2b0500cedd0ae", - "version": "7d673da", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -13471,7 +14748,7 @@ "name": "灼灼彩菊41朵.json", "type": "file", "hash": "f83e441dbf5fee18a42349e628a925cce4b2c16c", - "version": "f83e441", + "version": "1.0", "author": "柠檬茶叶", "description": "", "tags": [ @@ -13482,7 +14759,7 @@ "name": "灼灼彩菊5-万火之瓯上-9个.json", "type": "file", "hash": "0e67b863696058ec80b78e764fc0043749d45769", - "version": "0e67b86", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -13493,7 +14770,7 @@ "name": "灼灼彩菊6-柴薪之丘下-5个.json", "type": "file", "hash": "ecdaf33abda741bbd408478825d61c572fa227cf", - "version": "ecdaf33", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -13504,7 +14781,7 @@ "name": "灼灼彩菊7-柴薪之丘右-4个.json", "type": "file", "hash": "3db953e0030352c3ddf1aa88d4570dd26f9b53c5", - "version": "3db953e", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -13515,7 +14792,7 @@ "name": "灼灼彩菊8-柴薪之丘上-13个.json", "type": "file", "hash": "07c61ba485ed6ad7b48d880e4a7ac38e65650e14", - "version": "07c61ba", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -13532,7 +14809,7 @@ "name": "稻妻八云岛01 (1).json", "type": "file", "hash": "80c22ccd5ef72201fb322ac19eceec7d7f25aa8c", - "version": "80c22cc", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13543,7 +14820,7 @@ "name": "稻妻八云岛02.json", "type": "file", "hash": "ff707ce46d1540a4a01ba86c4d453baafc0fc0ce", - "version": "ff707ce", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13554,7 +14831,7 @@ "name": "稻妻八云岛03非木村.json", "type": "file", "hash": "cb5049b9ad15e00bfe677b7530ca82c0250379c0", - "version": "cb5049b", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13565,7 +14842,7 @@ "name": "稻妻八云岛04非木村.json", "type": "file", "hash": "79f7aa49326bc82b30524921c537c4914eab4c58", - "version": "79f7aa4", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13576,7 +14853,7 @@ "name": "稻妻八云岛05上.json", "type": "file", "hash": "f6bbbb2e688b0dbe61c2d160bc1043991ac2f1ff", - "version": "f6bbbb2", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13587,7 +14864,7 @@ "name": "稻妻八云岛06华染.json", "type": "file", "hash": "804299a4dfd100bce80ae71e548f742061e91c89", - "version": "804299a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13598,7 +14875,7 @@ "name": "稻妻八云岛07名稚.json", "type": "file", "hash": "3115e7b3730b37fcc3858c35c3f939aab5a2be57", - "version": "3115e7b", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13609,7 +14886,7 @@ "name": "稻妻揉备沙01 (1).json", "type": "file", "hash": "9a609ad1c77f5e26f2233deb6f9e1d6dd605df68", - "version": "9a609ad", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13620,7 +14897,7 @@ "name": "稻妻揉备沙02借景.json", "type": "file", "hash": "85c22bc00b943faeef5501ac6bd39d555f5762b5", - "version": "85c22bc", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13631,7 +14908,7 @@ "name": "稻妻揉备沙03神无冢.json", "type": "file", "hash": "c64fd0e9e30d35dba045b7a6dc7b51799fc860f1", - "version": "c64fd0e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13642,7 +14919,7 @@ "name": "稻妻揉备沙04神无冢 (1).json", "type": "file", "hash": "fbd5a43345e1cf7bed572b5b5c6e5c773dffbfc0", - "version": "fbd5a43", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13653,7 +14930,7 @@ "name": "稻妻揉备沙05九条 (1).json", "type": "file", "hash": "4f147a1a7a10df00c88acfd25e203bd00badd7ba", - "version": "4f147a1", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13664,7 +14941,7 @@ "name": "稻妻海祗岛01.json", "type": "file", "hash": "14d3804ad31186420c60a0e5a9cdd28ff641171c", - "version": "14d3804", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13675,7 +14952,7 @@ "name": "稻妻海祗岛02.json", "type": "file", "hash": "40e89b06357819f6acf34ed4ea9c409d6ad1f4d5", - "version": "40e89b0", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13686,7 +14963,7 @@ "name": "稻妻海祗岛03.json", "type": "file", "hash": "04e2ac753b98dd7213e194e34f4639996ddef355", - "version": "04e2ac7", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13697,7 +14974,7 @@ "name": "稻妻海祗岛04.json", "type": "file", "hash": "66610de94b21a45c30096ab9b76c03b0ad4cd864", - "version": "66610de", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13708,7 +14985,7 @@ "name": "稻妻海祗岛05珊瑚宫.json", "type": "file", "hash": "1f4cf6bc942c6195c2ff0e2d12d74f072762054f", - "version": "1f4cf6b", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13719,7 +14996,7 @@ "name": "稻妻海祗岛06神像.json", "type": "file", "hash": "1be7a7df2b5f350ff1a251a008a49a6328fb5c4f", - "version": "1be7a7d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13730,7 +15007,7 @@ "name": "稻妻鸣神01甘田 (1).json", "type": "file", "hash": "834c20f61e396b6ce9c5eb8d4affb1a7e1e1e2ee", - "version": "834c20f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13741,7 +15018,7 @@ "name": "稻妻鸣神02甘田 (1).json", "type": "file", "hash": "bd9e64e079e616bc35ac227166fa513199001c0d", - "version": "bd9e64e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13752,7 +15029,7 @@ "name": "稻妻鸣神03荒海 (1).json", "type": "file", "hash": "a386f815dd1390556db91154b975e5c8a8e38667", - "version": "a386f81", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13763,7 +15040,7 @@ "name": "稻妻鸣神04甘田.json", "type": "file", "hash": "8b618bd1c19e705e1d327f771f47afc35526ddae", - "version": "8b618bd", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ @@ -13780,7 +15057,7 @@ "name": "子探测单元-1(共4个).json", "type": "file", "hash": "d37d43f4e15cfa678b3d3edb7083de87f36d9e10", - "version": "d37d43f", + "version": "1.0", "author": "宇寒", "description": "", "tags": [ @@ -13791,7 +15068,7 @@ "name": "子探测单元-2(共9个).json", "type": "file", "hash": "141e917bc4aa91210d87763e4c2bd1b09ed322db", - "version": "141e917", + "version": "1.0", "author": "宇寒", "description": "修复历史:1.1:修复了飞行不下落的问题;1.2:修改了路径方案;1.3:避免了部分卡死;1.3.1:修复了已知问题", "tags": [ @@ -13802,7 +15079,7 @@ "name": "子探测单元-3(共6个).json", "type": "file", "hash": "551ed0dc4f9ebd9e76aed787055a742556e1ea8e", - "version": "551ed0d", + "version": "1.0", "author": "宇寒", "description": "", "tags": [ @@ -13813,7 +15090,7 @@ "name": "子探测单元-4(共6个).json", "type": "file", "hash": "cef973127c3b60c70618dd4e93f96239018b5a29", - "version": "cef9731", + "version": "1.0", "author": "宇寒", "description": "略", "tags": [ @@ -13824,7 +15101,7 @@ "name": "子探测单元-5(共3个).json", "type": "file", "hash": "1561eeb6754b901607480b5d1a11ee75f7243480", - "version": "1561eeb", + "version": "1.0", "author": "宇寒", "description": "略", "tags": [ @@ -13834,1307 +15111,3506 @@ ] }, { - "name": "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", + "name": "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", "type": "directory", "children": [ { - "name": "000传奇,不刷", + "name": "从零开始的提瓦特2000杀", "type": "directory", "children": [ { - "name": "001璃月沉玉谷南陵 传奇.json", - "type": "file", - "hash": "aa7baf952b952654e7e04dc9aae13a480fb15e18", - "version": "aa7baf9", - "author": "汐", - "description": "2岩龙蜥 1200摩拉x2", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "000传奇,不刷" + "name": "0_6_纳塔", + "type": "directory", + "children": [ + { + "name": "6101--纳塔_镜璧山_西海岸1_(8-13).json", + "type": "file", + "hash": "5a31d019e9eba2dcc6b4f052dbe7ca9d743ca309", + "version": "1.5", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6102--纳塔_镜璧山_西海岸2_(8-6).json", + "type": "file", + "hash": "1fc7e19ce133bdeac130a584b05cc6c62390fba9", + "version": "1.2", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6103--纳塔_镜璧山_西海岸3_(5-3).json", + "type": "file", + "hash": "4cf7496cb697fce11bfc2e4380d82e7820cb4134", + "version": "1.4", + "author": "Demo&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6104--纳塔_镜璧山_中部1_(8-6).json", + "type": "file", + "hash": "8cda09b99002f8ba933d3b5d4fc1f3d1302d6d40", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6105--纳塔_镜璧山_神像1_(4-0).json", + "type": "file", + "hash": "7463b4a6a07282ce36f78b96d24279f2950e276a", + "version": "1.4", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6106--纳塔_镜璧山_中部2.json", + "type": "file", + "hash": "9972967183b47461998cb305c289a5043a8c1ad5", + "version": "1.3", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6107--纳塔_镜璧山_神像2_(9-6).json", + "type": "file", + "hash": "acf8ba917ea5979b3a174f851e2e0a5003ee91a7", + "version": "1.6", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6201--纳塔_奥奇_西北海岸_(8-1).json", + "type": "file", + "hash": "6a6696ab4ea5cea8e5306c3141fdf4c415e22a39", + "version": "1.7", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6203--纳塔_奥奇_中层悬崖_11-2).json", + "type": "file", + "hash": "e646df6ddfff839fe7126d3587f805717b62c3a9", + "version": "1.6", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6204--纳塔_奥奇_神像_(7-1).json", + "type": "file", + "hash": "2e6749afaccb27b4e0b99f45d599767693a479ed", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6205--纳塔_奥奇_东北岛屿_(5-1).json", + "type": "file", + "hash": "22d6fcbd7665a0beddfef29c81c2eeb5c5dfbc57", + "version": "1.2", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6301--纳塔_翘枝崖_神像_(8-3).json", + "type": "file", + "hash": "c496f61815d5dba3c6ac328dd23dea58f4ee7d29", + "version": "1.4", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6302--纳塔_翘枝崖_北海岸_(3-5).json", + "type": "file", + "hash": "f47a2792069fe789328b8d30ac0d79ba05a7c82a", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6303--纳塔_翘枝崖_花语会南_(3-6).json", + "type": "file", + "hash": "f7032690cb3928d15582af5134b3a2937979a1cb", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6304--纳塔_翘枝崖_花语会南2_(3-9).json", + "type": "file", + "hash": "5b3d3b157bd1d4d5131bf6b3a4bedf605f57e27c", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6305--纳塔_翘枝崖_花语会南3_(4-4).json", + "type": "file", + "hash": "638cd8418e3ba8068fae248da38a933fbec8b458", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6306--纳塔_翘枝崖_柴薪之丘_(11-18).json", + "type": "file", + "hash": "7860a1bc218be2576e38ce15cd7d5ac8a28803d6", + "version": "1.5", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6401--纳塔_万火之瓯_竞技场_(14-17).json", + "type": "file", + "hash": "c9f58b6b6dff46a7ef2ef72a02965769bf79427d", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6402--纳塔_万火之瓯_竞技场2_(3-4).json", + "type": "file", + "hash": "6c7f20e7a43d158891bcd3210d94209fea792091", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6403--纳塔_万火之瓯_竞技场3_(4-3).json", + "type": "file", + "hash": "6478faf988105687740c3fff6c1cacf768020485", + "version": "1.0", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6404--纳塔_万火之瓯_竞技场4_(12-11).json", + "type": "file", + "hash": "8900f614a404402512a26160298c48969e106a63", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6405--纳塔_万火之瓯_竞技场5_(3-5).json", + "type": "file", + "hash": "668b0fecd1e2ca3a72e3caf65de1de0bbf647553", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6406--纳塔_万火之瓯_悬木人_(6-6).json", + "type": "file", + "hash": "6fcc7039abd5365a12eaa42b44513c85bc92dbf8", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6407--纳塔_万火之瓯_悬木人_(5-4).json", + "type": "file", + "hash": "160f8495da14a04a623f962cef06dc0757114244", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json", + "type": "file", + "hash": "c0cf6998a93b0e2a78b109ebac8d92f9f43db4f5", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json", + "type": "file", + "hash": "817cb1a8c8a9f1cdc23a568ed43008a1a43169b1", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json", + "type": "file", + "hash": "bf086a6966537405b8b2d38e5b3893ac2442bae5", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json", + "type": "file", + "hash": "6328de91357eb2b689f5707cff3ebc2e2177c95d", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6505--纳塔_坚岩隘谷_回声之子_(7-13).json", + "type": "file", + "hash": "71732079dc17b070af23520f09fe37881a1fa570", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6506--纳塔_坚岩隘谷_回声之子_(8-9).json", + "type": "file", + "hash": "af469d47f1ef98797d6a281b164991ff82def1a0", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6507--纳塔_坚岩隘谷_中部河流_(15-9).json", + "type": "file", + "hash": "9045426ad01eff3d008910d014fbc48a311f72a8", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json", + "type": "file", + "hash": "3c53226c0202d3234590855ce4ac26441b09ce2f", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json", + "type": "file", + "hash": "c19024f18bb7a18ffd8c886300791a59d2f60b14", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json", + "type": "file", + "hash": "0207deeb0b97e591708a8fbd141c207fd7c0edbf", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json", + "type": "file", + "hash": "0c7beff975d9f9cec6c43f3190dbb7d5aeb8e87f", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6601--纳塔_涌流地_北侧山脉_(2-4).json", + "type": "file", + "hash": "27a53cd221c69bd987553c391c4d3997243d9153", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6602--纳塔_涌流地_北侧山脉2_(11-7).json", + "type": "file", + "hash": "0afcac1d2ad45b6c1e2e94180c231a2adfb8144d", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6603--纳塔_涌流地_秘境西侧_(2-7).json", + "type": "file", + "hash": "8c0e59fd1fd61a49eae0a1bde7ab6ccbbb72ccb2", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6604--纳塔_涌流地_秘境南侧_(2-7).json", + "type": "file", + "hash": "ac665ab2992d67c77974d6e3726ff214d2df7672", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6605--纳塔_涌流地_溶水域_(6-0).json", + "type": "file", + "hash": "b3322eace9d8a17111db8dda913e03c254ce09e1", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6606--纳塔_涌流地_溶水域2_(4-3).json", + "type": "file", + "hash": "e7082722c01bbfc81b655239ee50494c3a5d341c", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6607--纳塔_涌流地_溶水域3_(11-5).json", + "type": "file", + "hash": "53e1144d7d5b70546aec003cce0f3e3b3705ab85", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6608--纳塔_涌流地_溶水域4_(2-3).json", + "type": "file", + "hash": "97bf49f19dd42cd9d72600c997b3de3b4a5411c3", + "version": "1.0", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6609--纳塔_涌流地_南侧小岛_(5-8).json", + "type": "file", + "hash": "ec51e5d06ae1535621145f005e030cfd1388c00d", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6610--纳塔_涌流地_东侧小岛_(10-14).json", + "type": "file", + "hash": "3f8f19744422abe339730548ef18b03fa316837c", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6611--纳塔_涌流地_中央神像_(9-8).json", + "type": "file", + "hash": "5f86337305613fd59dea4486e59cea4131b8e40d", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6701--纳塔_踞石山_庙宇北侧_(3-5).json", + "type": "file", + "hash": "1cd44bf6c5ed5adc55905d8367c18325ce24c8b2", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6702--纳塔_踞石山_庙宇北侧_(1-11).json", + "type": "file", + "hash": "7b4d1902211214113c72af42db9258964e2d103a", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6703--纳塔_踞石山_北侧主峰_(10-9).json", + "type": "file", + "hash": "68cb26fb29797eb8b57cc690154dc0b8bc696b55", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6704--纳塔_踞石山_东侧海边_(3-7).json", + "type": "file", + "hash": "b617b6f25a7bffd63e1eaf5c8247789cbfe5bab6", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6705--纳塔_踞石山_彩石顶_(10-4).json", + "type": "file", + "hash": "f2a279b244a91217adbd156d2a0f64effc687439", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6706--纳塔_踞石山_彩石顶2_(7-16).json", + "type": "file", + "hash": "403f3115722e3c938b956df0af70b8f4ae6abc3c", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6707--纳塔_踞石山_庙宇_(9-11).json", + "type": "file", + "hash": "a6ac1a6387a63e05536ed58d616f7f60d5232b8d", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6708--纳塔_踞石山_彩石顶3_(6-9).json", + "type": "file", + "hash": "134268054e06ced6a459dca9dce6e5793d9098e1", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6801--纳塔_安饶之野_镜壁山东南_(20).json", + "type": "file", + "hash": "f8727f6897fa510911fc5871a46cc47f0e2081e0", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6802--纳塔_安饶之野_镜壁山西南_(23).json", + "type": "file", + "hash": "537ed75ad9a5e467a620bffe95eab8b75d2ad22d", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6803--纳塔_熔岩辉龙像东南_(5).json", + "type": "file", + "hash": "b6baab9ef14a5a4a8e26c08d2e6bb234d7be3959", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6804--纳塔_安饶之野东北海岸_(8).json", + "type": "file", + "hash": "182c922d0e4a63cf5dcaadbf36164dc4c52cd17c", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6805--纳塔_安饶之野东岩浆池_(5).json", + "type": "file", + "hash": "d261176ce74bd577bdc1b6882b96bd3d61cbe7d1", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6806--纳塔_安饶之野东斜坡_(16).json", + "type": "file", + "hash": "1770683c95c3409722f6f5123839b19f5c509122", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6807--纳塔_安饶之野神像_(8).json", + "type": "file", + "hash": "578e81f0c31cfa23bae20c855555605bd2b3b74c", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json", + "type": "file", + "hash": "4e42aaec20e300e0c8cc2f651ff3a3516a86831f", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6809--纳塔_安饶之野_石火坠陨处_(12).json", + "type": "file", + "hash": "5c4a9bc0b87ae6df2c54120f7218919bef471b87", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6810--纳塔_安饶之野西南_(21).json", + "type": "file", + "hash": "5c11403900d489c64998cf44e89d69e9494a84fc", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6811--纳塔_安饶之野_荒废弃造坞_(10).json", + "type": "file", + "hash": "59e37ba67256e8567305bcdb4f20d05971e259ad", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6812--纳塔_安饶之野_孑遗的留迹东南_(20).json", + "type": "file", + "hash": "d38509c0b415389fff9b3c293b9773eb83f20a7a", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6813--纳塔_安饶之野西北_(8).json", + "type": "file", + "hash": "9ad35e6e49c769d7df71cdbb442194336544379a", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "0_6_纳塔", + "战斗" + ] + } ] + }, + { + "name": "1_1_蒙德", + "type": "directory", + "children": [ + { + "name": "1101蒙德望风角.json", + "type": "file", + "hash": "d7081ed3fcd4a8591f38abdb72f403089f637620", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1102蒙德望风角.json", + "type": "file", + "hash": "0b71ea90ef23f093f1619da6c9405b9f84e6e0ea", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1103蒙德望风山地.json", + "type": "file", + "hash": "8c76439e0f57b9bbeadd1f96603b4f8f8abecabf", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1104蒙德千风西.json", + "type": "file", + "hash": "3321539880d12ca1f180c23bd4ed1eb86c5e832b", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1202蒙德奔狼领.json", + "type": "file", + "hash": "54c89211d51d9db55bb34c065cba53ed52663247", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1203蒙德塞西莉亚苗圃.json", + "type": "file", + "hash": "64713342ce3ed9f3c6ff7f13bc79b4192eb808d0", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_1_蒙德", + "战斗" + ] + } + ] + }, + { + "name": "1_2_璃月", + "type": "directory", + "children": [ + { + "name": "2101璃月无妄坡西南.json", + "type": "file", + "hash": "b211147884c5bc528237a532b95d4f0a407a8647", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2201璃月明蕴镇西北.json", + "type": "file", + "hash": "f4b3986c28de0d139e92bef09f8352d9d6d2e7de", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2202璃月瑶光滩西北.json", + "type": "file", + "hash": "3dd21e3e32139395321349640fef99b8b56fda3c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2301璃月太山府.json", + "type": "file", + "hash": "39d672b490a6c22e29deabde903f56bb038ef515", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2302璃月珉林.json", + "type": "file", + "hash": "6e686ddc52abe95abe6d877883d419e6cf5265ef", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2303璃月琥牢山.json", + "type": "file", + "hash": "54d980a33c7499f6bb21602d32a0feef59910289", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2401璃月地面矿区.json", + "type": "file", + "hash": "274112813cfcf53b20913c96e0c2ce9dae0b4e17", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2501璃月遁玉陵.json", + "type": "file", + "hash": "23f4f51000a4ee3c56bba3ddac9352fbd951151d", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2502璃月群玉阁西.json", + "type": "file", + "hash": "1296b02e26f775a559bba8edbd74432ec1402c1c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2601璃月港东北.json", + "type": "file", + "hash": "e6e9cb33a06a78099f702609e7f459ae1e70cf6d", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_2_璃月", + "战斗" + ] + } + ] + }, + { + "name": "1_3_稻妻", + "type": "directory", + "children": [ + { + "name": "3101稻妻白狐之野南.json", + "type": "file", + "hash": "b58ba9bacaa6bb51314315f0478c6eaf506a7610", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3102稻妻绀田村南.json", + "type": "file", + "hash": "261dbd44c6442f59a8f0d8789afa43b92feb3e8a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3104稻妻绀田村南2.json", + "type": "file", + "hash": "ebb5cc4ef6cc0bc94545f9ad8bc06e1aada0729c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3105稻妻镇守之森.json", + "type": "file", + "hash": "8c6b6823899b21d85683eff77ef5f44ec5f5e388", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3106稻妻神里屋敷.json", + "type": "file", + "hash": "e56ee230bfad9fb750e216e168e9fc965ffff2bd", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3107稻妻绀田村.json", + "type": "file", + "hash": "d5b574ee3aa20686e50ac150b4411f7f284aacd1", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3108稻妻荒海南.json", + "type": "file", + "hash": "e1b1b5fafc5734a054bb1875fab29b4489a7adfb", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3201稻妻九条阵屋.json", + "type": "file", + "hash": "186cf35655919107f79e17352374a50840b03c32", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3202稻妻踏鞴东北.json", + "type": "file", + "hash": "94188abce855a851011de0093b85fc903d859a90", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3204稻妻踏鞴神像2.json", + "type": "file", + "hash": "42b9e5d39903496ff85ef6ba1abb4287781c3f3a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3205稻妻踏鞴反应炉东三骗骗花.json", + "type": "file", + "hash": "ef2ea2eba25a89f67815b64759370dacdcebdc3d", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3206稻妻踏鞴反应炉东.json", + "type": "file", + "hash": "362f11cb1dbf3c60568d228eeb2ba3f829ab8d8c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3207稻妻踏鞴浪船.json", + "type": "file", + "hash": "bd919933a7ba31dd93433f664eef5b4e5041b33b", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3208稻妻借景之馆.json", + "type": "file", + "hash": "bd034ceb00a21346074440609798b7819fe1e991", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3209稻妻踏鞴公义东南.json", + "type": "file", + "hash": "6c93011a5bd06f9664d788d390e3cc4f91fe8dda", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3210稻妻公义飞萤.json", + "type": "file", + "hash": "3724c441d81e47fb6a8ba90a950ca272e9a1bb6a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3211稻妻名椎滩东.json", + "type": "file", + "hash": "29fe5ec595300da3e90eea2432b20b5168e6e9a5", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3212稻妻名椎滩西.json", + "type": "file", + "hash": "2613efd0add3ea2b3fbfe4d6fe43b2840efd1d45", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3301稻妻绯木村神像.json", + "type": "file", + "hash": "5f6ef1d5e7a72a693f970e412991463cc29ce3b9", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3302稻妻蛇骨矿洞南.json", + "type": "file", + "hash": "bbbb2f09ab9494adc2af192f1a7a4f34c138a7cc", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3303稻妻剑鬼东2.json", + "type": "file", + "hash": "eef18520020eb4075250640b1fc302b76a6d7591", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3304稻妻剑鬼东3.json", + "type": "file", + "hash": "fcbc99366bb8b96bc5f335ba80a3afee998310f1", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3305稻妻剑鬼东1.json", + "type": "file", + "hash": "05e9e515ff6e6449126ed44e344afd0c25f9cc52", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3306稻妻藤兜砦西.json", + "type": "file", + "hash": "350825ec328916dc45c3ea13ec4a62ed103b3e6e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3401稻妻海祇岛东.json", + "type": "file", + "hash": "0c4800b7ae3affdf227d8f5c89663b662c330b68", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3403稻妻海祇岛南.json", + "type": "file", + "hash": "dc0453ebfa67bbe532b1f65c3311bb4fcb482a8a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_3_稻妻", + "战斗" + ] + } + ] + }, + { + "name": "1_4_须弥", + "type": "directory", + "children": [ + { + "name": "4101须弥二净甸.json", + "type": "file", + "hash": "34a58589007659cddd6a8f68f2637cf9608ed952", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_4_须弥", + "战斗" + ] + } + ] + }, + { + "name": "1_5_枫丹", + "type": "directory", + "children": [ + { + "name": "5101枫丹廷东北.json", + "type": "file", + "hash": "9a8a811877eb950afd3fd8daf12350e85e9e9320", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5102枫丹廷北.json", + "type": "file", + "hash": "451deca3704cffaa40a2f1e6acdc0dd6d6704831", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5201枫丹优兰湖西.json", + "type": "file", + "hash": "e38596717c2af00b0043378d6fe3a475176b0bd4", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5202枫丹垂柳西北.json", + "type": "file", + "hash": "f68a9de83eb8f1f63559ca851addf93db79b4e03", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5203枫丹垂柳东南.json", + "type": "file", + "hash": "bec64404549261a2ade8e49c466e2927e9e60d6e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5204枫丹垂柳东南.json", + "type": "file", + "hash": "5b6d468db4c1324a3dae67264fff4fc0f3d0b811", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5205枫丹垂柳东南.json", + "type": "file", + "hash": "a7063c2d945c90052338125d919361d37da36db5", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5206枫丹垂柳东南.json", + "type": "file", + "hash": "e31faa515fab608439696653d5d0e0c747e74e40", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5207枫丹柔灯港北.json", + "type": "file", + "hash": "00cb2afb798465155519f86a4ff740d77de6fc6e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5208枫丹幽林东北.json", + "type": "file", + "hash": "ecaebe1220fe436a1fd5cec822bbc962cef8a0ea", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5209枫丹露景泉东.json", + "type": "file", + "hash": "05513089e3393dcb089ee118a48b9e3d038c6b77", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5210枫丹幽林东北.json", + "type": "file", + "hash": "258ab8dca8f545fbec3e799c3b0e9ead6da34d4e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5301枫丹卡布堡南.json", + "type": "file", + "hash": "8a2e3c3d93f2de75f5d89f847f52dab346322cc8", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5303枫丹卡布堡北.json", + "type": "file", + "hash": "e89e14c49d156f025c453be496645147db1c6bc5", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5401枫丹秋分东南.json", + "type": "file", + "hash": "9a4cf7d9e674a798ee9b9656235ace18e5cc9765", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5402枫丹秋分山东.json", + "type": "file", + "hash": "65e3b3a3a02c95042c2a8ab24b87469e27d33fac", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5403枫丹螃蟹北.json", + "type": "file", + "hash": "b1f419acacb5ffbde3a9eae61c1f1e1cdf51fe03", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5501枫丹螃蟹西.json", + "type": "file", + "hash": "7a1ac99da5dfabe233564a9a8512787eb4f255ff", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5502枫丹苍晶南山峰西.json", + "type": "file", + "hash": "f9c1790e3c7bd99dd29acbf6f8e71eed4ae91fb7", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5503枫丹厄里东北.json", + "type": "file", + "hash": "803877a107bd154e36f6ff01d5803caa7c1696bf", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5603枫丹场力北.json", + "type": "file", + "hash": "65263153812e4eb27f69f1333c41816264054e65", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5604枫丹中央遗址北.json", + "type": "file", + "hash": "3e0f39a478e1259c92fe8eb48244d41494a2def0", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5605枫丹中央遗址北.json", + "type": "file", + "hash": "2575b35fb1082cc86b640a445bf2b73d304ac666", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5607枫丹新科学院.json", + "type": "file", + "hash": "21d58329c39be1d6942721c8d02c3c18d04b83e3", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5608枫丹新科学院.json", + "type": "file", + "hash": "4319fbaaefe4307b9b6d041f17164304c3a39123", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5609枫丹千年骏麟.json", + "type": "file", + "hash": "6dce544c6c47ce2efff32f5d6e332b8952317f89", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特2000杀", + "1_5_枫丹", + "战斗" + ] + } + ] + }, + { + "name": "README.md", + "type": "file", + "hash": "5b0c0a8404bc453ab9a9c4fd33ae1f9ef86bb7e7", + "version": "5b0c0a8", + "error": "Unexpected token 提 in JSON at position 0" + }, + { + "name": "上限集分析.xlsx", + "type": "file", + "hash": "b7f6e088abe64e935366d4f82effaa8577eab767", + "version": "b7f6e08", + "error": "Unexpected token P in JSON at position 0" + }, + { + "name": "更新日志.txt", + "type": "file", + "hash": "9d42597c8d6791fbc370c6eb7b2111f3d8c31d05", + "version": "9d42597", + "error": "Unexpected number in JSON at position 1" } ] }, { - "name": "101蒙德雪山(600_1,200_2).json", - "type": "file", - "hash": "0357aefee22da077ea91fa9dc4caeac194e40d9c", - "version": "0357aef", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "102蒙德雪山(600_1).json", - "type": "file", - "hash": "8ed9bd86fa4f887ab3b5b644eebb93c2002e90d8", - "version": "8ed9bd8", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "103蒙德雪山(600_2,200_4).json", - "type": "file", - "hash": "7ec6831ae77ee92f821b68827e2d75efe72b55b5", - "version": "7ec6831", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "104蒙德奔狼领(200_4).json", - "type": "file", - "hash": "4665499d570716b567880f3fe26541a6b78036c9", - "version": "4665499", - "author": "汐", - "description": "3流血狗 1冰法师", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "105蒙德望风山地(200_1).json", - "type": "file", - "hash": "ed3e8cb64898256432cb24950e3df20c5ac9cfee", - "version": "ed3e8cb", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "107蒙德风龙废墟南(600_1,200_2).json", - "type": "file", - "hash": "132ff81ad7b1c151613ef9ca273250db36600015", - "version": "132ff81", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "201璃月离沙郊(600_1,200_2).json", - "type": "file", - "hash": "08abe63d8806475ffec689a7217bc7c490b60d7a", - "version": "08abe63", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "203璃月遁玉陵f4(200_4).json", - "type": "file", - "hash": "b8a41413414349777145428b2ce1093e251af1de", - "version": "b8a4141", - "author": "汐", - "description": "3遗迹重机 1遗迹猎者", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "204璃月天衡山(600_1,200_1).json", - "type": "file", - "hash": "e79636ee77d65e21b3be1610c1814036ed59828b", - "version": "e79636e", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "205璃月孤云阁f4(200_4).json", - "type": "file", - "hash": "333ae5cff09c3757d90548fb43f13a47384d84e9", - "version": "333ae5c", - "author": "汐", - "description": "f4遗迹守卫", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "206璃月孤云阁北(200_5).json", - "type": "file", - "hash": "9ef611966e1a00b2ebc67a637c67a971ba17f89d", - "version": "9ef6119", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "208璃月渌华池(200_3).json", - "type": "file", - "hash": "a15d14dd2a4d54e6d2b2d4bc5b292405b3ed350c", - "version": "a15d14d", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "209璃月天遒谷(600_1,200_4).json", - "type": "file", - "hash": "84e6b369f170b2c7bcaa734841d4b853bd38d720", - "version": "84e6b36", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "210璃月南天门(600_2,200_2).json", - "type": "file", - "hash": "c561a3a21706ece6077bd05039d0f87f8f94021b", - "version": "c561a3a", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "211璃月虎牢山(600_1,200_5).json", - "type": "file", - "hash": "f6d743094a41e714fbb8dfc5ea2f155c01a35929", - "version": "f6d7430", - "author": "汐", - "description": "1岩丘王 2丘丘暴徒 2遗迹猎者 1冰法 ", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "212璃月绝云间南(600_1,200_2).json", - "type": "file", - "hash": "d9c9e0d37ba748a6450ba14bdbe3044b2bcde0ac", - "version": "d9c9e0d", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "213璃月庆云顶(600_3).json", - "type": "file", - "hash": "82543a84a80626547d49f8e7a06e7766efaa8d53", - "version": "82543a8", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "214璃月奥藏山北(600_3,200_2).json", - "type": "file", - "hash": "bac1d0ac15094371ed12e23793954d416e6df3e2", - "version": "bac1d0a", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "215璃月奥藏山下(600_1,200_1).json", - "type": "file", - "hash": "8f60ef3ba6abe464d38a7cbfade2af68661cb8ca", - "version": "8f60ef3", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "216璃月珉林北(600_1).json", - "type": "file", - "hash": "ee9758ed781d109eb13631aab6fcf96f6d5610fb", - "version": "ee9758e", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "217璃月珉林南(600_1).json", - "type": "file", - "hash": "92656faf87a9d5232f53d918636cbd10ab1bd853", - "version": "92656fa", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "218璃月碧水原(600_1,200_1).json", - "type": "file", - "hash": "dc0e20db07a96c57a51dba72b8cab09ed7050bde", - "version": "dc0e20d", - "author": "汐", - "description": "1丘丘岩王 1幼岩龙蜥", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "219璃月轻策庄 浊水幻灵(200_4).json", - "type": "file", - "hash": "6b7437d37019bf69de857264669e084219c4a700", - "version": "6b7437d", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "220璃月地中之盐(600_1).json", - "type": "file", - "hash": "5f9b92d59c168294982b1d8d5a2b7b8db8b27459", - "version": "5f9b92d", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "221璃月震雷宫(600_1).json", - "type": "file", - "hash": "711619076a3080183dcf44b1755fcc6b2b75aab3", - "version": "7116190", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "222璃月层岩北(600_1,200_2).json", - "type": "file", - "hash": "09fa5bf898321a1b5d85fe90b6248504a18ab8c2", - "version": "09fa5bf", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "223璃月层岩南(600_1,200_1).json", - "type": "file", - "hash": "57f16b2c75f5ba53b967645a45748e8edc6f7412", - "version": "57f16b2", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "224璃月沉玉谷南陵浅滩(200_3).json", - "type": "file", - "hash": "629484363f7a473a3003bf5c661fe658273e326e", - "version": "6294843", - "author": "汐", - "description": "3玄文兽", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "225璃月沉玉谷隐山猊兽南(200_6).json", - "type": "file", - "hash": "dfee9ce9a9a1cae392a935919ecc77d463a0c7e3", - "version": "dfee9ce", - "author": "汐", - "description": "6玄文兽", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "226璃月沉玉谷赤望台(600_1,200_2).json", - "type": "file", - "hash": "ba5a8b51ba60c3a8519f7fbc6bd42545584aa91f", - "version": "ba5a8b5", - "author": "汐", - "description": "1丘丘王 2玄文兽", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "227璃月沉玉谷宝决口南(200_4).json", - "type": "file", - "hash": "5a384b62738a54938368ca3e1c262379735dce6e", - "version": "5a384b6", - "author": "汐", - "description": "1丘丘暴徒 3法师冰火雷", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "228璃月沉玉谷神像(200_8).json", - "type": "file", - "hash": "97d8818eddea9956060e9f98cd4a08423830a21b", - "version": "97d8818", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "229璃月沉玉谷宝决口东(600_1,200_2).json", - "type": "file", - "hash": "e177d2b706fc6bc636c3b2cc5030698b0a30028f", - "version": "e177d2b", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "230璃月沉玉谷药蝶谷西(600_1).json", - "type": "file", - "hash": "addf073673ab48cbdb7091267b2d1649f4e3874b", - "version": "addf073", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "231璃月沉玉谷暝垣山(200_4).json", - "type": "file", - "hash": "f05fe66ae248ea984c69e220d389a5d25aca14a3", - "version": "f05fe66", - "author": "汐", - "description": "4玄文兽", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "232璃月沉玉谷灵濛山南(600_1,200_4).json", - "type": "file", - "hash": "af4c51d4a50ab715925e120bb81ec75a6f80fc35", - "version": "af4c51d", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "233璃月沉玉谷灵濛山东北(600_1,200_1).json", - "type": "file", - "hash": "b466ab8d25ca64f4316563901bf9837cfba717f2", - "version": "b466ab8", - "author": "汐", - "description": "1丘丘王 1丘丘游侠", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "234璃月沉玉谷上灵濛山东(200_3).json", - "type": "file", - "hash": "1afff669356c24b00da968072f7bdb115b751b63", - "version": "1afff66", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "301稻妻镇守之森(600_1,200_1).json", - "type": "file", - "hash": "98b3e080d2c2d600885871eb43e9f445207cf58f", - "version": "98b3e08", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "302稻妻荒海(600_1,200_5).json", - "type": "file", - "hash": "454fece1b842b7a45d206fd80077868fdb1d1262", - "version": "454fece", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "303稻妻砂流之庭(200_2).json", - "type": "file", - "hash": "aeaa13991df69e9fd4e3027ba5d985e3e6848626", - "version": "aeaa139", - "author": "汐", - "description": "1火之债务处理人 1藏镜仕女", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "304稻妻九条海滩(600_1,200_2).json", - "type": "file", - "hash": "ce30699f813977b7e4fb32fe0dd72bd2a7bac941", - "version": "ce30699", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "305稻妻相之火旁(600_1).json", - "type": "file", - "hash": "42a2d665552e1db7921f8e831b7543591894042a", - "version": "42a2d66", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "306稻妻踏鞴砂南(600_1,200_14).json", - "type": "file", - "hash": "9de96dd8260c789803366049dc4549409bc6ef21", - "version": "9de96dd", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "307稻妻绝缘本后山洞(200_3).json", - "type": "file", - "hash": "929fca755f91569feb4d49d5c0a065cd4a97d8e8", - "version": "929fca7", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "308稻妻水月池(200_8).json", - "type": "file", - "hash": "61c865e79b994b65089f71472fee58fb590d8f57", - "version": "61c865e", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "309稻妻海祇岛北(200_2).json", - "type": "file", - "hash": "b2355198843ff4f3b65ac0c6fe1e0988c47c41e1", - "version": "b235519", - "author": "汐", - "description": "1雷莹术士 1藏镜仕女", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "310稻妻珊瑚宫(600_1).json", - "type": "file", - "hash": "c6b5e782cc20d6654633008b9d56392dcb28019d", - "version": "c6b5e78", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "311稻妻萌云神社(600_1,200_5).json", - "type": "file", - "hash": "dd671963f8f4714791284e362638a89df1dec375", - "version": "dd67196", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "312稻妻清赖丸(600_1,200_4).json", - "type": "file", - "hash": "65ff7323d46e09b2ba852f4204e1db9f8ed8b5b5", - "version": "65ff732", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "313稻妻越石村(200_2).json", - "type": "file", - "hash": "244443626e73c181924d375705e2e6ae365bda92", - "version": "2444436", - "author": "汐", - "description": "2遗迹机兵\n", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "314稻妻平海砦北(200_3).json", - "type": "file", - "hash": "72c592ebdb97dfc4a5c2e106e14f070aa1cdfbc4", - "version": "72c592e", - "author": "汐", - "description": "3遗迹机兵\n", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "315稻妻平海砦南(200_6).json", - "type": "file", - "hash": "27c7b578193a4f2d56cfbd04ab3a9e8c08624010", - "version": "27c7b57", - "author": "汐", - "description": "3遗迹机兵 2丘丘暴徒 1藏镜仕女", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "316稻妻天云峠(200_20).json", - "type": "file", - "hash": "4cdc60856b6b659bce542bb0fd02859c95b9aa38", - "version": "4cdc608", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "317稻妻鹤观千来神祠(200_12~16).json", - "type": "file", - "hash": "6d3ac9c87e468a4f91415018d116625754f67342", - "version": "6d3ac9c", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "318稻妻鹤观知比山(200_5).json", - "type": "file", - "hash": "13ac51c3075e05acc382810bf9267f4ca226fac7", - "version": "13ac51c", - "author": "汐", - "description": "2兽境幼兽 2遗迹机兵 1丘丘暴徒", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "319稻妻鹤观茂知祭场(200_9).json", - "type": "file", - "hash": "5f8a61b153b92f20706caa827ce7b88c9120496f", - "version": "5f8a61b", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "320稻妻鹤馆惑饲滩(600_1,200_6~13).json", - "type": "file", - "hash": "64aa116aad6608c73f673ec04cf209a7a0587d8f", - "version": "64aa116", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "321稻妻鹤馆(400_3,200_4).json", - "type": "file", - "hash": "4277590e8517220260c29c35de12bd6d877ef79e", - "version": "4277590", - "author": "汐", - "description": "3大流血狗 3兽境幼兽 1丘丘暴徒\n", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "401须弥降诸魔山神像(600_1).json", - "type": "file", - "hash": "a100f3346f692ba5f231d8323f1b8d17808584de", - "version": "a100f33", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "403须弥茸蕈窟(200_4).json", - "type": "file", - "hash": "fc94cec2465138d2d87e81a721a04cc0d0392a65", - "version": "fc94cec", - "author": "汐", - "description": "1遗迹龙兽 1雷莹术士 1藏镜仕女 1遗迹机兵", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "406须弥往昔的桓那兰那(400_2,200_2).json", - "type": "file", - "hash": "f390e68c2b12b546f6be678016e39c9056c29d04", - "version": "f390e68", - "author": "汐", - "description": "2大流血狗 2小狗", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "407须弥善见地(600_1,200_1).json", - "type": "file", - "hash": "861e9087ac7c8bdabb9762f4414b411ed4174955", - "version": "861e908", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "408须弥茶诃之座2丘丘王(600_2).json", - "type": "file", - "hash": "941d6822582f14cc29d296f9a882409858371269", - "version": "941d682", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "409须弥茶诃之座(200_10).json", - "type": "file", - "hash": "509857f625cb4cde4db8706d9dba7f411fc90f84", - "version": "509857f", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "410须弥沙漠丰饶绿洲(200_2).json", - "type": "file", - "hash": "b255afd13a31ebf52b39445b8fc4c9bed10a165a", - "version": "b255afd", - "author": "汐", - "description": "2元能构装体", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "411须弥沙漠饱饮之丘东(600_1).json", - "type": "file", - "hash": "279e2d6e27fec10afd4da0c7a011fa771129b531", - "version": "279e2d6", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "412须弥沙漠圣显厅北(600_1,200_1).json", - "type": "file", - "hash": "de03bf2f51fd58027b4d352befff5fb509a5dba1", - "version": "de03bf2", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "413须弥沙漠圣显厅门口(200_7) .json", - "type": "file", - "hash": "4db64df86878b1ba8dc78e5cf713a1b33e0be782", - "version": "4db64df", - "author": "汐", - "description": "5元能构装体 2丘丘暴徒", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "414须弥沙漠沙虫隧道(600_1).json", - "type": "file", - "hash": "b7de3df8d1245ed319b355513fa2b64a27c397ea", - "version": "b7de3df", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "415须弥沙漠避让之丘(200_2).json", - "type": "file", - "hash": "5ecdcab7899ed2b5deb7d73ebef5c375e839a99b", - "version": "5ecdcab", - "author": "汐", - "description": "2元能构装体", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "416须弥沙漠五绿洲的子遗地下(600_1,200_3).json", - "type": "file", - "hash": "fb2edb0725d4ccb4d19dd93e3f154c2ebd2e314f", - "version": "fb2edb0", - "author": "汐", - "description": "1遗迹重机 3元能构装体", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "417须弥沙漠三运河之地北(600_1).json", - "type": "file", - "hash": "5b08f4cd0c3bc8a6ac04a6ecc97dc572c33bc3e6", - "version": "5b08f4c", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "501枫丹城 浊水幻灵(200_3).json", - "type": "file", - "hash": "26ea836c2f010031a8979c10aa3baaebe8c9c6b1", - "version": "26ea836", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "503枫丹实验室遗址东(600_1,200_4).json", - "type": "file", - "hash": "1afac6f492b4946b092849fc66c51e7f78572b8a", - "version": "1afac6f", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "504枫丹茉洁站(200_7).json", - "type": "file", - "hash": "9c5865059777dc590228a5b14f266fabf85c711b", - "version": "9c58650", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "505枫丹茉洁站北 浊水幻灵(200_6).json", - "type": "file", - "hash": "1a16b84142e1e9b22b920f2d891c14c6bdf22b29", - "version": "1a16b84", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "506枫丹湖中垂柳 浊水幻灵(200_2).json", - "type": "file", - "hash": "72cde7a7ae5d510aebb2903f15f33121541d876c", - "version": "72cde7a", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "507枫丹幽林雾道(600_1,200_2).json", - "type": "file", - "hash": "7badb07af33e64bbca6262a9a583da0db9971920", - "version": "7badb07", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "508枫丹厄里那斯北(600_2,400_4,200_7).json", - "type": "file", - "hash": "43a1ad8787919707fab86d80062566b8d5eb12bb", - "version": "43a1ad8", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "509枫丹厄里那斯西(600_1,400_1,200_4).json", - "type": "file", - "hash": "b8f7db9c94f74f7bacb34efcacc6ec1a8c369fcd", - "version": "b8f7db9", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "510枫丹厄里那斯南(400_2,200_5).json", - "type": "file", - "hash": "8d2b5b6e32f776c291263f6bae3bc5dc8309f31c", - "version": "8d2b5b6", - "author": "汐", - "description": "2大型碎石隙境原体 5碎石隙境原体", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "511枫丹苍晶区f6(600_1,200_11).json", - "type": "file", - "hash": "66d570dd3d97e8035f56ef0cf8057cf844a5d08a", - "version": "66d570d", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "512枫丹苍晶区神像(200_2).json", - "type": "file", - "hash": "7b0b72e3dd749a98a2e26679b11f2e80abc39afc", - "version": "7b0b72e", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "513枫丹厄里那斯东 浊水幻灵(200_2).json", - "type": "file", - "hash": "32bd9b3d7121abd10b6805c5653c0f6825601f6a", - "version": "32bd9b3", - "author": "汐", - "description": "2浊水幻灵", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "514枫丹秋分山西侧 浊水幻灵(200_6).json", - "type": "file", - "hash": "2d0d0c4d89392ccaa9ade8291116d37cf10aa893", - "version": "2d0d0c4", - "author": "汐", - "description": "3浊水幻灵 1丘丘暴徒 2风役人", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "515枫丹秋分山东 浊水幻灵(200_6).json", - "type": "file", - "hash": "cb5e47131c57089a0d759558b6b13874551aea6e", - "version": "cb5e471", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json", - "type": "file", - "hash": "fc3201423f3c4cccbe9dcd3763a17ff5ff455658", - "version": "fc32014", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "517枫丹莫尔泰区 浊水幻灵(200_4).json", - "type": "file", - "hash": "a39bb209dd40417e1fdb044817fe3d78d014f118", - "version": "a39bb20", - "author": "汐", - "description": "2丘丘暴徒 2浊水幻灵", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "518枫丹佩特莉可镇 浊水幻灵(200_3).json", - "type": "file", - "hash": "3abe196013ac01d4996e380b1643ff3cb1b03f71", - "version": "3abe196", - "author": "汐", - "description": "3浊水幻灵", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "601纳塔奥奇(600_1,200_1)次数盾.json", - "type": "file", - "hash": "12b1e75ffe4f0d90e39ebff2c6c25bfb51ff0315", - "version": "12b1e75", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "601纳塔奥奇(600_1,400_1)次数盾.json", - "type": "file", - "hash": "a864695f54bd9e6cad4855cb747b2624f9956078", - "version": "a864695", - "author": "汐", - "description": "1遗迹重机 1次数盾", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "602纳塔奥奇(600_3)次数盾.json", - "type": "file", - "hash": "fad6f49e98bb390f872f822f46b970875a5cbe38", - "version": "fad6f49", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "603纳塔奥奇(600_4)次数盾.json", - "type": "file", - "hash": "b6a7b60ab9c4a8e35d6f87a52514b386a51e648c", - "version": "b6a7b60", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "604纳塔奥奇(400_3,200_9)次数盾.json", - "type": "file", - "hash": "e392c4a56887575c57d30697eaf19a848693d4a0", - "version": "e392c4a", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "605纳塔奥奇(600_1)次数盾.json", - "type": "file", - "hash": "16c83f85e2384a4eb5c6263088655d6372839632", - "version": "16c83f8", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "606纳塔奥奇(400_2,200_2)次数盾.json", - "type": "file", - "hash": "07f208458997278b35d1de9d8558dbba39424387", - "version": "07f2084", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "607纳塔奥奇东南岛(200_2).json", - "type": "file", - "hash": "84abab3d368b0041df16d4d28c1acd2a7a4ce62c", - "version": "84abab3", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "608纳塔城(200_5).json", - "type": "file", - "hash": "718d40531daf172e5b48593d3e2703454e84d81c", - "version": "718d405", - "author": "汐", - "description": "5秘源机兵", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "610硫晶支脉(200_3).json", - "type": "file", - "hash": "36281893ae3ec939e809d7afbd33ff0bd6d1488d", - "version": "3628189", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "611纳塔火山安饶之野东北边缘(200_1).json", - "type": "file", - "hash": "ac135e4b5933c64011e64ba9c5a0a07195b99bb9", - "version": "ac135e4", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "612纳塔火山安饶之野入口(600_1,200_1).json", - "type": "file", - "hash": "117fdc3d06739e0e01c3cae2f69738fb296a3e00", - "version": "117fdc3", - "author": "汐", - "description": "", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》" - ] - }, - { - "name": "效率低,不刷", + "name": "从零开始的提瓦特400杀", "type": "directory", "children": [ { - "name": "106蒙德风龙废墟北(200_2).json", - "type": "file", - "hash": "a84c9077ec35fc1256bfaf69a74b59ae4058d428", - "version": "a84c907", - "author": "汐", - "description": "2丘丘暴徒", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" + "name": "000传奇,不刷", + "type": "directory", + "children": [ + { + "name": "001璃月沉玉谷南陵 传奇.json", + "type": "file", + "hash": "aa7baf952b952654e7e04dc9aae13a480fb15e18", + "version": "1.0", + "author": "汐", + "description": "2岩龙蜥 1200摩拉x2", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "000传奇,不刷", + "战斗" + ] + } ] }, { - "name": "202璃月灵矩关(200_4).json", + "name": "101蒙德雪山(600_1,200_2).json", "type": "file", - "hash": "7cbcd15119a4aba7b31225a206f5c1c8c6fbc78b", - "version": "7cbcd15", - "author": "汐", - "description": "2水法师 1冰法师 1火之债务处理人", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" - ] - }, - { - "name": "207璃月孤云阁山顶(200_3).json", - "type": "file", - "hash": "d823e23ad131c70cb4eeb26ff0b5fdaff05c7e25", - "version": "d823e23", - "author": "汐", - "description": "3法师", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" - ] - }, - { - "name": "235璃月层岩南山顶丘丘王(600_1).json", - "type": "file", - "hash": "186a9a15868972db34b20fc3e4f9ae1459ddda9f", - "version": "186a9a1", + "hash": "0357aefee22da077ea91fa9dc4caeac194e40d9c", + "version": "1.0", "author": "汐", "description": "", "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" ] }, { - "name": "402须弥香醉坡(200_1).json", + "name": "102蒙得雪山(600_1).json", "type": "file", - "hash": "314981f482d4ff090f82e13304f2469e22137888", - "version": "314981f", - "author": "汐", - "description": "1遗迹龙兽", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" - ] - }, - { - "name": "404须弥二净甸(200_3).json", - "type": "file", - "hash": "5f15c088692d8d206b97f90923c21640bea9961c", - "version": "5f15c08", - "author": "汐", - "description": "3遗迹龙兽", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" - ] - }, - { - "name": "405须弥觉王之殿南(600_1,200_1).json", - "type": "file", - "hash": "8af88ced27be1a53b717da0a25754bd441604c7a", - "version": "8af88ce", + "hash": "f603af39befd145969854e29728cc607c9176289", + "version": "1.0", "author": "汐", "description": "", "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" ] }, { - "name": "502枫丹芒索斯山东麓(200_3).json", + "name": "103蒙德雪山(600_2,200_4).json", "type": "file", - "hash": "ed37d5c38e43755adef04020a6148fec9b4c9500", - "version": "ed37d5c", - "author": "汐", - "description": "3役人", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" - ] - }, - { - "name": "609纳塔溶水域南(200_3) .json", - "type": "file", - "hash": "1c3dcf5f992a409df8d8ae9088ccd03b9dce8bbf", - "version": "1c3dcf5", - "author": "汐", - "description": "3秘源机兵", - "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" - ] - }, - { - "name": "613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json", - "type": "file", - "hash": "5d6cc08754249898f8b6e42b78459cba09d16d09", - "version": "5d6cc08", + "hash": "7ec6831ae77ee92f821b68827e2d75efe72b55b5", + "version": "1.0", "author": "汐", "description": "", "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" ] }, { - "name": "614纳塔火山安饶之野南 炉壳山鼬(200_1).json", + "name": "104蒙德奔狼领(200_4).json", "type": "file", - "hash": "3f794c7c6701aa06ab03ed6166f2a9e395a7e4f4", - "version": "3f794c7", + "hash": "4665499d570716b567880f3fe26541a6b78036c9", + "version": "1.0", "author": "汐", - "description": "", + "description": "3流血狗 1冰法师", "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" ] }, { - "name": "615纳塔火山安饶之野西 炉壳山鼬(200_1).json", + "name": "105蒙德望风山地(200_1).json", "type": "file", - "hash": "a39e1258d5a3ac35b66f69852091df26b337b23f", - "version": "a39e125", + "hash": "ed3e8cb64898256432cb24950e3df20c5ac9cfee", + "version": "1.0", "author": "汐", "description": "", "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" ] }, { - "name": "616纳塔火山安饶之野西北海滩(200_2).json", + "name": "107蒙德风龙废墟南(600_1,200_2).json", "type": "file", - "hash": "a365aa7cfa61d9e3a160ae5ff2f24deeb469124b", - "version": "a365aa7", + "hash": "132ff81ad7b1c151613ef9ca273250db36600015", + "version": "1.0", "author": "汐", "description": "", "tags": [ - "《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》", - "效率低,不刷" + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "201璃月离沙郊(600_1,200_2).json", + "type": "file", + "hash": "08abe63d8806475ffec689a7217bc7c490b60d7a", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "203璃月遁玉陵f4(200_4).json", + "type": "file", + "hash": "b8a41413414349777145428b2ce1093e251af1de", + "version": "1.0", + "author": "汐", + "description": "3遗迹重机 1遗迹猎者", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "204璃月天衡山(600_1,200_1).json", + "type": "file", + "hash": "e79636ee77d65e21b3be1610c1814036ed59828b", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "205【高危】璃月孤云阁f4(200_4).json", + "type": "file", + "hash": "333ae5cff09c3757d90548fb43f13a47384d84e9", + "version": "1.0", + "author": "汐", + "description": "f4遗迹守卫", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "206璃月孤云阁北(200_5).json", + "type": "file", + "hash": "746c7fc5a2f4d48788e4d3742492c71b97166d48", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "208璃月渌华池(200_3).json", + "type": "file", + "hash": "a15d14dd2a4d54e6d2b2d4bc5b292405b3ed350c", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "209璃月天遒谷(600_1,200_4).json", + "type": "file", + "hash": "84e6b369f170b2c7bcaa734841d4b853bd38d720", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "210璃月南天门(600_2,200_2).json", + "type": "file", + "hash": "8c747d09c5dcdf182c1e58a55d752611e95d809d", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "211璃月虎牢山(600_1,200_5).json", + "type": "file", + "hash": "f6d743094a41e714fbb8dfc5ea2f155c01a35929", + "version": "1.0", + "author": "汐", + "description": "1岩丘王 2丘丘暴徒 2遗迹猎者 1冰法 ", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "212璃月绝云间南(600_1,200_2).json", + "type": "file", + "hash": "d9c9e0d37ba748a6450ba14bdbe3044b2bcde0ac", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "213璃月庆云顶(600_3).json", + "type": "file", + "hash": "9dc1c8c2c063645437d3a44ff41446e827b5ea4d", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "214璃月奥藏山北(600_3,200_2).json", + "type": "file", + "hash": "bac1d0ac15094371ed12e23793954d416e6df3e2", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "215璃月奥藏山下(600_1,200_1).json", + "type": "file", + "hash": "8f60ef3ba6abe464d38a7cbfade2af68661cb8ca", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "216璃月珉林北(600_1).json", + "type": "file", + "hash": "ee9758ed781d109eb13631aab6fcf96f6d5610fb", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "217璃月珉林南(600_1).json", + "type": "file", + "hash": "92656faf87a9d5232f53d918636cbd10ab1bd853", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "218璃月碧水原(600_1,200_1).json", + "type": "file", + "hash": "dc0e20db07a96c57a51dba72b8cab09ed7050bde", + "version": "1.0", + "author": "汐", + "description": "1丘丘岩王 1幼岩龙蜥", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "219璃月轻策庄 浊水幻灵(200_4).json", + "type": "file", + "hash": "6b7437d37019bf69de857264669e084219c4a700", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "220璃月地中之盐(600_1).json", + "type": "file", + "hash": "5f9b92d59c168294982b1d8d5a2b7b8db8b27459", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "221璃月震雷宫(600_1).json", + "type": "file", + "hash": "711619076a3080183dcf44b1755fcc6b2b75aab3", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "222璃月层岩北(600_1,200_2).json", + "type": "file", + "hash": "09fa5bf898321a1b5d85fe90b6248504a18ab8c2", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "223璃月层岩南(600_1,200_1).json", + "type": "file", + "hash": "3d04cce61560ec751e8e5604e73d7815e583f1d0", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "224璃月沉玉谷南陵浅滩(200_3).json", + "type": "file", + "hash": "629484363f7a473a3003bf5c661fe658273e326e", + "version": "1.0", + "author": "汐", + "description": "3玄文兽", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "225璃月沉玉谷隐山猊兽南(200_6).json", + "type": "file", + "hash": "dfee9ce9a9a1cae392a935919ecc77d463a0c7e3", + "version": "1.0", + "author": "汐", + "description": "6玄文兽", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "226璃月沉玉谷赤望台(600_1,200_2).json", + "type": "file", + "hash": "ba5a8b51ba60c3a8519f7fbc6bd42545584aa91f", + "version": "1.0", + "author": "汐", + "description": "1丘丘王 2玄文兽", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "227璃月沉玉谷宝决口南(200_4).json", + "type": "file", + "hash": "5a384b62738a54938368ca3e1c262379735dce6e", + "version": "1.0", + "author": "汐", + "description": "1丘丘暴徒 3法师冰火雷", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "228璃月沉玉谷神像(200_8).json", + "type": "file", + "hash": "97d8818eddea9956060e9f98cd4a08423830a21b", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "229璃月沉玉谷宝决口东(600_1,200_2).json", + "type": "file", + "hash": "e177d2b706fc6bc636c3b2cc5030698b0a30028f", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "230璃月沉玉谷药蝶谷西(600_1).json", + "type": "file", + "hash": "addf073673ab48cbdb7091267b2d1649f4e3874b", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "231璃月沉玉谷暝垣山(200_4).json", + "type": "file", + "hash": "f05fe66ae248ea984c69e220d389a5d25aca14a3", + "version": "1.0", + "author": "汐", + "description": "4玄文兽", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "232璃月沉玉谷灵濛山南(600_1,200_4).json", + "type": "file", + "hash": "af4c51d4a50ab715925e120bb81ec75a6f80fc35", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "233璃月沉玉谷灵濛山东北(600_1,200_1).json", + "type": "file", + "hash": "b466ab8d25ca64f4316563901bf9837cfba717f2", + "version": "1.0", + "author": "汐", + "description": "1丘丘王 1丘丘游侠", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "234璃月沉玉谷上灵濛山东(200_3).json", + "type": "file", + "hash": "1afff669356c24b00da968072f7bdb115b751b63", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "301稻妻镇守之森(600_1,200_1).json", + "type": "file", + "hash": "98b3e080d2c2d600885871eb43e9f445207cf58f", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "302稻妻荒海(600_1,200_5).json", + "type": "file", + "hash": "454fece1b842b7a45d206fd80077868fdb1d1262", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "303稻妻砂流之庭(200_2).json", + "type": "file", + "hash": "aeaa13991df69e9fd4e3027ba5d985e3e6848626", + "version": "1.0", + "author": "汐", + "description": "1火之债务处理人 1藏镜仕女", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "304稻妻九条海滩(600_1,200_2).json", + "type": "file", + "hash": "52ceea799f3ea2a3e83c3ec11f320cba0fc277fe", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "305稻妻相之火旁(600_1).json", + "type": "file", + "hash": "42a2d665552e1db7921f8e831b7543591894042a", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "306稻妻踏鞴砂南(600_1,200_15).json", + "type": "file", + "hash": "e5cad9ee9f75904b243abf5e7fe42845f5cb6175", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "307稻妻绝缘本后山洞(200_3).json", + "type": "file", + "hash": "09a4ef54dd02eb17b0e615489e0ebd271ffcb8b6", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "308稻妻水月池(200_8).json", + "type": "file", + "hash": "22defeb7ca99d8819ad786aabc63519a49c84d35", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "309稻妻海祇岛北(200_2).json", + "type": "file", + "hash": "b2355198843ff4f3b65ac0c6fe1e0988c47c41e1", + "version": "1.0", + "author": "汐", + "description": "1雷莹术士 1藏镜仕女", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "310稻妻珊瑚宫(600_1).json", + "type": "file", + "hash": "c6b5e782cc20d6654633008b9d56392dcb28019d", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "311稻妻萌云神社(600_1,200_5).json", + "type": "file", + "hash": "dd671963f8f4714791284e362638a89df1dec375", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "312稻妻清赖丸(600_1,200_4).json", + "type": "file", + "hash": "65ff7323d46e09b2ba852f4204e1db9f8ed8b5b5", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "313稻妻越石村(200_2).json", + "type": "file", + "hash": "244443626e73c181924d375705e2e6ae365bda92", + "version": "1.0", + "author": "汐", + "description": "2遗迹机兵\n", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "314稻妻平海砦北(200_3).json", + "type": "file", + "hash": "72c592ebdb97dfc4a5c2e106e14f070aa1cdfbc4", + "version": "1.0", + "author": "汐", + "description": "3遗迹机兵\n", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "315稻妻平海砦南(200_6).json", + "type": "file", + "hash": "27c7b578193a4f2d56cfbd04ab3a9e8c08624010", + "version": "1.0", + "author": "汐", + "description": "3遗迹机兵 2丘丘暴徒 1藏镜仕女", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "316稻妻天云峠(200_20).json", + "type": "file", + "hash": "4cdc60856b6b659bce542bb0fd02859c95b9aa38", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "317稻妻鹤观千来神祠(200_12~16).json", + "type": "file", + "hash": "720e47b2098a6a2d2fc4c0e38cc7d635b7271766", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "318稻妻鹤观知比山(200_5).json", + "type": "file", + "hash": "13ac51c3075e05acc382810bf9267f4ca226fac7", + "version": "1.0", + "author": "汐", + "description": "2兽境幼兽 2遗迹机兵 1丘丘暴徒", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "319稻妻鹤观茂知祭场(200_9).json", + "type": "file", + "hash": "5f8a61b153b92f20706caa827ce7b88c9120496f", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "320稻妻鹤馆惑饲滩(600_1,200_6~13).json", + "type": "file", + "hash": "64aa116aad6608c73f673ec04cf209a7a0587d8f", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "321稻妻鹤馆(400_3,200_4).json", + "type": "file", + "hash": "4277590e8517220260c29c35de12bd6d877ef79e", + "version": "1.0", + "author": "汐", + "description": "3大流血狗 3兽境幼兽 1丘丘暴徒\n", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "401须弥降诸魔山神像(600_1).json", + "type": "file", + "hash": "a100f3346f692ba5f231d8323f1b8d17808584de", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "403须弥茸蕈窟(200_4).json", + "type": "file", + "hash": "fc94cec2465138d2d87e81a721a04cc0d0392a65", + "version": "1.0", + "author": "汐", + "description": "1遗迹龙兽 1雷莹术士 1藏镜仕女 1遗迹机兵", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "406须弥往昔的桓那兰那(400_2,200_2).json", + "type": "file", + "hash": "f390e68c2b12b546f6be678016e39c9056c29d04", + "version": "1.0", + "author": "汐", + "description": "2大流血狗 2小狗", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "407须弥善见地(600_1,200_1).json", + "type": "file", + "hash": "44e976a28308c7304a6ca81576b657548a272d69", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "408须弥茶诃之座2丘丘王(600_2).json", + "type": "file", + "hash": "0a0e4071cae1bb099ce6be0582c56feb98071786", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "409须弥茶诃之座(200_9).json", + "type": "file", + "hash": "402ed0da48c97a6457fc95e74906a54c5be51bb1", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "410须弥沙漠丰饶绿洲(200_2).json", + "type": "file", + "hash": "b255afd13a31ebf52b39445b8fc4c9bed10a165a", + "version": "1.0", + "author": "汐", + "description": "2元能构装体", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "411须弥沙漠饱饮之丘东(600_1).json", + "type": "file", + "hash": "279e2d6e27fec10afd4da0c7a011fa771129b531", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "412须弥沙漠圣显厅北(600_1,200_1).json", + "type": "file", + "hash": "de03bf2f51fd58027b4d352befff5fb509a5dba1", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "413须弥沙漠圣显厅门口(200_7) .json", + "type": "file", + "hash": "4db64df86878b1ba8dc78e5cf713a1b33e0be782", + "version": "1.0", + "author": "汐", + "description": "5元能构装体 2丘丘暴徒", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "414须弥沙漠沙虫隧道(600_1).json", + "type": "file", + "hash": "b7de3df8d1245ed319b355513fa2b64a27c397ea", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "415须弥沙漠避让之丘(200_2).json", + "type": "file", + "hash": "5ecdcab7899ed2b5deb7d73ebef5c375e839a99b", + "version": "1.0", + "author": "汐", + "description": "2元能构装体", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "416须弥沙漠五绿洲的子遗地下(600_1,200_3).json", + "type": "file", + "hash": "fb2edb0725d4ccb4d19dd93e3f154c2ebd2e314f", + "version": "1.0", + "author": "汐", + "description": "1遗迹重机 3元能构装体", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "417须弥沙漠三运河之地北(600_1).json", + "type": "file", + "hash": "5b08f4cd0c3bc8a6ac04a6ecc97dc572c33bc3e6", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "501枫丹城 浊水幻灵(200_3).json", + "type": "file", + "hash": "26ea836c2f010031a8979c10aa3baaebe8c9c6b1", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "503枫丹实验室遗址东(600_1,200_4).json", + "type": "file", + "hash": "1afac6f492b4946b092849fc66c51e7f78572b8a", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "504枫丹茉洁站(200_7).json", + "type": "file", + "hash": "9c5865059777dc590228a5b14f266fabf85c711b", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "505枫丹茉洁站北 浊水幻灵(200_6).json", + "type": "file", + "hash": "1a16b84142e1e9b22b920f2d891c14c6bdf22b29", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "506枫丹湖中垂柳 浊水幻灵(200_2).json", + "type": "file", + "hash": "72cde7a7ae5d510aebb2903f15f33121541d876c", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "507枫丹幽林雾道(600_1,200_2).json", + "type": "file", + "hash": "f8182cc3ca9516e82dcf90b953ace61c2bf90d93", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "508枫丹厄里那斯北(600_2,400_4,200_7).json", + "type": "file", + "hash": "43a1ad8787919707fab86d80062566b8d5eb12bb", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "509枫丹厄里那斯西(600_1,400_1,200_4).json", + "type": "file", + "hash": "b0fbfc6b416fff9ff2e9ea9e86e5c8a8abcefe2b", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "510枫丹厄里那斯南(400_2,200_5).json", + "type": "file", + "hash": "8d2b5b6e32f776c291263f6bae3bc5dc8309f31c", + "version": "1.0", + "author": "汐", + "description": "2大型碎石隙境原体 5碎石隙境原体", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "511枫丹苍晶区f6(600_1,200_11).json", + "type": "file", + "hash": "66d570dd3d97e8035f56ef0cf8057cf844a5d08a", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "512枫丹苍晶区神像(200_2).json", + "type": "file", + "hash": "7b0b72e3dd749a98a2e26679b11f2e80abc39afc", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "513枫丹厄里那斯东 浊水幻灵(200_2).json", + "type": "file", + "hash": "32bd9b3d7121abd10b6805c5653c0f6825601f6a", + "version": "1.0", + "author": "汐", + "description": "2浊水幻灵", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "514枫丹秋分山西侧 浊水幻灵(200_6).json", + "type": "file", + "hash": "2d0d0c4d89392ccaa9ade8291116d37cf10aa893", + "version": "1.0", + "author": "汐", + "description": "3浊水幻灵 1丘丘暴徒 2风役人", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "515枫丹秋分山东 浊水幻灵(200_6).json", + "type": "file", + "hash": "cb5e47131c57089a0d759558b6b13874551aea6e", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json", + "type": "file", + "hash": "fc3201423f3c4cccbe9dcd3763a17ff5ff455658", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "517枫丹莫尔泰区 浊水幻灵(200_4).json", + "type": "file", + "hash": "a39bb209dd40417e1fdb044817fe3d78d014f118", + "version": "1.0", + "author": "汐", + "description": "2丘丘暴徒 2浊水幻灵", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "518枫丹佩特莉可镇 浊水幻灵(200_3).json", + "type": "file", + "hash": "3abe196013ac01d4996e380b1643ff3cb1b03f71", + "version": "1.0", + "author": "汐", + "description": "3浊水幻灵", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "601纳塔奥奇(600_1,400_1)次数盾.json", + "type": "file", + "hash": "45b252b56ea874cd01424f58778552e53cf24b03", + "version": "1.0", + "author": "汐", + "description": "1遗迹重机 1次数盾", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "602纳塔奥奇(600_3)次数盾.json", + "type": "file", + "hash": "fad6f49e98bb390f872f822f46b970875a5cbe38", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "603纳塔奥奇(600_4)次数盾.json", + "type": "file", + "hash": "b6a7b60ab9c4a8e35d6f87a52514b386a51e648c", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "604纳塔奥奇(400_3,200_9)次数盾.json", + "type": "file", + "hash": "e392c4a56887575c57d30697eaf19a848693d4a0", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "605纳塔奥奇(600_1)次数盾.json", + "type": "file", + "hash": "16c83f85e2384a4eb5c6263088655d6372839632", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "606纳塔奥奇(400_2,200_2)次数盾.json", + "type": "file", + "hash": "07f208458997278b35d1de9d8558dbba39424387", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "607纳塔奥奇东南岛(200_2).json", + "type": "file", + "hash": "84abab3d368b0041df16d4d28c1acd2a7a4ce62c", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "608纳塔城(200_5).json", + "type": "file", + "hash": "718d40531daf172e5b48593d3e2703454e84d81c", + "version": "1.0", + "author": "汐", + "description": "5秘源机兵", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "610硫晶支脉(200_3).json", + "type": "file", + "hash": "36281893ae3ec939e809d7afbd33ff0bd6d1488d", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "611纳塔火山安饶之野东北边缘(200_1).json", + "type": "file", + "hash": "ac135e4b5933c64011e64ba9c5a0a07195b99bb9", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "612纳塔火山安饶之野入口(600_1,200_1).json", + "type": "file", + "hash": "117fdc3d06739e0e01c3cae2f69738fb296a3e00", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "战斗" + ] + }, + { + "name": "README.md", + "type": "file", + "hash": "c02ad11a7ef01c2656bbd800426c623e8f5ce6de", + "version": "c02ad11", + "error": "Unexpected number in JSON at position 1" + }, + { + "name": "效率低,不刷", + "type": "directory", + "children": [ + { + "name": "106蒙德风龙废墟北(200_2).json", + "type": "file", + "hash": "a84c9077ec35fc1256bfaf69a74b59ae4058d428", + "version": "1.0", + "author": "汐", + "description": "2丘丘暴徒", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "202【高危】璃月灵矩关(200_4).json", + "type": "file", + "hash": "4de3180f4b42e378615e18e0baf24ef24c68aa85", + "version": "1.0", + "author": "汐", + "description": "2水法师 1冰法师 1火之债务处理人", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "207【高危】璃月孤云阁山顶(200_3).json", + "type": "file", + "hash": "fb47bda732fadb2e734521e698a90e31497ca67b", + "version": "1.0", + "author": "汐", + "description": "3法师", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "235璃月层岩南山顶丘丘王(600_1).json", + "type": "file", + "hash": "186a9a15868972db34b20fc3e4f9ae1459ddda9f", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "402须弥香醉坡(200_1).json", + "type": "file", + "hash": "314981f482d4ff090f82e13304f2469e22137888", + "version": "1.0", + "author": "汐", + "description": "1遗迹龙兽", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "404须弥二净甸(200_3).json", + "type": "file", + "hash": "5f15c088692d8d206b97f90923c21640bea9961c", + "version": "1.0", + "author": "汐", + "description": "3遗迹龙兽", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "405须弥觉王之殿南(600_1,200_1).json", + "type": "file", + "hash": "8af88ced27be1a53b717da0a25754bd441604c7a", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "502【高危】枫丹芒索斯山东麓(200_3).json", + "type": "file", + "hash": "cd4e7c55130089f5c29997e8c0730f75ac8ae247", + "version": "1.0", + "author": "汐", + "description": "3役人", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "609纳塔溶水域南(200_3).json", + "type": "file", + "hash": "63420518e064638e8e5bdfd93ed3ee0bcb778fa5", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json", + "type": "file", + "hash": "5d6cc08754249898f8b6e42b78459cba09d16d09", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "614纳塔火山安饶之野南 炉壳山鼬(200_1).json", + "type": "file", + "hash": "3f794c7c6701aa06ab03ed6166f2a9e395a7e4f4", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "615纳塔火山安饶之野西 炉壳山鼬(200_1).json", + "type": "file", + "hash": "a39e1258d5a3ac35b66f69852091df26b337b23f", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + }, + { + "name": "616纳塔火山安饶之野西北海滩(200_2).json", + "type": "file", + "hash": "a365aa7cfa61d9e3a160ae5ff2f24deeb469124b", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》", + "从零开始的提瓦特400杀", + "效率低,不刷", + "战斗" + ] + } ] } ] @@ -15149,7 +18625,7 @@ "name": "01-白萝卜-蒙德晨曦酒庄-8个.json", "type": "file", "hash": "831726c829177cca57cad725aebe1a983b06b4cc", - "version": "831726c", + "version": "1.0", "author": "小刘忙", "description": "01-白萝卜-蒙德晨曦酒庄-8个", "tags": [ @@ -15160,7 +18636,7 @@ "name": "02-白萝卜-蒙德清泉镇-7个.json", "type": "file", "hash": "06bbc6f00171aa0047e2ec256a872d5a8da9778b", - "version": "06bbc6f", + "version": "1.0", "author": "小刘忙", "description": "02-白萝卜-蒙德清泉镇-7个", "tags": [ @@ -15171,7 +18647,7 @@ "name": "03-白萝卜-璃月石门-4个.json", "type": "file", "hash": "ad4b168accc1167f0d6360d7f2199853c09e7a86", - "version": "ad4b168", + "version": "1.0", "author": "小刘忙", "description": "03-白萝卜-璃月石门-4个", "tags": [ @@ -15182,7 +18658,7 @@ "name": "04-白萝卜-璃月荻花洲-3个.json", "type": "file", "hash": "aafdd0105a290c5ad945fc7ee85a919c7e80f4d8", - "version": "aafdd01", + "version": "1.0", "author": "小刘忙", "description": "04-白萝卜-璃月荻花洲-3个", "tags": [ @@ -15193,7 +18669,7 @@ "name": "05-白萝卜-璃月天遒谷-3个.json", "type": "file", "hash": "0fae9bf642067b8a771e416a60b6cea99ca900f7", - "version": "0fae9bf", + "version": "1.0", "author": "小刘忙", "description": "05-白萝卜-璃月天遒谷-3个", "tags": [ @@ -15204,7 +18680,7 @@ "name": "06-白萝卜-璃月南天门-3个.json", "type": "file", "hash": "a96210b37aa1d5c78491fadcea4cdb77a611289d", - "version": "a96210b", + "version": "1.0", "author": "小刘忙", "description": "06-白萝卜-璃月南天门-3个", "tags": [ @@ -15215,7 +18691,7 @@ "name": "07-白萝卜-稻妻无相火-2个.json", "type": "file", "hash": "062a4f72a3dabdf2a4bc740c7139f1a2ca09969b", - "version": "062a4f7", + "version": "1.0", "author": "小刘忙", "description": "07-白萝卜-稻妻无相火-2个", "tags": [ @@ -15226,7 +18702,7 @@ "name": "08-白萝卜-稻妻绯木村-1个.json", "type": "file", "hash": "75fa1001908616de97750de1983b193ed9515068", - "version": "75fa100", + "version": "1.0", "author": "小刘忙", "description": "08-白萝卜-稻妻绯木村-1个", "tags": [ @@ -15237,7 +18713,7 @@ "name": "09-白萝卜-稻妻望泷村-3个.json", "type": "file", "hash": "b02be26c168d92a2fd449d6741ba79021c9faa47", - "version": "b02be26", + "version": "1.0", "author": "小刘忙", "description": "09-白萝卜-稻妻望泷村-3个", "tags": [ @@ -15248,7 +18724,7 @@ "name": "10-白萝卜-稻妻越石村-2个.json", "type": "file", "hash": "cf0efad1336e2142eaa11b715cce760425881f97", - "version": "cf0efad", + "version": "1.0", "author": "小刘忙", "description": "10-白萝卜-稻妻越石村-2个", "tags": [ @@ -15259,7 +18735,7 @@ "name": "11-白萝卜-须弥维摩庄-2个.json", "type": "file", "hash": "3795c263e5dc9d3481326a586e8b26ac37c772c8", - "version": "3795c26", + "version": "1.0", "author": "小刘忙", "description": "11-白萝卜-须弥维摩庄-2个", "tags": [ @@ -15270,7 +18746,7 @@ "name": "12-白萝卜-枫丹枫丹廷北-5个.json", "type": "file", "hash": "2d45fd72dffb9b15ebaba501cfd12d447a3dba2b", - "version": "2d45fd7", + "version": "1.0", "author": "小刘忙", "description": "12-白萝卜-枫丹枫丹廷北-5个", "tags": [ @@ -15281,7 +18757,7 @@ "name": "13-白萝卜-枫丹湖中垂柳-2个.json", "type": "file", "hash": "f6bbd599c117c69f0298da9757a07d09159a3dee", - "version": "f6bbd59", + "version": "1.0", "author": "小刘忙", "description": "13-白萝卜-枫丹湖中垂柳-2个", "tags": [ @@ -15298,7 +18774,7 @@ "name": "1白铁矿1.json", "type": "file", "hash": "33b815ae2064ef0873544337c40f66615727cd7b", - "version": "33b815a", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15309,7 +18785,7 @@ "name": "1白铁矿2.json", "type": "file", "hash": "04f9dead8da649ee2a7582009cab6ca58c0abafc", - "version": "04f9dea", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15320,7 +18796,7 @@ "name": "1白铁矿3.json", "type": "file", "hash": "f8bcc1daeeca83b94eb3cd61e951c2751b01c6fa", - "version": "f8bcc1d", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15331,7 +18807,7 @@ "name": "1白铁矿4.json", "type": "file", "hash": "123d50f3411adf475a06aee8eb2f6fe071deef65", - "version": "123d50f", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15342,7 +18818,7 @@ "name": "1白铁矿5.json", "type": "file", "hash": "3bcd0a42922dcc39f626dafe26a473516466dbc1", - "version": "3bcd0a4", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15353,7 +18829,7 @@ "name": "1白铁矿6.json", "type": "file", "hash": "fa1b07a6f36d25e253cff0baa4837689b580ffb9", - "version": "fa1b07a", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15364,7 +18840,7 @@ "name": "1白铁矿7.json", "type": "file", "hash": "62a4d4706da5e05bbe7d6d3388e433727b505e30", - "version": "62a4d47", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15375,7 +18851,7 @@ "name": "1白铁矿8(容易卡死).json", "type": "file", "hash": "1ac095616f8af1ce291bd3e213c2051220ce48f3", - "version": "1ac0956", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15386,7 +18862,7 @@ "name": "1白铁矿9(概率会死,容易漏,点位密).json", "type": "file", "hash": "0fe14ab0ba58d10f2e93f93d0a9eb8df93fdf1f3", - "version": "0fe14ab", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15397,7 +18873,7 @@ "name": "2回复点.json", "type": "file", "hash": "58ac267ed6a621e63bc3655def973dff8a02ea4f", - "version": "58ac267", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15408,7 +18884,7 @@ "name": "2白铁矿1.json", "type": "file", "hash": "5335f7e6271a267fc768e630e92e03a786932024", - "version": "5335f7e", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15419,7 +18895,7 @@ "name": "2白铁矿2.json", "type": "file", "hash": "caa75a18e46bd1df463d1e47ba3f01fac243d63b", - "version": "caa75a1", + "version": "1.0", "author": "Lcy", "description": "", "tags": [ @@ -15436,7 +18912,7 @@ "name": "天降正义!.json", "type": "file", "hash": "dc189bb0cf9c96e030683dbd40ef922241675861", - "version": "dc189bb", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -15455,7 +18931,7 @@ "name": "《哈南帕查记事·卷一》.json", "type": "file", "hash": "079298fa6448c70d6551b7962d682323c9466f68", - "version": "079298f", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -15468,7 +18944,7 @@ "name": "《哈南帕查记事·卷三》.json", "type": "file", "hash": "f34bc02f6a883366999ba46de52d16f947b426c3", - "version": "f34bc02", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -15481,7 +18957,7 @@ "name": "《哈南帕查记事·卷二》.json", "type": "file", "hash": "d92cfb178a76904ce28495582b30ffff06f815d4", - "version": "d92cfb1", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -15500,7 +18976,7 @@ "name": "《玛阿威与幻写灵·第一卷》.json", "type": "file", "hash": "55c7f38345d443b54053fe5cac4218a1231adc83", - "version": "55c7f38", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -15513,7 +18989,7 @@ "name": "《玛阿威与幻写灵·第三卷》.json", "type": "file", "hash": "bea93964677f20e3d0c02136a4028ca82a468fea", - "version": "bea9396", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -15526,7 +19002,7 @@ "name": "《玛阿威与幻写灵·第二卷》.json", "type": "file", "hash": "29de2938480de0b06336cebeb3f244ae0a9eaa24", - "version": "29de293", + "version": "1.0", "author": "花见木易", "description": "", "tags": [ @@ -15536,38 +19012,6 @@ ] } ] - }, - { - "name": "火山之印与烈火之针", - "type": "directory", - "children": [ - { - "name": "《火山大王与缝影针》-传送(路径追踪).json", - "type": "file", - "hash": "08af291f0c59696102c88ebfad5f70dac7f1ae1d", - "version": "08af291", - "author": "花见木易", - "description": "", - "tags": [ - "成就", - "尘世巡游·第五辑_大世界探索收集", - "火山之印与烈火之针" - ] - }, - { - "name": "《火山大王与缝影针》-拾取(键鼠回放,少女角色).json", - "type": "file", - "hash": "ca6f41e8af8047c37ea79a14870ce1a00cfd9a80", - "version": "ca6f41e", - "author": "未知作者", - "description": "", - "tags": [ - "成就", - "尘世巡游·第五辑_大世界探索收集", - "火山之印与烈火之针" - ] - } - ] } ] } @@ -15589,65 +19033,70 @@ "name": "da01奥奇纳塔下方(3).json", "type": "file", "hash": "74a244c99ee927bbc8e7edba9a8224dff103ffc4", - "version": "74a244c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】" + "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】", + "战斗" ] }, { "name": "da02奥奇纳塔左(4).json", "type": "file", "hash": "a06cc99a6df95abb4372f460c72d52280cf3d28b", - "version": "a06cc99", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】" + "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】", + "战斗" ] }, { "name": "da03奥奇纳塔下半城区(5).json", "type": "file", "hash": "782ac13f38f7eab1875365ccee95980a05bf2cca", - "version": "782ac13", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】" + "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】", + "战斗" ] }, { "name": "da04奥奇纳塔右下(4).json", "type": "file", "hash": "ce35b5b6cbec2b1ae503ba940771542a66ccf9e3", - "version": "ce35b5b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】" + "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】", + "战斗" ] }, { "name": "da05奥奇纳塔上半城区(4).json", "type": "file", "hash": "78cadfa7243a7b242029d82509e400a31ee74934", - "version": "78cadfa", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】" + "da深邃拟覆叶(20)【除600、400怪,差4只灭绝】", + "战斗" ] } ] @@ -15660,65 +19109,70 @@ "name": "db01奥奇纳塔(1).json", "type": "file", "hash": "ed80790c8203c092343f41e2ab2c7d738c5ab5fb", - "version": "ed80790", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "db秘源机兵(18)【差2只】" + "db秘源机兵(18)【差2只】", + "战斗" ] }, { "name": "db02硫晶支脉上(3).json", "type": "file", "hash": "19479cbaa64ca9ac3313762340a7fc6591c28371", - "version": "19479cb", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "db秘源机兵(18)【差2只】" + "db秘源机兵(18)【差2只】", + "战斗" ] }, { "name": "db03纳塔主城附近(5).json", "type": "file", "hash": "6d843d83e92aed0f8013ce80a4ff9b0671fc1ada", - "version": "6d843d8", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "db秘源机兵(18)【差2只】" + "db秘源机兵(18)【差2只】", + "战斗" ] }, { "name": "db04彩石顶、庙宇(4).json", "type": "file", "hash": "197c698ca8b35dad916f884ff62ac6830dd56bf2", - "version": "197c698", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "db秘源机兵(18)【差2只】" + "db秘源机兵(18)【差2只】", + "战斗" ] }, { "name": "db05流泉之众(5).json", "type": "file", "hash": "716123ff72dc3f3b7cb37c6f5bba82df8989e9e2", - "version": "716123f", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "db秘源机兵(18)【差2只】" + "db秘源机兵(18)【差2只】", + "战斗" ] } ] @@ -15731,52 +19185,56 @@ "name": "dc01柴薪、硫晶(3).json", "type": "file", "hash": "62b3f54deb79d12cfb232bfc6742e1a8aa9f6a3b", - "version": "62b3f54", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dc熔岩游像(11)【全】" + "dc熔岩游像(11)【全】", + "战斗" ] }, { "name": "dc02祖遗庙宇右(4).json", "type": "file", "hash": "6a27cc3339d30b33ddbf0f4673915f6bb7c7933b", - "version": "6a27cc3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dc熔岩游像(11)【全】" + "dc熔岩游像(11)【全】", + "战斗" ] }, { "name": "dc03祖遗庙宇南(2).json", "type": "file", "hash": "782503d770b7b95c5d0cc0b96c102dc4166ea6b5", - "version": "782503d", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dc熔岩游像(11)【全】" + "dc熔岩游像(11)【全】", + "战斗" ] }, { "name": "dc04悬木人左下(2).json", "type": "file", "hash": "53220a3fbaea8fbbb08c5d7cdc1e30c8a6552496", - "version": "53220a3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dc熔岩游像(11)【全】" + "dc熔岩游像(11)【全】", + "战斗" ] } ] @@ -15789,78 +19247,84 @@ "name": "dd01奥奇纳塔(1).json", "type": "file", "hash": "b77063ff5cf6ae9c8ea5a7f77506f5505797fa7e", - "version": "b77063f", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dd大灵显化身(18)【差1只】" + "dd大灵显化身(18)【差1只】", + "战斗" ] }, { "name": "dd02烟谜主(3).json", "type": "file", "hash": "d4ebac4bce023d1d78b735da8e44aab5984c316d", - "version": "d4ebac4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dd大灵显化身(18)【差1只】" + "dd大灵显化身(18)【差1只】", + "战斗" ] }, { "name": "dd03硫晶支脉(5).json", "type": "file", "hash": "22990a543851ff13de6bc02d2cf99a3ffe45b152", - "version": "22990a5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dd大灵显化身(18)【差1只】" + "dd大灵显化身(18)【差1只】", + "战斗" ] }, { "name": "dd04祖遗庙宇上(3).json", "type": "file", "hash": "f07351a12e12564a653646d896d3ab59993edacc", - "version": "f07351a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dd大灵显化身(18)【差1只】" + "dd大灵显化身(18)【差1只】", + "战斗" ] }, { "name": "dd05悬木人(4).json", "type": "file", "hash": "e6a3762a9e1e0725635b56fd5b3a256ec5251280", - "version": "e6a3762", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dd大灵显化身(18)【差1只】" + "dd大灵显化身(18)【差1只】", + "战斗" ] }, { "name": "dd06流泉之众(2).json", "type": "file", "hash": "102bc1fc138bc1b60528c8f0abf522fdfab6c30b", - "version": "102bc1f", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dd大灵显化身(18)【差1只】" + "dd大灵显化身(18)【差1只】", + "战斗" ] } ] @@ -15873,52 +19337,56 @@ "name": "df01灵濛山(2).json", "type": "file", "hash": "37fd9d340523bda27a008f732e67764656ac02c6", - "version": "37fd9d3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "df玄文兽(30)【差3只】" + "df玄文兽(30)【差3只】", + "战斗" ] }, { "name": "df02赤望台(6).json", "type": "file", "hash": "3294e1ea6cf2fac19403853244f09e6c5ec21d62", - "version": "3294e1e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "df玄文兽(30)【差3只】" + "df玄文兽(30)【差3只】", + "战斗" ] }, { "name": "df03赤璋城垣(10).json", "type": "file", "hash": "4a9afe547c7f0ccda3b6bdec91355c407c1952e1", - "version": "4a9afe5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "df玄文兽(30)【差3只】" + "df玄文兽(30)【差3只】", + "战斗" ] }, { "name": "df04赤璋城垣右下(12).json", "type": "file", "hash": "68bfce4f9cdbc9c094ec860455bc5a242b4f4d29", - "version": "68bfce4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "df玄文兽(30)【差3只】" + "df玄文兽(30)【差3只】", + "战斗" ] } ] @@ -15931,39 +19399,42 @@ "name": "dg01秋分山(6).json", "type": "file", "hash": "1609578a16698f806293376435a8f8769e9c6e6e", - "version": "1609578", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dg役人(20)【差2传奇】" + "dg役人(20)【差2传奇】", + "战斗" ] }, { "name": "dg02芒索斯山东麓(8).json", "type": "file", "hash": "8decb0650c751ec9bf127739730d17388e251327", - "version": "8decb06", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dg役人(20)【差2传奇】" + "dg役人(20)【差2传奇】", + "战斗" ] }, { "name": "dg03研究院区域(6).json", "type": "file", "hash": "53a63b30e036a78d71582be5d12b7e6f1d4cc001", - "version": "53a63b3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dg役人(20)【差2传奇】" + "dg役人(20)【差2传奇】", + "战斗" ] } ] @@ -15976,247 +19447,266 @@ "name": "dj01沉玉谷(8).json", "type": "file", "hash": "ede8fecf672792da49882946781da0201245b0d4", - "version": "ede8fec", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj02拜达港(1).json", "type": "file", "hash": "63da106b074381360ac99d2430343aee3cee873c", - "version": "63da106", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj03铁穆山①(3).json", "type": "file", "hash": "d2c776a6ed40bc4df4e0352ce9a06410bba1cec1", - "version": "d2c776a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj04铁穆山②(3).json", "type": "file", "hash": "7f97a316b28245406f9bb54a16af39ec4d9f1bf1", - "version": "7f97a31", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj05阻勒隘(5).json", "type": "file", "hash": "398d035cd9f816df886d27b8b906b6dc021c7f04", - "version": "398d035", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj06锋刃林泽下(1).json", "type": "file", "hash": "fb6a6a057d69bbd2035a2ae684d53d20d69309c2", - "version": "fb6a6a0", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj07锋刃林泽左下(1).json", "type": "file", "hash": "1d1923be79a408807523f0cded3486b8a31f17de", - "version": "1d1923b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj08锋刃林泽左上(3).json", "type": "file", "hash": "ac425130c59507875a314ee88fae0da003e31076", - "version": "ac42513", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj09甘露花海右上(2).json", "type": "file", "hash": "e2864014aca82c46b46703263922499c0738d277", - "version": "e286401", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj10跋松顶右上(1).json", "type": "file", "hash": "20932246c46436e7c4728bb754d152f9ede64f1a", - "version": "2093224", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj11秋分山下(2).json", "type": "file", "hash": "811ba9ec6b9a18eee5af68f6a6fa90365c533ecb", - "version": "811ba9e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj12白凇镇左上(1).json", "type": "file", "hash": "4e52000975a0ccba5e234145db25f4be03b526ae", - "version": "4e52000", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj13厄里那斯左(1).json", "type": "file", "hash": "7fc8032af3b5bca96c38966c7d880c90759d2d7c", - "version": "7fc8032", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj14枫丹廷左上(1).json", "type": "file", "hash": "df16cd8976b418cd313a0e5f10f1bc3f4d28d144", - "version": "df16cd8", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj15柔灯港、歌剧院右(2).json", "type": "file", "hash": "cf32ad43777e5a71986a850a3a26017b2dcaebd1", - "version": "cf32ad4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj16优兰尼娅湖左、下(3).json", "type": "file", "hash": "9db5e0321723fa98b194aefbeb233638b16b5a8e", - "version": "9db5e03", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj17中央实验室遗址右下(3).json", "type": "file", "hash": "65b54c7df6dd9de96d779e592e83067d9a486439", - "version": "65b54c7", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj18流泉之众右下(1).json", "type": "file", "hash": "9ee523842473a102f04d2238eb2be5a7d734a438", - "version": "9ee5238", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] }, { "name": "dj19奶奶家右(1).json", "type": "file", "hash": "c960384b3069ca886272ed5cefd5bf306faede6f", - "version": "c960384", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dj丘丘游侠(43)【差3只】" + "dj丘丘游侠(43)【差3只】", + "战斗" ] } ] @@ -16229,130 +19719,140 @@ "name": "dk01绝缘本左下(1).json", "type": "file", "hash": "fb02999114a26d83c9702713fb55c36be67dc58e", - "version": "fb02999", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk02亡者狭廊右下(1).json", "type": "file", "hash": "dcc22c32a1ee08098cb6134a9f294584d3605f8d", - "version": "dcc22c3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk03往昔桓那兰那左(1).json", "type": "file", "hash": "8468b057ec465f042fec6c89ff10fb46be6406b8", - "version": "8468b05", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk04五绿洲右(2).json", "type": "file", "hash": "b7fd1aa1d2c2dfd380055ef01bd2a91f0a59bfe1", - "version": "b7fd1aa", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk05甘露花海左下(1).json", "type": "file", "hash": "b72eb90fba220f8435f4f387a4e422faca6537b4", - "version": "b72eb90", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk06锋刃林泽(1).json", "type": "file", "hash": "f7aceecab29720d63f772495439eaee9718cf000", - "version": "f7aceec", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk07锋刃林泽左(1).json", "type": "file", "hash": "f345ada769a2e4e4e69805da58a4665e07bcefc0", - "version": "f345ada", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk08荼泥黑渊(1).json", "type": "file", "hash": "227a2e2aa2bb51b8785f486963b6bdb2b327175a", - "version": "227a2e2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk09阻勒隘(1).json", "type": "file", "hash": "65f838c2aea6756ebfe872511659853b36bd5e9f", - "version": "65f838c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] }, { "name": "dk10厄里那斯左上(2).json", "type": "file", "hash": "3fa22ec99ba7ffdf4d3a101e6d7420fb60735f41", - "version": "3fa22ec", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dk圣骸兽(12)【差9只】" + "dk圣骸兽(12)【差9只】", + "战斗" ] } ] @@ -16365,156 +19865,168 @@ "name": "dl01荼诃落谷左上(2).json", "type": "file", "hash": "dc23f6adb862edd7fe676cd9fbaecfebc0eb6d92", - "version": "dc23f6a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl02丰饶绿洲左(2).json", "type": "file", "hash": "8104d376d2c08470dda6852e19b00d66afad49ef", - "version": "8104d37", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl03秘仪圣殿右(2).json", "type": "file", "hash": "78a59c4921b4e37c17de4e27323b5c7dde506917", - "version": "78a59c4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl04饱饮之丘右下(3).json", "type": "file", "hash": "9e5c4d22df4b1737aecf1ae0557a20c27b3bd9d9", - "version": "9e5c4d2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl05圣显厅左(2).json", "type": "file", "hash": "cbcb5b55febde418fbd29ddd5502e951b5faadd1", - "version": "cbcb5b5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl06圣显厅中(3).json", "type": "file", "hash": "4af378b0e33dd1559197b207b281507ef72d3e4e", - "version": "4af378b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl07圣显厅上(4).json", "type": "file", "hash": "79b7291c6462fd5d68c4328856d4b18ab13f3a89", - "version": "79b7291", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl08圣显厅上偏右(2).json", "type": "file", "hash": "6dd4de65a6662c49bbef4b1a34fe8fd770c35716", - "version": "6dd4de6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl09神的棋盘下(4).json", "type": "file", "hash": "744ca8c7c35b39658d2fac80d490d0a334a3a9dc", - "version": "744ca8c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl10神的棋盘中(1).json", "type": "file", "hash": "cc93857cc0ef4f424037a60322d2c8a0a0d08d42", - "version": "cc93857", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl11神的棋盘上(2).json", "type": "file", "hash": "e5bda520723845fc2cb730201b882618d670548c", - "version": "e5bda52", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] }, { "name": "dl12五绿洲(1).json", "type": "file", "hash": "21807e1da1d6150b3b01a26fdb5da206923c482b", - "version": "21807e1", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dl元能构装体(28)【差得多】" + "dl元能构装体(28)【差得多】", + "战斗" ] } ] @@ -16527,273 +20039,294 @@ "name": "dm01茸蕈窟上(1).json", "type": "file", "hash": "fea7f73245bd0c8a3dfe09f09cfb7f1cf0e5f105", - "version": "fea7f73", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm02草本上(1).json", "type": "file", "hash": "958c81162c152bdf4a5562eb1bea262231d4691b", - "version": "958c811", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm03须弥城左下(3).json", "type": "file", "hash": "caaeccf6cb61d0ffac836e906c40b523037816c0", - "version": "caaeccf", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm04维摩庄左下(1).json", "type": "file", "hash": "28d532ae54de9d3c8dfb8d9609439291811a5dc2", - "version": "28d532a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm05降诸魔山(3).json", "type": "file", "hash": "4526bc2e1d05614368deabd28027d2b11042ad17", - "version": "4526bc2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm06荼诃之座右(2).json", "type": "file", "hash": "322ae8207d5d815dce2ba8f924cdf0c2a6bc5a5c", - "version": "322ae82", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm07阿如村上(1).json", "type": "file", "hash": "6f1d503fd20e14f33653e6a052bdddf8fe117ca7", - "version": "6f1d503", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm08舍身陷坑左上(2).json", "type": "file", "hash": "13342e6936c7abb1cf89f4d3a9b583d5ef33a144", - "version": "13342e6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm09塔尼特露营地右(1).json", "type": "file", "hash": "337b6f6df82c527547bf993655c2f4459d399d00", - "version": "337b6f6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm10荼诃落谷右上(1).json", "type": "file", "hash": "34302ac8b42058097e6c641381c5821a3906f74f", - "version": "34302ac", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm11荼诃落谷上(1).json", "type": "file", "hash": "cb6018e11178ed985f0cb4b50c74fe163c8b2a2f", - "version": "cb6018e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm12荼诃落谷左下(3).json", "type": "file", "hash": "f5c7a30d4dda549b4a93ac664411edfc368a1722", - "version": "f5c7a30", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm13避让之丘下(1).json", "type": "file", "hash": "337cb79d2679ccf2b728a5f02a0d8566e5c2e198", - "version": "337cb79", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm14鸡哥下(1).json", "type": "file", "hash": "acde831ea7145257b2158177e1d9e417bd896d25", - "version": "acde831", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm15往昔桓那兰那上(1).json", "type": "file", "hash": "4f20fd3e179c05310a5e9662f03e19f1baf2b1da", - "version": "4f20fd3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm16五绿洲右(3).json", "type": "file", "hash": "d39d140d8bc4dcb84a333ee8268ce43d7e375504", - "version": "d39d140", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm17三运河上(1).json", "type": "file", "hash": "431ee8c21f45b5273724cfcb1ee1cd66613f8f61", - "version": "431ee8c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm18铁穆山左(1).json", "type": "file", "hash": "363df15a4a8dbf1fd4621e65ff24a8ef1bc02a49", - "version": "363df15", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm19阻勒隘下(2).json", "type": "file", "hash": "a8019317d2857fc92aeba518c49ecab3550a3c28", - "version": "a801931", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm20阻勒隘右(1).json", "type": "file", "hash": "b527256794790c3fd6b8e98ce9909aadac49baf3", - "version": "b527256", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] }, { "name": "dm21荼泥黑渊右上(1).json", "type": "file", "hash": "5bdacdd79b90f551433a64ac781ba1cc308b6996", - "version": "5bdacdd", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dm遗迹龙兽(32)【除600点位,差17只】" + "dm遗迹龙兽(32)【除600点位,差17只】", + "战斗" ] } ] @@ -16806,13 +20339,14 @@ "name": "dn01茉洁站右上(6).json", "type": "file", "hash": "fe3d5ccd37a2126532750b50362e80abf64dab80", - "version": "fe3d5cc", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dn小型深海龙蜥(6)【枫丹6只】" + "dn小型深海龙蜥(6)【枫丹6只】", + "战斗" ] } ] @@ -16825,26 +20359,28 @@ "name": "dq01巨渊之后右(1).json", "type": "file", "hash": "dd3b8f22b03b480efe6df7a1418dd824efdf50d3", - "version": "dd3b8f2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dq冬国仕女()【ing】" + "dq冬国仕女()【ing】", + "战斗" ] }, { "name": "dq02鸣神大社右上情侣(1).json", "type": "file", "hash": "3d55dfd851bca3b5c775fac1dd16e37eb370e549", - "version": "3d55dfd", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dq冬国仕女()【ing】" + "dq冬国仕女()【ing】", + "战斗" ] } ] @@ -16857,299 +20393,322 @@ "name": "dt01清泉镇右下(1).json", "type": "file", "hash": "50d3ca9d8fd84908f352e3475f64b7668f17a595", - "version": "50d3ca9", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt02明蕴镇上(1).json", "type": "file", "hash": "9f305ab418d813729c7f23e6582adc2f6576352d", - "version": "9f305ab", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt03瑶光滩(1).json", "type": "file", "hash": "78b0e21a320e54497f9e3d64202c61d92322d03c", - "version": "78b0e21", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt04渌华池右(1).json", "type": "file", "hash": "709280852792ef6b4e885994a15787c515761615", - "version": "7092808", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt05天遒谷下(1).json", "type": "file", "hash": "e1c0a21e75a31811dea63696feeaecd2aeaac800", - "version": "e1c0a21", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt06遁玉陵上(1).json", "type": "file", "hash": "4f022c8dc30b8c57561ca1c3404a1a1510f7e666", - "version": "4f022c8", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt07灵矩关右(1).json", "type": "file", "hash": "93d756aa625444036c21b61750473c85e27b71dd", - "version": "93d756a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt08青墟浦右下(1).json", "type": "file", "hash": "8a86f7e57241d2a725a1df266480e28ba62a61f5", - "version": "8a86f7e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt09鸣神大社右上情侣(1).json", "type": "file", "hash": "9ebcec5018fc4912f06961389abe133975f9ea66", - "version": "9ebcec5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt10踏鞴沙右(1).json", "type": "file", "hash": "cd92265a7420c830b96627f6120c27c429868b7f", - "version": "cd92265", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt11踏鞴沙下(2).json", "type": "file", "hash": "fb2d73a9cb4d9af01572546b468ae725d01fe582", - "version": "fb2d73a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt12无郁稠林左下(1).json", "type": "file", "hash": "2f7b63e25d87a19c7469cf0d37b74f0f46457752", - "version": "2f7b63e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt13降诸魔山右下(1).json", "type": "file", "hash": "9da661e676f8f33bbbba238ef3426ff05afc69cd", - "version": "9da661e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt14水天丛林右(1).json", "type": "file", "hash": "7a6fabb2dc612b7655c903637c446efc72e04ea1", - "version": "7a6fabb", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt15禅那园右下(1).json", "type": "file", "hash": "422ca23262d608c1226b0a15e40e176935e8a3dd", - "version": "422ca23", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt16禅那园右(1).json", "type": "file", "hash": "c834c9c4cbc7164ee0d5c7511b842fff2ad3c95a", - "version": "c834c9c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt17鸡哥左下(1).json", "type": "file", "hash": "fb0436135c5660221ea00422b322d9b63214f573", - "version": "fb04361", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt18五绿洲右(2).json", "type": "file", "hash": "1b8e03b21ab0fb31ef17aff77b8510a3e3081653", - "version": "1b8e03b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt19巨人峡谷下(1).json", "type": "file", "hash": "b4e92a0fff91ff673e166c9a0cdf4a87c2dc1c05", - "version": "b4e92a0", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt20巨人峡谷右(1).json", "type": "file", "hash": "7a8b80e904935c6aec549929258eb3c9f82df262", - "version": "7a8b80e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt21聚香海岸下(1).json", "type": "file", "hash": "7b99486e86d71af3afd10ffdfeeba9db45b4fc38", - "version": "7b99486", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt22厄里那斯左下(1).json", "type": "file", "hash": "420c9eabc7b4bfc30893a8e337fed04991eb794f", - "version": "420c9ea", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] }, { "name": "dt23仆人周本上(1).json", "type": "file", "hash": "d4f30707bdb46b0b96b09f7b449c453b85f79eb5", - "version": "d4f3070", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dt债务处理人(25)【差6个】" + "dt债务处理人(25)【差6个】", + "战斗" ] } ] @@ -17162,247 +20721,266 @@ "name": "dw01望风角(1).json", "type": "file", "hash": "11aeb781e2362ddf3cdef3e94f70e71a531ee6c0", - "version": "11aeb78", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw02明冠峡下(1).json", "type": "file", "hash": "0612f67e22ee620d7e7f69f2e3826c48e8af09d9", - "version": "0612f67", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw03清泉镇(1).json", "type": "file", "hash": "7aebe7336ba7d2ea17d3bef52c41ce6d416fb1fc", - "version": "7aebe73", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw04覆雪之路右(1).json", "type": "file", "hash": "13509044c305e41fcf1c7166f2790b84c879fc8f", - "version": "1350904", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw05纯水锚点(1).json", "type": "file", "hash": "68afd38dfd866a9cc9eeb289ef77aec4eaa358c1", - "version": "68afd38", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw06无妄坡左下(1).json", "type": "file", "hash": "fcde09b2481e950c1ed801b938c66d264093b94b", - "version": "fcde09b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw07地中之盐左下(1).json", "type": "file", "hash": "b0ddd15143aaee1a6dd8009083dc43fa3ca61b04", - "version": "b0ddd15", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw08瑶光滩右(1).json", "type": "file", "hash": "a7e391822903355b7296f72b597c953dc8994e0a", - "version": "a7e3918", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw09瑶光滩左下(1).json", "type": "file", "hash": "6acccdd851ae70fb47c7b75278f5789c4a3aa356", - "version": "6acccdd", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw10璃月港右下(1).json", "type": "file", "hash": "a703df30a1a0a70ea0f219af3170fa474569efa2", - "version": "a703df3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw11孤云阁(1).json", "type": "file", "hash": "c1b98404db8ab114b420fe6eaab86e9cbef28698", - "version": "c1b9840", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw12灵矩关上(1).json", "type": "file", "hash": "8ee4ad5688e1b5ba25994de7705a54f92342629a", - "version": "8ee4ad5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw13天遒谷右(1).json", "type": "file", "hash": "89b06d574a560f553626d4d04969e7914670d598", - "version": "89b06d5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw14镇守之森上(4).json", "type": "file", "hash": "daadd00e2dfd88306ac8ec19df8b6342195a1ab6", - "version": "daadd00", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw15踏鞴沙上(1).json", "type": "file", "hash": "9e2a28e2615a5451ddd95c2b2938c81bdb11e341", - "version": "9e2a28e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw16踏鞴沙下(2).json", "type": "file", "hash": "eef5578ae9829cb3208c01be8065eabaae04fe8a", - "version": "eef5578", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw17蛇神之首右下(1).json", "type": "file", "hash": "717ea4965b4aa6b979910f4763c2225e99e10fe5", - "version": "717ea49", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw18珊瑚宫上(1).json", "type": "file", "hash": "6b08e4e0c1b7bb78899adefbdb7f98301d7e1e53", - "version": "6b08e4e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] }, { "name": "dw19清籁丸上(1).json", "type": "file", "hash": "a34806d5c490e99607204e02e7f6c623a577d40f", - "version": "a34806d", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "200怪(补上限)", - "dw萤术士()【ing】" + "dw萤术士()【ing】", + "战斗" ] } ] @@ -17421,39 +20999,42 @@ "name": "ba01奥奇纳塔左下1游侠1随机(2).json", "type": "file", "hash": "4ffacc9f210aadf785af08bd7e414a60da37007c", - "version": "4ffacc9", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "ba深邃拟覆叶(6)" + "ba深邃拟覆叶(6)", + "战斗" ] }, { "name": "ba02奥奇纳塔城内两暴徒一随机(3).json", "type": "file", "hash": "adcf1d82d5d0dd42253e85e6a792b86e3dccc01a", - "version": "adcf1d8", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "ba深邃拟覆叶(6)" + "ba深邃拟覆叶(6)", + "战斗" ] }, { "name": "ba03奥奇纳塔上游侠(1).json", "type": "file", "hash": "a8f7c24e674c8eeb20353f8746eb3646d45efc14", - "version": "a8f7c24", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "ba深邃拟覆叶(6)" + "ba深邃拟覆叶(6)", + "战斗" ] } ] @@ -17466,26 +21047,28 @@ "name": "bb01厄里那斯左上三狂蔓两碎石(5).json", "type": "file", "hash": "504a1c34430d6e8cb3d89cc5587297b6a355c7fa", - "version": "504a1c3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "bb隙境原体(7)" + "bb隙境原体(7)", + "战斗" ] }, { "name": "bb02厄里那斯下一碎石一狂蔓(2).json", "type": "file", "hash": "35a3215e898fd9c944137cf64b6bcf316226fd17", - "version": "35a3215", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "bb隙境原体(7)" + "bb隙境原体(7)", + "战斗" ] } ] @@ -17498,52 +21081,56 @@ "name": "bc01鸡哥左下嗜雷(1).json", "type": "file", "hash": "fa2921e4dde6cd05799d36e6f6bcaa2d639a54b0", - "version": "fa2921e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "bc兽境之狼(8)" + "bc兽境之狼(8)", + "战斗" ] }, { "name": "bc02往昔一嗜雷一嗜岩(2).json", "type": "file", "hash": "443527cd698a243fabab9c39f076ddaa07be2c75", - "version": "443527c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "bc兽境之狼(8)" + "bc兽境之狼(8)", + "战斗" ] }, { "name": "bc03逢岳之野两随机嗜雷两嗜岩(2).json", "type": "file", "hash": "84ed5e987d1a38d67d26ca67b43e9389dde22aa8", - "version": "84ed5e9", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "bc兽境之狼(8)" + "bc兽境之狼(8)", + "战斗" ] }, { "name": "bc04黄金王兽两嗜岩一嗜雷(3).json", "type": "file", "hash": "6e4296a6c67d0785f0a31646bf736dd1f033567b", - "version": "6e4296a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "400怪(21)", - "bc兽境之狼(8)" + "bc兽境之狼(8)", + "战斗" ] } ] @@ -17562,39 +21149,42 @@ "name": "aa01风龙废墟风核(1).json", "type": "file", "hash": "ff716fd51807f30f031cef7f0cc787b05cc83c1f", - "version": "ff716fd", + "version": "1.0", "author": "111", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "aa狂风之核(3)" + "aa狂风之核(3)", + "战斗" ] }, { "name": "aa02庆云顶风核(2).json", "type": "file", "hash": "035bd0030b060a5c7bc4c108668d0bb13d472f44", - "version": "035bd00", + "version": "1.0", "author": "111", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "aa狂风之核(3)" + "aa狂风之核(3)", + "战斗" ] }, { "name": "aa03奥藏山风核(2).json", "type": "file", "hash": "77c7ec553c5e7cfa83e69045ede7243ac14e3415", - "version": "77c7ec5", + "version": "1.0", "author": "111", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "aa狂风之核(3)" + "aa狂风之核(3)", + "战斗" ] } ] @@ -17607,429 +21197,462 @@ "name": "ab01星荧洞窟冰丘丘王(1).json", "type": "file", "hash": "7f1a9328840e8147822b90f1408f58a34be91aee", - "version": "7f1a932", + "version": "1.0", "author": "111", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab02寒天之钉冰丘丘王(1).json", "type": "file", "hash": "3a8d373cc09f6487f5606d22c152f217ce9e80eb", - "version": "3a8d373", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab03明蕴镇岩丘丘王(1).json", "type": "file", "hash": "8f7cb86935d9edae58a340f00f4ce0cac5365f25", - "version": "8f7cb86", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab04雪都近郊冰丘丘王(1).json", "type": "file", "hash": "8c17f70462b114f54dd93c4ecab717c84da87cbf", - "version": "8c17f70", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab05地中之盐岩丘丘王(1).json", "type": "file", "hash": "2c0493bfecaf2fa0a803eabe6fcdbc751d134518", - "version": "2c0493b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab06绝云间右上岩丘丘王(1).json", "type": "file", "hash": "66f014bcbbbf923d24bc57e142b42ec0b2a433be", - "version": "66f014b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab07奥藏山右岩丘丘王(1).json", "type": "file", "hash": "9eb029fa53663969a5a5a7bc40b660b8f88ae720", - "version": "9eb029f", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab08薄荷岛岩丘丘王(1).json", "type": "file", "hash": "a17a606da22ea6df70aecdda68218541d2389b5a", - "version": "a17a606", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab09药蝶谷左雷丘丘王(1).json", "type": "file", "hash": "b9792a15bc3bba58faf40d047fe6dd94d6006835", - "version": "b9792a1", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab10灵濛山下岩丘丘王(1).json", "type": "file", "hash": "3d939bcc2bac55840ad1915a769b3bcfc208e3d4", - "version": "3d939bc", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab11灵濛山上岩丘丘王(1).json", "type": "file", "hash": "0e7279346aabe5e957c5aad7a50855243c71050c", - "version": "0e72793", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab12赤望台右岩丘丘王(1).json", "type": "file", "hash": "a5d32ca7dd02aff90c79ddf08179c7efd8fd5ff6", - "version": "a5d32ca", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab13南天门左岩丘丘王(1).json", "type": "file", "hash": "4f41eeb8ba38216466cdcaa9b0607560613867ee", - "version": "4f41eeb", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab14灵矩关右岩丘丘王(1).json", "type": "file", "hash": "3becae2480156c49698a69c0127118272a6ac99e", - "version": "3becae2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab15琉璃峰岩丘丘王(1).json", "type": "file", "hash": "094c5017715ac5560d784497758296301cf5363b", - "version": "094c501", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab16觉王之殿右下岩丘丘王(1).json", "type": "file", "hash": "5a43efc0284dca32b2327aca23c8f6e75f9aaaa2", - "version": "5a43efc", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab17谒颂幽境岩丘丘王(1).json", "type": "file", "hash": "27fb48d929e65b0f0bb7420be4cf433a72b59874", - "version": "27fb48d", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab18荼诃之座双王争霸(2).json", "type": "file", "hash": "8e67a7043cad32024d66bfff9d04f9e3c71da576", - "version": "8e67a70", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab19饱饮之丘右岩丘丘王(1).json", "type": "file", "hash": "dea7f2963097fa9c28964c3a4fc3a60bd49ad276", - "version": "dea7f29", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab20厄里那斯下岩丘丘王(1).json", "type": "file", "hash": "bf4ec38bec3d39f3f9e7ee9eb71d4c38b0c8f46c", - "version": "bf4ec38", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab21厄里那斯左上雷丘丘王(1).json", "type": "file", "hash": "cedc6ea13110d99dd549ee4b2fcc716138b28d40", - "version": "cedc6ea", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab22厄里那斯上岩丘丘王(1).json", "type": "file", "hash": "b0c0fd9f17143e02cddcf585d319fa833bbe0f46", - "version": "b0c0fd9", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab23卡布狄斯岩丘丘王(1).json", "type": "file", "hash": "b97246160859d9aa101807db301e517e7ee0273a", - "version": "b972461", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab24幽林雾道左下岩丘丘王(1).json", "type": "file", "hash": "2855ea41d7178989d64b66a935d7ac20efdfd59e", - "version": "2855ea4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab25中央实验室岩丘丘王(1).json", "type": "file", "hash": "3a2ee47d5838c190e75434c5de0ae50c23943210", - "version": "3a2ee47", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab26白狐之野雷丘丘王(1).json", "type": "file", "hash": "96ddc2c7130b61e7322c7e0f2e04cccc5067e167", - "version": "96ddc2c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab27九条阵屋雷丘丘王(1).json", "type": "file", "hash": "b21ca673911641b85333a78269c70a3b8c0c3371", - "version": "b21ca67", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab28九条阵屋左上雷丘丘王(1).json", "type": "file", "hash": "b95a63aa5acf1fd09f39f8b1fe70d08be5035c0f", - "version": "b95a63a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab29踏鞴沙雷丘丘王(1).json", "type": "file", "hash": "bafaf9276e2250b3ec2497626a5a9b492ebc85e4", - "version": "bafaf92", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab30清籁丸雷丘丘王(1).json", "type": "file", "hash": "86cb7a6bfabbca11ec87ecf50a91b53b99885d88", - "version": "86cb7a6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab31鹤观随机雷丘丘王(1).json", "type": "file", "hash": "174148cdae740dec5863bcfb2d8851ba438ee903", - "version": "174148c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab32望泷村雷丘丘王(1).json", "type": "file", "hash": "693d92d45024614f91b2a6a3a7190830a5e4f7d5", - "version": "693d92d", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] }, { "name": "ab33曚云神社雷丘丘王(1).json", "type": "file", "hash": "d12ae9982c0d0f105ffa174d1f65e1b748d36ba0", - "version": "d12ae99", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ab丘丘王(34)" + "ab丘丘王(34)", + "战斗" ] } ] @@ -18042,130 +21665,140 @@ "name": "ac01雪山大宝(1).json", "type": "file", "hash": "040140b11d0ca97ee87b54b8c0fc207c3712a41e", - "version": "040140b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac02天工峡大宝(1).json", "type": "file", "hash": "195e797633a229f2b670ae449c59f89ce0c24eaa", - "version": "195e797", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac03降诸魔山大宝(1).json", "type": "file", "hash": "d9a65047a1bdf903cca51c88cfe35e31e933dda1", - "version": "d9a6504", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac04亡者狭廊右下大宝(1).json", "type": "file", "hash": "eae9f354159042a46af4700646fee2708994ea3d", - "version": "eae9f35", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac05亡者狭廊右上大宝(1).json", "type": "file", "hash": "817401d793fda30b415560ed08f7750bd16125e9", - "version": "817401d", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac06五绿洲大宝(1).json", "type": "file", "hash": "3f304a664b97eb1d16001196a5d7f6e814a7cad5", - "version": "3f304a6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac07三运河上大宝(1).json", "type": "file", "hash": "0dd85d6a4fdaafe4a4fb964d5bbb2c6a7244a92e", - "version": "0dd85d6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac08奥奇卡大宝(1).json", "type": "file", "hash": "8af6a810ccdd3b3a7e7209ddd88e62f69df60309", - "version": "8af6a81", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac09厄里那斯大宝(1).json", "type": "file", "hash": "9233d24a42e02e3521f58b4a8a26dc140155ac0e", - "version": "9233d24", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] }, { "name": "ac10荒海大宝(1).json", "type": "file", "hash": "05acf48aba11887c6f1d0628fd4442b34695d4d5", - "version": "05acf48", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ac遗迹重机(10)" + "ac遗迹重机(10)", + "战斗" ] } ] @@ -18178,104 +21811,112 @@ "name": "ad01天衡山上火岩龙蜥(1).json", "type": "file", "hash": "1604bf47b9ffc89a972cbf2fabb7a1f3649a7f72", - "version": "1604bf4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ad大岩龙蜥(10)" + "ad大岩龙蜥(10)", + "战斗" ] }, { "name": "ad02地面矿区火岩龙蜥(1).json", "type": "file", "hash": "dcb690e729f1c502efe065c6ffa85ee97d4506a2", - "version": "dcb690e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ad大岩龙蜥(10)" + "ad大岩龙蜥(10)", + "战斗" ] }, { "name": "ad03天遒谷水岩龙蜥(1).json", "type": "file", "hash": "39e1c702354d78bfd6fffda632dc8250811044ae", - "version": "39e1c70", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ad大岩龙蜥(10)" + "ad大岩龙蜥(10)", + "战斗" ] }, { "name": "ad04南天门下冰右火(2).json", "type": "file", "hash": "9c37ea58c1894249b8a97245a43e21c0e671d402", - "version": "9c37ea5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ad大岩龙蜥(10)" + "ad大岩龙蜥(10)", + "战斗" ] }, { "name": "ad05绝云间下雷岩龙蜥(1).json", "type": "file", "hash": "0cadffc5b7d88422f30059859534d06490f22f22", - "version": "0cadffc", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ad大岩龙蜥(10)" + "ad大岩龙蜥(10)", + "战斗" ] }, { "name": "ad06奥藏山左火岩龙蜥(1).json", "type": "file", "hash": "d1f4415571a03a0231175b7074f8de9cf7161932", - "version": "d1f4415", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ad大岩龙蜥(10)" + "ad大岩龙蜥(10)", + "战斗" ] }, { "name": "ad07奥藏山右雷上水(2).json", "type": "file", "hash": "a56bedb924ae3d1d7d7b36e7bd53269259987197", - "version": "a56bedb", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ad大岩龙蜥(10)" + "ad大岩龙蜥(10)", + "战斗" ] }, { "name": "ad08赤璋城垣水岩龙蜥(1).json", "type": "file", "hash": "cee30dfe9677f7f908b9b1459add9bd2e8113c15", - "version": "cee30df", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ad大岩龙蜥(10)" + "ad大岩龙蜥(10)", + "战斗" ] } ] @@ -18288,39 +21929,42 @@ "name": "ae01奥奇纳塔右上三小宝(3).json", "type": "file", "hash": "f6453a2bf3da311d8f1e0e89cb6a23c0b4110389", - "version": "f6453a2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ae深邃拟覆叶(8)" + "ae深邃拟覆叶(8)", + "战斗" ] }, { "name": "ae02神像左侧小宝(1).json", "type": "file", "hash": "4009321409abaa0870d2f1b32107e3d097b6d1b2", - "version": "4009321", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ae深邃拟覆叶(8)" + "ae深邃拟覆叶(8)", + "战斗" ] }, { "name": "ae03奥奇纳塔左四小宝(4).json", "type": "file", "hash": "8e9a1dbb67c49bed17588234778c185288b8464f", - "version": "8e9a1db", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ "锄地(纯精英怪)", "600怪(56)", - "ae深邃拟覆叶(8)" + "ae深邃拟覆叶(8)", + "战斗" ] } ] @@ -18355,108 +21999,117 @@ "name": "11001纳塔海浪中的沙浮(传奇).json", "type": "file", "hash": "db238973816e11bf883a4d615f5f0ce7f7d3956d", - "version": "db23897", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] }, { "name": "11002纳塔巴拉奇科(传奇).json", "type": "file", "hash": "20e9f0c021573689ca2952b442f7591fe303fe21", - "version": "20e9f0c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] }, { "name": "11003纳塔莉莱(传奇).json", "type": "file", "hash": "a0ad23dbe65857b30708ce2ac5531600c65e25cf", - "version": "a0ad23d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] }, { "name": "3001沉玉谷南陵带(12_2)01.json", "type": "file", "hash": "eb3f0798df4f09720d97637ad2dcdc3b7267427f", - "version": "eb3f079", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] }, { "name": "6001枫丹湖畔的尼尼和以索(传奇).json", "type": "file", "hash": "8b272286d97b696263ce10d1687492ef2d6efe4c", - "version": "8b27228", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] }, { "name": "6002枫丹湖畔的尼尼(传奇).json", "type": "file", "hash": "06afeef8dd11005dca94982b2695ddc9df2d566c", - "version": "06afeef", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] }, { "name": "6003枫丹伊黎耶林01(传奇).json", "type": "file", "hash": "cdc3196ff07798e8ae478a9201ab231099d1dba3", - "version": "cdc3196", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] }, { "name": "6003枫丹伊黎耶林02(传奇).json", "type": "file", "hash": "d8f24a41da6cd58f688ff0262c26493c536dcd2c", - "version": "d8f24a4", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] }, { "name": "6007枫丹科学院04(传奇).json", "type": "file", "hash": "362e18ea1abec7f7fa2ccf7fea4f8e5f8490f1b8", - "version": "362e18e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "01_传奇" + "01_传奇", + "战斗" ] } ] @@ -18469,72 +22122,78 @@ "name": "11001纳塔奥奇01.json", "type": "file", "hash": "ccffc7ddcd8ff3be63d1e04b9bdf31578df56596", - "version": "ccffc7d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "02_600精英耗时型" + "02_600精英耗时型", + "战斗" ] }, { "name": "11001纳塔奥奇02.json", "type": "file", "hash": "c27e8932c01f282fb4adaba2d82ede56dbcc7fde", - "version": "c27e893", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "02_600精英耗时型" + "02_600精英耗时型", + "战斗" ] }, { "name": "11001纳塔奥奇03.json", "type": "file", "hash": "ab6804be2f79ab1b25d14b597f507306d6aa7efd", - "version": "ab6804b", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "02_600精英耗时型" + "02_600精英耗时型", + "战斗" ] }, { "name": "11001纳塔奥奇04.json", "type": "file", "hash": "35f47d8a09ad5b6fc572c857c7e6f878abedf3da", - "version": "35f47d8", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "02_600精英耗时型" + "02_600精英耗时型", + "战斗" ] }, { "name": "11001纳塔奥奇05.json", "type": "file", "hash": "5ee02eb2da017d2ed2edf561798a64a4204f93b6", - "version": "5ee02eb", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "02_600精英耗时型" + "02_600精英耗时型", + "战斗" ] }, { "name": "11001纳塔奥奇06.json", "type": "file", "hash": "1996e2f95c926c5531f3e0a5bc2c8554685865df", - "version": "1996e2f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "02_600精英耗时型" + "02_600精英耗时型", + "战斗" ] } ] @@ -18547,624 +22206,676 @@ "name": "1001蒙得雪山(600_1)02.json", "type": "file", "hash": "6208a0244209f973e1c940ee420a831e0b1f85d1", - "version": "6208a02", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "1001蒙得雪山(600_1,200_2)01.json", "type": "file", "hash": "9a4779d94848e4489a3679c33ac4cab270c22db2", - "version": "9a4779d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "1001蒙得雪山(600_2,200_4)03.json", "type": "file", "hash": "c0b945cd8646ef7cf70ec1eecd3e694973853afa", - "version": "c0b945c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "1001蒙得风龙废墟.json", "type": "file", "hash": "b66d5b294cfe5deaac84a92118ae7b5c126889df", - "version": "b66d5b2", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2001离月离沙蛟(600_1,200_1))01.json", "type": "file", "hash": "f91bf5e9addfe747f111b65243c0c0cd54e06cd8", - "version": "f91bf5e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2002离月震雷(600_1))01.json", "type": "file", "hash": "e5ae4e6293f15a9b5e9f350b534828e2d13dd1ec", - "version": "e5ae4e6", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2003离月地中之盐(600_1))01.json", "type": "file", "hash": "84ad6de6460af940d1a099f450886a7fcc7fc1b3", - "version": "84ad6de", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2004离月明林(600_1))01.json", "type": "file", "hash": "30d1996ce750c7c5af570b2b38011f5580ea44c4", - "version": "30d1996", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2004离月明林(600_1))02.json", "type": "file", "hash": "1d6c2ab4723b70fe5cc596115971aac41bf54bfb", - "version": "1d6c2ab", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2004离月明林(6_1,2_2))03.json", "type": "file", "hash": "07f7762218c1dfa051b8f56984ddaeb22694cbd0", - "version": "07f7762", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2004离月明林(6_1,2_4))04..json", "type": "file", "hash": "142caaed2c8a1a74de00f2d7d5841fcb938579fc", - "version": "142caae", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2005离月碧水原(600_1,200_1))01.json", "type": "file", "hash": "f451ade5cc945700f22ca8b1218348e39c478632", - "version": "f451ade", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2006虎牢山(600_1,200_4))02.json", "type": "file", "hash": "0e7e5434bcf188aefa3ceafd4624615aacbf0f90", - "version": "0e7e543", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2007奥藏山(600_1,200_1)02.json", "type": "file", "hash": "bcfd61c061b86984c6abea0b8b85659dbbcbe8c8", - "version": "bcfd61c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2007奥藏山(600_3,200_2))01.json", "type": "file", "hash": "6bd7202d85621e69117f97c803ca9184b76c1ec9", - "version": "6bd7202", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2008庆云顶(600_3))01.json", "type": "file", "hash": "2660ef1acc00b2294746ab32d12b74c088b6334d", - "version": "2660ef1", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2009离月南天门带600精英01.json", "type": "file", "hash": "5c9679909b5632cfd8c5f9a63f786715e6d43ec8", - "version": "5c96799", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2009离月南天门带(6_1,2_1)02.json", "type": "file", "hash": "97c6f27570cc181758ff85e72116d9b902af2884", - "version": "97c6f27", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2010离月天衡山(6_1,2_1))01.json", "type": "file", "hash": "87e8b07bf4169fe916bce4489be29b1a51b28f64", - "version": "87e8b07", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2011离月层岩(6_1))03.json", "type": "file", "hash": "3061d8bff30cfb7c1c1c54c2c5fc270e45076f4a", - "version": "3061d8b", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2011离月层岩(6_1,2_1))02.json", "type": "file", "hash": "a030e146699286b5530af7ca62bb2536908637af", - "version": "a030e14", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "2011离月层岩(6_1,2_2))01.json", "type": "file", "hash": "c26872e6fc9adac00ae7099631b9779a913eee75", - "version": "c26872e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "3001沉玉谷南陵带(6_1)01.json", "type": "file", "hash": "52a2e02fc55ea49804d8e720034678624f2458aa", - "version": "52a2e02", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "3002沉玉谷锦落婷(6_1,2_2)01.json", "type": "file", "hash": "856ada95189bbf8dc1ce2f23222c78fcc5d86c8f", - "version": "856ada9", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "3003沉玉谷上谷(600_1,200_1))02.json", "type": "file", "hash": "8816a0d588595068077795d964fd41d294c28e17", - "version": "8816a0d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "3003沉玉谷上谷(600_1,200_4)).json", "type": "file", "hash": "13798fa426e228fd43100254b4cdc619673c16b4", - "version": "13798fa", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "3004沉玉谷南陵(600_1,200_2))01.json", "type": "file", "hash": "6bce89397fa9ceddcc0d2cae1e331d702f8179fa", - "version": "6bce893", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4001须弥善见地(600_1,200_1)01.json", "type": "file", "hash": "8d1ad85c9407f4226bb551fbef1d0340d1b208f5", - "version": "8d1ad85", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4001须弥善见地(600_1,200_1)02.json", "type": "file", "hash": "222f86de977977cf7e7da304e13cf6538b5a71bd", - "version": "222f86d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4001须弥善见地(600_2)03.json", "type": "file", "hash": "f4a8e51e81462e68b599252a0a3dbff2afaa7d3a", - "version": "f4a8e51", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4002须弥沙漠01(600_1).json", "type": "file", "hash": "98ff6bfb56ed42fa00b8ad865d72fc97b36c01b6", - "version": "98ff6bf", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4002须弥沙漠02(600_1,200_4).json", "type": "file", "hash": "7cf4db01db706b4ec70376eae073859f106320df", - "version": "7cf4db0", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4002须弥沙漠03(600_1).json.json", "type": "file", "hash": "b0ca303b08c03be58c4c7fba02dca4f90832d7b7", - "version": "b0ca303", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4002须弥沙漠04(600_1).json", "type": "file", "hash": "5d86e6e7fe0ad8ae651baf411dc53104e7cd58d1", - "version": "5d86e6e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4002须弥沙漠05(600_1).json", "type": "file", "hash": "4e4495696172acfbd0152e1eb15fe565b1d703c4", - "version": "4e44956", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "4003须弥阿陀河谷01(600_1).json", "type": "file", "hash": "e5809ee8898f8ce5a5714f7cbfac5283c61e790e", - "version": "e5809ee", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "6001枫丹厄里那斯01.json", "type": "file", "hash": "58fa65ee2735b88909174e08931e90a35f895c98", - "version": "58fa65e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "6001枫丹厄里那斯02.json", "type": "file", "hash": "2111e87ee6fa3f16608ee69430df4739da061c10", - "version": "2111e87", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "6002枫丹仓晶区01.json", "type": "file", "hash": "4f841cd896252c48db9c497f727b58a522937866", - "version": "4f841cd", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "6003枫丹科学院01.json", "type": "file", "hash": "f16871037d11c74748788f5ad415d4f223a8d8b5", - "version": "f168710", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "6004枫丹伊黎耶林01.json", "type": "file", "hash": "2203e97c0ae254e9be09a10f9553b09e8f29c3d2", - "version": "2203e97", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "6004枫丹伊黎耶林02.json", "type": "file", "hash": "b9502e43041c6cf0811e94d36d9c7b838a396f3d", - "version": "b9502e4", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "6005枫丹卡布01.json", "type": "file", "hash": "c7b44d87fba1e33c6e2f6c75fe54fcabbca4dda3", - "version": "c7b44d8", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7001稻妻镇守之森(600_1,200_1)01.json", "type": "file", "hash": "b4c0482031902d5998e6c18ebfa5fc507bed58cc", - "version": "b4c0482", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7002稻妻相之火旁(600_1,200_1)01.json", "type": "file", "hash": "88a208a37344706163f5711e923297ede9e6bcd2", - "version": "88a208a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7003稻妻九条(600_1)01.json", "type": "file", "hash": "fd3b3dec2c3d71cabe32583ad74e0677c1763842", - "version": "fd3b3de", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7004稻妻揉背沙(600_1,200_13)01.json", "type": "file", "hash": "ee6d847cfa076a2e576efc8caf19a0c198d1ae3d", - "version": "ee6d847", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7005稻妻萌云神社(600_1,200_2)01.json", "type": "file", "hash": "8ecf53627c0d012a85ad7191e5b1a4b8a3d38103", - "version": "8ecf536", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7006稻妻珊瑚宫(600_1)01.json", "type": "file", "hash": "5ac29344150447b1c60acacea7f63aac2ab2729b", - "version": "5ac2934", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7007稻妻清赖岛(600_1,200_1)01.json", "type": "file", "hash": "2fb8d57c3946efc08148c7ced131f8e495e79910", - "version": "2fb8d57", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7008稻妻鹤馆(600_1)01.json", "type": "file", "hash": "3dd3f52558bdf9eb172eb0a55bc8eaa427b08806", - "version": "3dd3f52", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] }, { "name": "7009稻妻荒海(600_1,200_4)01.json", "type": "file", "hash": "a56d2fe80834cdaa3173d7d2cba1e3c117d15ca7", - "version": "a56d2fe", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "03_600精英" + "03_600精英", + "战斗" ] } ] @@ -19177,1764 +22888,1911 @@ "name": "0_6004枫丹仓晶区02(400_2).json", "type": "file", "hash": "1951032548c19752c160bacf9efb18ccfd333479", - "version": "1951032", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "0_7022稻妻鹤冠01(400_6).json", "type": "file", "hash": "eccbeeb6dd5a4012a254dfd83bc41a66ea952b18", - "version": "eccbeeb", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "0_7022稻妻鹤冠02(400_2) .json", "type": "file", "hash": "e0414134bbbcdf8647ac1471e0e465d8937232b5", - "version": "e041413", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "0_7022稻妻鹤冠07(400_2).json", "type": "file", "hash": "fc964e655f0b5662d27d77f09e36b80fd65c39d5", - "version": "fc964e6", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "0_7022稻妻鹤冠08(400_4).json", "type": "file", "hash": "350494ffc87649eb4be381d25faac4088744549e", - "version": "350494f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "0_7022稻妻鹤冠09(400_2).json", "type": "file", "hash": "710fe40daed5e627937ae07e64712f586a4eb1ae", - "version": "710fe40", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "1001蒙德忘风角01.json", "type": "file", "hash": "187e2e1600451dfb44b7938e62c3b98777cab5d5", - "version": "187e2e1", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "1001蒙德忘风角02.json", "type": "file", "hash": "0e5251228bfc480ed34fd450dd11f2ad9f8c00ea", - "version": "0e52512", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "1002蒙德忘风山地01.json", "type": "file", "hash": "a5dca0419cb8714734688775ad62c02706f04c8f", - "version": "a5dca04", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "1003北风狼宇01.json", "type": "file", "hash": "17c8e11ca6aa839f3b0594464abe51c067ccc1bf", - "version": "17c8e11", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "1004蒙德忘却之峡01.json", "type": "file", "hash": "6fc0d9781f9c8f62fa9ee067986a0475ceef62d4", - "version": "6fc0d97", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "1005蒙德奔狼领01.json", "type": "file", "hash": "6cee487809ca3b70e1438b57c5c113c8c729ab3a", - "version": "6cee487", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11001纳塔彩石顶01.json", "type": "file", "hash": "a10707f7ce91a59978992bea1cd6679499f2a799", - "version": "a10707f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11002纳塔踞石山01.json", "type": "file", "hash": "12b6d65f5ee5322ca7133396b756839e895075c2", - "version": "12b6d65", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11002纳塔踞石山02.json", "type": "file", "hash": "628a9fc9b254d5335ee6cac25de2060704cacb65", - "version": "628a9fc", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11002纳塔踞石山03.json", "type": "file", "hash": "bd31e14f8a288fca6e5d7340479647d04b0ad8c1", - "version": "bd31e14", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11002纳塔踞石山04.json", "type": "file", "hash": "022b336d138852d4644a46825b43f1e1f2c78bec", - "version": "022b336", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷01.json", "type": "file", "hash": "ed5094d587f29b6af5a6a27c714ff83973394e68", - "version": "ed5094d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷02.json", "type": "file", "hash": "de13dea87025a4d5c3e60ec4da1b3a684a22ab26", - "version": "de13dea", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷03.json", "type": "file", "hash": "7af2107daf0a6d2e0a596ce87298eb7246dc4518", - "version": "7af2107", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷04.json", "type": "file", "hash": "3ad43727c03769fce72bd59e26a3fe6658a48d92", - "version": "3ad4372", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷05.json", "type": "file", "hash": "6661e2ad2ead06eb8d6855d72f5d17dba987f7d6", - "version": "6661e2a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷06.json", "type": "file", "hash": "2cd6a2ade670dc3ebe6690091e88d0093d797dd3", - "version": "2cd6a2a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷07.json", "type": "file", "hash": "d6b5d4f9a48a8cd5a35fda785e4e66ed82e56a97", - "version": "d6b5d4f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷08.json", "type": "file", "hash": "c9a1846bf367b7679cb0691850a1daa82dc79412", - "version": "c9a1846", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11003纳塔坚岩益谷09.json", "type": "file", "hash": "993842e90b1724b60b745491c9170d2d943c8e86", - "version": "993842e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11004纳塔柴薪之丘01.json", "type": "file", "hash": "9a05fb5227e2cabc1afaed42ced58d232d34ddea", - "version": "9a05fb5", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11004纳塔柴薪之丘02.json", "type": "file", "hash": "cd7b209a75737508ae4e55c280ead2de054710ce", - "version": "cd7b209", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11005纳塔万火之欧01.json", "type": "file", "hash": "877c8ff74bd1555b87710868321fd50adf7bd61b", - "version": "877c8ff", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11005纳塔万火之欧02.json", "type": "file", "hash": "60a0df3dece90b03d4b8b6b8ca16a0cc0679d1e3", - "version": "60a0df3", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11005纳塔万火之欧03.json", "type": "file", "hash": "6c5a0f206be39ac4df0b9b5cb3ea460186db14a0", - "version": "6c5a0f2", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11005纳塔万火之欧04.json", "type": "file", "hash": "f0cc312a2399f3955d9282d75317c8f78cb07ac6", - "version": "f0cc312", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11005纳塔万火之欧05.json", "type": "file", "hash": "ffb60813c0ee082c4fc68d0a590012b0d76a35a3", - "version": "ffb6081", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11006纳塔流泉之众01.json", "type": "file", "hash": "c4bc581de4576de360ea80d23a08b7ec25c5f5c7", - "version": "c4bc581", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11006纳塔流泉之众02.json", "type": "file", "hash": "b2bda461c51535633b92a7041e1c5e0fa2cc326d", - "version": "b2bda46", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11006纳塔流泉之众03.json", "type": "file", "hash": "012277962f62b62a4f20d5ed64f61731bd188647", - "version": "0122779", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11006纳塔流泉之众04.json", "type": "file", "hash": "e0bc0d2d131b3276e91aa8729d31837d852778f1", - "version": "e0bc0d2", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11006纳塔流泉之众05.json", "type": "file", "hash": "a23d8738ab7ee6359d58533840d4d37fa102d1c4", - "version": "a23d873", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11006纳塔流泉之众06.json", "type": "file", "hash": "dca4a53ca1caf8bad6e30450a045339078a21c74", - "version": "dca4a53", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山01.json", "type": "file", "hash": "48ee2985af15829d1cd69642a43f64e5d688a11e", - "version": "48ee298", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山02.json", "type": "file", "hash": "fe1ef246b8d35c749dcc3c0ac2e39680b64ffcfc", - "version": "fe1ef24", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山03.json", "type": "file", "hash": "fcdced7315b667e08315cb08185d87a2d79f12fb", - "version": "fcdced7", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山04.json", "type": "file", "hash": "7b00f466d1f70171d187e22a4a48dab72ac7a82b", - "version": "7b00f46", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山05.json", "type": "file", "hash": "9957a0bc86400ff98f24b05e3793b5a472bbabb4", - "version": "9957a0b", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山06.json", "type": "file", "hash": "dd1e55a37564e1b01604f7ca34cb41c3cc1e3877", - "version": "dd1e55a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山07.json", "type": "file", "hash": "fdd0c2d309005addadf7ce64bfd5ee9e84554c48", - "version": "fdd0c2d", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山08.json", "type": "file", "hash": "d0679ec68cd4cf3f273e8affcbbcd12361b9ab2f", - "version": "d0679ec", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山09.json", "type": "file", "hash": "88c02be6918c51c5c210473f35b61ccdbebad671", - "version": "88c02be", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11010纳塔镜壁山10.json", "type": "file", "hash": "8cde4ddc9ac628c6e604d71e158d77a8c5b6d0b5", - "version": "8cde4dd", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11012纳塔花羽会01.json", "type": "file", "hash": "662bfcf16ae27e731f77ebdae54722978105b5d4", - "version": "662bfcf", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11012纳塔花羽会02.json", "type": "file", "hash": "382793fcf79d8f3a03140e9ddb24b0ac22c5a200", - "version": "382793f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11012纳塔花羽会03.json", "type": "file", "hash": "c360d6e4110bd40bab5d36da2f61bbb91d942b77", - "version": "c360d6e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11013纳塔奥奇01.json", "type": "file", "hash": "181f316a0e72bf4eccf90a31ed5bd13db990a8ea", - "version": "181f316", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "11013纳塔奥奇02.json", "type": "file", "hash": "0daaac66f0b3e2e7d343492ef2f271599b146c9b", - "version": "0daaac6", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2001离月碧水原01.json", "type": "file", "hash": "125cc1713f1b1fc23a678335e71a57fb48849612", - "version": "125cc17", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2002离月绝云间01.json", "type": "file", "hash": "fc7508e08a706f60429275eb4a9ae2363a8d025d", - "version": "fc7508e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2003离月民林01.json", "type": "file", "hash": "237f050963a83170a513b529668bb2be45cfb4c0", - "version": "237f050", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2004离月虎牢山01.json", "type": "file", "hash": "f3566895bcb98cfcc033e17d9882dd0fcb6b6db1", - "version": "f356689", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2006离月层岩01.json", "type": "file", "hash": "03d723501b0a7d4e772c467bc48551d78074d879", - "version": "03d7235", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2007离月离沙蛟01.json", "type": "file", "hash": "fed4190bc5aea4d30355449bb2abb38ee432ab93", - "version": "fed4190", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2008离月云来海01.json", "type": "file", "hash": "ed5f437337166925677337ef5753dceab60b3e30", - "version": "ed5f437", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2009离月明蕴镇01.json", "type": "file", "hash": "4866e03f2e95ce63921caf9cb030bc49ef74c294", - "version": "4866e03", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2010离月摇光摊01.json", "type": "file", "hash": "915d8649fd758d72f6d290f259c2d98a638aa233", - "version": "915d864", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "2011离月孤云阁有3小宝01.json", "type": "file", "hash": "4c0f6222cb1511b127ce89c9422c0a4d3589b465", - "version": "4c0f622", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6001枫丹庭区01.json", "type": "file", "hash": "766bb1ee64f004ece9954e2b15b4e77f513117d4", - "version": "766bb1e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6001枫丹庭区02.json", "type": "file", "hash": "edb9a82893bfefbb0276ce26abd7ece6b56923b3", - "version": "edb9a82", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6002枫丹伊黎耶林01.json", "type": "file", "hash": "60090ac1c9a9fb8816d81e0df3f9280a33c307c1", - "version": "60090ac", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹伊黎耶林02.json", "type": "file", "hash": "8da7da99e99939bd1b124f7a401ddf32be106443", - "version": "8da7da9", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹伊黎耶林03.json", "type": "file", "hash": "65ca3a0760d94197d5e1def0eaa2d0de26b4678b", - "version": "65ca3a0", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹伊黎耶林04.json", "type": "file", "hash": "9059b85987d052d62772df3ce6c923b893e961f6", - "version": "9059b85", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹伊黎耶林05.json", "type": "file", "hash": "b0accbe4957b10004635aad1e622d3ad5e8d3e66", - "version": "b0accbe", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹伊黎耶林06.json", "type": "file", "hash": "74778a14f31464470bf868fedeaf1a6ae59966e0", - "version": "74778a1", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹伊黎耶林07.json", "type": "file", "hash": "21d9b34038661a77cda9e85bb61c6c5d9fa3273c", - "version": "21d9b34", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹伊黎耶林08.json", "type": "file", "hash": "6d07141fda449618c3c1e0b6b36bc0f2a0e23740", - "version": "6d07141", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹伊黎耶林09.json", "type": "file", "hash": "f63586cf7c0808a33ea251fa21b69f6118b3c4ff", - "version": "f63586c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6003枫丹厄里那斯01.json", "type": "file", "hash": "0224a48419fb3047ac46b6088ae6ccb255636eb9", - "version": "0224a48", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6004枫丹仓晶区03.json", "type": "file", "hash": "502aead4c40d7b87e4d817746a806a805b68eb22", - "version": "502aead", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6004枫丹仓晶区04.json", "type": "file", "hash": "efb3a6750960d562d68ce364bc2a516a142fb02f", - "version": "efb3a67", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6005枫丹白露区01.json", "type": "file", "hash": "0e5ffe7e34338327f8e3d8c40c453a1fecdcd92e", - "version": "0e5ffe7", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6005枫丹白露区02.json", "type": "file", "hash": "4ab4055a112d3b0b94ac073d73cd6a373aa6eda9", - "version": "4ab4055", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6005枫丹白露区03.json", "type": "file", "hash": "040e8f88b5ac9153bb1b56d751ba763479b47033", - "version": "040e8f8", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6005枫丹白露区04.json", "type": "file", "hash": "33d49fceb9311db32fa589849a058b8ae1c937e1", - "version": "33d49fc", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6006枫丹卡布01.json", "type": "file", "hash": "78a53b4addb3baf9e5d186a787d1e4836522c638", - "version": "78a53b4", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院01.json", "type": "file", "hash": "e699c1a91cefeaa4e8b8e754de73647504a5913d", - "version": "e699c1a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院02.json", "type": "file", "hash": "b3dba48377651621a1da294c326e744093184b21", - "version": "b3dba48", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院03.json", "type": "file", "hash": "e20230a0f164ff2d5d7fe0f703dd26063713c230", - "version": "e20230a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院04.json", "type": "file", "hash": "4f8cecaac542c380af0e9955c4efcd8ea243425e", - "version": "4f8ceca", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院05.json", "type": "file", "hash": "b6e29db102d6c65343148c33530419d335bf813b", - "version": "b6e29db", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院06.json", "type": "file", "hash": "46843fe1820fd4f237eb914119a15070f97f5a72", - "version": "46843fe", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院07.json", "type": "file", "hash": "274c13cce22550cc70db911589228141e3bab146", - "version": "274c13c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院08.json", "type": "file", "hash": "78354839c6945f5d6dc7093aa2c123f986601578", - "version": "7835483", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "6007枫丹科学院09.json", "type": "file", "hash": "378b87f5046f122e2e8e30bac8b71005829525c5", - "version": "378b87f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7001稻妻揉背沙01.json", "type": "file", "hash": "5a09e2a7803ff974aba4ffa2db135ad48b693480", - "version": "5a09e2a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7001稻妻揉背沙03.json", "type": "file", "hash": "d686a5b7d5489dcfc71659e85908c6bc1a48e400", - "version": "d686a5b", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7001稻妻揉背沙04.json", "type": "file", "hash": "aeac44ac8eb8a409535d7a407d251b95376225a4", - "version": "aeac44a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7001稻妻揉背沙05.json", "type": "file", "hash": "8d7f784ff9ea5c11b5ddf62ebaaf9b9a136da5e8", - "version": "8d7f784", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7001稻妻揉背沙06.json", "type": "file", "hash": "6b4a7123f3e036079a3e3c80963294725a24b7de", - "version": "6b4a712", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7001稻妻揉背沙07.json", "type": "file", "hash": "17aa1488b690730ec83a2fc8204d00bc4f08c88e", - "version": "17aa148", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7001稻妻揉背沙08.json", "type": "file", "hash": "27e254377b1cc292ab24f17b1a0cfb9b120999bc", - "version": "27e2543", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7002稻妻名稚摊01.json", "type": "file", "hash": "568bc8a7003f7e427135a105afca148cbfb68dd3", - "version": "568bc8a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7002稻妻名稚摊02.json", "type": "file", "hash": "ac4980571eea2e429db388e1bfa75a2d464979b5", - "version": "ac49805", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7003稻妻九条01.json", "type": "file", "hash": "3d1f6e9763f8323174cf69c52074688bc69d183c", - "version": "3d1f6e9", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7004稻妻甘田村01.json", "type": "file", "hash": "47114f3f5a2eaa35eaf3c25d558458ff982596e0", - "version": "47114f3", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7005稻妻刃连岛01.json", "type": "file", "hash": "34db7f4259250c7e5f0952e6445a69cfd5908082", - "version": "34db7f4", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7006稻妻八云岛01.json", "type": "file", "hash": "d0df21aff2ddbde450b4b24a2fef6b567fb198cd", - "version": "d0df21a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7006稻妻八云岛02.json", "type": "file", "hash": "150a877585ed7a42cb3605fcc42a653f7f7004fb", - "version": "150a877", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7006稻妻八云岛03.json", "type": "file", "hash": "9b1241c5ffc25346de0ac004f9eeca22d51dd367", - "version": "9b1241c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7006稻妻八云岛04.json", "type": "file", "hash": "e3789857e18e00d489a2da8ea51c632c40f3cc08", - "version": "e378985", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7006稻妻八云岛05.json", "type": "file", "hash": "99c722fe6c65c148dc06d8f96f97e19925a6bd52", - "version": "99c722f", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7006稻妻八云岛06.json", "type": "file", "hash": "9fa20201f0dfc61028ea8960460040f7929a4a56", - "version": "9fa2020", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7006稻妻八云岛07.json", "type": "file", "hash": "b824c072463e85e0ccd907c67af7854732c64533", - "version": "b824c07", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7007稻妻珊瑚宫01.json", "type": "file", "hash": "f65e4d42cc52947ea794ff2a4ee4f91701b4cf6b", - "version": "f65e4d4", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7007稻妻珊瑚宫02.json", "type": "file", "hash": "85e2a980fe6a0e6ab2790269d94f884d0eb6f8eb", - "version": "85e2a98", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7007稻妻珊瑚宫03.json", "type": "file", "hash": "b55e6d09123fe068a7fac628ef6922fe726e8fee", - "version": "b55e6d0", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7008稻妻鸣神岛01.json", "type": "file", "hash": "ce37e3ce5291317018bab2075810d85ec2282337", - "version": "ce37e3c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7008稻妻鸣神岛02.json", "type": "file", "hash": "3ef9d434dd829992eb803112bcc13fc1657664b6", - "version": "3ef9d43", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7008稻妻鸣神岛03.json", "type": "file", "hash": "6ce33fb56d38ff23059a93edc291c146302a82dc", - "version": "6ce33fb", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7008稻妻鸣神岛04.json", "type": "file", "hash": "ccb54b0224eb62769190b984014d5939e99fe22b", - "version": "ccb54b0", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7008稻妻鸣神岛05.json", "type": "file", "hash": "b078082cb470c8411e67be45b92a87e1c5e27590", - "version": "b078082", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7008稻妻鸣神岛06.json", "type": "file", "hash": "25af55e63c9446671e582409ba2a66b80b4797ba", - "version": "25af55e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛01.json", "type": "file", "hash": "f8c8302d5f0db729dd2d63b6f57f4abb12d00e77", - "version": "f8c8302", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛02.json", "type": "file", "hash": "d5a479280b5de4ab1d663c82600c7889ae815a49", - "version": "d5a4792", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛03.json", "type": "file", "hash": "b49755ca7c3cb0b5cac0c89a36e16873cb49c234", - "version": "b49755c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛04.json", "type": "file", "hash": "115f712b7f6451f7a3425d225be1e3765a78b908", - "version": "115f712", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛05.json", "type": "file", "hash": "ca72655225b0a3a3245496da2b829ba7fcb9f7c6", - "version": "ca72655", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛06.json", "type": "file", "hash": "bde41167e4e1fe3112a67ce1281f8060233b3cce", - "version": "bde4116", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛07.json", "type": "file", "hash": "8afeb79f61cdd5725b4451d3d1bc29f1c6406610", - "version": "8afeb79", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛08.json", "type": "file", "hash": "35246d96f39eb5afb2c7e15e5142ce0e5fc77846", - "version": "35246d9", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛09.json", "type": "file", "hash": "1899744ee085ca43c63257bea54996e00a2e86e3", - "version": "1899744", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛10.json", "type": "file", "hash": "5b4ec1aca1ddc01829daa013eb07aebed89e4bf6", - "version": "5b4ec1a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛11.json", "type": "file", "hash": "ba33a96bf1bff898cf29555def9a5bc19545d8a7", - "version": "ba33a96", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7020稻妻清濑岛12.json", "type": "file", "hash": "3989480fbebee431d9eb397a06446348d117218f", - "version": "3989480", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7022稻妻鹤冠03.json", "type": "file", "hash": "07f664acf0ddfcbc30e9a795df320f4a215c8f09", - "version": "07f664a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7022稻妻鹤冠04.json", "type": "file", "hash": "fbfbee6695fc6b0fadc41fcd05a440bf27474e69", - "version": "fbfbee6", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7022稻妻鹤冠05.json", "type": "file", "hash": "d7a974bcdcb2a8c19747fa0c1cd54a9a2bb1b888", - "version": "d7a974b", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "7022稻妻鹤冠06.json", "type": "file", "hash": "7869d5ede76c7c745a5f5e101f0851e9c41aef5d", - "version": "7869d5e", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4001须弥恒那兰那01.json", "type": "file", "hash": "24b5ccf39effa6d35a3303e4774ded7b86976d60", - "version": "24b5ccf", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4002须弥二净甸01.json", "type": "file", "hash": "ad034ccaa75cef400bc684c91ead70bdbf3ad815", - "version": "ad034cc", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4002须弥二净甸02.json", "type": "file", "hash": "c1c21f9b3ee11a0661e550a796fe53ef5e97587d", - "version": "c1c21f9", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4003须弥香醉坡01.json", "type": "file", "hash": "f5738ce2257368e67a747ae2d9231649019567a0", - "version": "f5738ce", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4004须弥草摊窟01.json", "type": "file", "hash": "751ccb3f1788233a434e23afd922ad85dd120972", - "version": "751ccb3", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4005须弥阿陀河谷01.json", "type": "file", "hash": "19007923b3fb3b507193f1fb6c079b399d901f16", - "version": "1900792", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4005须弥阿陀河谷02.json", "type": "file", "hash": "4987c681611585f8be5372917e93cdea9fe5c10a", - "version": "4987c68", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4005须弥阿陀河谷03.json", "type": "file", "hash": "322039068f0173027dc98eb2ffdbeead4079757d", - "version": "3220390", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4006须弥善见地01.json", "type": "file", "hash": "bc57a7c1e7c0f9fcb7ae5e888caec716c28a0c4d", - "version": "bc57a7c", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4007须弥道城林01.json", "type": "file", "hash": "439e1ed745f3114807cbaca368e87f48da70c124", - "version": "439e1ed", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] }, { "name": "9_4007须弥道城林02.json", "type": "file", "hash": "f55cf0a515c6a060d3b67e7aa53d95b6f7eb976d", - "version": "f55cf0a", + "version": "1.0", "author": "mfkvfhpdx", "description": "", "tags": [ "锄地上限集", - "04_锄小怪上限型" + "04_锄小怪上限型", + "战斗" ] } ] @@ -20949,209 +24807,228 @@ "name": "dd01奥奇纳塔(1).json", "type": "file", "hash": "b77063ff5cf6ae9c8ea5a7f77506f5505797fa7e", - "version": "b77063f", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "dd02烟谜主(3).json", "type": "file", "hash": "d4ebac4bce023d1d78b735da8e44aab5984c316d", - "version": "d4ebac4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "dd03硫晶支脉(5).json", "type": "file", "hash": "22990a543851ff13de6bc02d2cf99a3ffe45b152", - "version": "22990a5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "dd04祖遗庙宇上(3).json", "type": "file", "hash": "f07351a12e12564a653646d896d3ab59993edacc", - "version": "f07351a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "dd05悬木人(4).json", "type": "file", "hash": "e6a3762a9e1e0725635b56fd5b3a256ec5251280", - "version": "e6a3762", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "dd06流泉之众(2).json", "type": "file", "hash": "102bc1fc138bc1b60528c8f0abf522fdfab6c30b", - "version": "102bc1f", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-凛冽-镜璧山-2.json", "type": "file", "hash": "e70fac93825fd6567873dc053737fd6dd3176784", - "version": "e70fac9", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-凛冽-镜璧山.json", "type": "file", "hash": "13b0ccddf13b8df21e7bc3e7e5b58b2f43d81860", - "version": "13b0ccd", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-溯流-彩石顶.json", "type": "file", "hash": "19728b146d213c07159ef485e510aeefe39be79a", - "version": "19728b1", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-溯流-硫晶支脉.json", "type": "file", "hash": "bec3021c0e7c532ca1396b3663c970cc99923010", - "version": "bec3021", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-焚燃-奥奇卡纳塔.json", "type": "file", "hash": "90fda6c3c55c9473fcf23f8eccd9b4ad9ec64d2e", - "version": "90fda6c", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-疾叶-万火之瓯.json", "type": "file", "hash": "5222d6d972d9c97d43379264f2a0c5ae614ee870", - "version": "5222d6d", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-疾叶-坚岩隘谷.json", "type": "file", "hash": "073f7351ed6e5e3549a9dae9d0554b2c61eef3cd", - "version": "073f735", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-疾叶-彩石顶.json", "type": "file", "hash": "c25f17a178b37496a3f70198c3db1917aafbb628", - "version": "c25f17a", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-疾叶-踞石山.json", "type": "file", "hash": "bc3094b44ea8eed9b8321f2965d9969c070ec55a", - "version": "bc3094b", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-窟岩-万火之瓯.json", "type": "file", "hash": "71bcd62e93e59136bf570eae6577a853e59e7d6a", - "version": "71bcd62", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-窟岩-坚岩隘谷.json", "type": "file", "hash": "0d11257b9cb8b63d0477dd832b6ee10494e884ad", - "version": "0d11257", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-窟岩-悬木人.json", "type": "file", "hash": "174c84c547d744d650a8615c0d104b1f537e1c4e", - "version": "174c84c", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] }, { "name": "大灵显化身-窟岩-踞石山.json", "type": "file", "hash": "2e015724193f0ae835f3ac9977b8d80321048c58", - "version": "2e01572", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ - "大灵显化身" + "大灵显化身", + "战斗" ] } ] @@ -21164,154 +25041,168 @@ "name": "大伟丘-漓月-石门.json", "type": "file", "hash": "693eaa3187290ba8d105d8eea98016054bff3a0c", - "version": "693eaa3", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-璃月-云来海.json", "type": "file", "hash": "894a5d1d37d71ee1f9562e53c339eb32854b48dd", - "version": "894a5d1", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-璃月-天遒谷.json", "type": "file", "hash": "3c9f67446e099a75320d6bc19f3a6b220de34d47", - "version": "3c9f674", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-璃月-庆云顶.json", "type": "file", "hash": "0d8a39984d820888636ddebcf24356cf08c594e7", - "version": "0d8a399", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-璃月-明蕴镇.json", "type": "file", "hash": "a7dc40a27270b03b3fab61a96d65f70919e59530", - "version": "a7dc40a", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-璃月-灵矩关.json", "type": "file", "hash": "aae7024ff5c758dd1e8d9e6ca45344af44811c44", - "version": "aae7024", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-璃月-翠玦坡.json", "type": "file", "hash": "4eebe229bca4eea7100d2f9b69c48059af81a31a", - "version": "4eebe22", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-璃月-轻策庄.json", "type": "file", "hash": "6c1ec5251b0ac862ffded1b46797162b5acba3a0", - "version": "6c1ec52", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-蒙德-奔狼领.json", "type": "file", "hash": "d773eeb3f281bcd5b63c65c0a43a2e4eccfd1f47", - "version": "d773eeb", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-蒙德-望风山地.json", "type": "file", "hash": "1488225cebf7d10c2f368c90b1ca3b42fc2b069d", - "version": "1488225", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-蒙德-誓言岬.json", "type": "file", "hash": "f161e71f381f1bd5d3d7ba74fcb38e0f629120fc", - "version": "f161e71", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-蒙德-达达乌帕谷.json", "type": "file", "hash": "231d9f14759df969725baf98d8117fb3d9c2013f", - "version": "231d9f1", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-蒙德-风起地.json", "type": "file", "hash": "e865289f4a61d1d9a9f3dd2f28d161ec6b8678bf", - "version": "e865289", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] }, { "name": "大伟丘-蒙德-风龙废墟.json", "type": "file", "hash": "bff1f8e47261c91cb78b9d6caf910d480b14b582", - "version": "bff1f8e", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ - "大伟丘&奇怪的丘丘人" + "大伟丘&奇怪的丘丘人", + "战斗" ] } ] @@ -21324,99 +25215,108 @@ "name": "01绀田村-刀镡.json", "type": "file", "hash": "5acde02aee9d763df00d5071e280c8a6e7c74f70", - "version": "5acde02", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "刀镡" + "刀镡", + "战斗" ] }, { "name": "02海祇岛右-刀镡.json", "type": "file", "hash": "5c40155b9714169f7875cf1f8fe68a8b0e638049", - "version": "5c40155", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "刀镡" + "刀镡", + "战斗" ] }, { "name": "03海祇岛左上-刀镡.json", "type": "file", "hash": "d8053f7af43d1486e789a38262cfc574b8769ad4", - "version": "d8053f7", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "刀镡" + "刀镡", + "战斗" ] }, { "name": "04神里屋敷-刀镡.json", "type": "file", "hash": "a831e3b0874e5eeb4a452efb1a60345f4096bae8", - "version": "a831e3b", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "刀镡" + "刀镡", + "战斗" ] }, { "name": "05越石村-刀镡.json", "type": "file", "hash": "05cb8ede81d4156b7b67c9f3eb7e216f1024ad0a", - "version": "05cb8ed", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "刀镡" + "刀镡", + "战斗" ] }, { "name": "刃连岛-刀镡.json", "type": "file", "hash": "8511ca6e3ab61884b0ccda8c34718bddee470986", - "version": "8511ca6", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "刀镡" + "刀镡", + "战斗" ] }, { "name": "緋木村-刀镡.json", "type": "file", "hash": "00415c7583159fa19e38fbbde3b37397cea21294", - "version": "00415c7", + "version": "1.0", "author": "san", "description": "緋木村刀镡", "tags": [ - "刀镡" + "刀镡", + "战斗" ] }, { "name": "緋木村下-刀镡.json", "type": "file", "hash": "343527c865eb2657530b20de4a0114fb86e02ade", - "version": "343527c", + "version": "1.0", "author": "san", "description": "緋木村刀镡", "tags": [ - "刀镡" + "刀镡", + "战斗" ] }, { "name": "花然之庭-刀镡.json", "type": "file", "hash": "ef33188f6c6ddff3ecff48551d8801ce3c7e3748", - "version": "ef33188", + "version": "1.0", "author": "san", "description": "刀镡", "tags": [ - "刀镡" + "刀镡", + "战斗" ] } ] @@ -21429,143 +25329,156 @@ "name": "盗宝团-01璃沙郊左下.json", "type": "file", "hash": "e769e0e2ea43de22e7d17319637580cb452ffe70", - "version": "e769e0e", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-02璃沙郊右下.json", "type": "file", "hash": "9f3e1c6f92cebef5a6fbd8cef5188f8b9a461599", - "version": "9f3e1c6", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-03天衡山左侧.json", "type": "file", "hash": "40d0fe97234383e33f39143f0f718c5da919ca9c", - "version": "40d0fe9", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-04璃沙郊上侧.json", "type": "file", "hash": "a109a3003b96bff92b4cdd88d12d98aceb6aa1ef", - "version": "a109a30", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-05璃沙郊(曲径通幽之处).json", "type": "file", "hash": "097c7b2eb8101e3d27cc4034853cb99af835e1ad", - "version": "097c7b2", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-06云来海.json", "type": "file", "hash": "06a35c1190183d8ebd8e5b1b13595c9ce9f43813", - "version": "06a35c1", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-07珉林.json", "type": "file", "hash": "2a9709d57272c39125ad05fb73766b8eba941554", - "version": "2a9709d", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-08碧水原.json", "type": "file", "hash": "c2821141c2019cfc26edb0050a92bbe4534a59ad", - "version": "c282114", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-09雪山上方.json", "type": "file", "hash": "74a56111f16c96dcee53589f9033f3fccd629164", - "version": "74a5611", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-10覆雪之路右上.json", "type": "file", "hash": "7c48ca1378f57a38d68bcac07aea3b2a056d92db", - "version": "7c48ca1", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-11荒海.json", "type": "file", "hash": "0e99e9f35d941308af47b20f7c0f2ecfdac79bee", - "version": "0e99e9f", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-12清籁岛.json", "type": "file", "hash": "eccde4b7a96a668100837e6a1f761b5542d6ae12", - "version": "eccde4b", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] }, { "name": "盗宝团-13石越村右侧.json", "type": "file", "hash": "79a67544ce608656179f6a18d23f68108579c8e8", - "version": "79a6754", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "盗宝团" + "盗宝团", + "战斗" ] } ] @@ -21578,22 +25491,24 @@ "name": "dq01巨渊之后右(1).json", "type": "file", "hash": "dd3b8f22b03b480efe6df7a1418dd824efdf50d3", - "version": "dd3b8f2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "冬国仕女" + "冬国仕女", + "战斗" ] }, { "name": "dq02鸣神大社右上情侣(1).json", "type": "file", "hash": "3d55dfd851bca3b5c775fac1dd16e37eb370e549", - "version": "3d55dfd", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "冬国仕女" + "冬国仕女", + "战斗" ] } ] @@ -21606,121 +25521,132 @@ "name": "善见地1.json", "type": "file", "hash": "24d00a452eb86380806ccdb3efdd6a39fbec70b8", - "version": "24d00a4", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "善见地2.json", "type": "file", "hash": "be16bc6435a83ad9d08cc020f05144a7d4a62185", - "version": "be16bc6", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "塔尼特露营地.json", "type": "file", "hash": "c8abb55afd334fdd5c33e943c0d51c3b78855d12", - "version": "c8abb55", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "天臂池1.json", "type": "file", "hash": "c2c9ab9d0ef401f4a19cec733cc6773eb21bf0be", - "version": "c2c9ab9", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "天臂池2.json", "type": "file", "hash": "acc7e90dae1540adb12bded43c0ddb7c4acc8abc", - "version": "acc7e90", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "天臂池3.json", "type": "file", "hash": "8cfb57cca2a264db9536919617e58a5107858168", - "version": "8cfb57c", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "荼诃落谷1.json", "type": "file", "hash": "4b515fa8a0eab47edcf1ed55692ac0f01ef0a552", - "version": "4b515fa", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "荼诃落谷2.json", "type": "file", "hash": "96634a7415ba88ef70220fc3031f38d9a8f034d6", - "version": "96634a7", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "觉王之殿1.json", "type": "file", "hash": "4e2773be2ecd1d270b5fdaa678b43c24c40e510d", - "version": "4e2773b", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "阿陀河谷1.json", "type": "file", "hash": "bb67c5172e6d8ee86cad844d4aa00185430d7ad4", - "version": "bb67c51", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] }, { "name": "阿陀河谷2.json", "type": "file", "hash": "3112d24776607fc336be927893bcd01dcc009674", - "version": "3112d24", + "version": "1.0", "author": "未知作者", "description": "", "tags": [ - "镀金旅团" + "镀金旅团", + "战斗" ] } ] @@ -21733,88 +25659,96 @@ "name": "发条机关01.json", "type": "file", "hash": "411fe6eafa81b461ab869996c36624b357e8d22a", - "version": "411fe6e", + "version": "1.0", "author": "½", "description": "", "tags": [ - "发条机关" + "发条机关", + "战斗" ] }, { "name": "发条机关02.json", "type": "file", "hash": "7cdf3cf9732f299d4b770966a63b12a68b407cbb", - "version": "7cdf3cf", + "version": "1.0", "author": "½", "description": "", "tags": [ - "发条机关" + "发条机关", + "战斗" ] }, { "name": "发条机关03.json", "type": "file", "hash": "d8f033a2d5d4f500090ea6ef012ff4bf8cfc44fd", - "version": "d8f033a", + "version": "1.0", "author": "½", "description": "", "tags": [ - "发条机关" + "发条机关", + "战斗" ] }, { "name": "发条机关04.json", "type": "file", "hash": "f4a8630de910024a81dac368a9c392d7d29b7af0", - "version": "f4a8630", + "version": "1.0", "author": "½", "description": "", "tags": [ - "发条机关" + "发条机关", + "战斗" ] }, { "name": "发条机关05.json", "type": "file", "hash": "181fe5e0701b54faf48b0963a8c88465435723e9", - "version": "181fe5e", + "version": "1.0", "author": "½", "description": "", "tags": [ - "发条机关" + "发条机关", + "战斗" ] }, { "name": "发条机关06.json", "type": "file", "hash": "c681b74724b59eec0808f5d6bc689692de9b3b3f", - "version": "c681b74", + "version": "1.0", "author": "½", "description": "", "tags": [ - "发条机关" + "发条机关", + "战斗" ] }, { "name": "发条机关07.json", "type": "file", "hash": "a4432f7004726d7066425365ae40d59308e78c51", - "version": "a4432f7", + "version": "1.0", "author": "½", "description": "", "tags": [ - "发条机关" + "发条机关", + "战斗" ] }, { "name": "发条机关08.json", "type": "file", "hash": "06be57cebfd55ff74deb196f5d0c364f53d8b622", - "version": "06be57c", + "version": "1.0", "author": "½", "description": "", "tags": [ - "发条机关" + "发条机关", + "战斗" ] } ] @@ -21827,88 +25761,96 @@ "name": "枫丹风役人01-03.json", "type": "file", "hash": "f1350abad32b8bdd8efcd2ddee5a4a9edeab70a4", - "version": "f1350ab", + "version": "1.1", "author": "迷茫之途", "description": "", "tags": [ - "风役人" + "风役人", + "战斗" ] }, { "name": "枫丹风役人04.json", "type": "file", "hash": "6ff116677a1d6456871040997576a4222220a75f", - "version": "6ff1166", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "风役人" + "风役人", + "战斗" ] }, { "name": "枫丹风役人05.json", "type": "file", "hash": "1f963131e6eebe6f8f1fee45f378b78cd1b7633b", - "version": "1f96313", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "风役人" + "风役人", + "战斗" ] }, { "name": "枫丹风役人06-07.json", "type": "file", "hash": "7637613ba3794911d861ed53deb1f35192809d0a", - "version": "7637613", + "version": "1.1", "author": "迷茫之途", "description": "", "tags": [ - "风役人" + "风役人", + "战斗" ] }, { "name": "枫丹风役人08.json", "type": "file", "hash": "eae1c03014be6a7f916a2178503a23a83af6c88a", - "version": "eae1c03", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "风役人" + "风役人", + "战斗" ] }, { "name": "枫丹风役人09.json", "type": "file", "hash": "d893f02b37389a686c8626a6247186595c9ab217", - "version": "d893f02", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "风役人" + "风役人", + "战斗" ] }, { "name": "枫丹风役人10.json", "type": "file", "hash": "334eb90769758773841a18fdc9cfda7e9f6b0a15", - "version": "334eb90", + "version": "1.0", "author": "XS", "description": "第一个点位高危", "tags": [ - "风役人" + "风役人", + "战斗" ] }, { "name": "枫丹风役人11.json", "type": "file", "hash": "336462b456c3a8b369b3976f735d9cc41072dcb7", - "version": "336462b", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "风役人" + "风役人", + "战斗" ] } ] @@ -21928,7 +25870,7 @@ "name": "堇瓜-(纳西妲)-9.json", "type": "file", "hash": "1f6e9754195cfd85173e8e67416328e398b19374", - "version": "1f6e975", + "version": "1.0", "author": "momo", "description": "", "tags": [ @@ -21944,7 +25886,7 @@ "name": "堇瓜-01-鸣神岛-稻妻城-3个.json", "type": "file", "hash": "ca80e8728032e41c8f575ef4705597ec666aca89", - "version": "ca80e87", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -21956,7 +25898,7 @@ "name": "堇瓜-02-鸣神岛-白狐之野-3个.json", "type": "file", "hash": "6b6e5cb3517b23dd8800fb361a9d3b1058b9b48d", - "version": "6b6e5cb", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -21968,7 +25910,7 @@ "name": "堇瓜-03-鸣神岛-绀田村-14个.json", "type": "file", "hash": "4e44d37f54cdb921e8cba3b730e8178039e004bd", - "version": "4e44d37", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -21980,7 +25922,7 @@ "name": "堇瓜-04-鸣神岛-镇守之森-6个.json", "type": "file", "hash": "7fdc01679948547bfcfb523b64b9ae75f8b22a40", - "version": "7fdc016", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -21992,7 +25934,7 @@ "name": "堇瓜-05-鸣神岛-神里屋敷-9个.json", "type": "file", "hash": "02e111ff6d2d59c1831f7230a080455a9b49d68f", - "version": "02e111f", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -22004,7 +25946,7 @@ "name": "堇瓜-06-鸣神岛-影向山(北侧)-17个.json", "type": "file", "hash": "c24191e191c268a8cc0f13b2b7574dc0090cb695", - "version": "c24191e", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -22016,7 +25958,7 @@ "name": "堇瓜-07-鸣神岛-荒海-6个.json", "type": "file", "hash": "82ab62e0f65ae9592a6ce0fc1b405b1658fea2e3", - "version": "82ab62e", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -22028,7 +25970,7 @@ "name": "堇瓜-08-神无冢-九条阵屋-11个.json", "type": "file", "hash": "40be4e49d9297ce9f3a81cecac38bc2dc7790915", - "version": "40be4e4", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -22040,7 +25982,7 @@ "name": "堇瓜-09-神无冢-踏鞴砂(右侧)-6个.json", "type": "file", "hash": "43cb8dd0a527876ad28c7f2951af3b1a108033f9", - "version": "43cb8dd", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -22060,7 +26002,7 @@ "name": "枫丹-佩特莉可镇.json", "type": "file", "hash": "08a0576bfed303429e13324b163c9561f2f1a3e6", - "version": "08a0576", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22071,7 +26013,7 @@ "name": "枫丹-卡布狄斯堡遗迹上方.json", "type": "file", "hash": "9e05478e0e253d6492dd61e2cbd1a182080d0bf5", - "version": "9e05478", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22082,7 +26024,7 @@ "name": "枫丹-卡布狄斯堡遗迹下方.json", "type": "file", "hash": "87fcfc04150999e0f57adf77f134503da9d3def1", - "version": "87fcfc0", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22093,7 +26035,7 @@ "name": "枫丹-新枫丹科学院上方.json", "type": "file", "hash": "08420316a068f96f104327565d80ae552d51ff88", - "version": "0842031", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22104,7 +26046,7 @@ "name": "枫丹-新枫丹科学院左上方.json", "type": "file", "hash": "28ab2d5c21f6b479c877e0ad32408162848cf4b5", - "version": "28ab2d5", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22115,7 +26057,7 @@ "name": "枫丹-新枫丹科学院左侧.json", "type": "file", "hash": "76462ec06aeec7ad3c44f0ed47fe2f48a149f998", - "version": "76462ec", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22126,7 +26068,7 @@ "name": "枫丹-秋分山东东侧.json", "type": "file", "hash": "2a98de076b76eaac2d60069db7b69b15987d314f", - "version": "2a98de0", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22137,7 +26079,7 @@ "name": "枫丹-秋分山东侧.json", "type": "file", "hash": "328300a2fa6fa193338fdf2d978df4cde7ad9b4b", - "version": "328300a", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22148,7 +26090,7 @@ "name": "璃月-孤云阁.json", "type": "file", "hash": "80f0f78a2173633f9ce0b7e1e54d26f4ff89b4d7", - "version": "80f0f78", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22159,7 +26101,7 @@ "name": "璃月-层岩巨渊.json", "type": "file", "hash": "bafa88cbbd939697f5662b6ead26a17ab5c7302e", - "version": "bafa88c", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22170,7 +26112,7 @@ "name": "璃月-沉玉谷.json", "type": "file", "hash": "e6f0a34a883cf77518f72914e12dda48ff447177", - "version": "e6f0a34", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22181,7 +26123,7 @@ "name": "稻妻-平海砦.json", "type": "file", "hash": "6515d6c42e1db38160be94ac045bc9dac17c05de", - "version": "6515d6c", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22192,7 +26134,7 @@ "name": "纳塔-奥奇卡纳塔下方.json", "type": "file", "hash": "42d010871f8c63b96e074a52b8f7cc499e01c227", - "version": "42d0108", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22203,7 +26145,7 @@ "name": "纳塔-柴薪之丘 .json", "type": "file", "hash": "0e9ab233280284ae8a2b109ed9bf0b3f32c094ee", - "version": "0e9ab23", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22214,7 +26156,7 @@ "name": "蒙德-晨曦酒庄旁.json", "type": "file", "hash": "f9b4045c0158a62a98043f311b08ef0c4192147b", - "version": "f9b4045", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22225,7 +26167,7 @@ "name": "蒙德-风龙废墟下方.json", "type": "file", "hash": "e84cbe6ad952d099f712adc5d60ca07c5286f699", - "version": "e84cbe6", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22236,7 +26178,7 @@ "name": "须弥-上风蚀地.json", "type": "file", "hash": "02a069aaed2a219332e178b1b4f6f87d7d1f44c1", - "version": "02a069a", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22247,7 +26189,7 @@ "name": "须弥-下风蚀地.json", "type": "file", "hash": "aac64e70132336c8f2d3dcbeed069d0bc926ff3e", - "version": "aac64e7", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22258,7 +26200,7 @@ "name": "须弥-护世森.json", "type": "file", "hash": "91a8a04ba1881eee86ac0e8bd681eae54866f0aa", - "version": "91a8a04", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22269,7 +26211,7 @@ "name": "须弥-道成林.json", "type": "file", "hash": "de11cb48e4dcd3015719f91d664ef8381e37e951", - "version": "de11cb4", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22280,7 +26222,7 @@ "name": "须弥-阿如村.json", "type": "file", "hash": "26e6e6cc0a502e0d9448091a746ba74cdb7b3d58", - "version": "26e6e6c", + "version": "1.0", "author": "ran", "description": "晶蝶", "tags": [ @@ -22297,7 +26239,7 @@ "name": "久雨莲-枫丹庭(纳西妲)-8.json", "type": "file", "hash": "fa5627b32842e8811213494d3451dfbf28f35dc4", - "version": "fa5627b", + "version": "1.0", "author": "momo", "description": "", "tags": [ @@ -22315,7 +26257,7 @@ "name": "璃月火花-南天门.json", "type": "file", "hash": "ab11a5b336621721bc4fa36942eb12a974e6fdaa", - "version": "ab11a5b", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -22327,19 +26269,20 @@ "name": "璃月火花-天遒谷.json", "type": "file", "hash": "3fe06beff45dfd47e8d169f90eb90682638f68cf", - "version": "3fe06be", + "version": "1.0", "author": "ran", "description": "", "tags": [ "烈焰花", - "水元素力收集" + "水元素力收集", + "战斗" ] }, { "name": "璃月火花-魔女本.json", "type": "file", "hash": "7a56182451ad59035fd897aa3c8c349e86e86f86", - "version": "7a56182", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -22351,7 +26294,7 @@ "name": "蒙德火花-急冻树.json", "type": "file", "hash": "7b72d2f68d4b0c65df15ffcac4f6ea30632c2639", - "version": "7b72d2f", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -22363,19 +26306,20 @@ "name": "蒙德火花-誓言岬.json", "type": "file", "hash": "d243972e21e82e73850e53e045b7243c904ef9cc", - "version": "d243972", + "version": "1.0", "author": "ran", "description": "", "tags": [ "烈焰花", - "水元素力收集" + "水元素力收集", + "战斗" ] }, { "name": "蒙德火花-雪山上方 .json", "type": "file", "hash": "f9f580ff397b9d57a5132ff740c566c16533b088", - "version": "f9f580f", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -22387,7 +26331,7 @@ "name": "蒙德火花-风龙废墟左侧.json", "type": "file", "hash": "9ee38f3420621bed2bf880e2982ab829066dba97", - "version": "9ee38f3", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -22399,19 +26343,20 @@ "name": "须弥火花-折胫谷右侧.json", "type": "file", "hash": "b687bc3feebcf3bdbff812ba705dad192ebb8280", - "version": "b687bc3", + "version": "1.0", "author": "ran", "description": "", "tags": [ "烈焰花", - "水元素力收集" + "水元素力收集", + "战斗" ] }, { "name": "须弥火花-茸蕈窟.json", "type": "file", "hash": "0b8a465a7cda3a501934966bf084e2f1d775846e", - "version": "0b8a465", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -22423,19 +26368,20 @@ "name": "须弥火花-荼诃落谷左下 .json", "type": "file", "hash": "c3296c2a1fbd11c7198a1981eac87a156b944087", - "version": "c3296c2", + "version": "1.0", "author": "ran", "description": "", "tags": [ "烈焰花", - "水元素力收集" + "水元素力收集", + "战斗" ] }, { "name": "须弥火花-饱饮之丘左侧.json", "type": "file", "hash": "49a99a17f12a3e8b572ac6ee7c1548980b9ed97e", - "version": "49a99a1", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -22447,7 +26393,7 @@ "name": "须弥青蛙-锋刃林泽 .json", "type": "file", "hash": "3008aaa09f84f3843b0341f8cacc4978648aab14", - "version": "3008aaa", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -22464,31 +26410,33 @@ "name": "琉鳞石-孑遗的留迹-10个.json", "type": "file", "hash": "ebf69134803ab6ab427c8633dc9e097c18c54ac2", - "version": "ebf6913", + "version": "1.1", "author": "ddaodan", "description": "需要战斗,请配置好战斗策略\n1.1 调整可能遗漏的点位", "tags": [ "琉鳞石", - "雷元素力收集" + "雷元素力收集", + "战斗" ] }, { "name": "琉鳞石-沃陆之邦七天神像东北-14个.json", "type": "file", "hash": "f1a038ebc937d55a70d0f5e6a82316c9f34cdcd4", - "version": "f1a038e", + "version": "1.1", "author": "ddaodan", "description": "需要战斗,请配置好战斗策略\n1.1 添加一个战斗,尝试通过跳跃避免被卡住", "tags": [ "琉鳞石", - "雷元素力收集" + "雷元素力收集", + "战斗" ] }, { "name": "琉鳞石-火山南-7个.json", "type": "file", "hash": "c5285fb6781fb94bff20092047915d320108071e", - "version": "c5285fb", + "version": "1.1", "author": "ddaodan", "description": "1.1 调整可能卡住的点位", "tags": [ @@ -22500,24 +26448,26 @@ "name": "琉鳞石-火山西北-13个.json", "type": "file", "hash": "420dd60cf0b74ff94b48f2c7f8c47a30ec5a4b05", - "version": "420dd60", + "version": "1.1", "author": "ddaodan", "description": "需要战斗,请配置好战斗策略\n1.1 调整可能卡住的点位", "tags": [ "琉鳞石", - "雷元素力收集" + "雷元素力收集", + "战斗" ] }, { "name": "琉鳞石-石火坠陨处-10个.json", "type": "file", "hash": "770336d1d2b886dfc95d15e1526fbe7c425d5011", - "version": "770336d", + "version": "1.1", "author": "ddaodan", "description": "需要战斗,请配置好战斗策略\n1.1 调整可能卡住的点位", "tags": [ "琉鳞石", - "雷元素力收集" + "雷元素力收集", + "战斗" ] } ] @@ -22530,66 +26480,72 @@ "name": "南天门3只.json", "type": "file", "hash": "fb45c26fcd8c8a98ac6bae4221a38f7612e6d718", - "version": "fb45c26", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "龙蜥" + "龙蜥", + "战斗" ] }, { "name": "天衡山上3只.json", "type": "file", "hash": "52a8671524eb0efe1e1e19d81430faa8bec4a724", - "version": "52a8671", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "龙蜥" + "龙蜥", + "战斗" ] }, { "name": "天遒谷7只.json", "type": "file", "hash": "be27a952e61efe08f623d1d80e5c871e5b24800e", - "version": "be27a95", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "龙蜥" + "龙蜥", + "战斗" ] }, { "name": "奥藏山5只.json", "type": "file", "hash": "f215ef6033d6542064d8b1e931d40715ddb8630e", - "version": "f215ef6", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "龙蜥" + "龙蜥", + "战斗" ] }, { "name": "庆云顶右1只.json", "type": "file", "hash": "e28cbce5c1f006c964c5eafd4068a605ecfa8bd8", - "version": "e28cbce", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "龙蜥" + "龙蜥", + "战斗" ] }, { "name": "雪葬之都3只.json", "type": "file", "hash": "04a8ba86a251748d522bf7b068e6f9a95813a344", - "version": "04a8ba8", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "龙蜥" + "龙蜥", + "战斗" ] } ] @@ -22602,231 +26558,544 @@ "name": "db01奥奇纳塔(1).json", "type": "file", "hash": "ed80790c8203c092343f41e2ab2c7d738c5ab5fb", - "version": "ed80790", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "db02硫晶支脉上(3).json", "type": "file", "hash": "19479cbaa64ca9ac3313762340a7fc6591c28371", - "version": "19479cb", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "db03纳塔主城附近(5).json", "type": "file", "hash": "6d843d83e92aed0f8013ce80a4ff9b0671fc1ada", - "version": "6d843d8", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "db04彩石顶、庙宇(4).json", "type": "file", "hash": "197c698ca8b35dad916f884ff62ac6830dd56bf2", - "version": "197c698", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "db05流泉之众(5).json", "type": "file", "hash": "716123ff72dc3f3b7cb37c6f5bba82df8989e9e2", - "version": "716123f", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "万火之瓶.json", "type": "file", "hash": "15c410dff650e3967c2e24c07e0f814a3839a9c0", - "version": "15c410d", + "version": "1.0", "author": "jsp", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "两个怪.json", "type": "file", "hash": "3eef422f3be691ff02062638c769c0178976881a", - "version": "3eef422", + "version": "1.0", "author": "jsp", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "两个怪2 2.json", "type": "file", "hash": "a42b037bbe8f60be3a13c6bf1b306f1a719ba4ec", - "version": "a42b037", + "version": "1.0", "author": "jsp", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "两个怪谨慎打.json", "type": "file", "hash": "0273c190efbb2a15602f10b8681b7320973df901", - "version": "0273c19", + "version": "1.0", "author": "jsp", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "圣火竞技场.json", "type": "file", "hash": "07c9742cd6e74c863a4f0c758e622ec2fc574db8", - "version": "07c9742", + "version": "1.0", "author": "Shell", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "坚岩毅谷.json", "type": "file", "hash": "0a6f63e2e45c02a1b0eebdac1bf630d212ed829e", - "version": "0a6f63e", + "version": "1.0", "author": "jsp", "description": "坚岩毅谷", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "坚岩毅谷2.json", "type": "file", "hash": "960a1ffc9f3a5cd15491d41f4cf310ee49064cc4", - "version": "960a1ff", + "version": "1.0", "author": "jsp", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "奥奇卡纳塔01.json", "type": "file", "hash": "c77ec6214e52ac7311117df68827758c630f5899", - "version": "c77ec62", + "version": "1.0", "author": "Shell", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "彩石顶.json", "type": "file", "hash": "94572e7795cea32a9f2371877eff12a3262a1437", - "version": "94572e7", + "version": "1.0", "author": "Shell", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "悬木人西.json", "type": "file", "hash": "29b3cdfcfe0241394c9cf899255993c8950d2a52", - "version": "29b3cdf", + "version": "1.0", "author": "Shell", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "柴薪之丘-南.json", "type": "file", "hash": "0975ae832357322368d3ceb0090d750deb55e703", - "version": "0975ae8", + "version": "1.0", "author": "Shell", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "流泉之众-南.json", "type": "file", "hash": "b227ca577b0634c7bc331772766442abe83f2e9e", - "version": "b227ca5", + "version": "1.0", "author": "Shell", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "溶水域 .json", "type": "file", "hash": "acca34661c77e9be0d16cff2f096bfe9f5c6f8ff", - "version": "acca346", + "version": "1.0", "author": "Shell", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "火之瓶2 (1).json", "type": "file", "hash": "27c40e20a0e7cd8b93b540bdcdf8098ea5184028", - "version": "27c40e2", + "version": "1.0", "author": "jsp", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "火瓶3.json", "type": "file", "hash": "06a6d5c91dfe09f2cc6e830b526cb38ce1b474f4", - "version": "06a6d5c", + "version": "1.0", "author": "jsp", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" ] }, { "name": "硫晶支脉-北.json", "type": "file", "hash": "4b3a6003a1c9f547c245ea9db9dc8ac2d3992e77", - "version": "4b3a600", + "version": "1.0", "author": "Shell", "description": "", "tags": [ - "秘源机兵" + "秘源机兵", + "战斗" + ] + } + ] + }, + { + "name": "木材伐木点-配合自动伐木使用", + "type": "directory", + "children": [ + { + "name": "[枫丹] 悬铃木x18.json", + "type": "file", + "hash": "dc80f052ce9029e7ddde0807168fcfdc359d3c94", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[枫丹] 椴木x9 + 悬铃木x9.json", + "type": "file", + "hash": "0ab253dc9c80ccc76873d7cc495df8d4f731a924", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[枫丹] 椴木x9.json", + "type": "file", + "hash": "df01a9d076e346503e574d569c4c4d5d996bb2ff", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[枫丹] 炬木x15.json", + "type": "file", + "hash": "c7251c7738f4415861112f424cf892af74470eab", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[枫丹] 白梣木x15.json", + "type": "file", + "hash": "3a237ccfc7b979eafd32f4925409de797214134b", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[枫丹] 香柏木x27.json", + "type": "file", + "hash": "59dbc315cc53b97fd6a222dd685cb52e49f28746", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[璃月] 却砂木x12.json", + "type": "file", + "hash": "45d294ee9ccce0e87100bd52878701b4bd480d13", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[璃月] 竹节x30.json", + "type": "file", + "hash": "349862fb594c295977c547d752226c600649467c", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[稻妻] 孔雀木x9 + 御伽木x6.json", + "type": "file", + "hash": "65750964db26f3d17b8f5297179d2d937fba5904", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[稻妻] 御伽木x9 + 孔雀木x6.json", + "type": "file", + "hash": "4428071a83b0b4e3124a499bf4d419b8c654e433", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[稻妻] 枫木x9.json", + "type": "file", + "hash": "ae92eb39d08e1784d9bf34377004c97bc345e8f3", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[稻妻] 梦见木x12.json", + "type": "file", + "hash": "439fa09b57f05c6d0b0a1873af8088faa1910e0c", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[纳塔] 桃椰子木x12.json", + "type": "file", + "hash": "d7f7757053bda5323de208f7480adcf94a76061d", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[纳塔] 灰灰楼林木x9.json", + "type": "file", + "hash": "26c3138ce97fa2b4460e7387d841449c32399182", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[纳塔] 燃爆木x15.json", + "type": "file", + "hash": "8433dbd33ed2710e57ce9a074f33b083198a93ac", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[纳塔] 白栗栎木x9.json", + "type": "file", + "hash": "81e0433c16d34eda66256893c1eaa878bce23b72", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[蒙德] 垂香木x15.json", + "type": "file", + "hash": "b8c64c7aeaf4774d679068d4caf4adb8b40e89ed", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[蒙德] 杉木x18.json", + "type": "file", + "hash": "22eb78ce6bc0c9164694c53237c54d98e5ee638d", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[蒙德] 松木x24.json", + "type": "file", + "hash": "cc13a7f9d5c622ca17f7fecad47d5c505dc40263", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[蒙德] 桦木x18.json", + "type": "file", + "hash": "78380040189a7f562d91dc04cdcf1a167e060d6b", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[蒙德] 萃华木x6 + 垂香木x3.json", + "type": "file", + "hash": "d579803582ac80e717704d20558472cb6d365059", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[须弥] 业果木x21 + 辉木x3.json", + "type": "file", + "hash": "a40e11ea6a7b249bbc7aa3d022374a996be0e072", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[须弥] 刺葵木x6.json", + "type": "file", + "hash": "1b660a8244cb028e5fea8a2950ef296d58551068", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[须弥] 柽木x15.json", + "type": "file", + "hash": "2bc81c7b0e836e31650d0a71af84b3e9f97b23b2", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[须弥] 证悟木x18 + 业果木x6.json", + "type": "file", + "hash": "47a7480743d82707b001212d54172c90b2407ddf", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" + ] + }, + { + "name": "[须弥] 辉木x21 + 业果木x6.json", + "type": "file", + "hash": "dbc140d554f4515ef40be890b8a8c938e709d914", + "version": "1.0", + "author": "Patrick-Ze (AyakaMain)", + "description": "", + "tags": [ + "木材伐木点-配合自动伐木使用" ] } ] @@ -22839,154 +27108,168 @@ "name": "纳塔龙众-万火之瓯1.json", "type": "file", "hash": "250cc23c87ccac09f8be1e2157277530735551f5", - "version": "250cc23", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-万火之瓯2.json", "type": "file", "hash": "2d5067451feea8aa18beca97d5c22c0a8ce427a1", - "version": "2d50674", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-万火之瓯3.json", "type": "file", "hash": "d4b02afc6c8e02ec90a5ab977dd23ac6e8725a41", - "version": "d4b02af", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-万火之瓯4.json", "type": "file", "hash": "a0e03ec599e86cbb4d14c34c04c64fe3b8d05055", - "version": "a0e03ec", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-万火之瓯5.json", "type": "file", "hash": "cf9c5c5985edc848b8a2fd5133d87d9950db4b58", - "version": "cf9c5c5", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-万火之瓯6.json", "type": "file", "hash": "fd045efb6bc61d4ae6cbb82bc60396c8b4660c2c", - "version": "fd045ef", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-万火之瓯7.json", "type": "file", "hash": "854b8eabfabdc99015dfee0c09095f7418e7003f", - "version": "854b8ea", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-坚岩隘谷1.json", "type": "file", "hash": "ec8521a6be63bf449b1c3b572fa800b189391080", - "version": "ec8521a", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-坚岩隘谷2.json", "type": "file", "hash": "fc7e4cfad519f9cd0b34f1541570a859c48e9649", - "version": "fc7e4cf", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-坚岩隘谷3.json", "type": "file", "hash": "dc9b2e2be95fdd244e8bebdb981ce5ccc0a7af61", - "version": "dc9b2e2", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-坚岩隘谷4.json", "type": "file", "hash": "c4ea25f9d560817e5e48985d7e80df8f14b8ca99", - "version": "c4ea25f", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-坚岩隘谷5.json", "type": "file", "hash": "e961fe5c9112cf54964d80c290eadc8f6e467ff9", - "version": "e961fe5", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-坚岩隘谷6.json", "type": "file", "hash": "1ccb2f55889bf42c83e37e64a5b0ce211f6edfc7", - "version": "1ccb2f5", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] }, { "name": "纳塔龙众-坚岩隘谷7.json", "type": "file", "hash": "bd39f8dea3e86e33dcb716ddb6a3549df5cc8e5a", - "version": "bd39f8d", + "version": "1.0", "author": "老马RYO", "description": "", "tags": [ - "纳塔龙众" + "纳塔龙众", + "战斗" ] } ] @@ -22999,7 +27282,7 @@ "name": "螃蟹-幽林雾道-12只(循环2次).json", "type": "file", "hash": "838edd0e2932cce96e78b0669de96845a97651c8", - "version": "838edd0", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -23010,7 +27293,7 @@ "name": "螃蟹-鹰翔海滩-20只(循环2次).json", "type": "file", "hash": "83cbc0e672a29f29af11ab89be0ff61c11a5e4f5", - "version": "83cbc0e", + "version": "1.0", "author": "起个名字好难", "description": "", "tags": [ @@ -23031,110 +27314,120 @@ "name": "骗骗花-天衡山上.json", "type": "file", "hash": "1dfcf5ff40f8b8744bb5fc1625ff1eb4b46d84b7", - "version": "1dfcf5f", + "version": "1.0", "author": "san", "description": "骗骗花", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-归离院右下.json", "type": "file", "hash": "039cd4b574a90b08999e2986a0ca1c8244df2ee9", - "version": "039cd4b", + "version": "1.0", "author": "san", "description": "", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-归离院右下2.json", "type": "file", "hash": "f0b9acda7b0126df729e776636146472adea2012", - "version": "f0b9acd", + "version": "1.0", "author": "san", "description": "骗骗花", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-渌华池右.json", "type": "file", "hash": "b64201caf4500fca1eba53492efe99cf44f44f74", - "version": "b64201c", + "version": "1.0", "author": "san", "description": "", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-绝云间右上.json", "type": "file", "hash": "2c553b8ef7dc0116e09713617daae21ee3ed0c31", - "version": "2c553b8", + "version": "1.0", "author": "san", "description": "骗骗", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-翠块坡下.json", "type": "file", "hash": "ed18107a71fc9e8ff61128267096ba98965a7c49", - "version": "ed18107", + "version": "1.0", "author": "san", "description": "", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-翠块坡左下.json", "type": "file", "hash": "e6bef27961fa92c1d72a9c62e89c5e9bdc4b72a1", - "version": "e6bef27", + "version": "1.0", "author": "san", "description": "骗骗花", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-翠块坡左下2.json", "type": "file", "hash": "8e42fcae78036212d14eca9012ce430a4646df09", - "version": "8e42fca", + "version": "1.0", "author": "san", "description": "骗骗花", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-誓言峡.json", "type": "file", "hash": "01143edf1eac531dce48d26d3051bf4796dcc894", - "version": "01143ed", + "version": "1.0", "author": "san", "description": "骗骗花", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "骗骗花-风起地右.json", "type": "file", "hash": "017ee6f609e351c96e0ed1de55dfc66e86fe078a", - "version": "017ee6f", + "version": "1.0", "author": "san", "description": "骗骗花", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] } ] @@ -23147,836 +27440,912 @@ "name": "璃月-骗骗花-云来海天衡山北方洞内-2个.json", "type": "file", "hash": "c152e30910f989fb73affa2ad4841765c2497238", - "version": "c152e30", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n璃月-云来海天衡山北方洞内", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-云来海孤云阁东方崖上和南方岸边-2个.json", "type": "file", "hash": "d0aab0dd6caae96d23c68ac74c6546bda571dee6", - "version": "d0aab0d", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n璃月-云来海孤云阁东方崖上和南方岸边", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-云来海孤云阁西北-1个.json", "type": "file", "hash": "f741bbb34c8ad47bb86bb6d40c76d1ccfe126888", - "version": "f741bbb", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-云来海孤云阁西北", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-层岩巨渊巨渊之口东北-3个.json", "type": "file", "hash": "5711d5788c3a6be4540de984165bd75e81768211", - "version": "5711d57", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n璃月-层岩巨渊巨渊之口东北", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-层岩巨渊巨渊之口东南-6个.json", "type": "file", "hash": "7a337a74f326858d284c0aaf99fe162f28570b56", - "version": "7a337a7", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-6个\n璃月-层岩巨渊巨渊之口东南", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林南天门西南采樵谷西北-5个.json", "type": "file", "hash": "3bde7854213add18c8ddda2fa1ed7c8dfbb36891", - "version": "3bde785", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-5个\n璃月-珉林南天门西南采樵谷西北", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林天遒谷-4个.json", "type": "file", "hash": "820bc09bec04ac8d6cbae8ab13e0d06033d855dd", - "version": "820bc09", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-4个\n璃月-珉林天遒谷", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林奥藏山东侧-1个.json", "type": "file", "hash": "175daa4271c543f33c942e3c90b539969c8660a2", - "version": "175daa4", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-珉林奥藏山东侧", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林奥藏山东方-1个.json", "type": "file", "hash": "d7361e14b3557ca511ae84168757f1f4199c5c0c", - "version": "d7361e1", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-珉林奥藏山东方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林奥藏山东方岸边-4个.json", "type": "file", "hash": "b3cd35c0b3c7d35883f7d66baf5aba77c80fab41", - "version": "b3cd35c", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-4个\n璃月-珉林奥藏山东方岸边", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林奥藏山南方-1个.json", "type": "file", "hash": "cbe5e772ff3ee59310e2e845b20eda66d4fcf159", - "version": "cbe5e77", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-珉林奥藏山南方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林奥藏山西南方-1个.json", "type": "file", "hash": "9e4dfef5ef9b3b7126aed29a891d6f745893a2a3", - "version": "9e4dfef", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-珉林奥藏山西南方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林庆云顶东南-1个.json", "type": "file", "hash": "5630e4aebf5d2a98ebf15e8b7ec0060042c5e822", - "version": "5630e4a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-珉林庆云顶东南", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林庆云顶南方-2个.json", "type": "file", "hash": "29df7098018586c1f6e0305a874a2136e4e75cf6", - "version": "29df709", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n璃月-珉林庆云顶南方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林庆云顶西南-1个.json", "type": "file", "hash": "dc7a8fb2036b62a94b1581dd8dd7f209c11110c7", - "version": "dc7a8fb", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-珉林庆云顶西南", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林琥牢山东侧-1个.json", "type": "file", "hash": "26d42a3e85c78611a27f4f66858276e24859c09d", - "version": "26d42a3", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-珉林琥牢山东侧", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林绝云间东北-1个.json", "type": "file", "hash": "5cd3ece739cbd1247111ddd9b18885a8911f5a2a", - "version": "5cd3ece", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-珉林绝云间东北", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林绝云间东南-2个.json", "type": "file", "hash": "3c4b7ebd15885c7a7bc38baf30a6c46de52f3c99", - "version": "3c4b7eb", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n璃月-珉林绝云间东南", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林翠玦坡-4个.json", "type": "file", "hash": "9c16993bd601e72e53241668b1945dc12e4bc444", - "version": "9c16993", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-4个\n璃月-珉林翠玦坡", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-珉林荻花洲西方岸边-3个.json", "type": "file", "hash": "da47adbc34fa39feffbc328362db7a0a1ae58cad", - "version": "da47adb", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n璃月-珉林荻花洲西方岸边", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-琼玑野归离原东南岸边-3个.json", "type": "file", "hash": "37eece35a4bcd3531b46e64abd3265f49c39673e", - "version": "37eece3", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n璃月-琼玑野归离原东南岸边", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-琼玑野明蕴镇-1个.json", "type": "file", "hash": "77b1c72c5ae6474e6816153a0ff8bbc265e48bd6", - "version": "77b1c72", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-琼玑野明蕴镇", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-琼玑野渌华池东方崖上-3个.json", "type": "file", "hash": "dc5c3e56a074b4a8b717796637ee83481f953c45", - "version": "dc5c3e5", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n璃月-琼玑野渌华池东方崖上", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-琼玑野渌华池西南方崖上-3个.json", "type": "file", "hash": "aee43103e35876dbe69c127ece3e5a43e86266e5", - "version": "aee4310", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n璃月-琼玑野渌华池西南方崖上", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-琼玑野渌华池西方崖下-2个.json", "type": "file", "hash": "f3bc93125e2fc6e2f7e799171c4f69b3317662f4", - "version": "f3bc931", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n璃月-琼玑野渌华池西方崖下", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-琼玑野瑶光滩-3个.json", "type": "file", "hash": "4b438b8c3bc2b7a04ff95d744e6eef48f7d11ed2", - "version": "4b438b8", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n璃月-琼玑野瑶光滩", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-璃沙郊灵矩关东方略偏南-1个.json", "type": "file", "hash": "b2940c64f722de804b10c4defb4ebe257973a831", - "version": "b2940c6", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-璃沙郊灵矩关东方略偏南", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-碧水原奥藏山东北方传送锚点附近-2个.json", "type": "file", "hash": "6e59566a20df2d17b8ddcff38ff945de7269a372", - "version": "6e59566", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n璃月-碧水原奥藏山东北方传送锚点附近", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-碧水原奥藏山北方-1个.json", "type": "file", "hash": "4b56b09b6ed7908a4853fea33b4f195edfca32f0", - "version": "4b56b09", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-碧水原奥藏山北方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-碧水原无妄坡西南岸边-1个.json", "type": "file", "hash": "7aa271bbc22f0e099706edef01279141fd06dabb", - "version": "7aa271b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-碧水原无妄坡西南岸边", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-碧水原无妄坡西南崖上-1个.json", "type": "file", "hash": "68d8b52bdad57c20f591a5c4a69c97cef7efb6c1", - "version": "68d8b52", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-碧水原无妄坡西南崖上", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "璃月-骗骗花-碧水原轻策庄西方-1个.json", "type": "file", "hash": "b065b235f2342cc5fb1ba9102a6d05796c5e396d", - "version": "b065b23", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n璃月-碧水原轻策庄西方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-八酝岛名椎滩-2个.json", "type": "file", "hash": "b91aeb955ea40b31081088cd0a3cd1eb26cdf9a7", - "version": "b91aeb9", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-八酝岛名椎滩", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-八酝岛名椎滩东方浅滩-2个.json", "type": "file", "hash": "d8cde923df2c3c93d56ec38c8f52ee406a989f2e", - "version": "d8cde92", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-八酝岛名椎滩东方浅滩", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-八酝岛藤兜砦-1个.json", "type": "file", "hash": "a7f8d8aaf829a01c3650f4730de98e2c602eea16", - "version": "a7f8d8a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-八酝岛藤兜砦", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-八酝岛蛇神之首东南崖上-1个.json", "type": "file", "hash": "d0cbc096d64f661e7895d650eccfadb086d2c1c0", - "version": "d0cbc09", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-八酝岛蛇神之首东南崖上", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-八酝岛蛇神之首西南-3个.json", "type": "file", "hash": "b11877f29ed24c16f9068cd84f1945f37538e97c", - "version": "b11877f", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n稻妻-八酝岛蛇神之首西南", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-海祇岛望泷村东方-1个.json", "type": "file", "hash": "1c10197f4c28ab73fc7aadab0de776236c48316a", - "version": "1c10197", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-海祇岛望泷村东方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-海祇岛望泷村南方岸边-1个.json", "type": "file", "hash": "b47e1c0e0c0169d3599d5b8d68a01d0ca30bdce9", - "version": "b47e1c0", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-海祇岛望泷村南方岸边", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-海祇岛望泷村西南方崖上-2个.json", "type": "file", "hash": "825c9a884cea47b2016865f31bde04d8e97594de", - "version": "825c9a8", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-海祇岛望泷村西南方崖上", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-海祇岛珊瑚宫北方略偏西-5个.json", "type": "file", "hash": "9133451959577742d278046dabcf76bb8905390b", - "version": "9133451", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-5个\n稻妻-海祇岛珊瑚宫北方略偏西", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-海祇岛珊瑚宫西-1个.json", "type": "file", "hash": "15f4b686a2ff9ecc88d9ff19993034b143069c24", - "version": "15f4b68", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-海祇岛珊瑚宫西", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-清籁岛天云峠南方-1个.json", "type": "file", "hash": "ee987c327a07ae93a38198fbf073dc86058423da", - "version": "ee987c3", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-清籁岛天云峠南方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-清籁岛浅濑神社东南方-4个.json", "type": "file", "hash": "11485fcc381946ff737cd9a6b7c6ad68717ba693", - "version": "11485fc", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-4个\n稻妻-清籁岛浅濑神社东南方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-清籁岛浅濑神社东方-1个.json", "type": "file", "hash": "342736e7383d304fb9f9c7c3958c5d671406a044", - "version": "342736e", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-清籁岛浅濑神社东方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-清籁岛越石村东北方-2个.json", "type": "file", "hash": "ff02839517b548a5c690a7494284780d562da58d", - "version": "ff02839", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-清籁岛越石村东北方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-清籁岛越石村北方-2个.json", "type": "file", "hash": "97d5f164da14eabf25854b19cca9b9a3dfb8dc70", - "version": "97d5f16", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-清籁岛越石村北方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-神无冢踏鞴砂东北岸边-1个.json", "type": "file", "hash": "f8dfe2ce2095f680a2ca4562cc56cb43e25a44f7", - "version": "f8dfe2c", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-神无冢踏鞴砂东北岸边", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-神无冢踏鞴砂东北崖下-3个.json", "type": "file", "hash": "1d2fb738db9820155e571ee68b969b4f9248b19b", - "version": "1d2fb73", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n稻妻-神无冢踏鞴砂东北崖下", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-神无冢踏鞴砂西崖上-2个.json", "type": "file", "hash": "3bc90716ca2e25a7272a2e09f309366a4d4c8e8a", - "version": "3bc9071", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-神无冢踏鞴砂西崖上", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鸣神岛影向山-1个.json", "type": "file", "hash": "7fc2cbcb469855b7c12688f1272c20d55a8491b0", - "version": "7fc2cbc", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-鸣神岛影向山", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鸣神岛白狐之野-3个.json", "type": "file", "hash": "51092791a5d9eac8b3e97be017b23d282bdc9529", - "version": "5109279", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n稻妻-鸣神岛白狐之野", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鸣神岛神里屋敷西北-1个.json", "type": "file", "hash": "e85a2d1124a286d2807650b56cc75284c98cc5b9", - "version": "e85a2d1", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-鸣神岛神里屋敷西北", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鸣神岛绀田村北方-2个.json", "type": "file", "hash": "7989ff2ec4bcde0eea8bc284a15cabb61c323528", - "version": "7989ff2", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-鸣神岛绀田村北方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鸣神岛镇守之森-2个.json", "type": "file", "hash": "f72e76296fb0833ef4ca98fb6da8024606c8b0b7", - "version": "f72e762", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-鸣神岛镇守之森", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鹤观千来神祠-2个.json", "type": "file", "hash": "a27a431f4e86adb36bc5ed1957db35c94796787c", - "version": "a27a431", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-鹤观千来神祠", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鹤观惑饲滩西方崖上-1个.json", "type": "file", "hash": "7847d2cee3ad9858b7bb50e40f9ac5208ed9bd00", - "version": "7847d2c", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-鹤观惑饲滩西方崖上", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鹤观知比山北侧海滩-1个.json", "type": "file", "hash": "5c8d24abff096b549f938d88729fdbc2db07be8a", - "version": "5c8d24a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-鹤观知比山北侧海滩", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鹤观笈名海滨-2个.json", "type": "file", "hash": "f0481ecb99b2a0971bc5b273c3ed56517a024a11", - "version": "f0481ec", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n稻妻-鹤观笈名海滨", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鹤观茂知祭场东北-1个.json", "type": "file", "hash": "153b446532f604a9d2f95572a27aaf7ac92c928f", - "version": "153b446", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-鹤观茂知祭场东北", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "稻妻-骗骗花-鹤观菅名山东北侧-1个.json", "type": "file", "hash": "df6557b611eefd1ffb712883b75882b0f237cb29", - "version": "df6557b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n稻妻-鹤观菅名山东北侧", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-坠星山谷千风神殿南略偏西-3个.json", "type": "file", "hash": "e6fe1de69fdb88fcc0e49900cc7df77e6dd181a6", - "version": "e6fe1de", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n蒙德-坠星山谷千风神殿南略偏西", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-坠星山谷望风山地-2个.json", "type": "file", "hash": "bbf5292deb50ecaf110debfeaa8ab94ed1a80752", - "version": "bbf5292", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n蒙德-坠星山谷望风山地", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-坠星山谷望风角和摘星崖-2个.json", "type": "file", "hash": "ff18abf2208fb029625871c8916d71bbb1bff05f", - "version": "ff18abf", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n蒙德-坠星山谷望风角和摘星崖", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-明冠山地风龙废墟北方湖边-1个.json", "type": "file", "hash": "83621046a345dcef37a5f342dd85affcb64e0853", - "version": "8362104", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n蒙德-明冠山地风龙废墟北方湖边", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-明冠山地风龙废墟西方崖下-1个.json", "type": "file", "hash": "a3fc54c31cc1887104f559ac9f57e046233adcd6", - "version": "a3fc54c", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n蒙德-明冠山地风龙废墟西方崖下", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-苍风高地奔狼领-2个.json", "type": "file", "hash": "176ae0db9646097624c87a5b886c8affbfcb3cdd", - "version": "176ae0d", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n蒙德-苍风高地奔狼领", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-苍风高地晨曦酒庄湖中和湖边崖上-2个.json", "type": "file", "hash": "49d1dfa7c412f1eddd818314679df4c185ae1a13", - "version": "49d1dfa", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n蒙德-龙脊雪山", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-苍风高地晨曦酒庄西南崖上-2个.json", "type": "file", "hash": "6310aa0c2299a6a8c1e8f18166cc2c668124b353", - "version": "6310aa0", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n蒙德-苍风高地晨曦酒庄西南崖上", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-苍风高地晨曦酒庄西南石门北-2个.json", "type": "file", "hash": "f0aff37080184628b8ff7a6268b2f469020629ea", - "version": "f0aff37", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n蒙德-苍风高地晨曦酒庄西南石门北", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-苍风高地清泉镇东南-1个.json", "type": "file", "hash": "4a8fca43467111532c8b6fa734cc57667afb9845", - "version": "4a8fca4", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n蒙德-苍风高地清泉镇东南", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-风啸山坡誓言岬-1个.json", "type": "file", "hash": "a84defefd32012adaa2636d8cc7f187bbbe6d556", - "version": "a84defe", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n蒙德-风啸山坡誓言岬", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-风啸山坡达达乌帕谷东南-2个.json", "type": "file", "hash": "7ee572a8e8ab8c3ef9eb5ed3f945fa843ad08325", - "version": "7ee572a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n蒙德-风啸山坡达达乌帕谷东南", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-风啸山坡达达乌帕谷西方略偏北-2个.json", "type": "file", "hash": "9c9ef5bcfc910c8bde054fe076cf04233ae07f1b", - "version": "9c9ef5b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-2个\n蒙德-风啸山坡达达乌帕谷西方略偏北", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-风啸山坡风起地西南方-3个.json", "type": "file", "hash": "7ae18d89a3fb4f07832b869f0f0dc91a32b46859", - "version": "7ae18d8", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-3个\n蒙德-风啸山坡风起地西南方", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] }, { "name": "蒙德-骗骗花-龙脊雪山-1个.json", "type": "file", "hash": "3a69b624aa242cfde125d142ed9471dbf4f1fb54", - "version": "3a69b62", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "骗骗花-1个\n蒙德-龙脊雪山", "tags": [ - "骗骗花" + "骗骗花", + "战斗" ] } ] @@ -23995,66 +28364,72 @@ "name": "天云峠右24只 .json", "type": "file", "hash": "aff2a942087e2466dcf9949bdbd7e208743d7f3d", - "version": "aff2a94", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "天云峠左16只 .json", "type": "file", "hash": "b9e81fbdfea8236d73df80d4cfe471bfff0d1d44", - "version": "b9e81fb", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "平海砦6只.json", "type": "file", "hash": "aeff35585cc38f90b50e09d8a0a35b6ebe72b7bf", - "version": "aeff355", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "望泷村8只 .json", "type": "file", "hash": "025e915ea8fb343a3c8cba15b9d155474de5a8cd", - "version": "025e915", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "越石村3只 .json", "type": "file", "hash": "3bad0379bf14b8397e205a027f0f10bd7326de9b", - "version": "3bad037", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "黄金王兽3只.json", "type": "file", "hash": "011c698ea97d2515a3d6c4b0e5c046a895dc9d65", - "version": "011c698", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] } ] @@ -24067,66 +28442,72 @@ "name": "漂浮灵-天云咔下 2.json", "type": "file", "hash": "7a81921354f8f6c0d58ad82652cc896dc4549f9f", - "version": "7a81921", + "version": "1.0", "author": "san", "description": "漂浮零", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "漂浮灵-天云咔右 1.json", "type": "file", "hash": "2c3616c9e95718af239b5ec649baff56c25f2be9", - "version": "2c3616c", + "version": "1.0", "author": "san", "description": "漂浮零", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "漂浮灵-平海砦.json", "type": "file", "hash": "6a28a77dd9982a868badff1d7cf6aca9ae1b60a2", - "version": "6a28a77", + "version": "1.0", "author": "san", "description": "漂浮零", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "漂浮灵-平海砦2.json", "type": "file", "hash": "d953d98c5aa201855431ecc1b4523690f3096f0b", - "version": "d953d98", + "version": "1.0", "author": "san", "description": "漂浮零", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "漂浮灵-平海砦3.json", "type": "file", "hash": "ce889f6652978efa8d662566881aa9293dfb6e13", - "version": "ce889f6", + "version": "1.0", "author": "san", "description": "漂浮零", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "漂浮灵-黄金兽1.json", "type": "file", "hash": "54b25912f527eb7c9a2deba348ab36c46c4dbaf2", - "version": "54b2591", + "version": "1.0", "author": "san", "description": "漂浮零", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] } ] @@ -24139,286 +28520,312 @@ "name": "稻妻-飘浮灵-海祇岛曚云神社东北-3个.json", "type": "file", "hash": "bc2a9950d43b683662a45d9bc0453fefe9e2ef4b", - "version": "bc2a995", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-3个\n稻妻-海祇岛曚云神社东北", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛曚云神社东南-4个.json", "type": "file", "hash": "32b9637a8431d4b5c435d55015049b0475c7c828", - "version": "32b9637", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-4个\n稻妻-海祇岛曚云神社东南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛曚云神社西南-3个.json", "type": "file", "hash": "b3f96a73ef9aef782847538a1c58a836b931dcf1", - "version": "b3f96a7", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-3个\n稻妻-海祇岛曚云神社西南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛望泷村东-4个.json", "type": "file", "hash": "77cba5942e89e7c2d0bca0d5c70feb3593348a1e", - "version": "77cba59", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-4个\n稻妻-海祇岛望泷村东", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛望泷村南-2个.json", "type": "file", "hash": "a417daed922b8e8ca378504e50f2f41c8c7574fd", - "version": "a417dae", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-2个\n稻妻-海祇岛望泷村南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛望泷村西南-2个.json", "type": "file", "hash": "b99719b488eb2aba538870f16111be46e86c7f30", - "version": "b99719b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-2个\n稻妻-海祇岛望泷村西南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛水月池东南-2个.json", "type": "file", "hash": "d5341056725d6db24f1fbf1b93eb2f6380b217e4", - "version": "d534105", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-2个\n稻妻-海祇岛水月池东南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛水月池南-8个.json", "type": "file", "hash": "0db26147b27b3428b7f02815d5a4f095cbf7e9d1", - "version": "0db2614", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-8个\n稻妻-海祇岛水月池南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛珊瑚宫下东北-2个.json", "type": "file", "hash": "b5b8079a88677763dca1ba5ace6623ec3c230a68", - "version": "b5b8079", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-2个\n稻妻-海祇岛珊瑚宫下东北", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛珊瑚宫东北岸边-3个.json", "type": "file", "hash": "9840890197ca960841124317e80a046041343b93", - "version": "9840890", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-3个\n稻妻-海祇岛珊瑚宫东北岸边", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛珊瑚宫东北崖下-4个.json", "type": "file", "hash": "13bf67337782ddd1f95d87f024477a964bfd5384", - "version": "13bf673", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-4个\n稻妻-海祇岛珊瑚宫东北崖下", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-海祇岛珊瑚宫北-4个.json", "type": "file", "hash": "3c18c99e0a5ff504523db4016caf2b802dfc7055", - "version": "3c18c99", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-4个\n稻妻-海祇岛珊瑚宫北", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛天云峠东-6个.json", "type": "file", "hash": "b3d1ab66b4bb26759f12e8eaaa8ee3c66e6b5001", - "version": "b3d1ab6", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-6个\n稻妻-清籁岛天云峠东", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛天云峠东南山边-11个.json", "type": "file", "hash": "368733b8c8d24411b2d197e8fae90306f5274778", - "version": "368733b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-11个\n稻妻-清籁岛天云峠东南山边", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛天云峠东南岸边-7个.json", "type": "file", "hash": "a5e274749955c1c40d1482c26894f0e4760af17e", - "version": "a5e2747", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-7个\n稻妻-清籁岛天云峠东南岸边", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛天云峠南-4个.json", "type": "file", "hash": "a31506517797c2d3d54b232ac326104b3da3a836", - "version": "a315065", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-4个\n稻妻-清籁岛天云峠南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛天云峠西-21个.json", "type": "file", "hash": "3e1603fe38b2518677c77be5f771917b323643aa", - "version": "3e1603f", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-21个\n稻妻-清籁岛天云峠西", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛平海砦-5个.json", "type": "file", "hash": "54d5569a6dd32e053eaf4652f28860e67c564dcd", - "version": "54d5569", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-5个\n稻妻-清籁岛平海砦", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛平海砦西北岸边-4个.json", "type": "file", "hash": "cda28a509881628592a9469b7662fc40095b6417", - "version": "cda28a5", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-4个\n稻妻-清籁岛平海砦西北岸边", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛平海砦西崖下-4个.json", "type": "file", "hash": "0828b96cba5917aebc6cecfec92991a54b01ee40", - "version": "0828b96", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-4个\n稻妻-清籁岛平海砦西崖下", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛浅濑神社北-3个.json", "type": "file", "hash": "550a1c693f223b4332e2697bb0aaca90b4cec59f", - "version": "550a1c6", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-3个\n稻妻-清籁岛浅濑神社北", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛越石村南-2个.json", "type": "file", "hash": "17842028a7cc9f147f7e308e1bf9deee64093baa", - "version": "1784202", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-2个\n稻妻-清籁岛越石村南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-清籁岛越石村西北-3个.json", "type": "file", "hash": "99e139f7d48de396d33d971e3632d6e9188c0a1e", - "version": "99e139f", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-3个\n稻妻-清籁岛越石村西北", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "稻妻-飘浮灵-鹤观惑饲滩西南-3个.json", "type": "file", "hash": "8ff5e1d37d8123fc677d60db1deac5d3e2147a95", - "version": "8ff5e1d", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-3个\n稻妻-鹤观惑饲滩西南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "须弥-飘浮灵-二净甸桓那兰那西南-3个.json", "type": "file", "hash": "d1bcb5edafed9b192a8f8b276581c5f9a746f39c", - "version": "d1bcb5e", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-3个\n须弥-二净甸桓那兰那西南", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] }, { "name": "须弥-飘浮灵-二净甸觉王之殿东-6个.json", "type": "file", "hash": "46dbfbde54a756b4c8aebc85d617d478b1334b3c", - "version": "46dbfbd", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "飘浮灵-6个\n须弥-二净甸觉王之殿东", "tags": [ - "飘浮灵" + "飘浮灵", + "战斗" ] } ] @@ -24433,7 +28840,7 @@ "name": "璃月-禽肉-云来海璃月港北-1个-下落2肉1.json", "type": "file", "hash": "483286bee3c4fc1175387c42595a9db44f4b313e", - "version": "483286b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港北\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24444,7 +28851,7 @@ "name": "璃月-禽肉-云来海璃月港西-2个-下落1肉2.json", "type": "file", "hash": "d5bea41ac68ca4730ff7286e6c9982f00982f184", - "version": "d5bea41", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港西\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24455,7 +28862,7 @@ "name": "璃月-禽肉-云来海璃月港西南-3个-下落1肉1.json", "type": "file", "hash": "7386b51d4bee6abd82e88d8e894fee3c65ff1aa3", - "version": "7386b51", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港西南\n数目: 3\n附加信息: 1禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24466,7 +28873,7 @@ "name": "璃月-禽肉-来歆山赤望台东南-1个-下落2肉1.json", "type": "file", "hash": "7cc771a735700dd6b2d68e8ef5eb34eb6a272d50", - "version": "7cc771a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 来歆山赤望台东南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24477,7 +28884,7 @@ "name": "璃月-禽肉-沉玉谷·上谷宝玦口南-1个-下落2肉1.json", "type": "file", "hash": "ad23edf251bcedcc44d8d246829fb98a7f57bcfc", - "version": "ad23edf", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷宝玦口南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24488,7 +28895,7 @@ "name": "璃月-禽肉-沉玉谷·上谷暝垣山-1个-下落2肉1.json", "type": "file", "hash": "c11de700467e2cefb3a5402eb3c78cc6822aee25", - "version": "c11de70", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷暝垣山\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24499,7 +28906,7 @@ "name": "璃月-禽肉-沉玉谷·上谷暝垣山西南-1个-下落2肉1.json", "type": "file", "hash": "a76e1130c41079dcc2123007a72ad92e5f885159", - "version": "a76e113", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷暝垣山西南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24510,7 +28917,7 @@ "name": "璃月-禽肉-沉玉谷·上谷灵濛山北-2个-下落2肉2.json", "type": "file", "hash": "f638dfa197b3df4d74139fc00a5e75c8114f4968", - "version": "f638dfa", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷灵濛山北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24521,7 +28928,7 @@ "name": "璃月-禽肉-沉玉谷·上谷瞑垣山南-1个-下落2肉1.json", "type": "file", "hash": "ea30d4dad8750ab7bc1406fb8cfb50ab13433faa", - "version": "ea30d4d", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷瞑垣山南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24532,7 +28939,7 @@ "name": "璃月-禽肉-沉玉谷·上谷翘英庄西-2个-下落1肉2.json", "type": "file", "hash": "c6fad9855ab268318b109c4229aac5f3e112fd3f", - "version": "c6fad98", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷翘英庄西\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24543,7 +28950,7 @@ "name": "璃月-禽肉-沉玉谷·上谷翘英庄西北-2个-下落1肉2.json", "type": "file", "hash": "a469bb429ec5846c946998ae7c52ca9eae7f06b1", - "version": "a469bb4", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷翘英庄西北\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24554,7 +28961,7 @@ "name": "璃月-禽肉-沉玉谷·上谷赤望台北-2个-下落2肉2.json", "type": "file", "hash": "bbdd2e2d5d96a3a4a182341cf44afdb62cea2505", - "version": "bbdd2e2", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷赤望台北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24565,7 +28972,7 @@ "name": "璃月-禽肉-沉玉谷·南陵赤望台东-1个-下落2肉1.json", "type": "file", "hash": "1909860fa1a55d5330c62043591b7759d37569f6", - "version": "1909860", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤望台东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24576,7 +28983,7 @@ "name": "璃月-禽肉-沉玉谷·南陵赤望台东北-1个-下落2肉1.json", "type": "file", "hash": "af9aba027eba8d7462ebd4d44989bcaa315019ff", - "version": "af9aba0", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤望台东北\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24587,7 +28994,7 @@ "name": "璃月-禽肉-沉玉谷·南陵赤璋城垣南-1个-下落2肉1.json", "type": "file", "hash": "ee01cd38477162b0fb348b60a14566d32a255a5e", - "version": "ee01cd3", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤璋城垣南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24598,7 +29005,7 @@ "name": "璃月-禽肉-珉林华光林西南-2个-下落2肉2.json", "type": "file", "hash": "afb9ad460f37643b6c306f403dfbd136b431e53f", - "version": "afb9ad4", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林华光林西南\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24609,7 +29016,7 @@ "name": "璃月-禽肉-珉林奥藏山东-1个-下落2肉1.json", "type": "file", "hash": "61126675184b59f85843610b7b4d7b6eb9a3bc87", - "version": "6112667", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林奥藏山东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24620,7 +29027,7 @@ "name": "璃月-禽肉-珉林琥牢山东-1个-下落2肉1.json", "type": "file", "hash": "0223a7a380dd940f394c354267a738ead89fd7c0", - "version": "0223a7a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林琥牢山东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24631,7 +29038,7 @@ "name": "璃月-禽肉-琼玑野明蕴镇西南-2个-下落2肉2.json", "type": "file", "hash": "15e30941a79d19d87892e25514e05f8b0dd7f44b", - "version": "15e3094", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野明蕴镇西南\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24642,7 +29049,7 @@ "name": "璃月-禽肉-琼玑野瑶光滩北-4个-下落2肉4.json", "type": "file", "hash": "c745f625819621143ab875b07eeae4bb29b8ef07", - "version": "c745f62", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野瑶光滩北\n数目: 4\n附加信息: 2禽肉鸟共4只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24653,7 +29060,7 @@ "name": "璃月-禽肉-琼玑野瑶光滩西北-2个-下落2肉2.json", "type": "file", "hash": "1ea4beee2d71f05df54e5db4750f74f3197d1df5", - "version": "1ea4bee", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野瑶光滩西北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24664,7 +29071,7 @@ "name": "璃月-禽肉-璃月港舔狗桥-5个-下落2肉5.json", "type": "file", "hash": "a80248bc5a606a41a785ef3361409e87a2021d8b", - "version": "a80248b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 璃月港舔狗桥\n数目: 5\n附加信息: 2禽肉鸟共5只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24675,7 +29082,7 @@ "name": "璃月-禽肉-碧水原望舒客栈北-1个-下落1肉1.json", "type": "file", "hash": "fadf8857a5d31682377284a8334993fa0b816b18", - "version": "fadf885", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 璃月\n类型: 禽肉\n详细位置: 碧水原望舒客栈北\n数目: 1\n附加信息: 1禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24686,7 +29093,7 @@ "name": "纳塔-禽肉-奥奇卡纳塔东南-5个-下落2肉5.json", "type": "file", "hash": "c16547500385bd0746c9dc6e91f15f9bdc493fff", - "version": "c165475", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 纳塔\n类型: 禽肉\n详细位置: 奥奇卡纳塔东南\n数目: 5\n附加信息: 2禽肉鸟共5只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24697,7 +29104,7 @@ "name": "蒙德-禽肉-风起地-3个-下落2肉3.json", "type": "file", "hash": "5e16893c271032bb680f444947f75049645f438f", - "version": "5e16893", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 蒙德\n类型: 禽肉\n详细位置: 风起地\n数目: 3\n附加信息: 2禽肉鸟共3只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24708,7 +29115,7 @@ "name": "蒙德-禽肉-风起地东南-11个-下落2肉11.json", "type": "file", "hash": "a658f3adf2db8d5a9894c6d57fc1e30a96fa5621", - "version": "a658f3a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "地区: 蒙德\n类型: 禽肉\n详细位置: 风起地东南\n数目: 11\n附加信息: 2禽肉鸟共11只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", "tags": [ @@ -24725,7 +29132,7 @@ "name": "千岩本2青蛙.json", "type": "file", "hash": "1e1c403ad3f53ce073b8c77363f2112bfbe23844", - "version": "1e1c403", + "version": "1.0", "author": "生活不能自理的qu", "description": "", "tags": [ @@ -24736,7 +29143,7 @@ "name": "散兵本2青蛙.json", "type": "file", "hash": "15f476c1ebbc5088682f914c0e2dab96805bd705", - "version": "15f476c", + "version": "1.0", "author": "生活不能自理的qu", "description": "", "tags": [ @@ -24747,7 +29154,7 @@ "name": "灵矩关3青蛙.json", "type": "file", "hash": "528b3664b759117a12a554e083f9e739bfc51c44", - "version": "528b366", + "version": "1.0", "author": "生活不能自理的qu", "description": "", "tags": [ @@ -24758,7 +29165,7 @@ "name": "甘露花海2青蛙.json", "type": "file", "hash": "994129af47d785f5cc24c2708b20d34e12076a69", - "version": "994129a", + "version": "1.0", "author": "生活不能自理的qu", "description": "", "tags": [ @@ -24769,7 +29176,7 @@ "name": "维摩庄2青蛙.json", "type": "file", "hash": "56364d2f0e252630c28915f7619345be2f0f67ba", - "version": "56364d2", + "version": "1.0", "author": "生活不能自理的qu", "description": "", "tags": [ @@ -24780,7 +29187,7 @@ "name": "群玉阁左锚点5青蛙.json", "type": "file", "hash": "09c08185d7f253503e3ef6a12e61078f4806c3d7", - "version": "09c0818", + "version": "1.0", "author": "生活不能自理的qu", "description": "", "tags": [ @@ -24791,7 +29198,7 @@ "name": "翠玦坡2青蛙.json", "type": "file", "hash": "8bf556a2b4ac1d62ae89eed6ae6ecc9343b432c7", - "version": "8bf556a", + "version": "1.0", "author": "生活不能自理的qu", "description": "", "tags": [ @@ -24802,7 +29209,7 @@ "name": "锋刃林泽3青蛙.json", "type": "file", "hash": "205c18efdba68ebb25d736798653947e1d384102", - "version": "205c18e", + "version": "1.0", "author": "生活不能自理的qu", "description": "", "tags": [ @@ -24819,7 +29226,7 @@ "name": "清心-奥藏山(宗室本)-2个.json", "type": "file", "hash": "f7a2aa7805f736043f0e19e8f39af3dca323ccb8", - "version": "f7a2aa7", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -24830,7 +29237,7 @@ "name": "清心-庆云顶-3个.json", "type": "file", "hash": "9d7791e5894752d008c2b636744f0256ad117442", - "version": "9d7791e", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -24841,7 +29248,7 @@ "name": "清心-灵矩关-4个.json", "type": "file", "hash": "de9e3e7c9ad087e64167b0154501ac0ce97230b8", - "version": "de9e3e7", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -24852,7 +29259,7 @@ "name": "清心-琥牢山-6个.json", "type": "file", "hash": "9417136d046dcf42e4c2a0e4b14447f9e59e74c8", - "version": "9417136", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -24863,7 +29270,7 @@ "name": "清心-遁玉陵-1个.json", "type": "file", "hash": "b8c1424058311d0aff423742a12cd748bf8d8fcf", - "version": "b8c1424", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -24880,198 +29287,216 @@ "name": "丘丘人射手-01风龙废墟01.json", "type": "file", "hash": "bb42037e9bf8d6081aa0f9a2819cba7ba0acf923", - "version": "bb42037", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-02风龙废墟02.json", "type": "file", "hash": "48d98432d8f7c29aaf45e23f184340f8ce55f327", - "version": "48d9843", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-03风龙废墟03.json", "type": "file", "hash": "36faa620174d9d30886433a270e968de509cafa6", - "version": "36faa62", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-04风龙废墟04.json", "type": "file", "hash": "5995a594db39e24e7f8f9009f635c4da3cc101ec", - "version": "5995a59", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-05风龙废墟05.json", "type": "file", "hash": "1e5766abefb05c3e244f2b8cb7061fafde51f6e3", - "version": "1e5766a", + "version": "1.0", "author": "曦", "description": "建议使用挂机流", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-06明冠峡.json", "type": "file", "hash": "6f601e36561a84b379b0a8df88bdecda5ed69fa8", - "version": "6f601e3", + "version": "1.0", "author": "曦", "description": "含风免", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-07碧水原.json", "type": "file", "hash": "a53a91f1de0c738b41885a0fbdf1e6800008399b", - "version": "a53a91f", + "version": "1.0", "author": "曦", "description": "含风免", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-08珉林.json", "type": "file", "hash": "74924e738cc9923ad694254ae70e2034ba8cde97", - "version": "74924e7", + "version": "1.0", "author": "曦", "description": "含风免", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-09灵矩关(高危).json", "type": "file", "hash": "903699e501d5f9893298c5465798e4bd0858d5ab", - "version": "903699e", + "version": "1.0", "author": "曦", "description": "此处有丘丘岩凯王", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-10天衡山(高危).json", "type": "file", "hash": "acc99e08c5b71669c37882560921c45b3956c21d", - "version": "acc99e0", + "version": "1.0", "author": "曦", "description": "燃烧反应,高危", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-11二净甸.json", "type": "file", "hash": "e1dbf9e52310a3f5be9d79287596324acc5430f7", - "version": "e1dbf9e", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-12千壑沙地.json", "type": "file", "hash": "3133108559f210438218b772d459ac1db9501157", - "version": "3133108", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-13善见地.json", "type": "file", "hash": "8d4e774a4f38c4157d79a8aaff379c65a58eca8f", - "version": "8d4e774", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-14活力之家.json", "type": "file", "hash": "14243b3b6304ab2ac973d70911e1c0f03520b49d", - "version": "14243b3", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-15卡布狄斯堡01(高危).json", "type": "file", "hash": "f4d5064b009645f03edabd84e1265462c9b2bc17", - "version": "f4d5064", + "version": "1.0", "author": "曦", "description": "存在大量炸药桶,有丘丘岩凯王,高危", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-16卡布狄斯堡02.json", "type": "file", "hash": "6b6139929ccfee68afa44452d2d72f0cc4f90266", - "version": "6b61399", + "version": "1.0", "author": "曦", "description": "存在大量炸药桶", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-17幽林雾道右上.json", "type": "file", "hash": "0700768c0753f8e8b3a1075aec9ac3942fdbc27f", - "version": "0700768", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] }, { "name": "丘丘人射手-18优兰尼娅湖.json", "type": "file", "hash": "1dc5ec2d35d6c19c06a8568b03afc7d0f3e51997", - "version": "1dc5ec2", + "version": "1.0", "author": "曦", "description": "", "tags": [ - "丘丘人射手" + "丘丘人射手", + "战斗" ] } ] @@ -25084,132 +29509,144 @@ "name": "丘丘萨满-千风神殿-3只.json", "type": "file", "hash": "55f59c08fd4636cae8c00dda9594356a10ea43c9", - "version": "55f59c0", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-千风神殿-3只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-地中之盐-1只.json", "type": "file", "hash": "06682783902f4e6292895e7d7535dc715f4d6522", - "version": "0668278", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-地中之盐-1只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-奔狼领-1只.json", "type": "file", "hash": "34c40a9c2257ccc700c9a9d7962f01969df40b43", - "version": "34c40a9", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-奔狼领-1只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-明蕴镇-4只.json", "type": "file", "hash": "1d9793b39c0989d9a4fdf27437ee80a0fbcc1501", - "version": "1d9793b", + "version": "1.0", "author": "ddaodan", "description": "带钟离+芙宁娜+万叶+任意染色角色(水火雷冰),必须带万叶,钟离可换其他盾辅\n开启战斗结束检测,战斗超时60秒以内,根据练度自行调整\n1.1调整部分点位位置", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-望风山地-1只.json", "type": "file", "hash": "338b12ac050a36cc464c3741e5a8fe03105d9f8a", - "version": "338b12a", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-望风山地-1只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-望风角-3只.json", "type": "file", "hash": "b0cece767a0f501a410ecbba4f9173f75910ca6a", - "version": "b0cece7", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-望风角-3只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-绀田村-2只.json", "type": "file", "hash": "3352e633df72e9e2f184c37e782bc4d13373e411", - "version": "3352e63", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-绀田村-2只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-镇守之森-2只.json", "type": "file", "hash": "7749de1b683284070fbf9e7b3139756567c4df4a", - "version": "7749de1", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-镇守之森-2只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-阿如村-2只.json", "type": "file", "hash": "ab8b8097480e49e5f2945935ac074d00d89d373b", - "version": "ab8b809", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-阿如村-2只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-青墟浦-2只.json", "type": "file", "hash": "2657f5c8033c2d9f2f4bddd96d9908c9135fc74f", - "version": "2657f5c", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-青墟浦-2只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-须弥城-6只.json", "type": "file", "hash": "68df39dadfd402598b875816fedcc0b26f634bbd", - "version": "68df39d", + "version": "1.0", "author": "ddaodan", "description": "带钟离+芙宁娜+万叶+任意染色角色(水火雷冰),必须带万叶,钟离可换其他盾辅\n开启战斗结束检测,战斗超时60秒以内,根据练度自行调整\n特别提醒:多个点位有炸药桶,已尽量避开,存在一个地形有起伏+炸药桶+驮兽的复杂环境的点,盾薄的可能会暴毙\n1.1调整部分点位位置", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] }, { "name": "丘丘萨满-风龙废墟-6只.json", "type": "file", "hash": "9165f4ecca98cc54b9eb5568a4280db97d559381", - "version": "9165f4e", + "version": "1.0", "author": "ddaodan", "description": "丘丘萨满-风龙废墟-6只", "tags": [ - "丘丘萨满" + "丘丘萨满", + "战斗" ] } ] @@ -25222,187 +29659,204 @@ "name": "丘丘王01.json", "type": "file", "hash": "839f99ce1c335ba6283ea7fcd1e7c589cb090ca8", - "version": "839f99c", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王02.json", "type": "file", "hash": "f038085897cc7fee685f7e1f9b412f6c240a09c4", - "version": "f038085", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王03.json", "type": "file", "hash": "13d42f3e495fda0684a689958b2d667c7eec47ef", - "version": "13d42f3", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王04.json", "type": "file", "hash": "819096001357cdba9d1794e45271244f9d32e561", - "version": "8190960", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王05.json", "type": "file", "hash": "088642d3e0e061932bd414caa30d5667b56f59d7", - "version": "088642d", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王06.json", "type": "file", "hash": "37cfe063e162f9c109f3a6eb948b96a360ed5845", - "version": "37cfe06", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王07.json", "type": "file", "hash": "0ec02fa7edcfd2ba0cf0b6f8cc3f85c6e00ecfd4", - "version": "0ec02fa", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王08.json", "type": "file", "hash": "d320d832ee841d04f7badd928c61f2d1f7b408df", - "version": "d320d83", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王09.json", "type": "file", "hash": "b37d3530984d42827c04fd660624a8167952d16e", - "version": "b37d353", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王10.json", "type": "file", "hash": "248feaa7b15aef9ecd6a56edfedf83048726fe25", - "version": "248feaa", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王11.json", "type": "file", "hash": "1cf5e5760d9d0f23d9a79b90dff0cdc960b39e0d", - "version": "1cf5e57", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王12-枫丹.json", "type": "file", "hash": "b0e56f7aa235d6f1595abc88e3aca41bec71cecc", - "version": "b0e56f7", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王13-枫丹.json", "type": "file", "hash": "c189aaaa3160663712cd546b199b21a7b0aeb79f", - "version": "c189aaa", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王14-枫丹.json", "type": "file", "hash": "021dfb4cdacb0df4249869cc7c24d62d0db76253", - "version": "021dfb4", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王15-枫丹.json", "type": "file", "hash": "cf1aa5c0565a4e864513c8afe6b00b67584bac63", - "version": "cf1aa5c", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王16-枫丹.json", "type": "file", "hash": "770e560a80c7c7cac7ec40e4ca3a470a3d7918a1", - "version": "770e560", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] }, { "name": "丘丘王17-稻妻.json", "type": "file", "hash": "9194e013090f59c70911b3fc8cbbd9619487fdb5", - "version": "9194e01", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "丘丘王" + "丘丘王", + "战斗" ] } ] @@ -25415,209 +29869,228 @@ "name": "dj01沉玉谷(8).json", "type": "file", "hash": "ede8fecf672792da49882946781da0201245b0d4", - "version": "ede8fec", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj02拜达港(1).json", "type": "file", "hash": "63da106b074381360ac99d2430343aee3cee873c", - "version": "63da106", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj03铁穆山①(3).json", "type": "file", "hash": "d2c776a6ed40bc4df4e0352ce9a06410bba1cec1", - "version": "d2c776a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj04铁穆山②(3).json", "type": "file", "hash": "7f97a316b28245406f9bb54a16af39ec4d9f1bf1", - "version": "7f97a31", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj05阻勒隘(5).json", "type": "file", "hash": "398d035cd9f816df886d27b8b906b6dc021c7f04", - "version": "398d035", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj06锋刃林泽下(1).json", "type": "file", "hash": "fb6a6a057d69bbd2035a2ae684d53d20d69309c2", - "version": "fb6a6a0", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj07锋刃林泽左下(1).json", "type": "file", "hash": "1d1923be79a408807523f0cded3486b8a31f17de", - "version": "1d1923b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj08锋刃林泽左上(3).json", "type": "file", "hash": "ac425130c59507875a314ee88fae0da003e31076", - "version": "ac42513", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj09甘露花海右上(2).json", "type": "file", "hash": "e2864014aca82c46b46703263922499c0738d277", - "version": "e286401", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj10跋松顶右上(1).json", "type": "file", "hash": "20932246c46436e7c4728bb754d152f9ede64f1a", - "version": "2093224", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj11秋分山下(2).json", "type": "file", "hash": "811ba9ec6b9a18eee5af68f6a6fa90365c533ecb", - "version": "811ba9e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj12白凇镇左上(1).json", "type": "file", "hash": "4e52000975a0ccba5e234145db25f4be03b526ae", - "version": "4e52000", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj13厄里那斯左(1).json", "type": "file", "hash": "7fc8032af3b5bca96c38966c7d880c90759d2d7c", - "version": "7fc8032", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj14枫丹廷左上(1).json", "type": "file", "hash": "df16cd8976b418cd313a0e5f10f1bc3f4d28d144", - "version": "df16cd8", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj15柔灯港、歌剧院右(2).json", "type": "file", "hash": "cf32ad43777e5a71986a850a3a26017b2dcaebd1", - "version": "cf32ad4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj16优兰尼娅湖左、下(3).json", "type": "file", "hash": "9db5e0321723fa98b194aefbeb233638b16b5a8e", - "version": "9db5e03", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj17中央实验室遗址右下(3).json", "type": "file", "hash": "65b54c7df6dd9de96d779e592e83067d9a486439", - "version": "65b54c7", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj18流泉之众右下(1).json", "type": "file", "hash": "9ee523842473a102f04d2238eb2be5a7d734a438", - "version": "9ee5238", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] }, { "name": "dj19奶奶家右(1).json", "type": "file", "hash": "c960384b3069ca886272ed5cefd5bf306faede6f", - "version": "c960384", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "丘丘游侠" + "丘丘游侠", + "战斗" ] } ] @@ -25630,99 +30103,108 @@ "name": "dc01柴薪、硫晶(3).json", "type": "file", "hash": "62b3f54deb79d12cfb232bfc6742e1a8aa9f6a3b", - "version": "62b3f54", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] }, { "name": "dc02祖遗庙宇右(4).json", "type": "file", "hash": "6a27cc3339d30b33ddbf0f4673915f6bb7c7933b", - "version": "6a27cc3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] }, { "name": "dc03祖遗庙宇南(2).json", "type": "file", "hash": "782503d770b7b95c5d0cc0b96c102dc4166ea6b5", - "version": "782503d", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] }, { "name": "dc04悬木人左下(2).json", "type": "file", "hash": "53220a3fbaea8fbbb08c5d7cdc1e30c8a6552496", - "version": "53220a3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] }, { "name": "熔岩游像01.json", "type": "file", "hash": "b0fc99cd7b15bc0fa2c8e4716bfaeedc5e654e72", - "version": "b0fc99c", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] }, { "name": "熔岩游像02.json", "type": "file", "hash": "539974c5a566d3aa4c1304cf5cc9a00f363711b2", - "version": "539974c", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] }, { "name": "熔岩游像03.json", "type": "file", "hash": "672f81907d25fbbb84b2e66a37b362f1737b20fc", - "version": "672f819", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] }, { "name": "熔岩游像04.json", "type": "file", "hash": "4bb3d202e32b227ac8f0b9548c012bfdf03bdd05", - "version": "4bb3d20", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] }, { "name": "熔岩游像05(比较远).json", "type": "file", "hash": "3e8a18560baeb24a05290f08e53e2f399987d99b", - "version": "3e8a185", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "熔岩游像" + "熔岩游像", + "战斗" ] } ] @@ -25739,7 +30221,7 @@ "name": "沙脂蛹-1神的棋盘.json", "type": "file", "hash": "6042eec83b1141da2396b6ec4da648f980fd0b58", - "version": "6042eec", + "version": "1.0", "author": "无狐", "description": "之前有些路径不太准确,修正了路径", "tags": [ @@ -25757,7 +30239,7 @@ "name": "沙脂蛹-2巨人峡谷(低成功率).json", "type": "file", "hash": "69d912947d5c9ac9c7a683f8d96d64f5f687143d", - "version": "69d9129", + "version": "1.0", "author": "无狐", "description": "之前有些路径不太准确,修正了路径", "tags": [ @@ -25769,7 +30251,7 @@ "name": "沙脂蛹-3塔尼特露营地(低成功率).json", "type": "file", "hash": "a9e164919134fbe643171ae1f34f5c97dad0a6f5", - "version": "a9e1649", + "version": "1.0", "author": "无狐", "description": "之前有些路径不太准确,修正了路径", "tags": [ @@ -25781,7 +30263,7 @@ "name": "沙脂蛹-4亡者狭廊2(低成功率).json", "type": "file", "hash": "13e9fd1e8d1c6a010d6cedd24ab685516f880acf", - "version": "13e9fd1", + "version": "1.0", "author": "无狐", "description": "修正了路径;多次下落改为一次下落,因为发现血量还挺健康的", "tags": [ @@ -25793,7 +30275,7 @@ "name": "沙脂蛹-4亡者狭廊(低成功率).json", "type": "file", "hash": "7557904ce2a01dd5b3f91893d3041e3e09edd919", - "version": "7557904", + "version": "1.0", "author": "无狐", "description": "", "tags": [ @@ -25805,7 +30287,7 @@ "name": "沙脂蛹-5三运河之地(低成功率).json", "type": "file", "hash": "4b19ff10ec7bd190f042d5e2444e1a28cf0f537d", - "version": "4b19ff1", + "version": "1.0", "author": "无狐", "description": "修正了路径;邪恶的沙虫不要再撅我了", "tags": [ @@ -25817,7 +30299,7 @@ "name": "沙脂蛹-6折胫谷(低成功率).json", "type": "file", "hash": "74d9b27120ae6f01384b221a66a5ba7ce4dc62a8", - "version": "74d9b27", + "version": "1.0", "author": "无狐", "description": "修正了路径;小饶了一圈,避免进入战斗被蕈兽肘飞", "tags": [ @@ -25844,165 +30326,180 @@ "name": "彩石顶1.json", "type": "file", "hash": "0afbec78f893f834a9d6ddc776aadd80438b5d1c", - "version": "0afbec7", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "悬木人1.json", "type": "file", "hash": "d58cff1dce32e2684903f34399d4cd8cd5d809a5", - "version": "d58cff1", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "柴薪之丘1.json", "type": "file", "hash": "34a4b3275ddd86a175522cf65f7d11afb94b30d6", - "version": "34a4b32", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "柴薪之丘2.json", "type": "file", "hash": "a0a9ec1254f8ecb11f603b3c197bcab4e96fd16a", - "version": "a0a9ec1", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "柴薪之丘3.json", "type": "file", "hash": "1e735b8ef0522e3043c54d6489cac75f21884902", - "version": "1e735b8", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "柴薪之丘4.json", "type": "file", "hash": "1e223df90a4770f13a3279a984d6efe0da2d6dd5", - "version": "1e223df", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "柴薪之丘5.json", "type": "file", "hash": "6b869ff409bb868e177da26f05fa6d6927625647", - "version": "6b869ff", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "溶水域1.json", "type": "file", "hash": "787916edd92e80fba57d8db80d7d87c0eaba98eb", - "version": "787916e", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "溶水域2.json", "type": "file", "hash": "61ec44ac6b43e396220c182ab96aa7b90c9777fb", - "version": "61ec44a", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "硫晶支脉1.json", "type": "file", "hash": "5e1d48d59e9ac8ae5a9b365fb75f3d08ba10a09c", - "version": "5e1d48d", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "祖遗庙宇1.json", "type": "file", "hash": "dca3ad85a8f142b163078c0b7ad4ee57d938ee7c", - "version": "dca3ad8", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "祖遗庙宇2.json", "type": "file", "hash": "e82bdd047d9ec7ec12279bccb9d2d79c9393e63b", - "version": "e82bdd0", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "祖遗庙宇3.json", "type": "file", "hash": "f022cdc3d03f78e5da085ebb48436e50d1aca5cb", - "version": "f022cdc", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "隆崛坡1.json", "type": "file", "hash": "7161d6ac02069a2aea10e1c10dbd8da6b87e4195", - "version": "7161d6a", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] }, { "name": "隆崛坡2.json", "type": "file", "hash": "402cd8d3792cdce900f3dcd720bba57bda4e7e71", - "version": "402cd8d", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "哨子&尖齿" + "哨子&尖齿", + "战斗" ] } ] @@ -26015,209 +30512,228 @@ "name": "ba01奥奇纳塔左下1游侠1随机(2).json", "type": "file", "hash": "4ffacc9f210aadf785af08bd7e414a60da37007c", - "version": "4ffacc9", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "ba02奥奇纳塔城内两暴徒一随机(3).json", "type": "file", "hash": "adcf1d82d5d0dd42253e85e6a792b86e3dccc01a", - "version": "adcf1d8", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "ba03奥奇纳塔上游侠(1).json", "type": "file", "hash": "a8f7c24e674c8eeb20353f8746eb3646d45efc14", - "version": "a8f7c24", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "da01奥奇纳塔下方(3).json", "type": "file", "hash": "74a244c99ee927bbc8e7edba9a8224dff103ffc4", - "version": "74a244c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "da02奥奇纳塔左(4).json", "type": "file", "hash": "a06cc99a6df95abb4372f460c72d52280cf3d28b", - "version": "a06cc99", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "da03奥奇纳塔下半城区(5).json", "type": "file", "hash": "782ac13f38f7eab1875365ccee95980a05bf2cca", - "version": "782ac13", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "da04奥奇纳塔右下(4).json", "type": "file", "hash": "ce35b5b6cbec2b1ae503ba940771542a66ccf9e3", - "version": "ce35b5b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "da05奥奇纳塔上半城区(4).json", "type": "file", "hash": "78cadfa7243a7b242029d82509e400a31ee74934", - "version": "78cadfa", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶01-1个.json", "type": "file", "hash": "bab3b100a5f16bafdc4b6042fdca3815569a3c19", - "version": "bab3b10", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶02-5个.json", "type": "file", "hash": "6652966fed9a4c7b11111d33a3a615e511b93a4f", - "version": "6652966", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶03-7个.json", "type": "file", "hash": "d8ff6c5819283a965c1ed57347d1f9352653abfd", - "version": "d8ff6c5", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶04-1个.json", "type": "file", "hash": "478ca91b2c668161b35add3f33b41cb7eec3993b", - "version": "478ca91", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶05-1个.json", "type": "file", "hash": "adb0ad718aceb29a0e8b9834b873a065bf070bca", - "version": "adb0ad7", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶06-1个.json", "type": "file", "hash": "d8b8fddcdabfa7006bc8db0b9c44fc22774a7767", - "version": "d8b8fdd", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶07-1个.json", "type": "file", "hash": "04ad9becd825f7eb6ee173c031f76944456032d1", - "version": "04ad9be", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶08-4个.json", "type": "file", "hash": "8540c75ef628a92383ca995e9bf173f5df3ae29f", - "version": "8540c75", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶09-5个.json", "type": "file", "hash": "e822fb879f558a05327dfd7aa0cd8e958a674f06", - "version": "e822fb8", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶10-5个.json", "type": "file", "hash": "2c60edb3b6018d82dec040bb82de575eb185de58", - "version": "2c60edb", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] }, { "name": "深邃拟覆叶11-3个.json", "type": "file", "hash": "7953c6d40f62d98e8159c2a4c565f1c1c22a8c97", - "version": "7953c6d", + "version": "1.0", "author": "夜雨轩烛", "description": "", "tags": [ - "深邃拟覆叶" + "深邃拟覆叶", + "战斗" ] } ] @@ -26230,110 +30746,120 @@ "name": "深渊法师_千风神殿左下_1个.json", "type": "file", "hash": "8af25f0151408360701d96443a343b8d995e77d0", - "version": "8af25f0", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_天衡山左下_1个.json", "type": "file", "hash": "69dd9c98e92f39cd93e9a96f37556161ace66de2", - "version": "69dd9c9", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_天衡山左边_1个.json", "type": "file", "hash": "21c44e7614ec993370d40ee46d556c94246aaaf7", - "version": "21c44e7", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_孤云阁左边_2个.json", "type": "file", "hash": "d1623d733ee489ebde3a3c00cdacaea83a4cbf9d", - "version": "d1623d7", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_归离原_1个.json", "type": "file", "hash": "c3cd11cf6ff03b8c796699479f6a86e93e36c2c3", - "version": "c3cd11c", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_望风角左下_1个.json", "type": "file", "hash": "2dfed2445722837516a886855add740bcc159384", - "version": "2dfed24", + "version": "1.0", "author": "FuYeqi", "description": "", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_渌华池右边_1个.json", "type": "file", "hash": "05dc803783e1cde35de0d3170e65fe672de969f9", - "version": "05dc803", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_眠龙谷上方_2个.json", "type": "file", "hash": "973c47e1d0102cf000366fbfe695b07ded9e17bf", - "version": "973c47e", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_蒙德武器本旁_1个.json", "type": "file", "hash": "1d7a023148cf3800efffdb58959775310aeb6417", - "version": "1d7a023", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] }, { "name": "深渊法师_达达乌帕谷左及左上_1+1个.json", "type": "file", "hash": "a8c004bffd61e70d53528cc80fe31daade09dde1", - "version": "a8c004b", + "version": "1.0", "author": "FuYeqi", "description": "深渊法师", "tags": [ - "深渊法师" + "深渊法师", + "战斗" ] } ] @@ -26346,110 +30872,120 @@ "name": "dk01绝缘本左下(1).json", "type": "file", "hash": "fb02999114a26d83c9702713fb55c36be67dc58e", - "version": "fb02999", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk02亡者狭廊右下(1).json", "type": "file", "hash": "dcc22c32a1ee08098cb6134a9f294584d3605f8d", - "version": "dcc22c3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk03往昔桓那兰那左(1).json", "type": "file", "hash": "8468b057ec465f042fec6c89ff10fb46be6406b8", - "version": "8468b05", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk04五绿洲右(2).json", "type": "file", "hash": "b7fd1aa1d2c2dfd380055ef01bd2a91f0a59bfe1", - "version": "b7fd1aa", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk05甘露花海左下(1).json", "type": "file", "hash": "b72eb90fba220f8435f4f387a4e422faca6537b4", - "version": "b72eb90", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk06锋刃林泽(1).json", "type": "file", "hash": "f7aceecab29720d63f772495439eaee9718cf000", - "version": "f7aceec", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk07锋刃林泽左(1).json", "type": "file", "hash": "f345ada769a2e4e4e69805da58a4665e07bcefc0", - "version": "f345ada", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk08荼泥黑渊(1).json", "type": "file", "hash": "227a2e2aa2bb51b8785f486963b6bdb2b327175a", - "version": "227a2e2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk09阻勒隘(1).json", "type": "file", "hash": "65f838c2aea6756ebfe872511659853b36bd5e9f", - "version": "65f838c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] }, { "name": "dk10厄里那斯左上(2).json", "type": "file", "hash": "3fa22ec99ba7ffdf4d3a101e6d7420fb60735f41", - "version": "3fa22ec", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "圣骸兽" + "圣骸兽", + "战斗" ] } ] @@ -26462,11 +30998,12 @@ "name": "史莱姆速刷.json", "type": "file", "hash": "1524340a50771b443943bdbb4ac8342eb59b4bfc", - "version": "1524340", + "version": "1.0", "author": "爱凑热闹", "description": "", "tags": [ - "史莱姆" + "史莱姆", + "战斗" ] } ] @@ -26487,7 +31024,7 @@ "name": "01-苍晶区西南.json", "type": "file", "hash": "ec4fbfe8606d04e8b23ecac4753628f7465848d2", - "version": "ec4fbfe", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26499,7 +31036,7 @@ "name": "02-厄里那斯东.json", "type": "file", "hash": "1ec2097116e8dd68d2e963e18d27ea3b80616dc9", - "version": "1ec2097", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26511,7 +31048,7 @@ "name": "03-厄里那斯东北.json", "type": "file", "hash": "46dd441bf9acfd7c6461ec312fe0dec650be4f7d", - "version": "46dd441", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26523,7 +31060,7 @@ "name": "04-秋分山西岸.json", "type": "file", "hash": "988883a53602752e158a63a503817fe73540ced4", - "version": "988883a", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26535,7 +31072,7 @@ "name": "05-(较远)枫丹庭南.json", "type": "file", "hash": "802daa7f1d2c67b6c048fb24805255105e6cc94d", - "version": "802daa7", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26547,7 +31084,7 @@ "name": "06-(自己上桥)枫丹钓鱼协会.json", "type": "file", "hash": "720675f1e317c22602bd61779e24f6c254ada900", - "version": "720675f", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26559,7 +31096,7 @@ "name": "07-(自己进水圈)欧庇克莱歌剧院东游船.json", "type": "file", "hash": "219847e8e77319b04229e0545b5974c981ac74ba", - "version": "219847e", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26571,7 +31108,7 @@ "name": "08-欧庇克莱歌剧院北.json", "type": "file", "hash": "0199634c714e9db81b31b745a4bd01f63fe96a72", - "version": "0199634", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26583,7 +31120,7 @@ "name": "09-芒索斯山东麓.json", "type": "file", "hash": "326f973e0c80675c4df05f16ae8f12658f1b1ffb", - "version": "326f973", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26595,7 +31132,7 @@ "name": "10-枫丹研究院神像西.json", "type": "file", "hash": "4a21a05f4cb27a043d8ca249b9e0c24ba2a37582", - "version": "4a21a05", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26607,7 +31144,7 @@ "name": "11-佩特莉可镇西.json", "type": "file", "hash": "9844c37aedbb499ff9e04a97e40282e1255857e0", - "version": "9844c37", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26625,7 +31162,7 @@ "name": "枫丹-卡布南钓点.json", "type": "file", "hash": "07a269f37dad2c88f67d35550e23c451843a181a", - "version": "07a269f", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-卡布南钓点", "tags": [ @@ -26637,7 +31174,7 @@ "name": "枫丹-厄里那斯南.json", "type": "file", "hash": "aebcbe5f96571de9f2e4f3711128e8d7644a59dd", - "version": "aebcbe5", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-歌剧院钓点", "tags": [ @@ -26649,7 +31186,7 @@ "name": "枫丹-厄里那斯右上钓点.json", "type": "file", "hash": "f40a77522e13cd38e9be6d9088f3076f6dc809ac", - "version": "f40a775", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-厄里那斯右上钓点", "tags": [ @@ -26661,7 +31198,7 @@ "name": "枫丹-厄里那斯右下钓点.json", "type": "file", "hash": "2df566e94caf49d5dffaabdffac090f028488c73", - "version": "2df566e", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-厄里那斯右下钓点", "tags": [ @@ -26673,7 +31210,7 @@ "name": "枫丹-实验室钓点.json", "type": "file", "hash": "e6418ecf7b3d73e63a7a8d805f277de3c46a4353", - "version": "e6418ec", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-实验室钓点", "tags": [ @@ -26685,7 +31222,7 @@ "name": "枫丹-幽林南钓点.json", "type": "file", "hash": "a71f44705b4f76142ea0a149ee7752e1f7545246", - "version": "a71f447", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-幽林南钓点", "tags": [ @@ -26697,7 +31234,7 @@ "name": "枫丹-歌剧院钓点.json", "type": "file", "hash": "afdbecdb905f392eaa388a2ed488d1363d8767cf", - "version": "afdbecd", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-歌剧院钓点", "tags": [ @@ -26709,7 +31246,7 @@ "name": "枫丹-白淞镇钓点.json", "type": "file", "hash": "e6b0e305e57a974b9fb6c1af9ca867116e4cdf97", - "version": "e6b0e30", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-白淞镇钓点", "tags": [ @@ -26721,7 +31258,7 @@ "name": "枫丹-秋分山北钓点.json", "type": "file", "hash": "e4334f09b51cfbe74fb0c8e85b3676a62083ea6c", - "version": "e4334f0", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-秋分山北", "tags": [ @@ -26733,7 +31270,7 @@ "name": "枫丹-芒索斯山东钓点.json", "type": "file", "hash": "7cf29b954a43e5d93d618b5be22d8e465f8c5186", - "version": "7cf29b9", + "version": "1.0", "author": "龙弗山权", "description": "枫丹-芒索斯山东钓点", "tags": [ @@ -26751,7 +31288,7 @@ "name": "01-轻策庄.json", "type": "file", "hash": "0bda833869cd1705d5102a243482b6042b497510", - "version": "0bda833", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26764,7 +31301,7 @@ "name": "02-璃月港.json", "type": "file", "hash": "4c86b587f3f32b3adc3488f6536e1d4c0e183431", - "version": "4c86b58", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26777,7 +31314,7 @@ "name": "03-荻花洲.json", "type": "file", "hash": "e36092ec0498b09fe0972e9559f6591f403e8d67", - "version": "e36092e", + "version": "1.0", "author": "鸿羽er", "description": "可能会奖励一个突发事件", "tags": [ @@ -26790,7 +31327,7 @@ "name": "04-碧水原.json", "type": "file", "hash": "5fb5d7e9cefc69e40b15bc48837d9d83f1f4a29d", - "version": "5fb5d7e", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26803,7 +31340,7 @@ "name": "05-碧水原2.json", "type": "file", "hash": "9b41b3d86ea5e275499dba74aae7bfcba8d8866f", - "version": "9b41b3d", + "version": "1.0", "author": "鸿羽er", "description": "钓鱼点附近有丘丘人打手", "tags": [ @@ -26816,7 +31353,7 @@ "name": "06-奥藏山.json", "type": "file", "hash": "7bae53ff1601d43fa1a9eb5f33b64fdb250071ea", - "version": "7bae53f", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26829,7 +31366,7 @@ "name": "07-琥牢山.json", "type": "file", "hash": "a037f388157eb9372787e693f21a3d5cf4d3bc99", - "version": "a037f38", + "version": "1.0", "author": "鸿羽er", "description": "需要开启周本“伏龙树之底”", "tags": [ @@ -26842,7 +31379,7 @@ "name": "08-天遒谷.json", "type": "file", "hash": "6cb87640e1fd483418d0d18b445a859699a2ae7a", - "version": "6cb8764", + "version": "1.0", "author": "鸿羽er", "description": "右后方可能会有一只<大伟丘>", "tags": [ @@ -26855,7 +31392,7 @@ "name": "09-珉林.json", "type": "file", "hash": "34ec7d2eff819511ca7d6b520793d8b041aa86ad", - "version": "34ec7d2", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26868,7 +31405,7 @@ "name": "10-归离原.json", "type": "file", "hash": "9288d0d0fe7da2cb5372812631c55f9bf52ce1cd", - "version": "9288d0d", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26881,7 +31418,7 @@ "name": "11-渌华池.json", "type": "file", "hash": "fae24f6e07035e86358abccbb3a4fa7344dc1662", - "version": "fae24f6", + "version": "1.0", "author": "鸿羽er", "description": "需完成解谜“渌华池之影”并开启副本风场", "tags": [ @@ -26894,7 +31431,7 @@ "name": "12-沉玉谷上谷·东侧水域.json", "type": "file", "hash": "75c6b7e8869b4928e08ce7a5bf1faaf43c5a01d0", - "version": "75c6b7e", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26907,7 +31444,7 @@ "name": "13-古茶树坡·北侧水域.json", "type": "file", "hash": "2a85c7df9c8326774b37b969bbd0fa92f27a3883", - "version": "2a85c7d", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26920,7 +31457,7 @@ "name": "14-悬练山·西南水域.json", "type": "file", "hash": "e6f28879ba82c0c61bafc95472a0493fb433f680", - "version": "e6f2887", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26939,7 +31476,7 @@ "name": "01-离岛.json", "type": "file", "hash": "7b04ea5e8b10f6d428f89e6f87daeffa2c2411cc", - "version": "7b04ea5", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26952,7 +31489,7 @@ "name": "02-甘金岛.json", "type": "file", "hash": "4e2e0c80e3329a510e426f80fffa73cbabcd4ab9", - "version": "4e2e0c8", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26965,7 +31502,7 @@ "name": "03-名椎滩.json", "type": "file", "hash": "d6f5cfe1a6043570e06bd2a3789fb6663e65422d", - "version": "d6f5cfe", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26978,7 +31515,7 @@ "name": "04-水月池.json", "type": "file", "hash": "030827269278967c71779030bbee9307f7646d0e", - "version": "0308272", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -26991,7 +31528,7 @@ "name": "05-珊瑚宫.json", "type": "file", "hash": "fc72acffa042079acc5cf63839f1e0c1cd066623", - "version": "fc72acf", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27011,7 +31548,7 @@ "name": "07-越石村.json", "type": "file", "hash": "883fb475946284e5a3e64619c3c2997f1e8e1520", - "version": "883fb47", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27024,7 +31561,7 @@ "name": "08-越石村2.json", "type": "file", "hash": "52d7140be345f62363c8a5588177030cdc8bf260", - "version": "52d7140", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27037,7 +31574,7 @@ "name": "09-千来神祠.json", "type": "file", "hash": "07987932a73e2926b4191c4e8f79d7a36ed9a647", - "version": "0798793", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27050,7 +31587,7 @@ "name": "10-逢岳之野(钓点处扫描雷鸟雕像).json", "type": "file", "hash": "a07e6f22e74357f7ed3aff5ee5ec6ccd89973b0b", - "version": "a07e6f2", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27069,7 +31606,7 @@ "name": "01-烟谜主西·镜壁山.json", "type": "file", "hash": "31c4e9476a59871546a9905a863cb42319810d27", - "version": "31c4e94", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27082,7 +31619,7 @@ "name": "02-花羽会·西侧海岸.json", "type": "file", "hash": "7120835b66d756b9e4f44c537bc447badba452a4", - "version": "7120835", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27095,7 +31632,7 @@ "name": "03-花羽会·北侧海岸.json", "type": "file", "hash": "77e3ac941e2b364eb1c5c48f0fee23be9399e88c", - "version": "77e3ac9", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27108,7 +31645,7 @@ "name": "04-奥奇卡纳塔·东南水域.json", "type": "file", "hash": "28a41910f6b7e0fd0d9d357845b458ff5e8356b6", - "version": "28a4191", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27121,7 +31658,7 @@ "name": "05-奥奇卡纳塔·南侧水域.json", "type": "file", "hash": "e41ae6ede920def1add502590002df7f4a776f01", - "version": "e41ae6e", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27134,7 +31671,7 @@ "name": "06-奥奇卡纳塔·北岸.json", "type": "file", "hash": "7e51b66c9129a82ecf0ed7e9fdb98468dab357c7", - "version": "7e51b66", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27147,7 +31684,7 @@ "name": "07-奥奇卡纳塔·拖佐兹之岛.json", "type": "file", "hash": "d3687d78fa837241614caf6948af844eca5012f5", - "version": "d3687d7", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27160,7 +31697,7 @@ "name": "08-奥奇卡纳塔·东侧水域.json", "type": "file", "hash": "568e37062193d6258d306275eaeee33cfde5e6cc", - "version": "568e370", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27179,7 +31716,7 @@ "name": "01-望风山地.json", "type": "file", "hash": "50e2763f76be4371dea3c8080a00376549dce90f", - "version": "50e2763", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27192,7 +31729,7 @@ "name": "02-果酒湖.json", "type": "file", "hash": "e62f819970fdb41f6dad52100f02dcd3f534117a", - "version": "e62f819", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27205,7 +31742,7 @@ "name": "03-风起地.json", "type": "file", "hash": "0042ead52af73a002880bc186743b4f56e8d5f00", - "version": "0042ead", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27218,7 +31755,7 @@ "name": "04-果酒湖.json", "type": "file", "hash": "fab65761c6a59b6b6d98a3a2920718748796280d", - "version": "fab6576", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27231,7 +31768,7 @@ "name": "05-晨曦酒庄.json", "type": "file", "hash": "b3df775fc3369d5bd2fc8b8443b13c20ce1a6ac4", - "version": "b3df775", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27244,7 +31781,7 @@ "name": "06-风龙废墟.json", "type": "file", "hash": "d93396bab70fdb5910901c52f817d77e0ee4a4d5", - "version": "d93396b", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27257,7 +31794,7 @@ "name": "07-风龙废墟2(有怪).json", "type": "file", "hash": "b4d5df5d93950d9b2c336c2b008ffd46e91e5841", - "version": "b4d5df5", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27270,7 +31807,7 @@ "name": "08-龙脊雪山.json", "type": "file", "hash": "f83106cf0833c2c34b4a4cddbe386bebcf516a62", - "version": "f83106c", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27289,7 +31826,7 @@ "name": "01-无郁稠林.json", "type": "file", "hash": "b8fb6d1069b31eba6c22b774b415aa1e13c41b34", - "version": "b8fb6d1", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27302,7 +31839,7 @@ "name": "02-须弥城.json", "type": "file", "hash": "c951cf68c1ec7422608feb619e20a92458c9b0f4", - "version": "c951cf6", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27315,7 +31852,7 @@ "name": "03-天臂池.json", "type": "file", "hash": "d79e05441098b80e1f81878e6a7392fad3ddee3c", - "version": "d79e054", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27328,7 +31865,7 @@ "name": "04-二净甸.json", "type": "file", "hash": "3a364636779a89b556d8b95d67091da262c71f60", - "version": "3a36463", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27341,7 +31878,7 @@ "name": "05-维摩庄.json", "type": "file", "hash": "55d8f06745117402e1d3837e11b223c2e7ae2194", - "version": "55d8f06", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27354,7 +31891,7 @@ "name": "06-降诸魔山.json", "type": "file", "hash": "a8e1c981f9ecda4f8570c3c874eff6c838a0be9e", - "version": "a8e1c98", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27367,7 +31904,7 @@ "name": "07-奥摩斯港.json", "type": "file", "hash": "f022efaa1d8fca5e3e8ebad0d4b213cb14b92c8c", - "version": "f022efa", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27380,7 +31917,7 @@ "name": "08-阿如村.json", "type": "file", "hash": "58c227198dfcb95dcf443e62f01dcef5ffd90560", - "version": "58c2271", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27393,7 +31930,7 @@ "name": "09-荒石苍漠.json", "type": "file", "hash": "beddb7f2fe1664460deddfca0022d43fe40de1c4", - "version": "beddb7f", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27406,7 +31943,7 @@ "name": "10-下风蚀地.json", "type": "file", "hash": "024d30ae4fc69da85d85d3a91172b3838afb50f5", - "version": "024d30a", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27419,7 +31956,7 @@ "name": "11-(有怪)五绿洲的孑遗.json", "type": "file", "hash": "d794e4de68027d2786fb48b8b9b43ae9deb5e460", - "version": "d794e4d", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27440,7 +31977,7 @@ "name": "自动钓鱼路线-枫丹-伊黎耶林区南岸.json", "type": "file", "hash": "860105a73dc55811c0f0b9c1e4b8d8158b2b494a", - "version": "860105a", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27452,7 +31989,7 @@ "name": "自动钓鱼路线-枫丹-佩特莉可镇·南侧小岛.json", "type": "file", "hash": "c28e2624813998fb5f811794e9c082dfaa1155e9", - "version": "c28e262", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27464,7 +32001,7 @@ "name": "自动钓鱼路线-枫丹-厄里那斯·东侧浅滩.json", "type": "file", "hash": "9d0d0283bf58abc97286f1a6e3e1624730134731", - "version": "9d0d028", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27476,7 +32013,7 @@ "name": "自动钓鱼路线-枫丹-厄里那斯·东北海滩.json", "type": "file", "hash": "ed607e2dcbcb7e5353c0472efa43d2fd21416961", - "version": "ed607e2", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27488,7 +32025,7 @@ "name": "自动钓鱼路线-枫丹-枫丹研究院神像西.json", "type": "file", "hash": "0b0afd26fde30f14e5430b6908e70cef44640727", - "version": "0b0afd2", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27500,7 +32037,7 @@ "name": "自动钓鱼路线-枫丹-柔灯港北岸.json", "type": "file", "hash": "98c2d908b502f3540cd2211a0deed44cf0891b70", - "version": "98c2d90", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27512,7 +32049,7 @@ "name": "自动钓鱼路线-璃月-古茶树坡·北侧水域.json", "type": "file", "hash": "d0ece18bd27dd3c516b4fc11b36b98a455ca39eb", - "version": "d0ece18", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27524,7 +32061,7 @@ "name": "自动钓鱼路线-璃月-奥藏山.json", "type": "file", "hash": "4a54f01a7cbed59ee94f9407e13304e377b2dc7c", - "version": "4a54f01", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27536,7 +32073,7 @@ "name": "自动钓鱼路线-璃月-归离原.json", "type": "file", "hash": "949f23264e0e37fcb0564db2e5abfdf89546b5e5", - "version": "949f232", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27548,7 +32085,7 @@ "name": "自动钓鱼路线-璃月-悬练山·西南水域.json", "type": "file", "hash": "8adb77ee5316ed2f02912dc743f5df3cbb0c0611", - "version": "8adb77e", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27560,7 +32097,7 @@ "name": "自动钓鱼路线-璃月-沉玉谷上谷·东侧水域.json", "type": "file", "hash": "59ee1e59081e8735a421a6b917073aecddcbc593", - "version": "59ee1e5", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27572,7 +32109,7 @@ "name": "自动钓鱼路线-璃月-渌华池.json", "type": "file", "hash": "fc75539f06fb2b4a2c11f3740ae902ffe33ef6e9", - "version": "fc75539", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27584,7 +32121,7 @@ "name": "自动钓鱼路线-璃月-碧水原.json", "type": "file", "hash": "d9cdaeda4b141f0bc3c5b6bd87f05a49a5ee5b8f", - "version": "d9cdaed", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27596,7 +32133,7 @@ "name": "自动钓鱼路线-稻妻-千来神祠.json", "type": "file", "hash": "e39f6b87edda918f410e4978be308696e7fc619c", - "version": "e39f6b8", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27608,7 +32145,7 @@ "name": "自动钓鱼路线-稻妻-名椎滩.json", "type": "file", "hash": "257acb2cdfb91df2ae909b69ab7a7bbc7dd3c06f", - "version": "257acb2", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27620,7 +32157,7 @@ "name": "自动钓鱼路线-稻妻-珊瑚宫.json", "type": "file", "hash": "891e8540a5593ed1f7d8821a053479a4da47c15d", - "version": "891e854", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27632,7 +32169,7 @@ "name": "自动钓鱼路线-稻妻-越石村右.json", "type": "file", "hash": "ab1c9a3efd141767c023cad81256aa2db0278422", - "version": "ab1c9a3", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27644,7 +32181,7 @@ "name": "自动钓鱼路线-稻妻-越石村右对岸.json", "type": "file", "hash": "ea385e92b96cd28608a842d4ccd63c8f03560dcf", - "version": "ea385e9", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27656,7 +32193,7 @@ "name": "自动钓鱼路线-蒙德-望风山地.json", "type": "file", "hash": "f44f7abca550fb18caba2b9c81663d37708579c0", - "version": "f44f7ab", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27668,7 +32205,7 @@ "name": "自动钓鱼路线-蒙德-果酒湖.json", "type": "file", "hash": "2da9146f9d39e5dc83599f5c79870b313bc5b4cd", - "version": "2da9146", + "version": "1.0", "author": "鸿羽er&起个名字好难的喵", "description": "", "tags": [ @@ -27680,7 +32217,7 @@ "name": "自动钓鱼路线-蒙德-风起地.json", "type": "file", "hash": "8a60e9d13874d45dbe70782eaa96d24275945e3b", - "version": "8a60e9d", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27692,7 +32229,7 @@ "name": "自动钓鱼路线-蒙德-风龙废墟.json", "type": "file", "hash": "e9d033433fb9cb80d0193f51ee3f69c57f341ac3", - "version": "e9d0334", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27704,7 +32241,7 @@ "name": "自动钓鱼路线-蒙德-龙脊雪山.json", "type": "file", "hash": "78cb7df31e95da870e6642dbb71faf74e29ed305", - "version": "78cb7df", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ @@ -27721,15 +32258,38 @@ "type": "directory", "children": [ { - "name": "瓦雷莎家的果园.json", - "type": "file", - "hash": "f7a82eef45bbdf0e585e82aad1ad4e2e47d8f4e7", - "version": "f7a82ee", - "author": "ddaodan", - "description": "需要先完成沃陆之邦纪闻第二幕不然龙龙不让你进\n总收益:\n烛伞蘑菇 1\n红果果菇 6\n青蜜莓 9\n颗粒果 5\n苦种 5\n苹果 54", - "tags": [ - "瓦雷莎家的果园", - "纳西妲" + "name": "瓦蕾莎家的果园(万叶采集)@Tool_tingsu", + "type": "directory", + "children": [ + { + "name": "瓦蕾莎家的果园(万叶2分钟版).json", + "type": "file", + "hash": "ddb230c142f738ca4ae9dc024f5db757bbff7d9e", + "version": "1.0", + "author": "Tool_tingsu", + "description": "", + "tags": [ + "瓦雷莎家的果园" + ] + } + ] + }, + { + "name": "瓦蕾莎家的果园(纳西妲采集)@D捣蛋", + "type": "directory", + "children": [ + { + "name": "瓦雷莎家的果园.json", + "type": "file", + "hash": "f7a82eef45bbdf0e585e82aad1ad4e2e47d8f4e7", + "version": "1.0", + "author": "ddaodan", + "description": "需要先完成沃陆之邦纪闻第二幕不然龙龙不让你进\n总收益:\n烛伞蘑菇 1\n红果果菇 6\n青蜜莓 9\n颗粒果 5\n苦种 5\n苹果 54", + "tags": [ + "瓦雷莎家的果园", + "纳西妲" + ] + } ] } ] @@ -27742,7 +32302,7 @@ "name": "枫丹蜥蜴-实验性遗址下方 (1).json", "type": "file", "hash": "9ed31d9e8b3b0f6dd4849b92e997e54e0355383b", - "version": "9ed31d9", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -27753,7 +32313,7 @@ "name": "璃月蜥蜴-天酋谷.json", "type": "file", "hash": "91ed65ce4662bdc5be3090e4c43c8b72b98d2252", - "version": "91ed65c", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -27764,7 +32324,7 @@ "name": "璃月蜥蜴-明蕴镇.json", "type": "file", "hash": "ec6f3da012259f3d23489aee415f5a35d52b02b6", - "version": "ec6f3da", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -27775,7 +32335,7 @@ "name": "璃月蜥蜴-清泉镇.json", "type": "file", "hash": "43461fe7f06fd374d926452f7803e43c7f8efcf7", - "version": "43461fe", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -27786,7 +32346,7 @@ "name": "璃月蜥蜴-璃月港上方.json", "type": "file", "hash": "f65864c67b672a9312e65a109a4e23352e1edc8f", - "version": "f65864c", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -27797,7 +32357,7 @@ "name": "蒙德蜥蜴-风龙废墟.json", "type": "file", "hash": "6ef8456fff57746c6389aef4344bd4c42560b1da", - "version": "6ef8456", + "version": "1.0", "author": "ran", "description": "", "tags": [ @@ -27808,7 +32368,7 @@ "name": "蜥蜴尾巴(千风神殿左).json", "type": "file", "hash": "f222af6a3fbb79abb41a22cb336f8867f79f3c5c", - "version": "f222af6", + "version": "1.0", "author": "秋枫夜扰", "description": "伟大的蜥蜴尾巴!神圣的精油!!", "tags": [ @@ -27819,7 +32379,7 @@ "name": "蜥蜴尾巴(摘星崖上方) .json", "type": "file", "hash": "9af28245fdbc5d45f4ef4861ea36d6babad11f80", - "version": "9af2824", + "version": "1.0", "author": "秋枫夜扰", "description": "最后一版!!!", "tags": [ @@ -27828,6 +32388,2266 @@ } ] }, + { + "name": "隙境原体", + "type": "directory", + "children": [ + { + "name": "隙境原体5只.json", + "type": "file", + "hash": "840ed8244eb7af4b627769e6ebfa509c1d6fd3f1", + "version": "1.0", + "author": "Vicissitude", + "description": "枫丹隙境原体,建议使用水神或者火神队伍,效率较快", + "tags": [ + "隙境原体", + "战斗" + ] + }, + { + "name": "隙境原体6只.json", + "type": "file", + "hash": "9817d9a58fe3f5cdb7851c9bc5b9fe35cb8914f2", + "version": "1.0", + "author": "Vicissitude", + "description": "枫丹隙境原体,建议使用水神或者火神队伍,效率较快", + "tags": [ + "隙境原体", + "战斗" + ] + }, + { + "name": "隙境原体7只.json", + "type": "file", + "hash": "021296ccc4c3f4369927a874665db748ed68ca2e", + "version": "1.0", + "author": "Vicissitude", + "description": "枫丹隙境原体,建议使用水神或者火神队伍,效率较快", + "tags": [ + "隙境原体", + "战斗" + ] + } + ] + }, + { + "name": "小怪锄地2000", + "type": "directory", + "children": [ + { + "name": "0_6_纳塔", + "type": "directory", + "children": [ + { + "name": "6101--纳塔_镜璧山_西海岸1_(8-13).json", + "type": "file", + "hash": "5a31d019e9eba2dcc6b4f052dbe7ca9d743ca309", + "version": "1.5", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6102--纳塔_镜璧山_西海岸2_(8-6).json", + "type": "file", + "hash": "1fc7e19ce133bdeac130a584b05cc6c62390fba9", + "version": "1.2", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6103--纳塔_镜璧山_西海岸3_(5-3).json", + "type": "file", + "hash": "4cf7496cb697fce11bfc2e4380d82e7820cb4134", + "version": "1.4", + "author": "Demo&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6104--纳塔_镜璧山_中部1_(8-6).json", + "type": "file", + "hash": "8cda09b99002f8ba933d3b5d4fc1f3d1302d6d40", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6105--纳塔_镜璧山_神像1_(4-0).json", + "type": "file", + "hash": "7463b4a6a07282ce36f78b96d24279f2950e276a", + "version": "1.4", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6106--纳塔_镜璧山_中部2.json", + "type": "file", + "hash": "9972967183b47461998cb305c289a5043a8c1ad5", + "version": "1.3", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6107--纳塔_镜璧山_神像2_(9-6).json", + "type": "file", + "hash": "acf8ba917ea5979b3a174f851e2e0a5003ee91a7", + "version": "1.6", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6201--纳塔_奥奇_西北海岸_(8-1).json", + "type": "file", + "hash": "6a6696ab4ea5cea8e5306c3141fdf4c415e22a39", + "version": "1.7", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6203--纳塔_奥奇_中层悬崖_11-2).json", + "type": "file", + "hash": "e646df6ddfff839fe7126d3587f805717b62c3a9", + "version": "1.6", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6204--纳塔_奥奇_神像_(7-1).json", + "type": "file", + "hash": "2e6749afaccb27b4e0b99f45d599767693a479ed", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6205--纳塔_奥奇_东北岛屿_(5-1).json", + "type": "file", + "hash": "22d6fcbd7665a0beddfef29c81c2eeb5c5dfbc57", + "version": "1.2", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6301--纳塔_翘枝崖_神像_(8-3).json", + "type": "file", + "hash": "c496f61815d5dba3c6ac328dd23dea58f4ee7d29", + "version": "1.4", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6302--纳塔_翘枝崖_北海岸_(3-5).json", + "type": "file", + "hash": "f47a2792069fe789328b8d30ac0d79ba05a7c82a", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6303--纳塔_翘枝崖_花语会南_(3-6).json", + "type": "file", + "hash": "f7032690cb3928d15582af5134b3a2937979a1cb", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6304--纳塔_翘枝崖_花语会南2_(3-9).json", + "type": "file", + "hash": "5b3d3b157bd1d4d5131bf6b3a4bedf605f57e27c", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6305--纳塔_翘枝崖_花语会南3_(4-4).json", + "type": "file", + "hash": "638cd8418e3ba8068fae248da38a933fbec8b458", + "version": "1.2", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6306--纳塔_翘枝崖_柴薪之丘_(11-18).json", + "type": "file", + "hash": "7860a1bc218be2576e38ce15cd7d5ac8a28803d6", + "version": "1.5", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6401--纳塔_万火之瓯_竞技场_(14-17).json", + "type": "file", + "hash": "c9f58b6b6dff46a7ef2ef72a02965769bf79427d", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6402--纳塔_万火之瓯_竞技场2_(3-4).json", + "type": "file", + "hash": "6c7f20e7a43d158891bcd3210d94209fea792091", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6403--纳塔_万火之瓯_竞技场3_(4-3).json", + "type": "file", + "hash": "6478faf988105687740c3fff6c1cacf768020485", + "version": "1.0", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6404--纳塔_万火之瓯_竞技场4_(12-11).json", + "type": "file", + "hash": "8900f614a404402512a26160298c48969e106a63", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6405--纳塔_万火之瓯_竞技场5_(3-5).json", + "type": "file", + "hash": "668b0fecd1e2ca3a72e3caf65de1de0bbf647553", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6406--纳塔_万火之瓯_悬木人_(6-6).json", + "type": "file", + "hash": "6fcc7039abd5365a12eaa42b44513c85bc92dbf8", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6407--纳塔_万火之瓯_悬木人_(5-4).json", + "type": "file", + "hash": "160f8495da14a04a623f962cef06dc0757114244", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json", + "type": "file", + "hash": "c0cf6998a93b0e2a78b109ebac8d92f9f43db4f5", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json", + "type": "file", + "hash": "817cb1a8c8a9f1cdc23a568ed43008a1a43169b1", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json", + "type": "file", + "hash": "bf086a6966537405b8b2d38e5b3893ac2442bae5", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json", + "type": "file", + "hash": "6328de91357eb2b689f5707cff3ebc2e2177c95d", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6505--纳塔_坚岩隘谷_回声之子_(7-13).json", + "type": "file", + "hash": "71732079dc17b070af23520f09fe37881a1fa570", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6506--纳塔_坚岩隘谷_回声之子_(8-9).json", + "type": "file", + "hash": "af469d47f1ef98797d6a281b164991ff82def1a0", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6507--纳塔_坚岩隘谷_中部河流_(15-9).json", + "type": "file", + "hash": "9045426ad01eff3d008910d014fbc48a311f72a8", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json", + "type": "file", + "hash": "3c53226c0202d3234590855ce4ac26441b09ce2f", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json", + "type": "file", + "hash": "c19024f18bb7a18ffd8c886300791a59d2f60b14", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json", + "type": "file", + "hash": "0207deeb0b97e591708a8fbd141c207fd7c0edbf", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json", + "type": "file", + "hash": "0c7beff975d9f9cec6c43f3190dbb7d5aeb8e87f", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6601--纳塔_涌流地_北侧山脉_(2-4).json", + "type": "file", + "hash": "27a53cd221c69bd987553c391c4d3997243d9153", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6602--纳塔_涌流地_北侧山脉2_(11-7).json", + "type": "file", + "hash": "0afcac1d2ad45b6c1e2e94180c231a2adfb8144d", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6603--纳塔_涌流地_秘境西侧_(2-7).json", + "type": "file", + "hash": "8c0e59fd1fd61a49eae0a1bde7ab6ccbbb72ccb2", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6604--纳塔_涌流地_秘境南侧_(2-7).json", + "type": "file", + "hash": "ac665ab2992d67c77974d6e3726ff214d2df7672", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6605--纳塔_涌流地_溶水域_(6-0).json", + "type": "file", + "hash": "b3322eace9d8a17111db8dda913e03c254ce09e1", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6606--纳塔_涌流地_溶水域2_(4-3).json", + "type": "file", + "hash": "e7082722c01bbfc81b655239ee50494c3a5d341c", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6607--纳塔_涌流地_溶水域3_(11-5).json", + "type": "file", + "hash": "53e1144d7d5b70546aec003cce0f3e3b3705ab85", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6608--纳塔_涌流地_溶水域4_(2-3).json", + "type": "file", + "hash": "97bf49f19dd42cd9d72600c997b3de3b4a5411c3", + "version": "1.0", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6609--纳塔_涌流地_南侧小岛_(5-8).json", + "type": "file", + "hash": "ec51e5d06ae1535621145f005e030cfd1388c00d", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6610--纳塔_涌流地_东侧小岛_(10-14).json", + "type": "file", + "hash": "3f8f19744422abe339730548ef18b03fa316837c", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6611--纳塔_涌流地_中央神像_(9-8).json", + "type": "file", + "hash": "5f86337305613fd59dea4486e59cea4131b8e40d", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6701--纳塔_踞石山_庙宇北侧_(3-5).json", + "type": "file", + "hash": "1cd44bf6c5ed5adc55905d8367c18325ce24c8b2", + "version": "1.1", + "author": "Demo&汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6702--纳塔_踞石山_庙宇北侧_(1-11).json", + "type": "file", + "hash": "7b4d1902211214113c72af42db9258964e2d103a", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6703--纳塔_踞石山_北侧主峰_(10-9).json", + "type": "file", + "hash": "68cb26fb29797eb8b57cc690154dc0b8bc696b55", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6704--纳塔_踞石山_东侧海边_(3-7).json", + "type": "file", + "hash": "b617b6f25a7bffd63e1eaf5c8247789cbfe5bab6", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6705--纳塔_踞石山_彩石顶_(10-4).json", + "type": "file", + "hash": "f2a279b244a91217adbd156d2a0f64effc687439", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6706--纳塔_踞石山_彩石顶2_(7-16).json", + "type": "file", + "hash": "403f3115722e3c938b956df0af70b8f4ae6abc3c", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6707--纳塔_踞石山_庙宇_(9-11).json", + "type": "file", + "hash": "a6ac1a6387a63e05536ed58d616f7f60d5232b8d", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6708--纳塔_踞石山_彩石顶3_(6-9).json", + "type": "file", + "hash": "134268054e06ced6a459dca9dce6e5793d9098e1", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6801--纳塔_安饶之野_镜壁山东南_(20).json", + "type": "file", + "hash": "f8727f6897fa510911fc5871a46cc47f0e2081e0", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6802--纳塔_安饶之野_镜壁山西南_(23).json", + "type": "file", + "hash": "537ed75ad9a5e467a620bffe95eab8b75d2ad22d", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6803--纳塔_熔岩辉龙像东南_(5).json", + "type": "file", + "hash": "b6baab9ef14a5a4a8e26c08d2e6bb234d7be3959", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6804--纳塔_安饶之野东北海岸_(8).json", + "type": "file", + "hash": "182c922d0e4a63cf5dcaadbf36164dc4c52cd17c", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6805--纳塔_安饶之野东岩浆池_(5).json", + "type": "file", + "hash": "d261176ce74bd577bdc1b6882b96bd3d61cbe7d1", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6806--纳塔_安饶之野东斜坡_(16).json", + "type": "file", + "hash": "1770683c95c3409722f6f5123839b19f5c509122", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6807--纳塔_安饶之野神像_(8).json", + "type": "file", + "hash": "578e81f0c31cfa23bae20c855555605bd2b3b74c", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json", + "type": "file", + "hash": "4e42aaec20e300e0c8cc2f651ff3a3516a86831f", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6809--纳塔_安饶之野_石火坠陨处_(12).json", + "type": "file", + "hash": "5c4a9bc0b87ae6df2c54120f7218919bef471b87", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6810--纳塔_安饶之野西南_(21).json", + "type": "file", + "hash": "5c11403900d489c64998cf44e89d69e9494a84fc", + "version": "1.0", + "author": "汐", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6811--纳塔_安饶之野_荒废弃造坞_(10).json", + "type": "file", + "hash": "59e37ba67256e8567305bcdb4f20d05971e259ad", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6812--纳塔_安饶之野_孑遗的留迹东南_(20).json", + "type": "file", + "hash": "d38509c0b415389fff9b3c293b9773eb83f20a7a", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + }, + { + "name": "6813--纳塔_安饶之野西北_(8).json", + "type": "file", + "hash": "9ad35e6e49c769d7df71cdbb442194336544379a", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "0_6_纳塔", + "战斗" + ] + } + ] + }, + { + "name": "1_1_蒙德", + "type": "directory", + "children": [ + { + "name": "1101蒙德望风角.json", + "type": "file", + "hash": "d7081ed3fcd4a8591f38abdb72f403089f637620", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1102蒙德望风角.json", + "type": "file", + "hash": "0b71ea90ef23f093f1619da6c9405b9f84e6e0ea", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1103蒙德望风山地.json", + "type": "file", + "hash": "8c76439e0f57b9bbeadd1f96603b4f8f8abecabf", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1104蒙德千风西.json", + "type": "file", + "hash": "3321539880d12ca1f180c23bd4ed1eb86c5e832b", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1202蒙德奔狼领.json", + "type": "file", + "hash": "54c89211d51d9db55bb34c065cba53ed52663247", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_1_蒙德", + "战斗" + ] + }, + { + "name": "1203蒙德塞西莉亚苗圃.json", + "type": "file", + "hash": "64713342ce3ed9f3c6ff7f13bc79b4192eb808d0", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_1_蒙德", + "战斗" + ] + } + ] + }, + { + "name": "1_2_璃月", + "type": "directory", + "children": [ + { + "name": "2101璃月无妄坡西南.json", + "type": "file", + "hash": "b211147884c5bc528237a532b95d4f0a407a8647", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2201璃月明蕴镇西北.json", + "type": "file", + "hash": "f4b3986c28de0d139e92bef09f8352d9d6d2e7de", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2202璃月瑶光滩西北.json", + "type": "file", + "hash": "3dd21e3e32139395321349640fef99b8b56fda3c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2301璃月太山府.json", + "type": "file", + "hash": "39d672b490a6c22e29deabde903f56bb038ef515", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2302璃月珉林.json", + "type": "file", + "hash": "6e686ddc52abe95abe6d877883d419e6cf5265ef", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2303璃月琥牢山.json", + "type": "file", + "hash": "54d980a33c7499f6bb21602d32a0feef59910289", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2401璃月地面矿区.json", + "type": "file", + "hash": "274112813cfcf53b20913c96e0c2ce9dae0b4e17", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2501璃月遁玉陵.json", + "type": "file", + "hash": "23f4f51000a4ee3c56bba3ddac9352fbd951151d", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2502璃月群玉阁西.json", + "type": "file", + "hash": "1296b02e26f775a559bba8edbd74432ec1402c1c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + }, + { + "name": "2601璃月港东北.json", + "type": "file", + "hash": "e6e9cb33a06a78099f702609e7f459ae1e70cf6d", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_2_璃月", + "战斗" + ] + } + ] + }, + { + "name": "1_3_稻妻", + "type": "directory", + "children": [ + { + "name": "3101稻妻白狐之野南.json", + "type": "file", + "hash": "b58ba9bacaa6bb51314315f0478c6eaf506a7610", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3102稻妻绀田村南.json", + "type": "file", + "hash": "261dbd44c6442f59a8f0d8789afa43b92feb3e8a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3104稻妻绀田村南2.json", + "type": "file", + "hash": "ebb5cc4ef6cc0bc94545f9ad8bc06e1aada0729c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3105稻妻镇守之森.json", + "type": "file", + "hash": "8c6b6823899b21d85683eff77ef5f44ec5f5e388", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3106稻妻神里屋敷.json", + "type": "file", + "hash": "e56ee230bfad9fb750e216e168e9fc965ffff2bd", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3107稻妻绀田村.json", + "type": "file", + "hash": "d5b574ee3aa20686e50ac150b4411f7f284aacd1", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3108稻妻荒海南.json", + "type": "file", + "hash": "e1b1b5fafc5734a054bb1875fab29b4489a7adfb", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3201稻妻九条阵屋.json", + "type": "file", + "hash": "186cf35655919107f79e17352374a50840b03c32", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3202稻妻踏鞴东北.json", + "type": "file", + "hash": "94188abce855a851011de0093b85fc903d859a90", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3204稻妻踏鞴神像2.json", + "type": "file", + "hash": "42b9e5d39903496ff85ef6ba1abb4287781c3f3a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3205稻妻踏鞴反应炉东三骗骗花.json", + "type": "file", + "hash": "ef2ea2eba25a89f67815b64759370dacdcebdc3d", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3206稻妻踏鞴反应炉东.json", + "type": "file", + "hash": "362f11cb1dbf3c60568d228eeb2ba3f829ab8d8c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3207稻妻踏鞴浪船.json", + "type": "file", + "hash": "bd919933a7ba31dd93433f664eef5b4e5041b33b", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3208稻妻借景之馆.json", + "type": "file", + "hash": "bd034ceb00a21346074440609798b7819fe1e991", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3209稻妻踏鞴公义东南.json", + "type": "file", + "hash": "6c93011a5bd06f9664d788d390e3cc4f91fe8dda", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3210稻妻公义飞萤.json", + "type": "file", + "hash": "3724c441d81e47fb6a8ba90a950ca272e9a1bb6a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3211稻妻名椎滩东.json", + "type": "file", + "hash": "29fe5ec595300da3e90eea2432b20b5168e6e9a5", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3212稻妻名椎滩西.json", + "type": "file", + "hash": "2613efd0add3ea2b3fbfe4d6fe43b2840efd1d45", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3301稻妻绯木村神像.json", + "type": "file", + "hash": "5f6ef1d5e7a72a693f970e412991463cc29ce3b9", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3302稻妻蛇骨矿洞南.json", + "type": "file", + "hash": "bbbb2f09ab9494adc2af192f1a7a4f34c138a7cc", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3303稻妻剑鬼东2.json", + "type": "file", + "hash": "eef18520020eb4075250640b1fc302b76a6d7591", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3304稻妻剑鬼东3.json", + "type": "file", + "hash": "fcbc99366bb8b96bc5f335ba80a3afee998310f1", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3305稻妻剑鬼东1.json", + "type": "file", + "hash": "05e9e515ff6e6449126ed44e344afd0c25f9cc52", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3306稻妻藤兜砦西.json", + "type": "file", + "hash": "350825ec328916dc45c3ea13ec4a62ed103b3e6e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3401稻妻海祇岛东.json", + "type": "file", + "hash": "0c4800b7ae3affdf227d8f5c89663b662c330b68", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + }, + { + "name": "3403稻妻海祇岛南.json", + "type": "file", + "hash": "dc0453ebfa67bbe532b1f65c3311bb4fcb482a8a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_3_稻妻", + "战斗" + ] + } + ] + }, + { + "name": "1_4_须弥", + "type": "directory", + "children": [ + { + "name": "4101须弥二净甸.json", + "type": "file", + "hash": "34a58589007659cddd6a8f68f2637cf9608ed952", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_4_须弥", + "战斗" + ] + } + ] + }, + { + "name": "1_5_枫丹", + "type": "directory", + "children": [ + { + "name": "5101枫丹廷东北.json", + "type": "file", + "hash": "9a8a811877eb950afd3fd8daf12350e85e9e9320", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5102枫丹廷北.json", + "type": "file", + "hash": "451deca3704cffaa40a2f1e6acdc0dd6d6704831", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5201枫丹优兰湖西.json", + "type": "file", + "hash": "e38596717c2af00b0043378d6fe3a475176b0bd4", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5202枫丹垂柳西北.json", + "type": "file", + "hash": "f68a9de83eb8f1f63559ca851addf93db79b4e03", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5203枫丹垂柳东南.json", + "type": "file", + "hash": "bec64404549261a2ade8e49c466e2927e9e60d6e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5204枫丹垂柳东南.json", + "type": "file", + "hash": "5b6d468db4c1324a3dae67264fff4fc0f3d0b811", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5205枫丹垂柳东南.json", + "type": "file", + "hash": "a7063c2d945c90052338125d919361d37da36db5", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5206枫丹垂柳东南.json", + "type": "file", + "hash": "e31faa515fab608439696653d5d0e0c747e74e40", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5207枫丹柔灯港北.json", + "type": "file", + "hash": "00cb2afb798465155519f86a4ff740d77de6fc6e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5208枫丹幽林东北.json", + "type": "file", + "hash": "ecaebe1220fe436a1fd5cec822bbc962cef8a0ea", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5209枫丹露景泉东.json", + "type": "file", + "hash": "05513089e3393dcb089ee118a48b9e3d038c6b77", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5210枫丹幽林东北.json", + "type": "file", + "hash": "258ab8dca8f545fbec3e799c3b0e9ead6da34d4e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5301枫丹卡布堡南.json", + "type": "file", + "hash": "8a2e3c3d93f2de75f5d89f847f52dab346322cc8", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5303枫丹卡布堡北.json", + "type": "file", + "hash": "e89e14c49d156f025c453be496645147db1c6bc5", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5401枫丹秋分东南.json", + "type": "file", + "hash": "9a4cf7d9e674a798ee9b9656235ace18e5cc9765", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5402枫丹秋分山东.json", + "type": "file", + "hash": "65e3b3a3a02c95042c2a8ab24b87469e27d33fac", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5403枫丹螃蟹北.json", + "type": "file", + "hash": "b1f419acacb5ffbde3a9eae61c1f1e1cdf51fe03", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5501枫丹螃蟹西.json", + "type": "file", + "hash": "7a1ac99da5dfabe233564a9a8512787eb4f255ff", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5502枫丹苍晶南山峰西.json", + "type": "file", + "hash": "f9c1790e3c7bd99dd29acbf6f8e71eed4ae91fb7", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5503枫丹厄里东北.json", + "type": "file", + "hash": "803877a107bd154e36f6ff01d5803caa7c1696bf", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5603枫丹场力北.json", + "type": "file", + "hash": "65263153812e4eb27f69f1333c41816264054e65", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5604枫丹中央遗址北.json", + "type": "file", + "hash": "3e0f39a478e1259c92fe8eb48244d41494a2def0", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5605枫丹中央遗址北.json", + "type": "file", + "hash": "2575b35fb1082cc86b640a445bf2b73d304ac666", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5607枫丹新科学院.json", + "type": "file", + "hash": "21d58329c39be1d6942721c8d02c3c18d04b83e3", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5608枫丹新科学院.json", + "type": "file", + "hash": "4319fbaaefe4307b9b6d041f17164304c3a39123", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + }, + { + "name": "5609枫丹千年骏麟.json", + "type": "file", + "hash": "6dce544c6c47ce2efff32f5d6e332b8952317f89", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "1_5_枫丹", + "战斗" + ] + } + ] + }, + { + "name": "9_0_低效路线(不跑)", + "type": "directory", + "children": [ + { + "name": "000如果执行了这条路径说明你启用了错误的文件夹.json", + "type": "file", + "hash": "bf1ae26bc198de0694feb55d55cbe07472a2bb7e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)" + ] + }, + { + "name": "25012璃月遁玉陵.json", + "type": "file", + "hash": "0ac9f98c9938b57cce3b3db0536d22fc032e23f7", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "3103稻妻绀田村南3.json", + "type": "file", + "hash": "a0cb08e10818466bfdd73b9c8f7f985335d26c9a", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "3203稻妻踏鞴神像.json", + "type": "file", + "hash": "28c769b3e5364b11be765e8d8daac404b66c7d85", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "3402稻妻海祇岛东南.json", + "type": "file", + "hash": "9794b37756239cf6cae60bd3311ba9b9a93a63bc", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "3404稻妻海祇岛北.json", + "type": "file", + "hash": "ea86826d7ffc086b568d7cbe6ca752dd5aaa6aee", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "51012枫丹廷东北.json", + "type": "file", + "hash": "8cb1a7e1143258942a285f970c7b3dee34aaf698", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "51014枫丹廷东北.json", + "type": "file", + "hash": "32ee6b33f5a113e0856c95648bf5699ad14375d2", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "52092枫丹露景泉东.json", + "type": "file", + "hash": "c3c3efa38f0d98e56c277c9229c122f6eabdea04", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "5302枫丹卡布堡南.json", + "type": "file", + "hash": "0771be1a21966f5b5a3a4493b6c8a5f29a6018d6", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "5601枫丹场力东南.json", + "type": "file", + "hash": "684a5420333687e1c72515d2649a4c19ff2f6a9c", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "5602枫丹场力东南.json", + "type": "file", + "hash": "5311e7f014fd66a68a1f20ccb462ea4b43d7e5f8", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "5606枫丹新科学院.json", + "type": "file", + "hash": "fde9db9af37d35c955be044f31139948046bafeb", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "61051--纳塔_镜璧山_神像1_(4-0).json", + "type": "file", + "hash": "50a000628bc86f4c2a8bb10da24938dfe6ba5c82", + "version": "1.4", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "64051--纳塔_万火之瓯_竞技场5_(3-5).json", + "type": "file", + "hash": "fee8007fe52cb497c1e58b7e5962792b5297b6b8", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "66103--纳塔_涌流地_东侧小岛_(10-14).json", + "type": "file", + "hash": "055887ce467f4b42176084635749f273e52c6543", + "version": "1.1", + "author": "Demo&汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "68092--纳塔_安饶之野_石火坠陨处_(12).json", + "type": "file", + "hash": "18d688750b70c266b60c7949cef9f2764eff69d1", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + }, + { + "name": "68121--纳塔_安饶之野_孑遗的留迹东南_(20).json", + "type": "file", + "hash": "d7d09aecfb58a82892dc9a602e1669c3b58a1e52", + "version": "1.0", + "author": "汐&mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_0_低效路线(不跑)", + "战斗" + ] + } + ] + }, + { + "name": "9_3_稻妻未修正部分(不跑)", + "type": "directory", + "children": [ + { + "name": "000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json", + "type": "file", + "hash": "bf1ae26bc198de0694feb55d55cbe07472a2bb7e", + "version": "1.0", + "author": "mno", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)" + ] + }, + { + "name": "7020稻妻清濑岛01.json", + "type": "file", + "hash": "532f319bba7e7301e2414b8900b22eec2298be2a", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7020稻妻清濑岛02.json", + "type": "file", + "hash": "2a3b3248bbb8ce54104d2a0f7646e50478b4ff8d", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7020稻妻清濑岛03.json", + "type": "file", + "hash": "4ae945c26533843a026c7d183d6628afd54240c8", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7020稻妻清濑岛04.json", + "type": "file", + "hash": "5ded796998cd76a7bc12e5a84c62980a8ed4cd04", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7020稻妻清濑岛05.json", + "type": "file", + "hash": "0e90f63b65ad899459a697643c3cc72072da2a5e", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7020稻妻清濑岛07.json", + "type": "file", + "hash": "5d4872c91290423c79ac05b861e0d3599cdc37f3", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7020稻妻清濑岛08.json", + "type": "file", + "hash": "604ae13f2873817e4d9abb3fceb4fe5f8c1c449a", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7020稻妻清濑岛09.json", + "type": "file", + "hash": "42c7a7958b69fc852483d13d207898beb8d1db02", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7020稻妻清濑岛12.json", + "type": "file", + "hash": "5f1d97176b164322e1c9f0070a91571af941b356", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + }, + { + "name": "7022稻妻鹤冠05.json", + "type": "file", + "hash": "2ea9366b894220fd74c9bc177ca93e72a5c4e10c", + "version": "1.0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "小怪锄地2000", + "9_3_稻妻未修正部分(不跑)", + "战斗" + ] + } + ] + }, + { + "name": "README.txt", + "type": "file", + "hash": "8b29c260f09074ed0fc776d363ed14d08dbf4163", + "version": "8b29c26", + "error": "Unexpected token 提 in JSON at position 0" + }, + { + "name": "上限集分析.xlsx", + "type": "file", + "hash": "b7f6e088abe64e935366d4f82effaa8577eab767", + "version": "b7f6e08", + "error": "Unexpected token P in JSON at position 0" + }, + { + "name": "更新日志.txt", + "type": "file", + "hash": "d22d80d1a4a9668962c2dcb51e990438e76c9a5f", + "version": "d22d80d", + "error": "Unexpected number in JSON at position 1" + } + ] + }, { "name": "小型深海龙蜥", "type": "directory", @@ -27836,765 +34656,12 @@ "name": "dn01茉洁站右上(6).json", "type": "file", "hash": "fe3d5ccd37a2126532750b50362e80abf64dab80", - "version": "fe3d5cc", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "小型深海龙蜥" - ] - } - ] - }, - { - "name": "新版锄地--小怪", - "type": "directory", - "children": [ - { - "name": "6101--纳塔_镜璧山_西海岸1_(8-13).json", - "type": "file", - "hash": "3844fd31828fffb496748f61ad534653175fa56d", - "version": "3844fd3", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6102--纳塔_镜璧山_西海岸2_(8-6).json", - "type": "file", - "hash": "1fc7e19ce133bdeac130a584b05cc6c62390fba9", - "version": "1fc7e19", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6103--纳塔_镜璧山_西海岸3_(5-3).json", - "type": "file", - "hash": "3ddff72fe6491d7924120e2fbb8534d9e9becaf9", - "version": "3ddff72", - "author": "Demo", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6104--纳塔_镜璧山_中部1_(8-6).json", - "type": "file", - "hash": "c557eca33bb0ada39129fe1558b090944eb230e9", - "version": "c557eca", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6105--纳塔_镜璧山_神像1_(4-0).json", - "type": "file", - "hash": "55610c7b317234f26d189061db7c5cd9ba23dba8", - "version": "55610c7", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6106--纳塔_镜璧山_中部2.json", - "type": "file", - "hash": "9972967183b47461998cb305c289a5043a8c1ad5", - "version": "9972967", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6107--纳塔_镜璧山_神像2_(9-6).json", - "type": "file", - "hash": "90c5a812d68ceda631af0c80681ccc9c3f8ac642", - "version": "90c5a81", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6201--纳塔_奥奇_西北海岸_(8-1).json", - "type": "file", - "hash": "d78732710103a977f8d07b8737cb482c67c11036", - "version": "d787327", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6202--纳塔_奥奇_北海岸_(4-0).json", - "type": "file", - "hash": "aa5fb980518c9bc9484723f2cd31c59a2a1131a0", - "version": "aa5fb98", - "author": "Demo", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6203--纳塔_奥奇_中层悬崖_11-2).json", - "type": "file", - "hash": "1aa95c047e6318b6b657df70f4de74d5f5bbb524", - "version": "1aa95c0", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6204--纳塔_奥奇_神像_(7-1).json", - "type": "file", - "hash": "44e3a30666f82bb4081a9642c5d63b0e24bdfac7", - "version": "44e3a30", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6205--纳塔_奥奇_东北岛屿_(5-1).json", - "type": "file", - "hash": "22d6fcbd7665a0beddfef29c81c2eeb5c5dfbc57", - "version": "22d6fcb", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6301--纳塔_翘枝崖_神像_(8-3).json", - "type": "file", - "hash": "d20279dd9bfde2d8daaab2e03b7159370cb6a2f6", - "version": "d20279d", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6302--纳塔_翘枝崖_北海岸_(3-5).json", - "type": "file", - "hash": "3fa574fc9139cb00f05c7a3f819190b977dfc372", - "version": "3fa574f", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6303--纳塔_翘枝崖_花语会南_(3-6).json", - "type": "file", - "hash": "44fe374780efafba6e1f1c435036b03123b7bd0f", - "version": "44fe374", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6304--纳塔_翘枝崖_花语会南2_(3-9).json", - "type": "file", - "hash": "8d59d38e3825f893659be87a0944422650a34ff5", - "version": "8d59d38", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6305--纳塔_翘枝崖_花语会南3_(4-4).json", - "type": "file", - "hash": "b1d5ff944f06afea407c75bec0e47d66882bfe27", - "version": "b1d5ff9", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6306--纳塔_翘枝崖_柴薪之丘_(11-18).json", - "type": "file", - "hash": "2bc32c4b9681306f47b0956c538a4d705a5ebe78", - "version": "2bc32c4", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6401--纳塔_万火之瓯_竞技场_(14-17).json", - "type": "file", - "hash": "c9f58b6b6dff46a7ef2ef72a02965769bf79427d", - "version": "c9f58b6", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6402--纳塔_万火之瓯_竞技场2_(3-4).json", - "type": "file", - "hash": "4eb1de44722d035e0e16c63d90f4d0a66f6c3600", - "version": "4eb1de4", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6403--纳塔_万火之瓯_竞技场3_(4-3).json", - "type": "file", - "hash": "3bf881e6a5a491682a3b3d98a02393c3aeb4360a", - "version": "3bf881e", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6404--纳塔_万火之瓯_竞技场4_(12-11).json", - "type": "file", - "hash": "8900f614a404402512a26160298c48969e106a63", - "version": "8900f61", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6405--纳塔_万火之瓯_竞技场5_(3-5).json", - "type": "file", - "hash": "b1bc3713f39d4cc2c346eb5a0ec88027396f6409", - "version": "b1bc371", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6406--纳塔_万火之瓯_悬木人_(6-6).json", - "type": "file", - "hash": "e8d9aeded62e919f00d0972eba56e52fa1272e29", - "version": "e8d9aed", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6407--纳塔_万火之瓯_悬木人_(5-4).json", - "type": "file", - "hash": "160f8495da14a04a623f962cef06dc0757114244", - "version": "160f849", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json", - "type": "file", - "hash": "c0cf6998a93b0e2a78b109ebac8d92f9f43db4f5", - "version": "c0cf699", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json", - "type": "file", - "hash": "3c473fb3584e02aa72db887a32cc9ac7712ed533", - "version": "3c473fb", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json", - "type": "file", - "hash": "158fe12e9a3dabd97757f6ff96a285ebf4e0091f", - "version": "158fe12", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json", - "type": "file", - "hash": "5c29781a4bff70948f48327535241ff0726d26bd", - "version": "5c29781", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6505--纳塔_坚岩隘谷_回声之子_(7-13).json", - "type": "file", - "hash": "71732079dc17b070af23520f09fe37881a1fa570", - "version": "7173207", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6506--纳塔_坚岩隘谷_回声之子_(8-9).json", - "type": "file", - "hash": "f00de3000ff834b67ba0e6c15719754025bb8c96", - "version": "f00de30", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6507--纳塔_坚岩隘谷_中部河流_(15-9).json", - "type": "file", - "hash": "9045426ad01eff3d008910d014fbc48a311f72a8", - "version": "9045426", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json", - "type": "file", - "hash": "0e4c23fd3dcabec8f3e647c41d69c9346fd8e499", - "version": "0e4c23f", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json", - "type": "file", - "hash": "03069d28499ca0305aa4d99dfc26b5c72ad23a7c", - "version": "03069d2", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json", - "type": "file", - "hash": "948d4a85ad5610bfe7a31ed4cb11d872408a3ae3", - "version": "948d4a8", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json", - "type": "file", - "hash": "015b9cf6fd0ac2dcb0104427b6dc38b82d6d2c31", - "version": "015b9cf", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6601--纳塔_涌流地_北侧山脉_(2-4).json", - "type": "file", - "hash": "8966c9dde13a01797993eff2635b138bb7128521", - "version": "8966c9d", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6602--纳塔_涌流地_北侧山脉2_(11-7).json", - "type": "file", - "hash": "14ebf61b396bdbf46708c6559e8833763906d0ab", - "version": "14ebf61", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6603--纳塔_涌流地_秘境西侧_(2-7).json", - "type": "file", - "hash": "8a26c72824ea77dccb2f088dd5584bb6d95e86ef", - "version": "8a26c72", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6604--纳塔_涌流地_秘境南侧_(2-7).json", - "type": "file", - "hash": "acf319ba1ad14a32bd0cfaa66c2eaaa715f0517f", - "version": "acf319b", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6605--纳塔_涌流地_溶水域_(6-0).json", - "type": "file", - "hash": "4e2c7d82c3f9c80c6eafac35b7ff18a3b33c72de", - "version": "4e2c7d8", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6606--纳塔_涌流地_溶水域2_(4-3).json", - "type": "file", - "hash": "cd4da9a65cb7d9c619079bb7d51fde76b84cd450", - "version": "cd4da9a", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6607--纳塔_涌流地_溶水域3_(11-5).json", - "type": "file", - "hash": "8f60f8e84b8473145fd79075408cbf4849a56b35", - "version": "8f60f8e", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6608--纳塔_涌流地_溶水域4_(2-3).json", - "type": "file", - "hash": "97bf49f19dd42cd9d72600c997b3de3b4a5411c3", - "version": "97bf49f", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6609--纳塔_涌流地_南侧小岛_(5-8).json", - "type": "file", - "hash": "9eeaa082b353e80858a9ae38891b96f8c06a987d", - "version": "9eeaa08", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6610--纳塔_涌流地_东侧小岛_(10-14).json", - "type": "file", - "hash": "5affb16a6fba96a966f31e891a14ac6c59ec392b", - "version": "5affb16", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6611--纳塔_涌流地_中央神像_(9-8).json", - "type": "file", - "hash": "5f86337305613fd59dea4486e59cea4131b8e40d", - "version": "5f86337", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6701--纳塔_踞石山_庙宇北侧_(3-5).json", - "type": "file", - "hash": "1cd44bf6c5ed5adc55905d8367c18325ce24c8b2", - "version": "1cd44bf", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6702--纳塔_踞石山_庙宇北侧_(1-11).json", - "type": "file", - "hash": "2c28745feea995b1733808ff9a167f1028220481", - "version": "2c28745", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6703--纳塔_踞石山_北侧主峰_(10-9).json", - "type": "file", - "hash": "7e3c8334ac0e2cfec769d25b7f862a06778da96f", - "version": "7e3c833", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6704--纳塔_踞石山_东侧海边_(3-7).json", - "type": "file", - "hash": "1a776d7053df557e048ffa96281483bf6ed7bc60", - "version": "1a776d7", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6705--纳塔_踞石山_彩石顶_(10-4).json", - "type": "file", - "hash": "9b78bc1a2dd10928185a6593024e0cfdb0a100a8", - "version": "9b78bc1", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6706--纳塔_踞石山_彩石顶2_(7-16).json", - "type": "file", - "hash": "6c82d60cdff899b727e4ab43f1489e3edaa8bc07", - "version": "6c82d60", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6707--纳塔_踞石山_庙宇_(9-11).json", - "type": "file", - "hash": "666b685c340c5f236ce9f2dfa7acf6a583cbb3d4", - "version": "666b685", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6708--纳塔_踞石山_彩石顶3_(6-9).json", - "type": "file", - "hash": "c7a77a7b61e18063e73d41918ac05ef6968ee5db", - "version": "c7a77a7", - "author": "Demo&汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6801--纳塔_安饶之野_镜壁山东南_(20).json", - "type": "file", - "hash": "ac4674f2e0744b8a04e5624f4518c2f0a8aeaf30", - "version": "ac4674f", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6802--纳塔_安饶之野_镜壁山西南_(23).json", - "type": "file", - "hash": "537ed75ad9a5e467a620bffe95eab8b75d2ad22d", - "version": "537ed75", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6803--纳塔_熔岩辉龙像东南_(5).json", - "type": "file", - "hash": "b6baab9ef14a5a4a8e26c08d2e6bb234d7be3959", - "version": "b6baab9", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6804--纳塔_安饶之野东北海岸_(8).json", - "type": "file", - "hash": "182c922d0e4a63cf5dcaadbf36164dc4c52cd17c", - "version": "182c922", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6805--纳塔_安饶之野东岩浆池_(5).json", - "type": "file", - "hash": "e116d30c58e15cef2b8e56cef9b7338fc464509e", - "version": "e116d30", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6806--纳塔_安饶之野东斜坡_(16).json", - "type": "file", - "hash": "1770683c95c3409722f6f5123839b19f5c509122", - "version": "1770683", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6807--纳塔_安饶之野神像_(8).json", - "type": "file", - "hash": "578e81f0c31cfa23bae20c855555605bd2b3b74c", - "version": "578e81f", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json", - "type": "file", - "hash": "03404be81d45804670cf1c0ca32584e472d65f36", - "version": "03404be", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6809--纳塔_安饶之野_石火坠陨处_(12).json", - "type": "file", - "hash": "6e3176df68e0c678a9051638931575562ecf4553", - "version": "6e3176d", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6810--纳塔_安饶之野西南_(21).json", - "type": "file", - "hash": "5c11403900d489c64998cf44e89d69e9494a84fc", - "version": "5c11403", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6811--纳塔_安饶之野_荒废弃造坞_(10).json", - "type": "file", - "hash": "06cffdc3bce21ed6e41c77443674ed0bdc5e76b5", - "version": "06cffdc", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6812--纳塔_安饶之野_孑遗的留迹东南_(20).json", - "type": "file", - "hash": "d2d6948fce39dc30f6b4ff27535989f76f0e2472", - "version": "d2d6948", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" - ] - }, - { - "name": "6813--纳塔_安饶之野西北_(8).json", - "type": "file", - "hash": "3fa99c821e9c6fabf584eabc65c97096c27e21e5", - "version": "3fa99c8", - "author": "汐", - "description": "", - "tags": [ - "新版锄地--小怪" + "小型深海龙蜥", + "战斗" ] } ] @@ -28607,99 +34674,108 @@ "name": "df01灵濛山(2).json", "type": "file", "hash": "37fd9d340523bda27a008f732e67764656ac02c6", - "version": "37fd9d3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] }, { "name": "df02赤望台(6).json", "type": "file", "hash": "3294e1ea6cf2fac19403853244f09e6c5ec21d62", - "version": "3294e1e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] }, { "name": "df03赤璋城垣(10).json", "type": "file", "hash": "4a9afe547c7f0ccda3b6bdec91355c407c1952e1", - "version": "4a9afe5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] }, { "name": "df04赤璋城垣右下(12).json", "type": "file", "hash": "68bfce4f9cdbc9c094ec860455bc5a242b4f4d29", - "version": "68bfce4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] }, { "name": "沉玉谷_玄文兽01.json", "type": "file", "hash": "c51ebf6465062ed9936651bc03bc182fb89deeab", - "version": "c51ebf6", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] }, { "name": "沉玉谷_玄文兽02.json", "type": "file", "hash": "a9ffb468b5a7730ea1650d3ce748eeb8e170a875", - "version": "a9ffb46", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] }, { "name": "沉玉谷_玄文兽03.json", "type": "file", "hash": "163db820df95bab041234f561bf07fdb9a0f4545", - "version": "163db82", + "version": "1.0", "author": "迷茫之途", "description": "", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] }, { "name": "沉玉谷_玄文兽04.json", "type": "file", "hash": "0ff861ad5821f1169baef87bdc1436df6a7f3d20", - "version": "0ff861a", + "version": "1.0", "author": "XS", "description": "新增一个点位", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] }, { "name": "沉玉谷_玄文兽05.json", "type": "file", "hash": "0a719983dcd4c6264029b303f3c76ba37e8dd557", - "version": "0a71998", + "version": "1.0", "author": "XS", "description": "改进下落攻击掉血问题,增加一个点位", "tags": [ - "玄文兽" + "玄文兽", + "战斗" ] } ] @@ -28712,121 +34788,132 @@ "name": "蕈兽-01无郁稠林01.json", "type": "file", "hash": "47bb4b47a1e2f7907e53f7705b8ee25a5989646a", - "version": "47bb4b4", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-01无郁稠林02.json", "type": "file", "hash": "97d01cdf1d0a6dcc32bc62d61423d4c70e97cf11", - "version": "97d01cd", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-02觉王之殿01.json", "type": "file", "hash": "77f3f401b41c55556f67dba54bb3299eab8688e7", - "version": "77f3f40", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-03水天丛林01.json", "type": "file", "hash": "1b19057f9bfde5c447f93ef50251d8c507e0646d", - "version": "1b19057", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-04河谷的黯道01.json", "type": "file", "hash": "ecdd3f2f75d7f93cc0fef280d4fb2343c1673774", - "version": "ecdd3f2", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-04河谷的黯道02.json", "type": "file", "hash": "508ac85d17dc03011fc933752ad713ebb85e1aba", - "version": "508ac85", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-05天碧池01.json", "type": "file", "hash": "a5bb9602136c742aab653071bad4ad9b67f6cffb", - "version": "a5bb960", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-05天碧池02.json", "type": "file", "hash": "cb26933487a85a9554360ddb6ef9300d2e136e39", - "version": "cb26933", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-05天碧池03.json", "type": "file", "hash": "d5ab8a12192419b6b9d2936596fb1ae10efd56c5", - "version": "d5ab8a1", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-06二净甸01.json", "type": "file", "hash": "37e422c162daa013bbc62e849762ff2c4aa4eb5e", - "version": "37e422c", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "蕈兽-地表集中点35只.json", "type": "file", "hash": "4a2df2e368e40e00204e9b941462c1140d0c243b", - "version": "4a2df2e", + "version": "1.0", "author": "翎镞", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { @@ -28837,155 +34924,169 @@ "name": "璃月-葷兽-沉玉谷·南陵古树茶坡南-2个.json", "type": "file", "hash": "9779060846a68e58705fa666f7b0dbcd01a1fb23", - "version": "9779060", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-二净甸天臂池西南-5个.json", "type": "file", "hash": "bff092964e052ff59b16877644095b5389eda8b7", - "version": "bff0929", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-奥摩斯港西北-10个.json", "type": "file", "hash": "dda41045dde9a5e230158c4613e459a59fa9a929", - "version": "dda4104", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-护世森无郁稠林北-11个.json", "type": "file", "hash": "a868ca1ff68d99ddc30ab6b94f723b557c507f7e", - "version": "a868ca1", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-护世森无郁稠林西南-4个.json", "type": "file", "hash": "a9d741867b05728ef59869aa4c3a28d965590095", - "version": "a9d7418", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-护世森茸蕈窟东南-2个.json", "type": "file", "hash": "0a0cd3faf0e80d01cc41ffc3611203c80ce38f10", - "version": "0a0cd3f", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-护世森香醉坡-2个.json", "type": "file", "hash": "01f09c62d41911ab4b354c7820f9fe494b07a7f9", - "version": "01f09c6", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-护世森香醉坡东南-8个.json", "type": "file", "hash": "15fad9e92009f60764fbe2e633fa98febc1011c7", - "version": "15fad9e", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ "蕈兽", - "四叶印" + "四叶印", + "战斗" ] }, { "name": "须弥-葷兽-桓那兰那桓那兰那东-3个.json", "type": "file", "hash": "7c3b4ceb3e131c7744d8cea0bc9f5a99970d8b8d", - "version": "7c3b4ce", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-道成林化城郭东-3个.json", "type": "file", "hash": "3ea92bc0a08da0799e2c5cbed968e15f3005370a", - "version": "3ea92bc", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-道成林化城郭西-5个.json", "type": "file", "hash": "44faed5b3435c7641ae96b6cc6ebd30286edbb47", - "version": "44faed5", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-道成林化城郭西北-14个.json", "type": "file", "hash": "cddc546df1903d01467c6e0261d4cec3bfd9bc5f", - "version": "cddc546", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-道成林维摩庄南-3个.json", "type": "file", "hash": "33ea831530c239475c60865ecd3267fd86e63cce", - "version": "33ea831", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] }, { "name": "须弥-葷兽-道成林须弥城西-5个.json", "type": "file", "hash": "5df451a5eda63520bc4c0d1d17982e9d035f5864", - "version": "5df451a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "", "tags": [ - "蕈兽" + "蕈兽", + "战斗" ] } ] @@ -29000,528 +35101,576 @@ "name": "稻妻-野伏众-八酝岛名椎滩-11个.json", "type": "file", "hash": "e015e5c2b8dfea2dfe349011b884c51ef54710f7", - "version": "e015e5c", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-11个\n稻妻-八酝岛名椎滩", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛无想刃狭间东南方岸边-6个.json", "type": "file", "hash": "d838d46b2d9c3c4074a23e5ad8002aec5f5d3666", - "version": "d838d46", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-6个\n稻妻-八酝岛无想刃狭间东南方岸边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛无想刃狭间南方-4个.json", "type": "file", "hash": "edebbba2588a95bd7a09c3e6b8c1203ce4898b3a", - "version": "edebbba", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-4个\n稻妻-八酝岛无想刃狭间南方", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛绯木村东北半山腰-1个.json", "type": "file", "hash": "a0c3d6e7ad09464d44f2e7304895fb4c662dcf13", - "version": "a0c3d6e", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-1个\n稻妻-八酝岛绯木村东北半山腰", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛绯木村内蛇神之首左蛇骨矿洞左-16个.json", "type": "file", "hash": "6bc730ed8b66a065600dca5ed9092304f9a6ca3f", - "version": "6bc730e", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-16个\n稻妻-八酝岛绯木村内蛇神之首左蛇骨矿洞左", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛藤兜砦东略偏北岸边-4个.json", "type": "file", "hash": "3d826fc2454f40506bd446dfb84284cf422845c6", - "version": "3d826fc", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-4个\n稻妻-八酝岛藤兜砦东略偏北岸边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛藤兜砦北-2个.json", "type": "file", "hash": "fa1144f862ef158b9e51420f8671167fe32b6816", - "version": "fa1144f", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-八酝岛藤兜砦北", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛藤兜砦崖上-6个.json", "type": "file", "hash": "d64fa08fd7876078b678731cf5fabeb9d4b5f26f", - "version": "d64fa08", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-6个\n稻妻-八酝岛藤兜砦崖上", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛藤兜砦西-1个.json", "type": "file", "hash": "709df0bffa31ed26fefe29a7cfff8e6195f22d22", - "version": "709df0b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-1个\n稻妻-八酝岛藤兜砦西", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛蛇神之首东方-9个.json", "type": "file", "hash": "593d0a2940aebc399fa962e36649d66e0c7f2f0a", - "version": "593d0a2", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-9个\n稻妻-八酝岛蛇神之首东方", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛蛇骨矿洞上方-2个.json", "type": "file", "hash": "a4f5105a958e93d78ee8c15e9db11c2c8864c19d", - "version": "a4f5105", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-八酝岛蛇骨矿洞上方", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛蛇骨矿洞东南-6个.json", "type": "file", "hash": "58730561ed44caf219471a2f450af0c72b5126f8", - "version": "5873056", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-6个\n稻妻-八酝岛蛇骨矿洞东南", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-八酝岛蛇骨矿洞南崖下-4个.json", "type": "file", "hash": "2b4692882720f968186dc6060c8e52aa246b37e2", - "version": "2b46928", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-4个\n稻妻-八酝岛蛇骨矿洞南崖下", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛北方最远处浅滩-3个.json", "type": "file", "hash": "0c4660badbc0b25762ff969135ccdccc941374e9", - "version": "0c4660b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-海祇岛北方最远处浅滩", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛北方略偏左-4个.json", "type": "file", "hash": "152930d9f4fc687dce52c4c1f929f7aa79fe1928", - "version": "152930d", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-4个\n稻妻-海祇岛北方略偏左", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛曚云神社北方-4个.json", "type": "file", "hash": "874fad9f8c7c5b0722d6bfbce5bc179af2abd3ec", - "version": "874fad9", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-4个\n稻妻-海祇岛曚云神社北方", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛望泷村东北方河边瀑布边-4个.json", "type": "file", "hash": "17ed04909200c2bf932d148118beeef9848a0810", - "version": "17ed049", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-4个\n稻妻-海祇岛望泷村东北方河边瀑布边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛望泷村左侧崖上-2个.json", "type": "file", "hash": "0a3c8ff4924184dcb93e7018ca8e851a0c4595b9", - "version": "0a3c8ff", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-海祇岛望泷村左侧崖上", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛望泷村左侧崖下岸边-3个.json", "type": "file", "hash": "417373a59755229937f7973a8be27f709b30b801", - "version": "417373a", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-海祇岛望泷村左侧崖下岸边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛水月池东南岸边-3个.json", "type": "file", "hash": "0712d816fbdd93f3016aafed7027a235967d254d", - "version": "0712d81", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-海祇岛水月池东南岸边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛水月池南略偏右-3个.json", "type": "file", "hash": "3a4c3ca1d92436e3e6bd231a988261226fb9d288", - "version": "3a4c3ca", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-海祇岛水月池南略偏右", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛珊瑚宫下火炬间-1个.json", "type": "file", "hash": "a1d88b64c23c252c81dd1fa9dc27b286766bb7ad", - "version": "a1d88b6", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-1个\n稻妻-海祇岛珊瑚宫下火炬间", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-海祇岛珊瑚宫东北方-3个.json", "type": "file", "hash": "50fa50b9b453a9da37f6e49848ff5c13723a56d0", - "version": "50fa50b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-海祇岛珊瑚宫东北方", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-清籁岛天云峠东侧-8个.json", "type": "file", "hash": "54b1960274333d213e849182e69c414e7ee6b848", - "version": "54b1960", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-8个\n稻妻-清籁岛天云峠东侧", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-清籁岛平海砦-11个.json", "type": "file", "hash": "3a294dd8f700f931504ff16f7e692599c40025ea", - "version": "3a294dd", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-11个\n稻妻-清籁岛平海砦", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-清籁岛平海砦南方-3个.json", "type": "file", "hash": "70f0e4bcc277598edadb89e287955e80d3230a8f", - "version": "70f0e4b", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-清籁岛平海砦南方", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-清籁岛浅濑神社东-5个.json", "type": "file", "hash": "56b9f70efcbaffe6602ce4e44794f41b24f59e88", - "version": "56b9f70", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-5个\n稻妻-清籁岛浅濑神社东", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-清籁岛越石村东方崖下-2个.json", "type": "file", "hash": "3f41e87520cae030ad1ad460eb9009d88b3cd81c", - "version": "3f41e87", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-清籁岛越石村东方崖下", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢九条阵屋东南-9个.json", "type": "file", "hash": "c2465a2387e0e8a82e7adace7919327fce431fe7", - "version": "c2465a2", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-9个\n稻妻-神无冢九条阵屋东南", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢九条阵屋西北-2个.json", "type": "file", "hash": "73f68e4b24236a4e2186496c2fe3c559c69be5f0", - "version": "73f68e4", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-神无冢九条阵屋西北", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢九条阵屋西崖下-3个.json", "type": "file", "hash": "713e85d286cd61fc353d206d205fa1b14aee1380", - "version": "713e85d", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-神无冢九条阵屋西崖下", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢九条阵屋西海岸-7个.json", "type": "file", "hash": "c6eff6906c4417c7203eb324e8664eab384651ac", - "version": "c6eff69", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-7个\n稻妻-神无冢九条阵屋西海岸", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢踏鞴砂东-5个.json", "type": "file", "hash": "fd156a4d2f900569bb4f7759bb968216fea8a965", - "version": "fd156a4", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-5个\n稻妻-神无冢踏鞴砂东", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢踏鞴砂东南-7个.json", "type": "file", "hash": "56178821898c2e9e2edda1fab8e0822e24decf54", - "version": "5617882", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-7个\n稻妻-神无冢踏鞴砂东南", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢踏鞴砂北岸边-3个.json", "type": "file", "hash": "b0eab2f4585eb3e204835d827a5c2b9d6e7b54cc", - "version": "b0eab2f", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-神无冢踏鞴砂北岸边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢踏鞴砂南方略偏东岸边-5个.json", "type": "file", "hash": "95601b8c87643bf93fbe555adb7874c1f8ee800f", - "version": "95601b8", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-5个\n稻妻-神无冢踏鞴砂南方略偏东岸边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢踏鞴砂南方略偏西岸边-5个.json", "type": "file", "hash": "1528f137dd77e655445a46c5e044d63a1fcf6a9d", - "version": "1528f13", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-5个\n稻妻-神无冢踏鞴砂南方略偏西岸边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-神无冢踏鞴砂西崖上-2个.json", "type": "file", "hash": "ab693f5f1bc5266f83895876175097ef8bcd7a39", - "version": "ab693f5", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-神无冢踏鞴砂西崖上", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛刃连岛崖上-4个.json", "type": "file", "hash": "ee241ee34107d70a8eaf837b357a55f7c6e345c7", - "version": "ee241ee", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-4个\n稻妻-鸣神岛刃连岛崖上", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛刃连岛崖下-13个.json", "type": "file", "hash": "666d403fb87edf701bfb20dbc9037a1d69b3120a", - "version": "666d403", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-13个\n稻妻-鸣神岛刃连岛崖下", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛白狐之野东南-1个.json", "type": "file", "hash": "191ce9105a11da7427bfde795ebaf27dab5a3e26", - "version": "191ce91", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-1个\n稻妻-鸣神岛白狐之野东南", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛神里屋敷东北-3个.json", "type": "file", "hash": "89d3f7720f057e3d06f7156f72f699b4bdc0da26", - "version": "89d3f77", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-3个\n稻妻-鸣神岛神里屋敷东北", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛绀田村西侧和北侧-8个.json", "type": "file", "hash": "0a568d35f03368308958f45a9e439d0f80ddcb4c", - "version": "0a568d3", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-8个\n稻妻-鸣神岛绀田村西侧和北侧", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛镇守之森东南-4个.json", "type": "file", "hash": "de30bfede9e9eed3ecabf606c70cd3a1822fc922", - "version": "de30bfe", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-4个\n稻妻-鸣神岛镇守之森东南", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛鸣神大社北岸边-2个.json", "type": "file", "hash": "6da5148384af6facb847679109025c0f7bcc2ed1", - "version": "6da5148", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-鸣神岛鸣神大社北岸边", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛鸣神大社北崖上-2个.json", "type": "file", "hash": "65592faf48c0adb75e142b0d3157b23746ee2f48", - "version": "65592fa", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-鸣神岛鸣神大社北崖上", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛鸣神大社南侧瀑布下-2个.json", "type": "file", "hash": "e22873ed69344599b09a6ef53f8d22960ba0fd20", - "version": "e22873e", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-鸣神岛鸣神大社南侧瀑布下", "tags": [ - "野伏众" + "野伏众", + "战斗" ] }, { "name": "稻妻-野伏众-鸣神岛鸣神大社西侧海岸-2个.json", "type": "file", "hash": "8b8392010d4f0334e293e9c0a26bb352893a2613", - "version": "8b83920", + "version": "1.0", "author": "提瓦特钓鱼玳师", "description": "野伏众-2个\n稻妻-鸣神岛鸣神大社西侧海岸", "tags": [ - "野伏众" + "野伏众", + "战斗" ] } ] @@ -29534,7 +35683,7 @@ "name": "夜泊石-珉林-华池岩岫-1个.json", "type": "file", "hash": "5da944e53d0030fabb5b82b67d2726305c733e82", - "version": "5da944e", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -29545,7 +35694,7 @@ "name": "夜泊石-珉琳-狭窄山洞-1个.json", "type": "file", "hash": "f95dc965b0fd2b6acef69f4d30ef09dbb8e2fb30", - "version": "f95dc96", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -29556,7 +35705,7 @@ "name": "夜泊石-琼玑野-明蕴镇-2个.json", "type": "file", "hash": "10083757ddd0022837f66b2efc331f6447e85403", - "version": "1008375", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -29567,7 +35716,7 @@ "name": "夜泊石-琼玑野-明蕴镇-4个.json", "type": "file", "hash": "52c3216c9f1a22905e901a7ac18739e22cb8c3fa", - "version": "52c3216", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -29578,7 +35727,7 @@ "name": "夜泊石-琼玑野-明蕴镇-6个.json", "type": "file", "hash": "aa276643b0e1bc5774a28840940864cd544e0be4", - "version": "aa27664", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -29589,7 +35738,7 @@ "name": "夜泊石-琼玑野-明蕴镇-9个(怪多推荐钟离).json", "type": "file", "hash": "a995c58d526c6a3ad3f3e1ee5dfb581496774b35", - "version": "a995c58", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -29600,7 +35749,7 @@ "name": "夜泊石-碧水原-无妄坡-2个(怪多推荐钟离).json", "type": "file", "hash": "8db59e1ce13c918aff2789777b35363adaa55469", - "version": "8db59e1", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -29611,7 +35760,7 @@ "name": "夜泊石-碧水原-石门-1个.json", "type": "file", "hash": "e31cd5a2230c9d5b7277bf70dfd34fb1804617b1", - "version": "e31cd5a", + "version": "1.0", "author": "起个名字好难的喵", "description": "", "tags": [ @@ -29628,55 +35777,60 @@ "name": "天云峠9只 .json", "type": "file", "hash": "6ec4c52361ea69223971accaf27f88f9e765f3c3", - "version": "6ec4c52", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "遗迹机兵" + "遗迹机兵", + "战斗" ] }, { "name": "天云峠上3只.json", "type": "file", "hash": "e2df144463fbae2b2246ef6538bedae80ea9e419", - "version": "e2df144", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "遗迹机兵" + "遗迹机兵", + "战斗" ] }, { "name": "平海砦3只.json", "type": "file", "hash": "ca06c1611dbb355b727344bfe670883f258bd965", - "version": "ca06c16", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "遗迹机兵" + "遗迹机兵", + "战斗" ] }, { "name": "水月池7只 .json", "type": "file", "hash": "e48ab0671ec8c753d6abfdf5283cf9728f6e04ca", - "version": "e48ab06", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "遗迹机兵" + "遗迹机兵", + "战斗" ] }, { "name": "越石村2只.json", "type": "file", "hash": "79d22c09af7d585dfc2c31a4b8fc648c9d634f88", - "version": "79d22c0", + "version": "1.0", "author": "baixi", "description": "", "tags": [ - "遗迹机兵" + "遗迹机兵", + "战斗" ] } ] @@ -29689,231 +35843,252 @@ "name": "dm01茸蕈窟上(1).json", "type": "file", "hash": "fea7f73245bd0c8a3dfe09f09cfb7f1cf0e5f105", - "version": "fea7f73", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm02草本上(1).json", "type": "file", "hash": "958c81162c152bdf4a5562eb1bea262231d4691b", - "version": "958c811", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm03须弥城左下(3).json", "type": "file", "hash": "caaeccf6cb61d0ffac836e906c40b523037816c0", - "version": "caaeccf", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm04维摩庄左下(1).json", "type": "file", "hash": "28d532ae54de9d3c8dfb8d9609439291811a5dc2", - "version": "28d532a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm05降诸魔山(3).json", "type": "file", "hash": "4526bc2e1d05614368deabd28027d2b11042ad17", - "version": "4526bc2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm06荼诃之座右(2).json", "type": "file", "hash": "322ae8207d5d815dce2ba8f924cdf0c2a6bc5a5c", - "version": "322ae82", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm07阿如村上(1).json", "type": "file", "hash": "6f1d503fd20e14f33653e6a052bdddf8fe117ca7", - "version": "6f1d503", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm08舍身陷坑左上(2).json", "type": "file", "hash": "13342e6936c7abb1cf89f4d3a9b583d5ef33a144", - "version": "13342e6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm09塔尼特露营地右(1).json", "type": "file", "hash": "337b6f6df82c527547bf993655c2f4459d399d00", - "version": "337b6f6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm10荼诃落谷右上(1).json", "type": "file", "hash": "34302ac8b42058097e6c641381c5821a3906f74f", - "version": "34302ac", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm11荼诃落谷上(1).json", "type": "file", "hash": "cb6018e11178ed985f0cb4b50c74fe163c8b2a2f", - "version": "cb6018e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm12荼诃落谷左下(3).json", "type": "file", "hash": "f5c7a30d4dda549b4a93ac664411edfc368a1722", - "version": "f5c7a30", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm13避让之丘下(1).json", "type": "file", "hash": "337cb79d2679ccf2b728a5f02a0d8566e5c2e198", - "version": "337cb79", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm14鸡哥下(1).json", "type": "file", "hash": "acde831ea7145257b2158177e1d9e417bd896d25", - "version": "acde831", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm15往昔桓那兰那上(1).json", "type": "file", "hash": "4f20fd3e179c05310a5e9662f03e19f1baf2b1da", - "version": "4f20fd3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm16五绿洲右(3).json", "type": "file", "hash": "d39d140d8bc4dcb84a333ee8268ce43d7e375504", - "version": "d39d140", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm17三运河上(1).json", "type": "file", "hash": "431ee8c21f45b5273724cfcb1ee1cd66613f8f61", - "version": "431ee8c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm18铁穆山左(1).json", "type": "file", "hash": "363df15a4a8dbf1fd4621e65ff24a8ef1bc02a49", - "version": "363df15", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm19阻勒隘下(2).json", "type": "file", "hash": "a8019317d2857fc92aeba518c49ecab3550a3c28", - "version": "a801931", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm20阻勒隘右(1).json", "type": "file", "hash": "b527256794790c3fd6b8e98ce9909aadac49baf3", - "version": "b527256", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] }, { "name": "dm21荼泥黑渊右上(1).json", "type": "file", "hash": "5bdacdd79b90f551433a64ac781ba1cc308b6996", - "version": "5bdacdd", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "遗迹龙兽" + "遗迹龙兽", + "战斗" ] } ] @@ -29926,165 +36101,180 @@ "name": "遗迹守卫01.json", "type": "file", "hash": "48389cb5521aa78574b55b5ecb596e729d18f1cd", - "version": "48389cb", + "version": "1.0", "author": "XS", "description": "建议带盾芙芙万叶芭芭拉,因为点位特殊位移大的容易从平台掉下来", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫02.json", "type": "file", "hash": "290e1e36e746b571a0ef2d55b2e7918e583069e1", - "version": "290e1e3", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫03(可回复体力).json", "type": "file", "hash": "0bc9611f6733046afbf56a560ceaeb1ef5c3c5a0", - "version": "0bc9611", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫04-瑶光滩.json", "type": "file", "hash": "5b78bd2c8eca976d8c13e6d7596ba4afeffa41c2", - "version": "5b78bd2", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫05.json", "type": "file", "hash": "6803b50da0f65e2eed086cb98f21562855f17d0b", - "version": "6803b50", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫06.json", "type": "file", "hash": "ed8cdaef5530fe2a4bb604512634ebacde0888da", - "version": "ed8cdae", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫07.json", "type": "file", "hash": "bfd100b8e1fb6b7bd3e0b1d94a329bcc767c491a", - "version": "bfd100b", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫08.json", "type": "file", "hash": "c998a2949aa3b6b0d7c83b282a65dc93fe669209", - "version": "c998a29", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫09-孤云阁.json", "type": "file", "hash": "a788503b2a8ab57a95dcb7ee91e9ea6e18514858", - "version": "a788503", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫10-离月港上.json", "type": "file", "hash": "20a9f453ef4466f39dd2d5b6113d22507b1a46db", - "version": "20a9f45", + "version": "1.0", "author": "san", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫11-枫丹.json", "type": "file", "hash": "4b87db84d9a331c2a3040b36dd7741dd7914b19a", - "version": "4b87db8", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫12-须弥沙漠.json", "type": "file", "hash": "4458a2ef46d8f92a6b111fd60d38f68b070865a7", - "version": "4458a2e", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫12-须弥沙漠2.json", "type": "file", "hash": "9cf6d6d2acf4e09bb024aee4f2fea9380a3e5a1c", - "version": "9cf6d6d", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫13.json", "type": "file", "hash": "a4be94fdfd05c57b13a7f1a68914cbde4ca6066f", - "version": "a4be94f", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] }, { "name": "遗迹守卫14.json", "type": "file", "hash": "06845e60ba420e046dfb3f9e38889f64d6dd04a3", - "version": "06845e6", + "version": "1.0", "author": "XS", "description": "", "tags": [ - "遗迹守卫" + "遗迹守卫", + "战斗" ] } ] @@ -30097,209 +36287,228 @@ "name": "dw01望风角(1).json", "type": "file", "hash": "11aeb781e2362ddf3cdef3e94f70e71a531ee6c0", - "version": "11aeb78", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw02明冠峡下(1).json", "type": "file", "hash": "0612f67e22ee620d7e7f69f2e3826c48e8af09d9", - "version": "0612f67", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw03清泉镇(1).json", "type": "file", "hash": "7aebe7336ba7d2ea17d3bef52c41ce6d416fb1fc", - "version": "7aebe73", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw04覆雪之路右(1).json", "type": "file", "hash": "13509044c305e41fcf1c7166f2790b84c879fc8f", - "version": "1350904", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw05纯水锚点(1).json", "type": "file", "hash": "68afd38dfd866a9cc9eeb289ef77aec4eaa358c1", - "version": "68afd38", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw06无妄坡左下(1).json", "type": "file", "hash": "fcde09b2481e950c1ed801b938c66d264093b94b", - "version": "fcde09b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw07地中之盐左下(1).json", "type": "file", "hash": "b0ddd15143aaee1a6dd8009083dc43fa3ca61b04", - "version": "b0ddd15", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw08瑶光滩右(1).json", "type": "file", "hash": "a7e391822903355b7296f72b597c953dc8994e0a", - "version": "a7e3918", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw09瑶光滩左下(1).json", "type": "file", "hash": "6acccdd851ae70fb47c7b75278f5789c4a3aa356", - "version": "6acccdd", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw10璃月港右下(1).json", "type": "file", "hash": "a703df30a1a0a70ea0f219af3170fa474569efa2", - "version": "a703df3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw11孤云阁(1).json", "type": "file", "hash": "c1b98404db8ab114b420fe6eaab86e9cbef28698", - "version": "c1b9840", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw12灵矩关上(1).json", "type": "file", "hash": "8ee4ad5688e1b5ba25994de7705a54f92342629a", - "version": "8ee4ad5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw13天遒谷右(1).json", "type": "file", "hash": "89b06d574a560f553626d4d04969e7914670d598", - "version": "89b06d5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw14镇守之森上(4).json", "type": "file", "hash": "daadd00e2dfd88306ac8ec19df8b6342195a1ab6", - "version": "daadd00", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw15踏鞴沙上(1).json", "type": "file", "hash": "9e2a28e2615a5451ddd95c2b2938c81bdb11e341", - "version": "9e2a28e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw16踏鞴沙下(2).json", "type": "file", "hash": "eef5578ae9829cb3208c01be8065eabaae04fe8a", - "version": "eef5578", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw17蛇神之首右下(1).json", "type": "file", "hash": "717ea4965b4aa6b979910f4763c2225e99e10fe5", - "version": "717ea49", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw18珊瑚宫上(1).json", "type": "file", "hash": "6b08e4e0c1b7bb78899adefbdb7f98301d7e1e53", - "version": "6b08e4e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] }, { "name": "dw19清籁丸上(1).json", "type": "file", "hash": "a34806d5c490e99607204e02e7f6c623a577d40f", - "version": "a34806d", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "萤术士" + "萤术士", + "战斗" ] } ] @@ -30316,7 +36525,7 @@ "name": "幽灯蕈性价比.json", "type": "file", "hash": "e0fc28c80278f6992fd1afb3cb25371a3d89c878", - "version": "e0fc28c", + "version": "1.0", "author": "彩虹QQ人", "description": "性价比路线,要求队伍(奶奶-草神-团长-风系挂件,草神不可替换,其余任意替换,建议队伍速度不要太快)", "tags": [ @@ -30334,7 +36543,7 @@ "name": "幽灯蕈1-鹤观大门-8个.json", "type": "file", "hash": "1b9375b7db4bf1efdec91b6a274d2678c199e930", - "version": "1b9375b", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -30345,7 +36554,7 @@ "name": "幽灯蕈2-茂之祭场-6个.json", "type": "file", "hash": "e7b79e982a3e765d1991abda3c5f0956970b728e", - "version": "e7b79e9", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -30356,7 +36565,7 @@ "name": "幽灯蕈3-鹤观下-12个.json", "type": "file", "hash": "36ab214f59175437bb79be7e2eab7a9a92f2dbff", - "version": "36ab214", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -30367,7 +36576,7 @@ "name": "幽灯蕈4-笈名海滨-11个.json", "type": "file", "hash": "6c7b780955c7ab15f770acbddab76617b0f74220", - "version": "6c7b780", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -30378,7 +36587,7 @@ "name": "幽灯蕈5-知比山外-9个.json", "type": "file", "hash": "e133abac92269b95af68aea43428c39cf574bd3c", - "version": "e133aba", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -30389,7 +36598,7 @@ "name": "幽灯蕈6-知比山内-4个.json", "type": "file", "hash": "e383bf9654f6a74aac7883508667e41464764248", - "version": "e383bf9", + "version": "1.0", "author": "黎歌", "description": "", "tags": [ @@ -30408,7 +36617,7 @@ "name": "游逸旅闻-七七1-璃月万民堂.json", "type": "file", "hash": "f00792fa53b80af69784af029077bc65ea523f4a", - "version": "f00792f", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30419,7 +36628,7 @@ "name": "游逸旅闻-云堇1-璃月和裕茶馆.json", "type": "file", "hash": "12ff33bccb1d8dff0e60d56017b016fec4a5f3b5", - "version": "12ff33b", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30430,7 +36639,7 @@ "name": "游逸旅闻-云堇2-璃月和裕茶馆.json", "type": "file", "hash": "3ed78a99eed4d3b683c4a019ac8e836f1f3227d7", - "version": "3ed78a9", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30441,7 +36650,7 @@ "name": "游逸旅闻-刻晴1-璃月不卜庐.json", "type": "file", "hash": "60b049e5ced6351d315aff9a04de5c74df5fca56", - "version": "60b049e", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30452,7 +36661,7 @@ "name": "游逸旅闻-安柏1-蒙德低语森林.json", "type": "file", "hash": "0bee1a974ca742c28b05e69e71e1d2884cdd14ad", - "version": "0bee1a9", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30463,7 +36672,7 @@ "name": "游逸旅闻-安柏2-蒙德城.json", "type": "file", "hash": "8650cca30b8f2e6e62502a66be5966607341e887", - "version": "8650cca", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30474,7 +36683,7 @@ "name": "游逸旅闻-安柏3-蒙德星落湖.json", "type": "file", "hash": "202a3dc8ed28146f9ad7d8fc1267c5f8477b6c7e", - "version": "202a3dc", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30485,7 +36694,7 @@ "name": "游逸旅闻-安柏4-蒙德奔狼领.json", "type": "file", "hash": "bf86251ecd5cd2dc26dc16066d66d220f14033fc", - "version": "bf86251", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30496,7 +36705,7 @@ "name": "游逸旅闻-安柏5-蒙德西风大教堂.json", "type": "file", "hash": "d4bbeb7f44787f9259fbac67f3c7d55f9b852229", - "version": "d4bbeb7", + "version": "1.0", "author": "ddaodan", "description": "爬墙时可能会被卡住,且因为是攀爬策略不会触发脱离卡死", "tags": [ @@ -30507,7 +36716,7 @@ "name": "游逸旅闻-枫原万叶1-璃月云来海.json", "type": "file", "hash": "ce7fb4429363b2408265aa10a82313a10bbcff17", - "version": "ce7fb44", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30518,7 +36727,7 @@ "name": "游逸旅闻-枫原万叶2-璃月云来海.json", "type": "file", "hash": "d43573e0b06f8138af0cbe5d4a1e7df7870030ea", - "version": "d43573e", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30529,7 +36738,7 @@ "name": "游逸旅闻-枫原万叶3-璃月天衡山.json", "type": "file", "hash": "8fe2c316f3f7aad5b9bbf5cfc983f3b07530f298", - "version": "8fe2c31", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30540,7 +36749,7 @@ "name": "游逸旅闻-珊瑚宫心海1-稻妻海祇岛.json", "type": "file", "hash": "c319615047ee671da2b378b208d9f1ea686f4805", - "version": "c319615", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30551,7 +36760,7 @@ "name": "游逸旅闻-珊瑚宫心海2-稻妻珊瑚宫.json", "type": "file", "hash": "5f29d9e07819e9708755083775cff7c6ab0c3222", - "version": "5f29d9e", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30562,7 +36771,7 @@ "name": "游逸旅闻-瑶瑶1-璃月玉京台.json", "type": "file", "hash": "3b65465accd4d0bef77a4fe89b6f2d5d0dee2af8", - "version": "3b65465", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30573,7 +36782,7 @@ "name": "游逸旅闻-瑶瑶2-璃月轻策庄.json", "type": "file", "hash": "df70032014b36894704e7d49d7f6405f5cf54483", - "version": "df70032", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30584,7 +36793,7 @@ "name": "游逸旅闻-申鹤1-璃月万民堂.json", "type": "file", "hash": "e06046c59bf60e195f8163e222a940788dd88234", - "version": "e06046c", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30595,7 +36804,7 @@ "name": "游逸旅闻-砂糖-蒙德千风神殿.json", "type": "file", "hash": "29a7a39486e03ab1d499283e00c109e644526f27", - "version": "29a7a39", + "version": "1.0", "author": "ddaodan", "description": "可能会失败", "tags": [ @@ -30606,7 +36815,7 @@ "name": "游逸旅闻-罗莎莉亚1-蒙德西风大教堂.json", "type": "file", "hash": "c7d9028454d26fcf9d688789a577d5e357212a67", - "version": "c7d9028", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30617,7 +36826,7 @@ "name": "游逸旅闻-罗莎莉亚3-蒙德城.json", "type": "file", "hash": "13ff68cfe5993cc3a1321675b781571b836c3352", - "version": "13ff68c", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30628,7 +36837,7 @@ "name": "游逸旅闻-行秋1-璃月轻策庄.json", "type": "file", "hash": "0232978174276b8caccbe6506d810d6d76d1ec83", - "version": "0232978", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30639,7 +36848,7 @@ "name": "游逸旅闻-行秋2-璃月轻策庄.json", "type": "file", "hash": "aa06d9bafd8b22d51331798384b798ae9c803577", - "version": "aa06d9b", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30650,7 +36859,7 @@ "name": "游逸旅闻-行秋3-璃月轻策庄.json", "type": "file", "hash": "5b1d26540d6e7039feb26d33bfb6400fa4eba89b", - "version": "5b1d265", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30661,7 +36870,7 @@ "name": "游逸旅闻-行秋4-璃月万文集舍.json", "type": "file", "hash": "66a84a2ce42a674d5556c9d7a5c0c935c3f89e36", - "version": "66a84a2", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30672,7 +36881,7 @@ "name": "游逸旅闻-诺艾尔1-蒙德城.json", "type": "file", "hash": "79ca0d2d445cb7aeef449086070e2faf901eb4bf", - "version": "79ca0d2", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30683,7 +36892,7 @@ "name": "游逸旅闻-诺艾尔2-蒙德城.json", "type": "file", "hash": "247ccb8f04192045f1cc15988b175d22437b3364", - "version": "247ccb8", + "version": "1.0", "author": "ddaodan", "description": "做完后去琴的办公室有彩蛋", "tags": [ @@ -30694,7 +36903,7 @@ "name": "游逸旅闻-迪奥娜1-蒙德奔狼领.json", "type": "file", "hash": "6aaed631a22e704494597c8f771ca03fbe5a730e", - "version": "6aaed63", + "version": "1.0", "author": "HZYgrandma", "description": "", "tags": [ @@ -30705,7 +36914,7 @@ "name": "游逸旅闻-迪奥娜2-蒙德清泉镇.json", "type": "file", "hash": "ba21e5ea8200a2b5e0ff845ea301b1f9d9c7bfa9", - "version": "ba21e5e", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30716,7 +36925,7 @@ "name": "游逸旅闻-迪奥娜3-蒙德奔狼领.json", "type": "file", "hash": "f09ff6566d05b57794c2776ef2298d7e341b05c7", - "version": "f09ff65", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30727,7 +36936,7 @@ "name": "游逸旅闻-迪奥娜4-蒙德奔狼领.json", "type": "file", "hash": "8127f3fe2900c42352214983fb8902832cb7815a", - "version": "8127f3f", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30738,7 +36947,7 @@ "name": "游逸旅闻-钟离1-璃月万文集舍.json", "type": "file", "hash": "c10994b5e4f607c4c79cc34ee336fe78ae34b243", - "version": "c10994b", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30749,7 +36958,7 @@ "name": "游逸旅闻-钟离2-璃月和裕茶馆.json", "type": "file", "hash": "6824357468b9b58e238bba4cb8f97b53a5f4e698", - "version": "6824357", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30760,7 +36969,7 @@ "name": "游逸旅闻-钟离3-璃月遗珑埠.json", "type": "file", "hash": "ec5bf61a846c0a69bed36a3e2ce9fa04a1e3f09b", - "version": "ec5bf61", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30771,7 +36980,7 @@ "name": "游逸旅闻-闲云1-璃月港.json", "type": "file", "hash": "c53883e71ae50157428e46dcebddd3dc59952ad7", - "version": "c53883e", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30782,7 +36991,7 @@ "name": "游逸旅闻-闲云2-蒙德摘星崖.json", "type": "file", "hash": "49806a28eeaad8e9e71b32f1fcf92ce5027340e4", - "version": "49806a2", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30793,7 +37002,7 @@ "name": "游逸旅闻-闲云3-蒙德城.json", "type": "file", "hash": "439957be8c57129454afd0c4d8acac48bec59b60", - "version": "439957b", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30804,7 +37013,7 @@ "name": "游逸旅闻-闲云4-蒙德奔狼领.json", "type": "file", "hash": "7bdebf00377105a07a163b8934ed36c3a0548854", - "version": "7bdebf0", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30815,7 +37024,7 @@ "name": "游逸旅闻-闲云5-璃月港.json", "type": "file", "hash": "1fcc40a77c48a5aebdcfa2c59a09e357b884bb84", - "version": "1fcc40a", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30826,7 +37035,7 @@ "name": "游逸旅闻-香菱1-璃月港.json", "type": "file", "hash": "f444aaa232e96e4d8426b44b8e336569f401d49f", - "version": "f444aaa", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -30843,66 +37052,72 @@ "name": "愚人众-01龙脊雪山01.json", "type": "file", "hash": "9426d9fb742b273f71cb9182e2fa8feff579102c", - "version": "9426d9f", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "愚人众" + "愚人众", + "战斗" ] }, { "name": "愚人众-01龙脊雪山02.json", "type": "file", "hash": "17071ea3a5b6787563a12b68aa6d807a7f820905", - "version": "17071ea", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "愚人众" + "愚人众", + "战斗" ] }, { "name": "愚人众-01龙脊雪山03.json", "type": "file", "hash": "adb2e1f42f1a1c570881d8653eb56f57c31c9c35", - "version": "adb2e1f", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "愚人众" + "愚人众", + "战斗" ] }, { "name": "愚人众-01龙脊雪山04.json", "type": "file", "hash": "033087ada640f6dfd150bdfff77dfc3eb2bdc495", - "version": "033087a", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "愚人众" + "愚人众", + "战斗" ] }, { "name": "愚人众-01龙脊雪山05.json", "type": "file", "hash": "3dd8ee5557e62aa688fa0eb8c32588ee2b1a0799", - "version": "3dd8ee5", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "愚人众" + "愚人众", + "战斗" ] }, { "name": "愚人众-01龙脊雪山06.json", "type": "file", "hash": "4ba5322d69417a005c869d6db4f8fd45967b570d", - "version": "4ba5322", + "version": "1.0", "author": "C-01-11011", "description": "", "tags": [ - "愚人众" + "愚人众", + "战斗" ] } ] @@ -30915,33 +37130,36 @@ "name": "dg01秋分山(6).json", "type": "file", "hash": "1609578a16698f806293376435a8f8769e9c6e6e", - "version": "1609578", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "愚人众风役人" + "愚人众风役人", + "战斗" ] }, { "name": "dg02芒索斯山东麓(8).json", "type": "file", "hash": "8decb0650c751ec9bf127739730d17388e251327", - "version": "8decb06", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "愚人众风役人" + "愚人众风役人", + "战斗" ] }, { "name": "dg03研究院区域(6).json", "type": "file", "hash": "53a63b30e036a78d71582be5d12b7e6f1d4cc001", - "version": "53a63b3", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "愚人众风役人" + "愚人众风役人", + "战斗" ] } ] @@ -30954,132 +37172,144 @@ "name": "dl01荼诃落谷左上(2).json", "type": "file", "hash": "dc23f6adb862edd7fe676cd9fbaecfebc0eb6d92", - "version": "dc23f6a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl02丰饶绿洲左(2).json", "type": "file", "hash": "8104d376d2c08470dda6852e19b00d66afad49ef", - "version": "8104d37", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl03秘仪圣殿右(2).json", "type": "file", "hash": "78a59c4921b4e37c17de4e27323b5c7dde506917", - "version": "78a59c4", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl04饱饮之丘右下(3).json", "type": "file", "hash": "9e5c4d22df4b1737aecf1ae0557a20c27b3bd9d9", - "version": "9e5c4d2", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl05圣显厅左(2).json", "type": "file", "hash": "cbcb5b55febde418fbd29ddd5502e951b5faadd1", - "version": "cbcb5b5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl06圣显厅中(3).json", "type": "file", "hash": "4af378b0e33dd1559197b207b281507ef72d3e4e", - "version": "4af378b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl07圣显厅上(4).json", "type": "file", "hash": "79b7291c6462fd5d68c4328856d4b18ab13f3a89", - "version": "79b7291", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl08圣显厅上偏右(2).json", "type": "file", "hash": "6dd4de65a6662c49bbef4b1a34fe8fd770c35716", - "version": "6dd4de6", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl09神的棋盘下(4).json", "type": "file", "hash": "744ca8c7c35b39658d2fac80d490d0a334a3a9dc", - "version": "744ca8c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl10神的棋盘中(1).json", "type": "file", "hash": "cc93857cc0ef4f424037a60322d2c8a0a0d08d42", - "version": "cc93857", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl11神的棋盘上(2).json", "type": "file", "hash": "e5bda520723845fc2cb730201b882618d670548c", - "version": "e5bda52", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] }, { "name": "dl12五绿洲(1).json", "type": "file", "hash": "21807e1da1d6150b3b01a26fdb5da206923c482b", - "version": "21807e1", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "元能构装体" + "元能构装体", + "战斗" ] } ] @@ -31096,462 +37326,504 @@ "name": "原海异种01-芒索斯山东麓01.json", "type": "file", "hash": "6b87bad0a417dd33a0454c9434126e1f85b8246b", - "version": "6b87bad", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种02-芒索斯山东麓02.json", "type": "file", "hash": "dd1b28e01ae3600a5ddae5d9729201b0ac54406c", - "version": "dd1b28e", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种03-黎翡区01枫丹庭北.json", "type": "file", "hash": "462a6b7c3f4cf8e114b42e172a46883fa8a3bbc6", - "version": "462a6b7", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种04-黎翡区02枫丹庭北.json", "type": "file", "hash": "ed6dbf22949b6b294df5bc95f00de11e8fe72e97", - "version": "ed6dbf2", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种05-枫丹庭西01.json", "type": "file", "hash": "a7d1eee828b53c33df35a59decc8b367ea346388", - "version": "a7d1eee", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种06-枫丹庭西02.json", "type": "file", "hash": "b16bc5e4aa1a616bd3c2c3c3e28fd61e310ddb22", - "version": "b16bc5e", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种07-枫丹科学院西.json", "type": "file", "hash": "3b1b4506839c15f1ecb6b0276a80976cb228a47c", - "version": "3b1b450", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种08-枫丹科学院南01.json", "type": "file", "hash": "ad863a9775765592ef82ca114137418f1b336101", - "version": "ad863a9", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种09-枫丹科学院南02.json", "type": "file", "hash": "baab941b8ebbb22565c29c70c37270d7c6422937", - "version": "baab941", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种10-枫丹科学院南03.json", "type": "file", "hash": "8e5e225f0801b2fc428d5824d9796ffcb7380668", - "version": "8e5e225", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种11-枫丹科学院南04.json", "type": "file", "hash": "5ff36e6f8c330add4fc67af0d7e01b6fff9fd4c0", - "version": "5ff36e6", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种12-枫丹科学院南05.json", "type": "file", "hash": "0450dc8e392f3c6fd74376abb3ba32664a8aef96", - "version": "0450dc8", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种13-枫丹科学院南06.json", "type": "file", "hash": "b57c2ef29327aa96fab15410aceed3ef79234f89", - "version": "b57c2ef", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种14-枫丹科学院南07.json", "type": "file", "hash": "d1c9184b19a04c29c78873f2a01ca8f153427e5d", - "version": "d1c9184", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种15-枫丹科学院南08.json", "type": "file", "hash": "e7bfdc931db5067d7087d28a1e61feb7c1327fde", - "version": "e7bfdc9", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种16-枫丹科学院南09.json", "type": "file", "hash": "55d952bc5025c9df640dd9484423bdc516e49123", - "version": "55d952b", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种17-枫丹科学院南10.json", "type": "file", "hash": "9a3d4f67001f4471059e7796b2d74ec5a30db432", - "version": "9a3d4f6", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种18-伊黎耶林区南01.json", "type": "file", "hash": "f2e1448899bcc46911867bc9fa820746aa043d81", - "version": "f2e1448", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种19-伊黎耶林区南02.json", "type": "file", "hash": "8a7ba7bb4c4fc4571e1c34ab747df8dc87e10eff", - "version": "8a7ba7b", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种20-伊黎耶林区南03.json", "type": "file", "hash": "275e7e234bcd4e34c0657b88223f287f030525ec", - "version": "275e7e2", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种21-伊黎耶林区南04.json", "type": "file", "hash": "b9ce2cf53f4908482f2137eb92ae3f79ebeb4b9c", - "version": "b9ce2cf", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种22-伊黎耶林区南05.json", "type": "file", "hash": "44bd804e1b7c909681cf8d87da51b70842d55756", - "version": "44bd804", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种23-伊黎耶林区南06.json", "type": "file", "hash": "9ac41f91ba61f4ee9aea1ac28b0b5c762656f286", - "version": "9ac41f9", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种24-伊黎耶林区南07.json", "type": "file", "hash": "83d20ae5e7367c100e574e994096b395836fede3", - "version": "83d20ae", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种25-伊黎耶林区南08.json", "type": "file", "hash": "b17076be3ad86154cf41bc4d18f92de204de5bf5", - "version": "b17076b", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种26-伊黎耶林区南09.json", "type": "file", "hash": "a95aada70276918acda4f93c9891a37a8f803709", - "version": "a95aada", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种27-秋分山南01.json", "type": "file", "hash": "c44be7706d2381a79431411eb15e8246cc8bdff3", - "version": "c44be77", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种28-秋分山南02.json", "type": "file", "hash": "f2bf94b56a0415b1cac7344f62caeb1a85ec6bbb", - "version": "f2bf94b", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种29-秋分山南03.json", "type": "file", "hash": "7ba002f0b6c67dc2d18c214ae47be92b149f9346", - "version": "7ba002f", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种30-厄里那斯01.json", "type": "file", "hash": "2899408dd14df3c99cdc6fe9eaf536a75f1d4f60", - "version": "2899408", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种31-厄里那斯02.json", "type": "file", "hash": "88ee91cd1424225ed9d073f50e8164c5dd334e6a", - "version": "88ee91c", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种32-厄里那斯03.json", "type": "file", "hash": "a8999b0b432d89895fc7fd341f0c20bad2bcf30e", - "version": "a8999b0", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种33-厄里那斯04.json", "type": "file", "hash": "e2dfbd99ffe93bf92145fba7751744ed3cd0d994", - "version": "e2dfbd9", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种34-厄里那斯05.json", "type": "file", "hash": "866bd3cab7b9354270a4aaf71288372d89bca8dd", - "version": "866bd3c", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种35-厄里那斯06.json", "type": "file", "hash": "d068a60a041d05b4e7ce778fdfca94f61b968e8e", - "version": "d068a60", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种36-厄里那斯07.json", "type": "file", "hash": "38c3933357bdd43860a71a7a1dd672bb60c53853", - "version": "38c3933", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种37-厄里那斯08.json", "type": "file", "hash": "18a118e90844ec68637f051d37a1199c356222d6", - "version": "18a118e", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种38-苍晶区南01.json", "type": "file", "hash": "cf34e3298cbbfc1d5c53f9810d3a572eb5798821", - "version": "cf34e32", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种39-苍晶区南02 .json", "type": "file", "hash": "6c7b4c9016af3d3d8e06117fab369861d7c3ec68", - "version": "6c7b4c9", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种39-苍晶区南02.json", "type": "file", "hash": "6ebef9324db6918cfc34e275d4e1dc7b19ff7795", - "version": "6ebef93", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种40-苍晶区南03.json", "type": "file", "hash": "8b326177fe0b4c3ee21eed1bad5ec468234b28dd", - "version": "8b32617", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "原海异种41-苍晶区04.json", "type": "file", "hash": "2b24692962a7c4865ca6307dea1c12751e464fd7", - "version": "2b24692", + "version": "1.0", "author": "鸿羽er", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] } ] @@ -31564,132 +37836,144 @@ "name": "01海露港.json", "type": "file", "hash": "22180c635570c5a2b9518a6b6ac3c2ea027d3328", - "version": "22180c6", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "02海露港.json", "type": "file", "hash": "c74d6f8e0f52bec559a85fd3756462a7263308cc", - "version": "c74d6f8", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "03海露港.json", "type": "file", "hash": "b25bb7ef8ade594f7d84d7adf201533b8fe69d0f", - "version": "b25bb7e", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "04秋分山西侧.json", "type": "file", "hash": "2ca1c78765b4effbbd81238ae5e8a02bbbcd0ed3", - "version": "2ca1c78", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "05秋分山西侧.json", "type": "file", "hash": "6c4a0ed2d365880c712675743d8ce87d28a93f95", - "version": "6c4a0ed", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "06厄里那斯.json", "type": "file", "hash": "b8b533152e5e7de3f3e9c382c26d3018f75a207b", - "version": "b8b5331", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "07厄里那斯.json", "type": "file", "hash": "1660a86fcc81355b80dff074fe0802cd56559fb9", - "version": "1660a86", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "08厄里那斯.json", "type": "file", "hash": "d668345b3c6fb3778a65e57368ca5949b806059b", - "version": "d668345", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "09厄里那斯.json", "type": "file", "hash": "f61676714bb579f4ede67c45c5547ba1ee7cad06", - "version": "f616767", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "10厄里那斯.json", "type": "file", "hash": "28fb22f336bc3cd67d7d68fabf5b9775f36f6771", - "version": "28fb22f", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "11枫丹庭.json", "type": "file", "hash": "9d76ea84027d392b0c74c030c8dbcb05bfc31a51", - "version": "9d76ea8", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] }, { "name": "12枫丹庭.json", "type": "file", "hash": "a6d533e6126665cbacb5fdaef751a048324ea634", - "version": "a6d533e", + "version": "1.0", "author": "雕茂", "description": "", "tags": [ - "原海异种" + "原海异种", + "战斗" ] } ] @@ -31704,7 +37988,7 @@ "name": "云岩裂叶-沃陆之邦七天神像东-10个.json", "type": "file", "hash": "f5c7e6ce073aa6dca75eca579867680e501d0c37", - "version": "f5c7e6c", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -31715,7 +37999,7 @@ "name": "云岩裂叶-火山南-11个.json", "type": "file", "hash": "c2547d47c36cb0644e5b3f60f33bdc71e0992257", - "version": "c2547d4", + "version": "1.0", "author": "ddaodan", "description": "未开启地灵龛可能导致2个捡不到\n1.1 修复可能的卡石头和漏检最后两个的问题", "tags": [ @@ -31726,7 +38010,7 @@ "name": "云岩裂叶-火山西-7个.json", "type": "file", "hash": "cdc7bdfbe4b2560eda96922e006d5f57f0795372", - "version": "cdc7bdf", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -31737,7 +38021,7 @@ "name": "云岩裂叶-火山西北-3个.json", "type": "file", "hash": "885579662eacb4a54dbcc4b9435e404b7845d970", - "version": "8855796", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -31748,7 +38032,7 @@ "name": "云岩裂叶-石火坠陨处-8个.json", "type": "file", "hash": "7a41ed773f38a4cb12d84b8847ba38f01871c16e", - "version": "7a41ed7", + "version": "1.0", "author": "ddaodan", "description": "", "tags": [ @@ -31765,253 +38049,276 @@ "name": "dt01清泉镇右下(1).json", "type": "file", "hash": "50d3ca9d8fd84908f352e3475f64b7668f17a595", - "version": "50d3ca9", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt02明蕴镇上(1).json", "type": "file", "hash": "9f305ab418d813729c7f23e6582adc2f6576352d", - "version": "9f305ab", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt03瑶光滩(1).json", "type": "file", "hash": "78b0e21a320e54497f9e3d64202c61d92322d03c", - "version": "78b0e21", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt04渌华池右(1).json", "type": "file", "hash": "709280852792ef6b4e885994a15787c515761615", - "version": "7092808", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt05天遒谷下(1).json", "type": "file", "hash": "e1c0a21e75a31811dea63696feeaecd2aeaac800", - "version": "e1c0a21", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt06遁玉陵上(1).json", "type": "file", "hash": "4f022c8dc30b8c57561ca1c3404a1a1510f7e666", - "version": "4f022c8", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt07灵矩关右(1).json", "type": "file", "hash": "93d756aa625444036c21b61750473c85e27b71dd", - "version": "93d756a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt08青墟浦右下(1).json", "type": "file", "hash": "8a86f7e57241d2a725a1df266480e28ba62a61f5", - "version": "8a86f7e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt09鸣神大社右上情侣(1).json", "type": "file", "hash": "9ebcec5018fc4912f06961389abe133975f9ea66", - "version": "9ebcec5", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt10踏鞴沙右(1).json", "type": "file", "hash": "cd92265a7420c830b96627f6120c27c429868b7f", - "version": "cd92265", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt11踏鞴沙下(2).json", "type": "file", "hash": "fb2d73a9cb4d9af01572546b468ae725d01fe582", - "version": "fb2d73a", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt12无郁稠林左下(1).json", "type": "file", "hash": "2f7b63e25d87a19c7469cf0d37b74f0f46457752", - "version": "2f7b63e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt13降诸魔山右下(1).json", "type": "file", "hash": "9da661e676f8f33bbbba238ef3426ff05afc69cd", - "version": "9da661e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt14水天丛林右(1).json", "type": "file", "hash": "7a6fabb2dc612b7655c903637c446efc72e04ea1", - "version": "7a6fabb", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt15禅那园右下(1).json", "type": "file", "hash": "422ca23262d608c1226b0a15e40e176935e8a3dd", - "version": "422ca23", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt16禅那园右(1).json", "type": "file", "hash": "c834c9c4cbc7164ee0d5c7511b842fff2ad3c95a", - "version": "c834c9c", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt17鸡哥左下(1).json", "type": "file", "hash": "fb0436135c5660221ea00422b322d9b63214f573", - "version": "fb04361", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt18五绿洲右(2).json", "type": "file", "hash": "1b8e03b21ab0fb31ef17aff77b8510a3e3081653", - "version": "1b8e03b", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt19巨人峡谷下(1).json", "type": "file", "hash": "b4e92a0fff91ff673e166c9a0cdf4a87c2dc1c05", - "version": "b4e92a0", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt20巨人峡谷右(1).json", "type": "file", "hash": "7a8b80e904935c6aec549929258eb3c9f82df262", - "version": "7a8b80e", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt21聚香海岸下(1).json", "type": "file", "hash": "7b99486e86d71af3afd10ffdfeeba9db45b4fc38", - "version": "7b99486", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt22厄里那斯左下(1).json", "type": "file", "hash": "420c9eabc7b4bfc30893a8e337fed04991eb794f", - "version": "420c9ea", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] }, { "name": "dt23仆人周本上(1).json", "type": "file", "hash": "d4f30707bdb46b0b96b09f7b449c453b85f79eb5", - "version": "d4f3070", + "version": "1.0", "author": "下流山汉", "description": "", "tags": [ - "债务处理人" + "债务处理人", + "战斗" ] } ] @@ -32024,7 +38331,7 @@ "name": "烛伞蘑菇-彩石顶(纳西妲)-9.json", "type": "file", "hash": "f80377508f7a51c98c52a2a2f545dad5a0ec6814", - "version": "f803775", + "version": "1.0", "author": "SmomoL", "description": "", "tags": [ @@ -32042,209 +38349,228 @@ "name": "浊水幻灵-枫丹1-海露港1.json", "type": "file", "hash": "d3756af6e2bcba57651e593a06d3e28d0172a008", - "version": "d3756af", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹1-海露港2.json", "type": "file", "hash": "6e60c4df5519c39fdce90e495c95f064bf3368f9", - "version": "6e60c4d", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹2-厄里那斯1.json", "type": "file", "hash": "e2e4df3a2869ee2eb7eb1dedcd6d3008490d0914", - "version": "e2e4df3", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹2-厄里那斯2.json", "type": "file", "hash": "9ea34447dc2c10d31dceed4922885ae1c2b6027c", - "version": "9ea3444", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹3-秋分山东侧.json", "type": "file", "hash": "74ae386313d81e78a619c5611c3b3531eabdb953", - "version": "74ae386", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹3-秋分山西侧.json", "type": "file", "hash": "46a579feb0d63d43bdc962e9e7078a4598ccc721", - "version": "46a579f", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹4-卡布狄斯1.json", "type": "file", "hash": "e2aca0f30e29a3399fb3ce66681732225a045591", - "version": "e2aca0f", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹4-卡布狄斯2.json", "type": "file", "hash": "12d11f9c5aed82843b5d4d2f3a73ffaf3e246607", - "version": "12d11f9", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹4-卡布狄斯3.json", "type": "file", "hash": "ef42be7bf09cfe8662e45c5cd772c350ba667659", - "version": "ef42be7", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹4-卡布狄斯4.json", "type": "file", "hash": "1c7a13a49cfdd1ecb31fd528de92d7d09e9c725c", - "version": "1c7a13a", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹5-柔灯港.json", "type": "file", "hash": "445610d1de8c9449f07bdbeb3ec759efb8df5023", - "version": "445610d", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹6-优兰尼娅湖.json", "type": "file", "hash": "bd29abc426c0e6c608ba8d9ab6699ef612b8273b", - "version": "bd29abc", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹6-湖中垂柳.json", "type": "file", "hash": "16e57904a214147a99eabb6d5a5f8f4299c17ee6", - "version": "16e5790", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹7-茉洁站.json", "type": "file", "hash": "1f54720cdbada6f1837de7bf3283b1582c71e04a", - "version": "1f54720", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹8-枫丹廷1.json", "type": "file", "hash": "09b099589586929a5f213a83582d05ba71b9ac34", - "version": "09b0995", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹8-枫丹廷2.json", "type": "file", "hash": "9d72e00d33010dc8236e27054a4941f127f02ece", - "version": "9d72e00", + "version": "1.0", "author": "无狐", "description": "只有1只,跑得还远;性价比不高", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-枫丹9-实验室.json", "type": "file", "hash": "c8f5ba693158524e17d98486a4fa7f02b11399a6", - "version": "c8f5ba6", + "version": "1.0", "author": "无狐", "description": "第2只需要采集薄荷触发", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-璃月1-轻策庄.json", "type": "file", "hash": "b360ba7ce2d138fbcb5137011ceb9a9e1a85dbe6", - "version": "b360ba7", + "version": "1.0", "author": "无狐", "description": "", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] }, { "name": "浊水幻灵-璃月2-无妄坡.json", "type": "file", "hash": "2f84eaa10db37c2e6001c67e80439c99cfc35760", - "version": "2f84eaa", + "version": "1.0", "author": "无狐", "description": "后面两只浊水幻灵距离有点尴尬,可能第一只战斗完之后,第二只的途径点没办法开启(还处于战斗中)。试了之后再优化看看。", "tags": [ - "浊水幻灵" + "浊水幻灵", + "战斗" ] } ] @@ -32258,8 +38584,8 @@ { "name": "AEscoffier_chef", "type": "directory", - "hash": "ee69ba3e469d6307db47b82ac836dadfa6a4b937", - "version": "1.1", + "hash": "3fa4f098a996c0906298e65d5702959d8da8d60e", + "version": "1.2", "author": "提瓦特钓鱼玳师", "description": "一只爱可菲(厨娘版)~|~脚本名称:一只爱可菲(厨娘版)\n功能描述:专精料理制作的爱可菲(自动烹饪及解锁、特殊料理)\n核心功能------------------------------>\n1.自动烹饪:支持手动烹饪和自动烹饪,支持只刷满熟练度\n2.自动特殊料理:支持根据菜名和角色名自动进行单/多个特殊料理的烹饪(可以调节预期数量)\n3.其他料理获取:除了烹饪以外的部分料理的获取[仅有数据,未实装]\n注意事项------------------------------>\n1.请确保原神分辨率是1920x1080\n2.请尽量确保食材充足,如果食材不充足会自动跳过\n---------------------------------------->\n作者:提瓦特钓鱼玳师\n脚本反馈邮箱:hijiwos@hotmail.com", "tags": [] @@ -32282,11 +38608,20 @@ "description": "返回七天神像切换指定队伍加速版~|~", "tags": [] }, + { + "name": "AllFowlTeyvat", + "type": "directory", + "hash": "2908077dd9b98befff3cc859e0ed91173935101b", + "version": "1.1", + "author": "提瓦特钓鱼玳师", + "description": "禽肉全收集(提瓦特)~|~脚本名称:禽肉全收集(提瓦特)\n功能描述:多种形式的提瓦特禽肉采集(下落攻击、战斗)\n核心功能------------------------------>\n1.刷取禽肉上限(目前路线不足)\n2.支持自行启用(禁用)下落(战斗)路线\n3.支持选择刷取鸟类(1禽肉、2禽肉、3禽肉)\n4.内置了4点的空月祝福检测(默认启用)\n注意事项------------------------------>\n1.包含下落路线时行走位建议角色为绮良良或埃洛伊(天赋不易惊动小动物)\n2.内置的空月祝福领取逻辑与JS脚本:提瓦特自动钓鱼(全流程+自选)一致\n---------------------------------------->\n作者:提瓦特钓鱼玳师\n脚本反馈邮箱:hijiwos@hotmail.com", + "tags": [] + }, { "name": "AutoArtifacts_A_B_Extra", "type": "directory", - "hash": "e26d77cb0ec8a6fc72c3edf9b5df16e4c96c610e", - "version": "2.5.0", + "hash": "995b638813d2c01b5d8b17895e534ce88fe7888f", + "version": "2.5.3", "author": "Yang-z", "description": "狗粮ABE路线,自动拾取分解~|~圣遗物狗粮AB及额外路线,自动轮换,自动分解,就近恢复。", "tags": [] @@ -32339,8 +38674,8 @@ { "name": "AutoFriendshipEvilBaresItsFangsGetRawMeat", "type": "directory", - "hash": "3323e034656e592260380bad41e4499d1fe3cd60", - "version": "1.3.3", + "hash": "606c21db25060abacd3285a6ea1a131be8a3f34b", + "version": "1.3.5", "author": "起个名字好难的喵", "description": "兽肉好感:自动好感度&刷两只鳄鱼兽肉&卡时间~|~通过突发事件:张牙舞爪的恶党刷兽肉,并顺带获取好感度(好感度超过10次后不再获取),请使用满员好感度队伍,并为全体队伍角色配置相应的战斗策略", "tags": [] @@ -32393,10 +38728,10 @@ { "name": "AutoSereniteaPot", "type": "directory", - "hash": "a67c44b54189b053ead296fbcd579022738873c4", - "version": "0.0.2", + "hash": "736cfa7dd095b16427248a1fb3f44023e97e7d0b", + "version": "0.0.3", "author": "bling-yshs", - "description": "尘歌壶一条龙-领取洞天宝钱和角色好感~|~自动放置并进入尘歌壶,寻找阿圆,领取洞天宝钱和好感(需要配置进入尘歌壶以后的路线)(更新时间:5.5版本)", + "description": "尘歌壶一条龙-领取洞天宝钱和角色好感~|~自动放置并进入尘歌壶,寻找阿圆,领取洞天宝钱和好感(需要配置进入尘歌壶以后的路线),支持自动购买指定物品(更新时间:5.5版本)", "tags": [] }, { @@ -32456,8 +38791,8 @@ { "name": "Auto全自动“枫丹”地脉花", "type": "directory", - "hash": "fba7f38ac084f176e8012bd3b9956b6ab0a42a4a", - "version": "1.2", + "hash": "5fb49fa15507c68fcbff54c87b7b5bb687172022", + "version": "1.3", "author": "平面镜&D捣蛋&LCB茶包", "description": "地脉花-可禁UID&领每日&好感队切换~|~枫丹地脉花,蓝花金花通用。生存压力大,请带盾奶;避免纯水输出。地脉花特殊,请注意说明文件。QQ:119996800(茶包) 加我请说明来意。", "tags": [] @@ -32499,21 +38834,12 @@ "tags": [] }, { - "name": "Decompose artifact", + "name": "DestroyArtifactsForMora", "type": "directory", - "hash": "3ee22cd6f037934026d8dda47ac99323d96767d7", + "hash": "f3ebe9ab2f0571191b1beb7034d1dac0c26e1e39", "version": "1.0", - "author": "鹤望兰", - "description": "分解狗粮~|~用于分解狗粮", - "tags": [] - }, - { - "name": "Destruction artifact", - "type": "directory", - "hash": "5f71d2c24721fe414dea4ffbc67afd008c050187", - "version": "1.0", - "author": "鹤望兰", - "description": "摧毁狗粮~|~用于摧毁狗粮获取摩拉", + "author": "起个名字好难的喵", + "description": "摧毁圣遗物换摩拉~|~图像识别改造版", "tags": [] }, { @@ -32534,24 +38860,6 @@ "description": "完全退出游戏~|~配合其他脚本使用。当其他任务完成之后,调用此脚本完成游戏退出(指结束游戏进程)", "tags": [] }, - { - "name": "Login", - "type": "directory", - "hash": "9dcb76f04355a12c406c17542d9829aeee2b59a8", - "version": "1.0", - "author": "愚溪", - "description": "登录游戏~|~输入账号和密码并进入游戏", - "tags": [] - }, - { - "name": "Logout", - "type": "directory", - "hash": "af9c587f98f4b419d1a901024003bd1d006f2abc", - "version": "1.0", - "author": "愚溪", - "description": "退出并重登~|~退出游戏并退出账号", - "tags": [] - }, { "name": "Mail", "type": "directory", @@ -32582,8 +38890,8 @@ { "name": "OCR购买食材", "type": "directory", - "hash": "55c02dfea8069770d63663271a59b5a78b8592db", - "version": "1.20403", + "hash": "e27d217775bfc1e91832d5a455d126b549cbaf64", + "version": "1.30420", "author": "吉吉喵", "description": "选择购买食材OCR~|~至少需要0.44版本bgi,对NPC和材料进行文字、图像识别。\n一般食材杂货在蒙德、璃月、稻妻、枫丹杂货商购买。\n10鱼肉、10螃蟹在卯师傅、珀姆、布特罗斯、阿扎莱和志村勘兵卫购买。\n咖啡豆在须弥、枫丹咖啡馆购买。\n增加对话F图像识别,增加个别字识别容错;增加香辛料,在阿扎莱处购买", "tags": [] @@ -32624,15 +38932,6 @@ "description": "图像识别demo~|~图像识别demo", "tags": [] }, - { - "name": "SalvageArtifacts", - "type": "directory", - "hash": "b6dfd98205fbee158b71963c0fc3bc6d158d7c50", - "version": "1.0", - "author": "HZYgrandma", - "description": "分解狗粮~|~用于分解狗粮", - "tags": [] - }, { "name": "SereniteaPot", "type": "directory", @@ -32717,10 +39016,10 @@ { "name": "七圣召唤七日历练全自动", "type": "directory", - "hash": "d477a1d3f10598a194312c0a842e219659cbf40f", - "version": "1.0", + "hash": "551f0e48197ce91ba574731385eed46c2f222406", + "version": "1.1", "author": "柒叶子", - "description": "打牌一条龙~|~不依靠分层地图的一条龙打牌(无奈.jpg), 所以什么时候加上?另外只靠一个牌组的话,胜率还是太低了,所以有没有既简单又强势的卡组推荐下呢?", + "description": "打牌一条龙~|~只靠一个牌组的话,胜率还是太低了,所以有没有既简单又强势的卡组推荐下呢?", "tags": [] }, { @@ -32744,19 +39043,19 @@ { "name": "使用料理", "type": "directory", - "hash": "463a74a0403bd2b23a3ff3afac55f2b028c76c8a", - "version": "1.0", + "hash": "7bc80d653a4321a8dcf4ec64bc298b400bebc2c1", + "version": "1.2", "author": "柒叶子", - "description": "料理使用~|~请输入料理名称常见部分的拼音小写,比如月亮派输入yueliang", + "description": "料理使用~|~请输入料理全部名称,需要0.44.6以及以上版本", "tags": [] }, { "name": "使用脆弱树脂", "type": "directory", - "hash": "5412c33259dd3986213fb7a9a598f08726d49b85", - "version": "1.0", - "author": "起个名字好难", - "description": "使用脆弱树脂~|~", + "hash": "2557e377d6ad89d63832421534acf8817242d300", + "version": "1.1", + "author": "起个名字好难的喵", + "description": "使用脆弱树脂(图像识别)~|~", "tags": [] }, { @@ -32786,6 +39085,24 @@ "description": "选择画质~|~0.6或1.0精度切换,增加识图定位,增加画质、动态模糊、Bloom选项,", "tags": [] }, + { + "name": "切换账号(OCR)版本", + "type": "directory", + "hash": "30b1022d4c980d8f4ad0b4bfca5f5fcfd3180643", + "version": "1.0", + "author": "彩虹QQ人", + "description": "切换账号(OCR)版本~|~使用OCR实现:从主页面退出登录实现切换选定账号。脚本问题请联系作者。免责申明:所有的账号密码均保存在本地,请使用者妥善保管账号密码,请勿外泄账号密码。", + "tags": [] + }, + { + "name": "切换账号(非OCR)版本", + "type": "directory", + "hash": "fa91a5ca22b2438a5e3ec7b4a426ad0053888365", + "version": "1.0", + "author": "彩虹QQ人", + "description": "切换账号(非OCR方案)~|~从主页面退出登录实现切换选定账号。\n脚本问题请联系作者。\n免责申明:所有的账号密码均保存在本地,请使用者妥善保管账号密码,请勿外泄账号密码。\n", + "tags": [] + }, { "name": "到枫丹打鐵合礦", "type": "directory", @@ -32978,10 +39295,10 @@ { "name": "料理制作及食材加工", "type": "directory", - "hash": "43a3ff85ed14d53e3a7ed75007a8eaf36d4335bb", - "version": "1.0", + "hash": "ce10febc3a554d5f0a8e2d2e317cf0560e37b88d", + "version": "1.2", "author": "柒叶子", - "description": "料理制作及食材加工~|~自动烹饪料理以及加工食材", + "description": "料理制作及食材加工~|~自动烹饪料理以及加工食材,需要0.44.6及以上版本", "tags": [] }, { @@ -33065,6 +39382,15 @@ "description": "苍晶螺拾取模板~|~尽量不要使用成年体型,有极少数地方可能导致位置偏移,另外队伍请使用双风,并确保传送点附近没有任何标注,最后拾取效果可能不太好,将就用吧", "tags": [] }, + { + "name": "薄荷采集", + "type": "directory", + "hash": "fa983a8ad4793af0991920697f3746cd45f9dbf0", + "version": "1.0", + "author": "Tool_tingsu", + "description": "薄荷采集~|~按薄荷效率大小顺序执行地图追踪脚本采集薄荷,支持断点续传", + "tags": [] + }, { "name": "计算机", "type": "directory", @@ -33083,6 +39409,15 @@ "description": "精确调整游戏时间到分钟,跳过调整动画~|~用于调整游戏时间,精确到分钟,请在调度器中使用", "tags": [] }, + { + "name": "购买四方八方之网", + "type": "directory", + "hash": "5e843a9bcfc1ffa6fb94db6cd1881961d79a6d6b", + "version": "1.0", + "author": "越空", + "description": "购买四方八方之网~|~传送到稻妻白狐之野,找若紫买四方八方之网(基于路径追踪)", + "tags": [] + }, { "name": "进入尘歌壶", "type": "directory", @@ -33118,6 +39453,15 @@ "author": "吉吉喵", "description": "选择加工 食材~|~食材加工 识图 复选框。", "tags": [] + }, + { + "name": "首领讨伐一条龙", + "type": "directory", + "hash": "415e5284f0a82646b908709184058bef48845b35", + "version": "1.3", + "author": "柒叶子", + "description": "首领连续讨伐~|~请看一看readme文件", + "tags": [] } ] }, @@ -33144,73 +39488,35 @@ "type": "file", "hash": "0ca4e4d07272b43e27f84f094f30b1dc7fe7545e", "version": "0ca4e4d", - "author": "辉鸭蛋", - "description": "四神指钟离、芙宁娜、雷电将军、纳西妲", - "tags": [ - "钟离", - "芙宁娜", - "雷电将军", - "纳西妲" - ] + "error": "formatTime is not defined" }, { "name": "2.宵宫队[请看文件内说明].txt", "type": "file", "hash": "33aa7c52e63e8bc45195d60af20f9aef721b20a5", "version": "33aa7c5", - "author": "爱司基模人", - "description": "推荐配队\n钟离 (夜/行/班/云/万)四选二 宵宫\n不推荐云堇万叶一起上\n钟离 芙宁娜 琴/早柚/班尼特 宵宫\n风奶带风套最好(金珀小鹿?金珀砂糖?金珀散兵?),其他奶凑合用", - "tags": [ - "钟离", - "芙宁娜", - "行秋", - "夜兰", - "云堇", - "班尼特", - "早柚", - "枫原万叶", - "宵宫" - ] + "error": "formatTime is not defined" }, { "name": "[刷副本一波循环]瓦伊火钟.txt", "type": "file", "hash": "d18483e502b3e0ecde647e59600f678b38891daa", "version": "d18483e", - "author": "", - "description": "", - "tags": [ - "钟离", - "玛薇卡", - "伊安珊", - "瓦雷莎" - ] + "error": "formatTime is not defined" }, { "name": "[好感度]芙宁娜芭芭拉.txt", "type": "file", "hash": "71d1a46a9dda8cc4a59f28a84dbb9dbcd6509307", "version": "71d1a46", - "author": "HZYgrandma", - "description": "用于自动好感度脚本,另外两个位置带需要刷好感度的角色", - "tags": [ - "芙宁娜", - "芭芭拉" - ] + "error": "formatTime is not defined" }, { "name": "[效率低]二命优菈钟离挂机队.txt", "type": "file", "hash": "2b201766d08ad690c73c0ace5caca41a8cd1371b", "version": "2b20176", - "author": "容小狸", - "description": "一个基于优菈,钟离的自动打本机制\n钟离开盾,雷电将军挂雷,芭芭拉挂水 + 可能的掉血回复\n本脚本效率较低,有些过时,不使用大招,仍有优化空间\n由于该循环需要优菈二段E后长E后马上续盾、挂雷、回血或挂水,\n非二命优菈跟不上节奏,因此强制需要二命\n但这个脚本对于打无机制圣遗物和天赋材料来说没什么问题,\n生存能力较好,所以我也就放上来了。", - "tags": [ - "钟离", - "雷电将军", - "芭芭拉", - "优菈" - ] + "error": "formatTime is not defined" }, { "name": "[锄大地]石化流钟离(看描述).txt", @@ -33251,184 +39557,91 @@ "type": "file", "hash": "5bb52db7ddb125abe7c15a06e202bc3e632370c9", "version": "5bb52db", - "author": "matt", - "description": "盾(钟离)、奶(瑶瑶),自动攻击(久岐忍)、宵宫", - "tags": [ - "钟离", - "瑶瑶", - "久岐忍", - "宵宫" - ] + "error": "formatTime is not defined" }, { "name": "zdy-7神挂机.txt", "type": "file", "hash": "36d7b17f261922c89680c45209ff468d274a6318", "version": "36d7b17", - "author": "", - "description": "7神循环,使用高级语法,减少大招因为充能不够的情况下站着挨打", - "tags": [ - "钟离", - "芙宁娜", - "纳西妲", - "温迪", - "雷电将军", - "玛薇卡" - ] + "error": "formatTime is not defined" }, { "name": "万妲八芭.txt", "type": "file", "hash": "751eac79f3f41c0c1ddef2eb4962a6471569051a", "version": "751eac7", - "author": "", - "description": "", - "tags": [ - "纳西妲", - "八重神子", - "枫原万叶", - "芭芭拉" - ] + "error": "formatTime is not defined" }, { "name": "万妲八钟.txt", "type": "file", "hash": "285d8b4a44ac86aec0932d841840d32a80847fa0", "version": "285d8b4", - "author": "", - "description": "", - "tags": [ - "钟离", - "八重神子", - "枫原万叶", - "纳西妲" - ] + "error": "formatTime is not defined" }, { "name": "万火希班.txt", "type": "file", "hash": "911e5954e93647ec904c47f0c1e7d864821f0809", "version": "911e595", - "author": "旅行者", - "description": "有点吃充能", - "tags": [ - "玛薇卡", - "班尼特", - "希诺宁", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "万火希班2.0版本.txt", "type": "file", "hash": "1736f460e1f9654f5170e122a5f609c6dba8f653", "version": "1736f46", - "author": "旅行者", - "description": "有点吃充能", - "tags": [ - "玛薇卡", - "班尼特", - "希诺宁", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "万离国际.txt", "type": "file", "hash": "7e166942be07076cd7173314f78527271535d2de", "version": "7e16694", - "author": "鹤望兰", - "description": "虹灵的净土特供,即便充能不够加低练度也能快速打完", - "tags": [ - "钟离", - "班尼特", - "香菱", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "万芙芭茜.txt", "type": "file", "hash": "f81a5781c663d04ebcc10056a51e4862b09f24f4", "version": "f81a578", - "author": "HZYgrandma", - "description": "", - "tags": [ - "茜特菈莉", - "芙宁娜", - "枫原万叶", - "芭芭拉" - ] + "error": "formatTime is not defined" }, { "name": "久岐忍超绽放.txt", "type": "file", "hash": "cf1e9e67e47c0106c7a86f72859406660b68d1e2", "version": "cf1e9e6", - "author": "佚名", - "description": "", - "tags": [ - "钟离", - "纳西妲", - "芙宁娜", - "久岐忍" - ] + "error": "formatTime is not defined" }, { "name": "仆人纯火.txt", "type": "file", "hash": "c56489e41ab4230c10d1cda9817957aae4357f72", "version": "c56489e", - "author": "佚名", - "description": "", - "tags": [ - "仆人", - "钟离", - "班尼特", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "仆北夏托.txt", "type": "file", "hash": "99fb4f51d3624b4eb300c778f5972b3ff315513a", "version": "99fb4f5", - "author": "佚名", - "description": "北斗托马需要堆充能,自动轴为了更稳降低了输出,后置护盾容易被打断,不适用于开局就多动症的敌人(比如谐律本)", - "tags": [ - "仆人", - "北斗", - "托马", - "夏沃蕾" - ] + "error": "formatTime is not defined" }, { "name": "仆夜茜班.txt", "type": "file", "hash": "4ab94857225454efebe00edd6f94b15ec4967ad7", "version": "4ab9485", - "author": "gps", - "description": "仆人开e,茜特菈莉套盾,夜兰挂水,班尼特上buff,仆人输出", - "tags": [ - "仆人", - "茜特菈莉", - "夜兰", - "班尼特" - ] + "error": "formatTime is not defined" }, { "name": "仆奶莎班(仆人融化队).txt", "type": "file", "hash": "faecd1683cf7aa203f396a27ef72faa7886469e0", "version": "faecd16", - "author": "", - "description": "", - "tags": [ - "阿蕾奇诺", - "茜特菈莉", - "罗莎莉亚", - "班尼特" - ] + "error": "formatTime is not defined" }, { "name": "仆班莱夜(增加存活).txt", @@ -33449,14 +39662,7 @@ "type": "file", "hash": "56b3722eb85fac6928c6a5b753e8e4d938937214", "version": "56b3722", - "author": "Biiike", - "description": "得益于仆人长索敌机制,亲测比较喜欢乱动的怪如漂浮灵,骗骗花,遗迹守卫都比较好用,钟离盾尽量厚,配合艾梅莉埃可在ai判定时持续造成伤害。", - "tags": [ - "仆人", - "钟离", - "艾梅莉埃", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "仆芙莱夜(建议把莱依拉换成钟离).txt", @@ -33477,88 +39683,42 @@ "type": "file", "hash": "c23bac39b4eade4c44946961c1c7703fba816c41", "version": "c23bac3", - "author": "火山", - "description": "副本(推荐)(已优化仆人输出轴,加强蓝砚护盾覆盖率)", - "tags": [ - "仆人", - "蓝砚", - "班尼特", - "罗莎莉亚" - ] + "error": "formatTime is not defined" }, { "name": "仆钟班希.txt", "type": "file", "hash": "7a68dfe7435149329b10721b494e1c4b50ef4eaf", "version": "7a68dfe", - "author": "黎普Lips", - "description": "推荐配队(钟离/夜兰/班尼特/万叶/希诺宁)五选三+仆人,希诺宁入队注意队内需要有至少非岩非风两种元素,否则无减抗无奶", - "tags": [ - "仆人", - "钟离", - "班尼特", - "夜兰", - "希诺宁", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "克欧夏火.txt", "type": "file", "hash": "6354348e175d8bb4f235d02d9533b91d611f4ed9", "version": "6354348", - "author": "", - "description": "", - "tags": [ - "玛薇卡", - "欧洛伦", - "夏沃蕾", - "克洛琳德" - ] + "error": "formatTime is not defined" }, { "name": "克皇夏托.txt", "type": "file", "hash": "3acf3f1ee20746ed2651d7dd0124fe649b24e778", "version": "3acf3f1", - "author": "", - "description": "", - "tags": [ - "菲谢尔", - "托马", - "夏沃蕾", - "克洛琳德" - ] + "error": "formatTime is not defined" }, { "name": "凝光钟离五郎.txt", "type": "file", "hash": "7bfd284fe39083e3c3284ad774be85c524881401", "version": "7bfd284", - "author": "johsang", - "description": "五郎钟离推荐带西风武器保证充能,高防短轴全程护盾多无敌帧,四号位自由可放好感", - "tags": [ - "五郎", - "钟离", - "凝光" - ] + "error": "formatTime is not defined" }, { "name": "千钟挂机.txt", "type": "file", "hash": "5a6cdaf8b393442feef52f68ff3e5cadf135c4b3", "version": "5a6cdaf", - "author": "baixi", - "description": "钟离+千织+(芙宁娜+草神+雷神+菲谢尔+八重) 五选二(不推荐双雷,会导致丢失一轮千织e)", - "tags": [ - "钟离", - "千织", - "芙宁娜", - "菲谢尔", - "八重神子", - "雷电将军", - "纳西妲" - ] + "error": "formatTime is not defined" }, { "name": "四神队(进阶版).txt", @@ -33579,14 +39739,7 @@ "type": "file", "hash": "98b6feb2980fa4b619441c6c46d02671ccf6d200", "version": "98b6feb", - "author": "爱司基模人", - "description": "", - "tags": [ - "雷电将军", - "芙宁娜", - "夜兰", - "琴" - ] + "error": "formatTime is not defined" }, { "name": "妮绽放(无霸体).txt", @@ -33607,14 +39760,7 @@ "type": "file", "hash": "1b20b19cdc81d77b64b21c0279178b531cf38ac9", "version": "1b20b19", - "author": "PineappleBear", - "description": "", - "tags": [ - "纳西妲", - "妮露", - "芙宁娜", - "白术" - ] + "error": "formatTime is not defined" }, { "name": "宵宫队(优化版)[必看描述].txt", @@ -33640,108 +39786,56 @@ "type": "file", "hash": "a5518af6fd13722fec13537ccc6dc73d1841ce4d", "version": "a5518af", - "author": "爱司基模人", - "description": "", - "tags": [ - "钟离", - "芙芙", - "娜维娅", - "班尼特" - ] + "error": "formatTime is not defined" }, { "name": "希芙龙万.txt", "type": "file", "hash": "fb45a9d5a41d899bce1864c5a37f25ea17a867d3", "version": "fb45a9d", - "author": "yweer", - "description": "最好1命龙", - "tags": [ - "那维莱特", - "希诺宁", - "芙宁娜", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "影夜白芙.txt", "type": "file", "hash": "29929039f6600077bdc1daf74ffd436e681b4472", "version": "2992903", - "author": "佚名", - "description": "", - "tags": [ - "芙宁娜", - "夜兰", - "白术", - "雷电将军" - ] + "error": "formatTime is not defined" }, { "name": "心海队.txt", "type": "file", "hash": "0e0e5aab757ebcce313920d2e4ba25f0f070509c", "version": "0e0e5aa", - "author": "佚名", - "description": "", - "tags": [ - "钟离", - "夜兰", - "芙宁娜", - "心海" - ] + "error": "formatTime is not defined" }, { "name": "心芙夜万.txt", "type": "file", "hash": "4f0af8868a92ff1663b1d92c3adc337644ceaf70", "version": "4f0af88", - "author": "cc", - "description": "", - "tags": [ - "心海", - "芙宁娜", - "夜兰", - "万叶" - ] + "error": "formatTime is not defined" }, { "name": "恰斯卡[请看文件内说明].txt", "type": "file", "hash": "f29df7a85c85e6d517d18d5b9160fcb691b4ca0c", "version": "f29df7a", - "author": "", - "description": "", - "tags": [ - "茜特菈莉", - "芙宁娜", - "烟绯", - "恰斯卡" - ] + "error": "formatTime is not defined" + }, + { + "name": "恰火茜芭.txt", + "type": "file", + "hash": "789aaa13c5fed1442e975b7e299a03345dab4cfa", + "version": "789aaa1", + "error": "formatTime is not defined" }, { "name": "挂机流锄地带万叶[请看文件内说明].txt", "type": "file", "hash": "78246f66be9346e067d459a067fc3f0318429611", "version": "78246f6", - "author": "J_an", - "description": "盾(钟离/茜特菈莉/莱依拉/绮良良/迪奥娜/白术)、自动攻击(芙宁娜/玛薇卡/菲谢尔/久岐忍/八重神子)和协同攻击(纳西妲/雷电将军)选二、万叶", - "tags": [ - "钟离", - "茜特菈莉", - "莱依拉", - "绮良良", - "迪奥娜", - "白术", - "芙宁娜", - "玛薇卡", - "菲谢尔", - "久岐忍", - "八重神子", - "万叶", - "纳西妲", - "雷电将军" - ] + "error": "formatTime is not defined" }, { "name": "提八(空A重).txt", @@ -33762,92 +39856,42 @@ "type": "file", "hash": "43cf5ea1ac76a6ddf0f31f2cee13ec0cdf04f3a4", "version": "43cf5ea", - "author": "爱司基模人", - "description": "", - "tags": [ - "钟离", - "纳西妲", - "八重神子", - "提纳里" - ] + "error": "formatTime is not defined" }, { "name": "散兵[请看文件内说明].txt", "type": "file", "hash": "2736c2ae2e1304df6cd99d44ed929ae9e90f9399", "version": "2736c2a", - "author": "佚名", - "description": "推荐配队:\n1钟离 夜班行云四选二 散兵\n2钟离 珐露珊 四琴 散兵 琴不识别,四琴用不了 可以试试加个q收尾\n3钟离 芙宁娜 四琴 散兵 琴不识别,四琴用不了\n4莱依拉北斗 行秋 云珐夜班 散兵", - "tags": [ - "钟离", - "行秋", - "夜兰", - "芙宁娜", - "珐露珊", - "云堇", - "班尼特", - "流浪者" - ] + "error": "formatTime is not defined" }, { "name": "满命芙芙四神队.txt", "type": "file", "hash": "f79108868d6c4acc09cfa7cc94c1348faf849e72", "version": "f791088", - "author": "", - "description": "", - "tags": [ - "钟离", - "纳西妲", - "芙宁娜", - "玛薇卡" - ] + "error": "formatTime is not defined" }, { "name": "火希芙班.txt", "type": "file", "hash": "ce0c87b59b8c31bef35fcb8e03ec096619987183", "version": "ce0c87b", - "author": "", - "description": "玛薇卡,希诺宁,芙宁娜,班尼特", - "tags": [ - "玛薇卡", - "希诺宁", - "芙宁娜", - "班尼特" - ] + "error": "formatTime is not defined" }, { "name": "火神挂机.txt", "type": "file", "hash": "48c23e209bbbba0ed7d5a4fa041925d51dd0c7cb", "version": "48c23e2", - "author": "", - "description": "", - "tags": [ - "迪希雅", - "钟离", - "茜特菈莉", - "雷电将军", - "芙宁娜", - "玛薇卡" - ] + "error": "formatTime is not defined" }, { "name": "火胡桃非零命.txt", "type": "file", "hash": "9945f986581a05c32c2e543ee2c33362356b0822", "version": "9945f98", - "author": "爱司基模人", - "description": "", - "tags": [ - "钟离", - "芙宁娜", - "行秋", - "夜兰", - "莫娜", - "胡桃" - ] + "error": "formatTime is not defined" }, { "name": "火芙茜(钟)万.txt", @@ -33868,46 +39912,21 @@ "type": "file", "hash": "919d16e8fc99be7f5e70326df0c5b6f3e69fea1f", "version": "919d16e", - "author": "Ran", - "description": "优点是索敌比重击版更好,缺点是会少很多伤害,近战攻击卡肉的影响比想象中的更大", - "tags": [ - "玛薇卡", - "希诺宁", - "茜特菈莉", - "芙宁娜" - ] + "error": "formatTime is not defined" }, { "name": "火芙茜希-火神先手重击版.txt", "type": "file", "hash": "c411f975831f2ac07efe88c129a358d6cf85949a", "version": "c411f97", - "author": "Ran", - "description": "适合非多动症对敌;优点是伤害比轻攻击版更高,缺点是索敌不太好,面对远程敌人会很尴尬", - "tags": [ - "玛薇卡", - "希诺宁", - "茜特菈莉", - "芙宁娜" - ] + "error": "formatTime is not defined" }, { "name": "火芙蒸发.txt", "type": "file", "hash": "f0cddb0433bf68cc06feaaaea3a01808861c973b", "version": "f0cddb0", - "author": "", - "description": "", - "tags": [ - "钟离", - "茜特菈莉", - "玛薇卡", - "琴", - "芙宁娜", - "闲云", - "夏洛蒂", - "白术" - ] + "error": "formatTime is not defined" }, { "name": "火芙闲莱(下落火神).txt", @@ -33928,42 +39947,21 @@ "type": "file", "hash": "1df7f40856bdfa4283c904c252d3a5264c796fda", "version": "1df7f40", - "author": "", - "description": "", - "tags": [ - "钟离", - "芙宁娜", - "雷电将军", - "纳西妲" - ] + "error": "formatTime is not defined" }, { "name": "玛茜娜拉.txt", "type": "file", "hash": "1d95c43ee58857b0462f6f072af6f26993ff23db", "version": "1d95c43", - "author": "SuPer地狱", - "description": "奶奶开盾,芙芙6命自奶,火神后台,老芭凑数,有万叶可以换万叶", - "tags": [ - "茜特菈莉", - "玛薇卡", - "芙宁娜", - "芭芭拉" - ] + "error": "formatTime is not defined" }, { "name": "瑪希茜恰.txt", "type": "file", "hash": "fca539bb672a0773fb89245befb5ec2690cda8d9", "version": "fca539b", - "author": "", - "description": "", - "tags": [ - "茜特菈莉", - "希格雯", - "玛薇卡", - "恰斯卡" - ] + "error": "formatTime is not defined" }, { "name": "瓦伊夏火(0命牛牛超载队).txt", @@ -33984,14 +39982,7 @@ "type": "file", "hash": "683243cd353c451d69420e22f9c836d11f07216d", "version": "683243c", - "author": "鹤望兰", - "description": "最基础的白万芙特枫丹战舰配对,但由于不带钟离在高韧性怪坏境容易被打断技能", - "tags": [ - "芙宁娜", - "白术", - "枫原万叶", - "那维莱特" - ] + "error": "formatTime is not defined" }, { "name": "白万芙茜(浮空-无夜魂).txt", @@ -34012,28 +40003,21 @@ "type": "file", "hash": "966c35e9012fa0d9d4695a779d79625397e6beec", "version": "966c35e", - "author": "", - "description": "", - "tags": [ - "白术", - "玛薇卡", - "芙宁娜", - "迪希雅" - ] + "error": "formatTime is not defined" }, { "name": "白玛茜万[推荐].txt", "type": "file", "hash": "c684cc6e3f97a94a64761d3d04848497f52b99dd", "version": "c684cc6", - "author": "", - "description": "", - "tags": [ - "玛薇卡", - "万叶", - "茜特菈莉", - "白术" - ] + "error": "formatTime is not defined" + }, + { + "name": "盾+后台队.txt", + "type": "file", + "hash": "c662d0132e5f39652af47a7663cfcafabb71f2e5", + "version": "c662d01", + "error": "formatTime is not defined" }, { "name": "神鹤万心(无法冲刺打物理).txt", @@ -34054,24 +40038,14 @@ "type": "file", "hash": "e1b29ea8a6ae41041aa65571320543fbee169f1f", "version": "e1b29ea", - "author": "LL", - "description": "需要恰斯卡,玛薇卡,可以在纳塔范围内无限飞行(会消耗少量燃素)", - "tags": [ - "恰斯卡", - "玛薇卡" - ] + "error": "formatTime is not defined" }, { "name": "纳塔无限飞(进阶版).txt", "type": "file", "hash": "2bf9189d9bb0ee582b5d713348f4ad31fa8f7367", "version": "2bf9189", - "author": "LL", - "description": "需要恰斯卡,玛薇卡,希诺宁,可以在纳塔范围内无限飞行", - "tags": [ - "恰斯卡", - "玛薇卡" - ] + "error": "formatTime is not defined" }, { "name": "胡桃(无法取消后摇迷之锁敌会掉沟).txt", @@ -34092,137 +40066,70 @@ "type": "file", "hash": "07c8e948c77f66a67c2c1fd58691ee161f91578d", "version": "07c8e94", - "author": "johsang", - "description": "定制万叶长战技和小风穴吸材料,想全捡的朋友可以来试试", - "tags": [ - "迪希雅", - "万叶", - "琴", - "艾梅莉埃" - ] + "error": "formatTime is not defined" }, { "name": "艾梅莉埃(锄地加长版).txt", "type": "file", "hash": "95a598db390327c50ab04e3fd023467eb9aacf32", "version": "95a598d", - "author": "johsang", - "description": "详见锄地专版,如果还打不完可无限复制粘贴", - "tags": [ - "迪希雅", - "万叶", - "琴", - "艾梅莉埃" - ] + "error": "formatTime is not defined" }, { "name": "艾梅莉埃(锄地联机版).txt", "type": "file", "hash": "7b35299426372be7d697326b39c05d8b4845ae22", "version": "7b35299", - "author": "johsang", - "description": "详见锄地专版,只推荐高配艾玩,视情况复制粘贴循环即可加长,目前attack持续时间和联机死亡复活还有一些bug,测试用", - "tags": [ - "艾梅莉埃", - "迪希雅" - ] + "error": "formatTime is not defined" }, { "name": "芙妲八芭.txt", "type": "file", "hash": "e7cd8f5ad274b3bfdac6e4ff52a3b6c529b2ab0a", "version": "e7cd8f5", - "author": "", - "description": "", - "tags": [ - "芙宁娜", - "纳西妲", - "八重神子", - "芭芭拉" - ] + "error": "formatTime is not defined" }, { "name": "芙宁娜(锄地专版).txt", "type": "file", "hash": "aaaafea656efce02162c2951e8b7bb1760481d52", "version": "aaaafea", - "author": "johsang", - "description": "定制万叶长战技和小风穴吸材料,想全捡的朋友可以来试试", - "tags": [ - "芙宁娜", - "万叶", - "钟离", - "琴" - ] + "error": "formatTime is not defined" }, { "name": "芙宁娜(锄地加长版).txt", "type": "file", "hash": "f28d7e4410a878000e9eeb76027da1ec2b65722f", "version": "f28d7e4", - "author": "johsang", - "description": "详见锄地专版,可以通过修改[钟离 e(hold) 万叶 e(hold),attack]数量控制时间,更长时间视情况补[芙宁娜 q,e]", - "tags": [ - "芙宁娜", - "万叶", - "钟离", - "琴" - ] + "error": "formatTime is not defined" }, { "name": "芙宁娜(锄地联机版).txt", "type": "file", "hash": "126656c78b2c18c198667c92341d0f8748763270", "version": "126656c", - "author": "johsang", - "description": "详见锄地专版,只适合满命芙玩,视情况复制粘贴循环即可加长,目前attack持续时间和联机死亡复活还有一些bug,测试用", - "tags": [ - "芙宁娜", - "万叶" - ] + "error": "formatTime is not defined" }, { "name": "芙茜万芭.txt", "type": "file", "hash": "8accd0de4e396df5c336db87e0c1a68887a4e3b1", "version": "8accd0d", - "author": "鸿羽er", - "description": "盾薄慎选!使用建议:芙芙最好二命及以上;芭芭拉武器首选遗祀玉珑,备选讨龙,由于老芭奶量溢出,充能优先堆190-220左右为宜。", - "tags": [ - "芙宁娜", - "万叶", - "茜特菈莉", - "芭芭拉" - ] + "error": "formatTime is not defined" }, { "name": "茜芙枫心.txt", "type": "file", "hash": "019f446943c99b6abebe18b01231a5af19747beb", "version": "019f446", - "author": "黎牧LIMU [UID:245712783,加好友一起玩啊 :-) ] 2025.01.05 13:38", - "description": "茜特菈莉套盾,芙宁娜召唤术,万叶减水抗,心海输出(心海元素充能效率在165%以上可以连续开大输出)。", - "tags": [ - "茜特菈莉", - "芙宁娜", - "枫原万叶", - "珊瑚宫心海" - ] + "error": "formatTime is not defined" }, { "name": "茜(钟)芙万草.txt", "type": "file", "hash": "52eb7768e8c0115be9979f2c9b786ba12db928ea", "version": "52eb776", - "author": "火山", - "description": "大世界(推荐)奶奶钟离二选一。奶奶盾太薄的话,草神换金铂;加入奶奶大跳浮空", - "tags": [ - "钟离", - "茜特菈莉", - "芙宁娜", - "万叶", - "纳西妲" - ] + "error": "formatTime is not defined" }, { "name": "草行久钟(草神瞎转点不了种子).txt", @@ -34243,14 +40150,7 @@ "type": "file", "hash": "8d5ebc5454ca9663fbf63b86d98beab63c053d66", "version": "8d5ebc5", - "author": "", - "description": "", - "tags": [ - "芙宁娜", - "迪奥娜", - "枫原万叶", - "莱欧斯利" - ] + "error": "formatTime is not defined" }, { "name": "莱芭芙枫(1命万叶).txt", @@ -34271,322 +40171,161 @@ "type": "file", "hash": "05716f0c9dd00a190868efb0d42444864bfb3df8", "version": "05716f0", - "author": "烧冻鸡翅", - "description": "莱依拉、芭芭拉、芙宁娜三方保生存,芙宁娜和万叶聚怪输出,芭芭拉配置海染套", - "tags": [ - "莱依拉", - "芙宁娜", - "枫原万叶", - "芭芭拉" - ] + "error": "formatTime is not defined" }, { "name": "莱芭芙纳.txt", "type": "file", "hash": "3cda189bdc0a3bc03cb80b3833ca8b6a8c982645", "version": "3cda189", - "author": "HZYgrandma,禹仔", - "description": "由HZYgrandma倾情编写制作/n核心思路就是莱依拉和芭芭拉保生存,芙宁娜和纳西妲自动输出/n建议芭芭拉配置海染套/n", - "tags": [ - "莱依拉", - "芭芭拉", - "芙宁娜", - "纳西妲" - ] + "error": "formatTime is not defined" }, { "name": "蓝纳夏八.txt", "type": "file", "hash": "3ff6e63fdb6d90df3bccf87d344ea6be2b07914f", "version": "3ff6e63", - "author": "FEiiL", - "description": "副本,采集(除矿物),锄地(虽然不是很好,神子和蓝砚会动来动去的容易落材料)通用,笔者满命神子基本一轮内清完", - "tags": [ - "八重神子", - "夏沃蕾", - "蓝砚", - "纳西妲" - ] + "error": "formatTime is not defined" }, { "name": "调香师燃烧-调香师,迪西娅,万叶,瑶瑶.txt", "type": "file", "hash": "a384e1f01c3801dd5c9107417d02c6c51d523e93", "version": "a384e1f", - "author": "½", - "description": "", - "tags": [ - "艾梅莉埃", - "迪希雅", - "枫原万叶", - "瑶瑶" - ] + "error": "formatTime is not defined" }, { "name": "那万钟八.txt", "type": "file", "hash": "27eea5b7ef3da7053885a526cba9fed47c2de7a1", "version": "27eea5b", - "author": "", - "description": "", - "tags": [ - "钟离", - "那维莱特", - "枫原万叶", - "八重神子" - ] + "error": "formatTime is not defined" }, { "name": "那芙万希.txt", "type": "file", "hash": "154d58277a6d369735d3967f70eef92106ca57c4", "version": "154d582", - "author": "鹤望兰", - "description": "伤害最大化的配对,但不携带钟离容易暴毙,那维莱特多e一下保证充能的同时尽可能在低练度情况下一轮直接打完副本", - "tags": [ - "那维莱特", - "芙宁娜", - "希诺宁", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "那芙钟希.txt", "type": "file", "hash": "9e05abce531ed9245521f7c1217e4356c0de407d", "version": "9e05abc", - "author": "鹤望兰", - "description": "将万叶换成钟离为了保证打本的顺畅性", - "tags": [ - "芙宁娜", - "希诺宁", - "钟离", - "那维莱特" - ] + "error": "formatTime is not defined" }, { "name": "那钟万芙.txt", "type": "file", "hash": "88e4ae6606639a871741e8cab9275e45f96c9591", "version": "88e4ae6", - "author": "鹤望兰", - "description": "将白术换成钟离为了保证打本的顺畅性,那维莱特多e一下保证充能的同时尽可能在低练度情况下一轮直接打完副本,由于缺乏群奶,仅推荐二命芙芙,六命钟离或者也可以龙王带金珀", - "tags": [ - "芙宁娜", - "钟离", - "那维莱特", - "枫原万叶" - ] + "error": "formatTime is not defined" }, { "name": "钟万绫茜.txt", "type": "file", "hash": "6703953fcd4da9ce4d78e5a328354adea8901f4d", "version": "6703953", - "author": "", - "description": "", - "tags": [ - "钟离", - "茜特菈莉", - "万叶", - "神里绫人" - ] + "error": "formatTime is not defined" }, { "name": "钟万胡茜.txt", "type": "file", "hash": "839804906208a8df28d70e083b2c829426f70971", "version": "8398049", - "author": "", - "description": "", - "tags": [ - "钟离", - "茜特菈莉", - "万叶", - "胡桃" - ] + "error": "formatTime is not defined" }, { "name": "钟仆夜坎.txt", "type": "file", "hash": "30d695b8f343f01938c154f380dbb0bffd2bba90", "version": "30d695b", - "author": "佚名", - "description": "缺点为无聚怪手段,双水角色需要堆一定的充能效率,优点是不画地为牢", - "tags": [ - "仆人", - "钟离", - "夜兰", - "坎蒂丝" - ] + "error": "formatTime is not defined" }, { "name": "钟仆娜云.txt", "type": "file", "hash": "0b5de5823bd652baf375fbf5b2b335f667ccec4f", "version": "0b5de58", - "author": "佚名", - "description": "双c配置,三岩保障云堇有足够充能,缺点是伤害较低", - "tags": [ - "仆人", - "钟离", - "娜维娅", - "云堇" - ] + "error": "formatTime is not defined" }, { "name": "钟八万妲满命八重.txt", "type": "file", "hash": "b08cf2352c7eb15a57f1c59db15439d5307bf984", "version": "b08cf23", - "author": "9", - "description": "6命八重使用", - "tags": [ - "钟离", - "八重神子", - "枫原万叶", - "纳西妲" - ] + "error": "formatTime is not defined" }, { "name": "钟宵珊芙.txt", "type": "file", "hash": "fdab58294ad140ac84c74b121ebb674a27cc3a34", "version": "fdab582", - "author": "慵宁ya", - "description": "宵宫攻击结束时会向前移动以回正位置, 每轮循环结束时会自动按下X键, 防止卡钟离柱子上", - "tags": [ - "钟离", - "芙宁娜", - "珊瑚宫心海", - "宵宫" - ] + "error": "formatTime is not defined" }, { "name": "钟玛芙琴轮椅版.txt", "type": "file", "hash": "9824d63ca21c7fc4d0bd08343fe60b97074c62e4", "version": "9824d63", - "author": "9", - "description": "命座越高越好用", - "tags": [ - "钟离", - "玛薇卡", - "芙宁娜", - "琴" - ] + "error": "formatTime is not defined" }, { "name": "钟离八重万叶白术.txt", "type": "file", "hash": "cbc0f2afeb11df83e9e9327cf2d771346de95bd5", "version": "cbc0f2a", - "author": "佚名", - "description": "", - "tags": [ - "钟离", - "八重神子", - "枫原万叶", - "白术" - ] + "error": "formatTime is not defined" }, { "name": "钟离纳西妲夜兰艾尔海森.txt", "type": "file", "hash": "faf6a0b66f1cc4bbefdd91a05f8c106eac0f1344", "version": "faf6a0b", - "author": "拾荒者uihdve", - "description": "", - "tags": [ - "钟离", - "纳西妲", - "夜兰", - "艾尔海森" - ] + "error": "formatTime is not defined" }, { "name": "钟芙万心混伤生存队.txt", "type": "file", "hash": "c4e2570727a1d975cbbc99c518e4cfbbfb7787aa", "version": "c4e2570", - "author": "叶柒,改自黎牧LIMU茜芙枫心", - "description": "钟离套盾,芙宁娜召唤术,万叶减水抗,心海海染输出(心海充能足够可以连续开大输出)。", - "tags": [ - "钟离", - "芙宁娜", - "枫原万叶", - "珊瑚宫心海" - ] + "error": "formatTime is not defined" }, { "name": "钟芙万白【高压环境挂机】.txt", "type": "file", "hash": "ccfea673a3f9a7861a29e60037a99aa36ab7657a", "version": "ccfea67", - "author": "下流山汉", - "description": "盾(钟离)、自动攻击(芙宁娜)、增伤吸材料(万叶)、奶位(白术)", - "tags": [ - "钟离", - "芙宁娜", - "万叶", - "白术" - ] + "error": "formatTime is not defined" }, { "name": "钟芙久瑶.txt", "type": "file", "hash": "9667ac8487e619b6b66605c4008797bc34700f44", "version": "9667ac8", - "author": "cuteJaven", - "description": "盾(钟离)、自动攻击(芙宁娜、久岐忍)、奶(瑶瑶)", - "tags": [ - "钟离", - "芙宁娜", - "瑶瑶", - "久岐忍" - ] + "error": "formatTime is not defined" }, { "name": "钟芙琴那-开转.txt", "type": "file", "hash": "62e28dc4644089df2181e2e89bdb6ec4a1c9094d", "version": "62e28dc", - "author": "Dawn", - "description": "", - "tags": [ - "钟离", - "芙宁娜", - "琴", - "那维莱特" - ] + "error": "formatTime is not defined" }, { "name": "钟芙鹿莫.txt", "type": "file", "hash": "798dc20d9319aeba82be4098876b58b243a4ec1d", "version": "798dc20", - "author": "上杉夏香", - "description": "", - "tags": [ - "钟离", - "芙宁娜", - "鹿野苑平藏", - "莫娜" - ] + "error": "formatTime is not defined" }, { "name": "钟草芙克(标准6套AE).txt", "type": "file", "hash": "f7ca555e1e1108f20fea80208337de9b6e3200b7", "version": "f7ca555", - "author": "佚名", - "description": "", - "tags": [ - "钟离", - "纳西妲", - "芙宁娜", - "克洛琳德" - ] + "error": "formatTime is not defined" }, { "name": "钟那芙琴(非满命).txt", @@ -34607,92 +40346,42 @@ "type": "file", "hash": "1cb2a1c2dfe0cf8f78201c7b2bb5aa7eb94de224", "version": "1cb2a1c", - "author": "绘星痕", - "description": "", - "tags": [ - "钟离", - "芙宁娜", - "雷电将军", - "瑶瑶" - ] + "error": "formatTime is not defined" }, { "name": "零命那维转圈圈.txt", "type": "file", "hash": "7a0d36e124fe7abae506f6f9c7a318213309da06", "version": "7a0d36e", - "author": "爱司基模人", - "description": "", - "tags": [ - "钟离", - "那维莱特", - "枫原万叶", - "菲谢尔" - ] + "error": "formatTime is not defined" }, { "name": "雷神国家队.txt", "type": "file", "hash": "4c28dd86d5dfa55600bf2336426c908d99d34ba1", "version": "4c28dd8", - "author": "爱司基模人", - "description": "", - "tags": [ - "将军", - "芙芙", - "行秋", - "夜兰", - "班尼特", - "香菱" - ] + "error": "formatTime is not defined" }, { "name": "雷芙万芭.txt", "type": "file", "hash": "9ebba4151bd5cd770a9b408de84be61c14e84d72", "version": "9ebba41", - "author": "AC4488", - "description": "雷电将军、芙宁娜、枫原万叶、芭芭拉", - "tags": [ - "雷电将军", - "芙宁娜", - "枫原万叶", - "芭芭拉" - ] + "error": "formatTime is not defined" }, { "name": "风散兵.txt", "type": "file", "hash": "60cc0d038e77be37b4daef10682db701bde6278f", "version": "60cc0d0", - "author": "爱司基模人", - "description": "", - "tags": [ - "钟离", - "行秋", - "夜兰", - "芙宁娜", - "珐露珊", - "云堇", - "班尼特", - "琴", - "流浪者" - ] + "error": "formatTime is not defined" }, { "name": "龙芙希拉.txt", "type": "file", "hash": "fe14e1b832331a729a6999da295fce7dcbf53966", "version": "fe14e1b", - "author": "", - "description": "", - "tags": [ - "茜特菈莉", - "那维莱特", - "希诺宁", - "芙宁娜", - "茜特拉莉" - ] + "error": "formatTime is not defined" } ] }, @@ -34705,13 +40394,7 @@ "type": "file", "hash": "21b3c7832fd851c8581d185c41f8bb1f3af5259d", "version": "21b3c78", - "author": "huiyadanli", - "description": "", - "tags": [ - "刻晴", - "雷电将军", - "甘雨" - ] + "error": "formatTime is not defined" }, { "name": "惊喜牌组", @@ -34722,98 +40405,49 @@ "type": "file", "hash": "c39f343bf6072d42e3583951f134e0b5ff5bffc6", "version": "c39f343", - "author": "Womsxd", - "description": "", - "tags": [ - "惊喜牌组", - "林尼", - "琳妮特", - "珊瑚宫心海" - ] + "error": "formatTime is not defined" }, { "name": "[惊喜牌组][璃月]东东.txt", "type": "file", "hash": "4f1c2b549594ed00e67eb6fa509e9564927ead73", "version": "4f1c2b5", - "author": "Womsxd", - "description": "", - "tags": [ - "惊喜牌组", - "雷电将军", - "香菱", - "柯莱" - ] + "error": "formatTime is not defined" }, { "name": "[惊喜牌组][璃月]黄衫.txt", "type": "file", "hash": "44070dc486e8ecdbe91c8e6c56fb45049b64c887", "version": "44070dc", - "author": "Womsxd", - "description": "", - "tags": [ - "惊喜牌组", - "钟离", - "胡桃", - "行秋" - ] + "error": "formatTime is not defined" }, { "name": "[惊喜牌组][须弥]巴哈拉克.txt", "type": "file", "hash": "6cd04adca1811d8d1c32e946241c9b9638dbb61b", "version": "6cd04ad", - "author": "Womsxd", - "description": "", - "tags": [ - "惊喜牌组", - "温迪", - "菲谢尔", - "莫娜" - ] + "error": "formatTime is not defined" }, { "name": "[惊喜牌组][须弥]马鲁夫.txt", "type": "file", "hash": "85c92fd1ea34ee9d388311fdfe0739ea9427e284", "version": "85c92fd", - "author": "Womsxd", - "description": "", - "tags": [ - "惊喜牌组", - "纳西妲", - "九条裟罗", - "莫娜" - ] + "error": "formatTime is not defined" }, { "name": "[惊喜牌组][龙脊雪山]史蒂文斯.txt", "type": "file", "hash": "b135d847f847f5311586ad5235da1ab9914c3ca5", "version": "b135d84", - "author": "Womsxd", - "description": "", - "tags": [ - "惊喜牌组", - "特瓦林", - "凯亚", - "无相之雷" - ] + "error": "formatTime is not defined" }, { "name": "[惊喜牌组][龙脊雪山]玉霞.txt", "type": "file", "hash": "185c13b548a8a45b10fab9beb613ebb97b6a16ee", "version": "185c13b", - "author": "Womsxd", - "description": "", - "tags": [ - "惊喜牌组", - "若陀龙王", - "菲谢尔", - "纯水精灵" - ] + "error": "formatTime is not defined" } ] }, @@ -34822,91 +40456,49 @@ "type": "file", "hash": "a399f89612ba38167f0f20a8c4a657770ec94f6b", "version": "a399f89", - "author": "HZYgrandma", - "description": "", - "tags": [ - "皇女", - "白术", - "林尼" - ] + "error": "formatTime is not defined" }, { "name": "皇女科莱莫娜.txt", "type": "file", "hash": "7860a7390bbb81ab04b2e7a1ba2d9595d7e30b55", "version": "7860a73", - "author": "我欲乘风", - "description": "", - "tags": [ - "皇女", - "科莱", - "莫娜" - ] + "error": "formatTime is not defined" }, { "name": "芙芙卡维鲸鱼.txt", "type": "file", "hash": "e4d9780ee663f46747790801c578ee77be7557b5", "version": "e4d9780", - "author": "繁星入梦", - "description": "卡组内塞满3费卡即可", - "tags": [ - "芙宁娜", - "卡维", - "吞星之鲸" - ] + "error": "formatTime is not defined" }, { "name": "莫娜白术皇女.txt", "type": "file", "hash": "e1a7ba965b3e08662e6e011132ad9f9180d786b7", "version": "e1a7ba9", - "author": "我欲乘风", - "description": "", - "tags": [ - "莫娜", - "白术", - "皇女" - ] + "error": "formatTime is not defined" }, { "name": "莫娜砂糖琴.txt", "type": "file", "hash": "77340655c8e581a4d6d6dae49990810a424c2ed1", "version": "7734065", - "author": "huiyadanli", - "description": "", - "tags": [ - "莫娜", - "砂糖", - "琴" - ] + "error": "formatTime is not defined" }, { "name": "迪希雅八重神子纯水精灵.txt", "type": "file", "hash": "e9b81d5fd56cd55013a7f245e888c0fb5998d049", "version": "e9b81d5", - "author": "johsang", - "description": "对面出伤快、元素盾、耐耗王可用,多种召唤物稳定赚费补强生存,应对一些刁钻局有奇效", - "tags": [ - "迪希雅", - "八重神子", - "纯水精灵" - ] + "error": "formatTime is not defined" }, { "name": "迪希雅白术皇女.txt", "type": "file", "hash": "abfe6231556313143aa886a6c13fde1326c2aa20", "version": "abfe623", - "author": "我欲乘风", - "description": "", - "tags": [ - "迪希雅", - "白术", - "皇女" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战", @@ -34917,420 +40509,210 @@ "type": "file", "hash": "7e41d285dab4f0fb70ccc545a82ea981c0d42e1f", "version": "7e41d28", - "author": "Wubbaboo", - "description": "莫娜菲谢尔柯莱手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "柯莱" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战11雷音权现.txt", "type": "file", "hash": "cbf167bd488d9a2fb64cec2addf09d2feb5e5608", "version": "cbf167b", - "author": "Wubbaboo", - "description": "纳西妲林尼艾尔海森手牌无要求", - "tags": [ - "酒馆挑战", - "纳西妲", - "林尼", - "艾尔海森" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战12特瓦林.txt", "type": "file", "hash": "26f9bbf97692a1e404b1c49e53bce954b37e59a8", "version": "26f9bbf", - "author": "Wubbaboo", - "description": "莫娜菲谢尔柯莱", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "柯莱" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战13若陀龙王.txt", "type": "file", "hash": "600f771cd814fd75c20678e5fa238a1b6117fc49", "version": "600f771", - "author": "Wubbaboo", - "description": "菲谢尔柯莱香菱手牌无要求", - "tags": [ - "酒馆挑战", - "菲谢尔", - "柯莱", - "香菱" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战14炽炎魔女.txt", "type": "file", "hash": "408ba5e12a02563bdc2e054fa99a5db670d67880", "version": "408ba5e", - "author": "Wubbaboo", - "description": "菲谢尔柯莱香菱手牌无要求", - "tags": [ - "酒馆挑战", - "菲谢尔", - "柯莱", - "香菱" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战15无相之冰.txt", "type": "file", "hash": "347ff7754aef500396f859d1ee8f9ab4551cfe59", "version": "347ff77", - "author": "Wubbaboo", - "description": "香菱迪卢克菲谢尔手牌无要求", - "tags": [ - "酒馆挑战", - "香菱", - "迪卢克", - "菲谢尔" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战16千年珍珠骏麟.txt", "type": "file", "hash": "7a83fbe49f5038fa57951dbb8ea947c4d47e75be", "version": "7a83fbe", - "author": "Wubbaboo", - "description": "刻晴菲谢尔柯莱手牌无要求", - "tags": [ - "酒馆挑战", - "刻晴", - "菲谢尔", - "柯莱" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战17雷萤术士友好对局.txt", "type": "file", "hash": "f7a715611276f58c7624a83fc909c368c2ad0bc8", "version": "f7a7156", - "author": "Wubbaboo", - "description": "凯亚迪卢克砂糖手牌无要求", - "tags": [ - "酒馆挑战", - "凯亚", - "迪卢克", - "砂糖" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战17雷萤术士认真胜负.txt", "type": "file", "hash": "c864d92b56c1c087577991a3988f7b1eb23f9378", "version": "c864d92", - "author": "Wubbaboo", - "description": "凯亚迪卢克砂糖手牌无要求", - "tags": [ - "酒馆挑战", - "凯亚", - "迪卢克", - "砂糖" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战18深渊使徒水.txt", "type": "file", "hash": "2822cd98533fe85906d13a22048f5ec29a484e6c", "version": "2822cd9", - "author": "Wubbaboo", - "description": "香菱柯莱砂糖手牌无要求", - "tags": [ - "酒馆挑战", - "香菱", - "柯莱", - "砂糖" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战19铁甲熔火帝皇.txt", "type": "file", "hash": "665bb58a8929f9aabce8ded62c7fac9d15bc4f42", "version": "665bb58", - "author": "Wubbaboo", - "description": "莫娜迪卢克重云手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "迪卢克", - "重云" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战1纯水精灵.txt", "type": "file", "hash": "f19627cdbb6c835cb4a3529c9ddd9cd24b59fbc1", "version": "f19627c", - "author": "Wubbaboo", - "description": "莫娜荒泷一斗迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "荒泷一斗", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战20圣骸毒蝎.txt", "type": "file", "hash": "29629a942326536f0875fb85ad65f48e9411f0a6", "version": "29629a9", - "author": "Wubbaboo", - "description": "莫娜雷电将军迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "雷电将军", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战21圣骸飞蛇.txt", "type": "file", "hash": "ab57c270948d6d70cadfe5898f92e1067581aebd", "version": "ab57c27", - "author": "Wubbaboo", - "description": "莫娜雷电将军迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "雷电将军", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战22绿洲守望者.txt", "type": "file", "hash": "622ee590353dd2d4cdabe259401662d680e8604c", "version": "622ee59", - "author": "Wubbaboo", - "description": "莫娜雷电将军迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "雷电将军", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战23吞星之鲸.txt", "type": "file", "hash": "f6be6bcc090b818f5f6b3e8950116e124f96e8b2", "version": "f6be6bc", - "author": "Wubbaboo", - "description": "芙宁娜卡维妮露全带三费牌", - "tags": [ - "酒馆挑战", - "芙宁娜", - "卡维", - "妮露" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战24霜役人.txt", "type": "file", "hash": "fd3b3d8db52a07113e2c198ffe58bbe9acc7a698", "version": "fd3b3d8", - "author": "Wubbaboo", - "description": "凯亚迪卢克砂糖手牌无要求", - "tags": [ - "酒馆挑战", - "凯亚", - "迪卢克", - "砂糖" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战25丘丘水行游侠.txt", "type": "file", "hash": "e2442c7a5fd5cf0f3d9d640fe6a09080a24823c9", "version": "e2442c7", - "author": "Wubbaboo", - "description": "莫娜菲谢尔迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战26深渊咏者紫电.txt", "type": "file", "hash": "470fb284a17c1fe042385b6ad83daccd9a52a2cb", "version": "470fb28", - "author": "Wubbaboo", - "description": "莫娜菲谢尔砂糖手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "砂糖" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战27叶轮舞者.txt", "type": "file", "hash": "8a782596f57144e781f74be1cef89c048e4d5e82", "version": "8a78259", - "author": "Wubbaboo", - "description": "莫娜菲谢尔凯亚手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "凯亚" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战28黄金王兽友好对局.txt", "type": "file", "hash": "76e49476ee34d9a027431208a484a07bc8b3222d", "version": "76e4947", - "author": "Wubbaboo", - "description": "莫娜雷电将军迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "雷电将军", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战28黄金王兽认真胜负.txt", "type": "file", "hash": "6ba302c92dea06124b81188d1902bbcc0ad9eb58", "version": "6ba302c", - "author": "Wubbaboo", - "description": "莫娜雷电将军迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "雷电将军", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战2债务处理人.txt", "type": "file", "hash": "4051468b617045abdbac688ab9a1063f4e22540d", "version": "4051468", - "author": "Wubbaboo", - "description": "莫娜菲谢尔刻晴手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "刻晴" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战3冰萤术士.txt", "type": "file", "hash": "84ee774382ee0c182b34fb338b961e0c188b3d1c", "version": "84ee774", - "author": "Wubbaboo", - "description": "莫娜菲谢尔重云手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "重云" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战4藏镜仕女.txt", "type": "file", "hash": "7bc6e779c26b8f0b7bca41368b5b4473442898f1", "version": "7bc6e77", - "author": "Wubbaboo", - "description": "莫娜菲谢尔刻晴手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "刻晴" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战5丘丘岩盔王.txt", "type": "file", "hash": "8bd65fb1ebe20db22e84ea489568f81f06b515f4", "version": "8bd65fb", - "author": "Wubbaboo", - "description": "莫娜菲谢尔迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战6深渊咏者渊火.txt", "type": "file", "hash": "42e3a4eece47c69085b0258af1bea163edb711dd", "version": "42e3a4e", - "author": "Wubbaboo", - "description": "莫娜菲谢尔重云手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "菲谢尔", - "重云" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战7魔偶剑鬼.txt", "type": "file", "hash": "53d2a99b3f8d1d5beb778f860db9103764c98a69", "version": "53d2a99", - "author": "Wubbaboo", - "description": "香菱菲谢尔柯莱手牌无要求", - "tags": [ - "酒馆挑战", - "香菱", - "菲谢尔", - "柯莱" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战8翠翎恐蕈.txt", "type": "file", "hash": "3350b9166283bc7e9f3fb35bc4f241cc57e214d8", "version": "3350b91", - "author": "Wubbaboo", - "description": "莫娜荒泷一斗迪卢克手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "荒泷一斗", - "迪卢克" - ] + "error": "formatTime is not defined" }, { "name": "酒馆挑战9无相之雷.txt", "type": "file", "hash": "6975c732462478ee50d70710a62de23b705f9725", "version": "6975c73", - "author": "Wubbaboo", - "description": "莫娜荒泷一斗柯莱手牌无要求", - "tags": [ - "酒馆挑战", - "莫娜", - "荒泷一斗", - "柯莱" - ] + "error": "formatTime is not defined" } ] }, @@ -35339,39 +40721,21 @@ "type": "file", "hash": "c5cd909eb25a8e51359410f99c275583e849b48d", "version": "c5cd909", - "author": "繁星入梦", - "description": "", - "tags": [ - "重云", - "雷神", - "申鹤" - ] + "error": "formatTime is not defined" }, { "name": "雷神柯莱刻晴[推荐].txt", "type": "file", "hash": "fe1cf87b52a6ce1f4b4ed1bb4ba2f37896f820e8", "version": "fe1cf87", - "author": "我欲乘风", - "description": "", - "tags": [ - "雷神", - "柯莱", - "刻晴" - ] + "error": "formatTime is not defined" }, { "name": "雷神阿贝多丘丘王.txt", "type": "file", "hash": "df683ee17bfad977927eaba009eb4e61ceebdbf0", "version": "df683ee", - "author": "繁星入梦", - "description": "", - "tags": [ - "雷神", - "阿贝多", - "丘丘王" - ] + "error": "formatTime is not defined" } ] } diff --git a/repo/combat/恰火茜芭.txt b/repo/combat/恰火茜芭.txt new file mode 100644 index 00000000..896c699e --- /dev/null +++ b/repo/combat/恰火茜芭.txt @@ -0,0 +1,37 @@ +//作者:WQEK +//描述:本队以茜特菈莉的护盾保护与火神的自动攻击为建队基石,增加了生存位(复活位)芭芭拉,与规避近战伤害、Q超远索敌的恰斯卡,以应对复杂的大世界锄地环境,增加战斗容错,减少暴毙、被打断、战斗超时的情况发生。 +// 火神开Q第一轮 +茜特菈莉 e,click(middle),wait(0.2),q,attack,e,click(middle) +//芭芭拉 e,click(middle),wait(0.2),q,attack,click(middle) +玛薇卡 q,click(middle),wait(0.3),e,click(middle) +// 2命恰 +恰斯卡 s(0.4),e,wait(0.2),moveby(0,2400),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),e +// 0命恰 +// 恰斯卡 e,wait(0.2),s(1.2),w(0.4),moveby(0,2400),charge(2.3),wait(0.2),charge(2.3),wait(0.2),charge(2.3),wait(0.2),q,e + +// 火神开Q第二轮 +茜特菈莉 e,click(middle),wait(0.2),q,attack(1),e,click(middle) +芭芭拉 attack,e,click(middle),wait(0.2),q,attack,click(middle) +玛薇卡 q,click(middle),wait(0.3),e,click(middle) +// 2命恰 +恰斯卡 s(0.4),e,wait(0.2), w(0.8),moveby(0,2400),charge(1.15),wait(0.2),charge(1.15),wait(0.2), w(0.8),charge(1.15),wait(0.2),charge(1.15),wait(0.2), w(0.8),charge(1.15),wait(0.2),q,e +// 0命恰 +// 恰斯卡e,wait(0.2),s(1.2),w(0.4),moveby(0,2400),charge(2.3),wait(0.2),charge(2.3),wait(0.2),charge(2.3),wait(0.2),q,e + +// 火神不开Q +// 茜特菈莉 e,click(middle),wait(0.2),q,attack,e,click(middle) +// 芭芭拉 e(hold),wait(0.2) +// 玛薇卡 e,click(middle) +// 2命恰 +// 恰斯卡s(0.4),e,wait(0.2),moveby(0,2400),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),charge(1.15),wait(0.2),q,e +// 0命恰 恰斯卡s(0.4),e,wait(0.2),moveby(0,2400),charge(2.3),wait(0.2),charge(2.3),wait(0.2),charge(2.3),wait(0.2),q,e + + +// 向上升 +// keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE) +// 向下降 +// keydown(VK_LCONTROL),wait(0.5),keyup(VK_LCONTROL) +// 画面向下移 +// 恰斯卡 moveby(0,2400) +// 1.15 = 三弹, 2.3 = 六弹 +// 恰斯卡 e,charge(1.15),charge(2.3) diff --git a/repo/combat/盾+后台队.txt b/repo/combat/盾+后台队.txt new file mode 100644 index 00000000..5ad67ced --- /dev/null +++ b/repo/combat/盾+后台队.txt @@ -0,0 +1,13 @@ +// 作者:苍夏 +// 描述:V3 生存(钟离,茜特菈莉至少有一个),后台(影,八重,芙宁娜,玛薇卡,千织,5选3,千织绑定钟离) + +钟离 s(0.2),e(hold),wait(1.5),w(0.2),keypress(q) +茜特菈莉 e,wait(1),keypress(q),attack,e + + +雷电将军 e,wait(1) +八重神子 e,wait(0.5),keydown(w),e,keyup(w),wait(0.6),keydown(a),keydown(s),e,keyup(a),keyup(s) +玛薇卡 attack(0.1),e,wait(2.3),keypress(q),wait(2.5),keypress(1) +千织 attack(0.1),click(middle),wait(0.2),keydown(e),wait(0.2),moveby(0,2000),wait(0.2),keyup(e),attack(1),wait(1.5),keypress(q) +芙宁娜 attack(0.5),e,wait(2),keypress(q) +雷电将军 attack(0.5),q,attack(2.3) diff --git a/repo/js/AEscoffier_chef/assets/others/slide_bar_main.png b/repo/js/AEscoffier_chef/assets/others/slide_bar_main.png deleted file mode 100644 index 64ec6039..00000000 Binary files a/repo/js/AEscoffier_chef/assets/others/slide_bar_main.png and /dev/null differ diff --git a/repo/js/AEscoffier_chef/assets/others/slide_bar_main_down.png b/repo/js/AEscoffier_chef/assets/others/slide_bar_main_down.png new file mode 100644 index 00000000..fb752b98 Binary files /dev/null and b/repo/js/AEscoffier_chef/assets/others/slide_bar_main_down.png differ diff --git a/repo/js/AEscoffier_chef/assets/others/slide_bar_main_up.png b/repo/js/AEscoffier_chef/assets/others/slide_bar_main_up.png new file mode 100644 index 00000000..c39dec53 Binary files /dev/null and b/repo/js/AEscoffier_chef/assets/others/slide_bar_main_up.png differ diff --git a/repo/js/AEscoffier_chef/main.js b/repo/js/AEscoffier_chef/main.js index 4d9bd12e..ed8980e9 100644 --- a/repo/js/AEscoffier_chef/main.js +++ b/repo/js/AEscoffier_chef/main.js @@ -13,7 +13,8 @@ const name_can_make = ['酪香蟹蟹锅', '丰稔之赐', '沃陆果饮', '粒果膨膨棒', '酪烤菇菇串', '乌乌黑蛋', '钱汤馒头', '梅落雪间醉', '炎岩之颂', '清心花饼', '奇瑰之汤', '纵声欢唱', '山与海与天空', '火山蛋糕', '粒果裹裹', '苦水', '串烤牛心', '宝石闪闪', '温泉时光', '咚咚嘭嘭', '苹果金条条', '塔塔可', '兽肉旋风', '巧克力', '龙龙饼干', '奇旅馔匣', '夹心土豆泥', '炸虾豆球', '火焰炖肉', '「强水」', '苹果卷卷', '多彩之森', '粒果肉汤', '粒果片片', '酸汁腌鱼', '薄荷酱烤鱼', '粒果杯', '膨膨冰淇淋', '酥酥羊角包', '奶油炖鸡', '桔香鸭胸肉', '泡泡舒芙蕾', '肉满满寿司', '八宝福禄鸭', '茶好月圆', '知足常乐', '红烧肉圆', '繁弦急管', '宾至如归', '金玉满堂', '茶熏乳鸽', '油爆双脆', '古华鱼羊鲜', '玉纹茶叶蛋', '沉玉茶露', '蜜汁叉烧', '千灵慕斯', '缤纷马卡龙', '圈圈圆圆', '致水神', '羊杂哈吉斯', '桔桔薄饼', '港湾牛肚', '咖啡芭芭露', '卡苏莱砂锅', '纳博内番茄盅', '「纯洁之水」', '百味一缕', '苹果黑布丁', '香烤肋排', '杏仁鳟鱼', '韦西鸡', '花果三重奏', '果果仙酪', '鱼鱼咏唱派', '炸鱼薯条', '生肉塔塔', '肉酱千层面', '白淞鲜汤', '膨膨泡芙', '双果清露', '果果软糖', '晶螺糕', '枫丹肥肝', '奶油蘑菇汤', '塔塞斯杂烩', '浮露白霜', '蒜香面包棍', '水乡肉冻', '枫丹洋葱汤', '油封鸭腿', '琼玉果汤', '脆饼珐提', '超级至尊披萨', '蜜金泡果', '薄荷曼果茶', '镀金锅', '秘香肉团', '萨布兹炖肉', '萨巴桑炸角', '蔷薇奶糊', '帕蒂沙兰布丁', '椰炭饼', '千层酥酥', '假日果酿', '枣椰蜜糖', '阿如拌饭', '唐杜尔烤鸡', '肉肉烤蘑菇披萨', '兽米香香', '土豆船', '口袋饼', '奶香菌菇脆塔', '米圆塔', '黄油鸡', '日落莓莓茶', '雨林沙拉', '绿汁脆球', '咖喱虾', '奶酱鲜鱼', '烤肉卷', '马萨拉芝士球', '杂菇荟萃', '薄荷豆汤', '兰巴德鱼卷', '紫苑云霓', '炸肉排三明治', '山家烧', '乌冬面', '丰年有余', '龙须面', '五宝腌菜', '鳗肉茶泡饭', '绯樱虾仙贝', '树莓水馒头', '鲜鱼炖萝卜', '若竹煮', '荞麦面', '辣肉窝窝头', '蛋包饭', '米饭布丁', '文心豆腐', '活力喵饭', '日落鲷鱼烧', '红烩兽肉', '多多烧', '蒲烧鳗肉', '甜虾寿司', '鸟蛋寿司', '刺身拼盘', '黄油蟹蟹', '绀田煮', '绯樱饼', '兽骨拉面', '三彩团子', '绯樱天妇罗', '串串三味', '渡来禽肉', '市井杂煮', '什锦炒面', '金枪鱼寿司', '饭团', '蟹黄壳壳烧', '鸟蛋烧', '干烧香鱼', '味噌汤', '鸡豆花', '清炒虾仁', '米窝窝', '干锅腊肉', '蟹黄豆腐', '干炒鱼河', '大黄金吮指鸡', '兽肉薄荷卷', '脆脆鸡腿堡', '鲜虾脆薯盏', '香浓土豆泥', '凉拌薄荷', '薄荷果冻', '明月蛋', '素鲍鱼', '岩港三鲜', '四方和平', '绝云锅巴', '黄油煎鱼', '稠汁蔬菜炖肉', '天枢肉', '月亮派', '金丝虾球', '北地苹果焖肉', '腌笃鲜', '扣三丝', '冒险家蛋堡', '莲花酥', '仙跳墙', '翡玉什锦袋', '黄金蟹', '中原杂碎', '蜜酱胡萝卜煎肉', '风神杂烩菜', '蟹黄火腿焗时蔬', '蒙德土豆饼', '松鼠鱼', '水煮黑背鲈', '烤蘑菇披萨', '冷肉拼盘', '黄油松茸', '轻策农家菜', '「堆高高」', '来来菜', '嘟嘟莲海鲜羹', '白汁时蔬烩肉', '莲子禽蛋羹', '庄园烤松饼', '山珍热卤面', '北地烟熏鸡', '松茸酿肉卷', '甜甜花酿鸡', '水晶虾', '火火肉酱面', '炸萝卜丸子', '杏仁豆腐', '香嫩椒椒鸡', '满足沙拉', '珍珠翡翠白玉汤', '渔人吐司', '蒙德烤鱼', '摩拉肉', '爆炒肉片', '提瓦特煎蛋', '烤肉排', '野菇鸡肉串', '烤吃虎鱼', '萝卜时蔬汤'] // 模板匹配图片路径 const pic_path = { - "slide_bar_main": "assets\\others\\slide_bar_main.png", + "slide_bar_main_up": "assets\\others\\slide_bar_main_up.png", + "slide_bar_main_down": "assets\\others\\slide_bar_main_down.png", "slide_bar_cooking": "assets\\others\\slide_bar_cooking.png", "claim": "assets\\others\\claim.png", "auto_cooking": { @@ -7413,25 +7414,28 @@ * * @param {string} direction: 滑动方向 * @param {bigint} pages: 页数 - * @returns {Promise} 滑动到底部或者找不到滑块return false,成功滑动return true + * @returns {Promise} */ async function scroll_pages_main(direction = "down", pages = 1) { - const slide_barRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync(pic_path["slide_bar_main"]), 1282, 112, 13, 840); - slide_barRo.threshold = 0.6; + const slide_bar_upRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync(pic_path["slide_bar_main_up"]), 1282, 112, 13, 840); + const slide_bar_downRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync(pic_path["slide_bar_main_down"]), 1282, 112, 13, 840); + slide_bar_upRo.threshold = 0.6; + slide_bar_downRo.threshold = 0.6; for (let i = 0; i < pages; i++) { moveMouseTo(1555, 860); // 移走鼠标,防止干扰识别 await sleep(200); - let slide_bar = captureGameRegion().Find(slide_barRo); // 当前页面模板匹配 - if (slide_bar.isExist()) { - log.info(`定位到滑块...(${slide_bar.x}, ${slide_bar.y})-滑动方向: ${direction}`); - if (slide_bar.y > 752 && direction === "down") { // 当前为向下滑动且滑块y值已经大于设定y值 + let slide_bar_up = captureGameRegion().Find(slide_bar_upRo); // 当前页面模板匹配 + let slide_bar_down = captureGameRegion().Find(slide_bar_downRo); // 当前页面模板匹配 + if (slide_bar_up.isExist() && slide_bar_down.isExist()) { + log.info(`定位到滑块...(${slide_bar_up.x}, ${slide_bar_up.y})-滑动方向: ${direction}`); + if (slide_bar_down.y > 920 && direction === "down") { log.info(`滑块已经滑动到底部...`); if (i != 0) { return true; } else { return false; } - } else if (slide_bar.y < 125 && direction === "up") { // 当前为向上滑动且滑块y值已经小于设定y值 + } else if (slide_bar_up.y < 125 && direction === "up") { log.info(`滑块已经滑动到顶部...`); if (i != 0) { return true; @@ -7439,8 +7443,8 @@ return false; } } - click(1289, direction === "down" ? slide_bar.y + 205 : slide_bar.y - 20); // 88 + 175 = 263 - await sleep(10); + click(1289, direction === "down" ? slide_bar_down.y + 20 : slide_bar_up.y - 20); // 向上下滑动(点击) + await sleep(100); } else { log.error("未找到滑块,无法执行页面滑动操作!"); return false; @@ -8245,7 +8249,7 @@ // 识别当前buff(判断烹饪产物) let current_buff = get_current_buff(); if (unlock || (proficiency[0] === proficiency[1] && proficiency[1] !== 0)) { // 解锁了自动烹饪 - const loop_time = Math.ceil(setting_dic["cooking"][food_name] / 99) + 1; // 总计循环数,一次最大99 + const loop_time = Math.floor(setting_dic["cooking"][food_name] / 99) + 1; // 总计循环数,一次最大99 let cook_num = setting_dic["cooking"][food_name] + 0; // 设定的数量 for (let i = 0; i < loop_time; i++) { let cook_time = i !== loop_time - 1 ? 99: cook_num - i * 99; // 本次烹饪数 @@ -8317,7 +8321,7 @@ unlock = await is_unlock(); // 检测当前食材是否已经解锁 } if (unlock_flag) { - const loop_time = Math.ceil(cook_num / 99) + 1; // 总计循环数,一次最大99 + const loop_time = Math.floor(cook_num / 99) + 1; // 总计循环数,一次最大99 let cook_num = setting_dic["cooking"][food_name] + 0; // 设定的数量 for (let i = 0; i < loop_time; i++) { let cook_time = i !== loop_time - 1 ? 99: cook_num - i * 99; // 本次烹饪数 diff --git a/repo/js/AEscoffier_chef/manifest.json b/repo/js/AEscoffier_chef/manifest.json index 9895c898..3eb6e50a 100644 --- a/repo/js/AEscoffier_chef/manifest.json +++ b/repo/js/AEscoffier_chef/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "一只爱可菲(厨娘版)", - "version": "1.1", + "version": "1.2", "bgi_version": "0.44.6", "description": "脚本名称:一只爱可菲(厨娘版)\n功能描述:专精料理制作的爱可菲(自动烹饪及解锁、特殊料理)\n核心功能------------------------------>\n1.自动烹饪:支持手动烹饪和自动烹饪,支持只刷满熟练度\n2.自动特殊料理:支持根据菜名和角色名自动进行单/多个特殊料理的烹饪(可以调节预期数量)\n3.其他料理获取:除了烹饪以外的部分料理的获取[仅有数据,未实装]\n注意事项------------------------------>\n1.请确保原神分辨率是1920x1080\n2.请尽量确保食材充足,如果食材不充足会自动跳过\n---------------------------------------->\n作者:提瓦特钓鱼玳师\n脚本反馈邮箱:hijiwos@hotmail.com", "authors": [ diff --git a/repo/js/AllFowlTeyvat/assets/get_paths_name.py b/repo/js/AllFowlTeyvat/assets/get_paths_name.py new file mode 100644 index 00000000..11542224 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/get_paths_name.py @@ -0,0 +1,6 @@ +import os + +path_names = os.listdir("pathing") +path_list = [f"\"{i.rstrip(".json")}\"" for i in path_names] +path_list_print = ",\n".join(path_list) +print(path_list_print) \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港北-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港北-1个-下落2肉1.json new file mode 100644 index 00000000..af916a41 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港北-1个-下落2肉1.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "璃月-禽肉-云来海璃月港北-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港北\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 295.62, + "y": -247.3, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 271.09, + "y": -284.52, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "w(6)" + }, + { + "id": 3, + "x": 246.55, + "y": -321.74, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 4, + "x": 247.08, + "y": -319.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 247.49, + "y": -307.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 6, + "x": 248.97, + "y": -309.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": 246.1, + "y": -310.96, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港西-2个-下落1肉2.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港西-2个-下落1肉2.json new file mode 100644 index 00000000..80b7dc1b --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港西-2个-下落1肉2.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "璃月-禽肉-云来海璃月港西-2个-下落1肉2", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港西\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 507.99, + "y": -630.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 361.54, + "y": -618.69, + "action": "combat_script", + "move_mode": "fly", + "action_params": "keypress(space),wait(2),attack(0.1)", + "type": "target" + }, + { + "id": 3, + "x": 361.02, + "y": -617.76, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 4, + "x": 361.69, + "y": -619.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 363.57, + "y": -620.26, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 362.15, + "y": -615.36, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港西南-3个-下落1肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港西南-3个-下落1肉1.json new file mode 100644 index 00000000..e087d703 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-云来海璃月港西南-3个-下落1肉1.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "璃月-禽肉-云来海璃月港西南-3个-下落1肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港西南\n数目: 3\n附加信息: 1禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 507.99, + "y": -630.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 404.36, + "y": -645.53, + "action": "combat_script", + "move_mode": "fly", + "action_params": "keypress(space),wait(2),attack(0.1)", + "type": "target" + }, + { + "id": 3, + "x": 406.18, + "y": -646.37, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 408.07, + "y": -646.96, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 407.05, + "y": -642.67, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 403.51, + "y": -641.51, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 399.4, + "y": -644.8, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 402.17, + "y": -647.06, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 403.91, + "y": -645.1, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-来歆山赤望台东南-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-来歆山赤望台东南-1个-下落2肉1.json new file mode 100644 index 00000000..e8437416 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-来歆山赤望台东南-1个-下落2肉1.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "璃月-禽肉-来歆山赤望台东南-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 来歆山赤望台东南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2870.02, + "y": 1503.36, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2846.04, + "y": 1490.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 2843.99, + "y": 1470.42, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 2830.93, + "y": 1445.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 2818.87, + "y": 1412.19, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 2714.15, + "y": 1256.69, + "action": "combat_script", + "move_mode": "fly", + "action_params": "keypress(space),wait(1.5),attack(0.1)", + "type": "target" + }, + { + "id": 7, + "x": 2712.1, + "y": 1256.0, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 2712.36, + "y": 1258.54, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 2715.35, + "y": 1257.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷宝玦口南-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷宝玦口南-1个-下落2肉1.json new file mode 100644 index 00000000..95127011 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷宝玦口南-1个-下落2肉1.json @@ -0,0 +1,40 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·上谷宝玦口南-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷宝玦口南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2462.76, + "y": 1801.62, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2330.34, + "y": 1869.71, + "type": "target", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(space),wait(2),attack(0.1)", + "locked": false + }, + { + "id": 3, + "x": 2330.34, + "y": 1869.71, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷暝垣山-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷暝垣山-1个-下落2肉1.json new file mode 100644 index 00000000..246b1e16 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷暝垣山-1个-下落2肉1.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·上谷暝垣山-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷暝垣山\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2614.99, + "y": 2375.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2627.5, + "y": 2127.71, + "action": "combat_script", + "move_mode": "fly", + "action_params": "keypress(space),wait(2.5),attack(0.1)", + "type": "target" + }, + { + "id": 3, + "x": 2627.5, + "y": 2127.71, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷暝垣山西南-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷暝垣山西南-1个-下落2肉1.json new file mode 100644 index 00000000..99a54669 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷暝垣山西南-1个-下落2肉1.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·上谷暝垣山西南-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷暝垣山西南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2614.92, + "y": 2050.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2622.0, + "y": 2052.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 2760.38, + "y": 2044.41, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2898.75, + "y": 2036.74, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 2899.78, + "y": 2038.02, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 6, + "x": 2897.3, + "y": 2036.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": 2896.95, + "y": 2034.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": 2899.97, + "y": 2035.58, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷灵濛山北-2个-下落2肉2.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷灵濛山北-2个-下落2肉2.json new file mode 100644 index 00000000..dd06037b --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷灵濛山北-2个-下落2肉2.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·上谷灵濛山北-2个-下落2肉2", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷灵濛山北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2145.69, + "y": 2412.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2139.65, + "y": 2419.85, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 2115.42, + "y": 2462.49, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 2112.89, + "y": 2475.43, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 2123.51, + "y": 2512.02, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 2135.33, + "y": 2523.88, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 2139.24, + "y": 2521.28, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 2139.18, + "y": 2503.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 2176.44, + "y": 2437.53, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 2180.02, + "y": 2439.41, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 11, + "x": 2178.38, + "y": 2435.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷瞑垣山南-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷瞑垣山南-1个-下落2肉1.json new file mode 100644 index 00000000..26cdde6c --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷瞑垣山南-1个-下落2肉1.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·上谷瞑垣山南-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷瞑垣山南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2614.92, + "y": 2050.93, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2622.92, + "y": 2052.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2623.56, + "y": 2044.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2729.16, + "y": 1999.03, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2777.48, + "y": 1922.59, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2805.3, + "y": 1840.33, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": 2807.19, + "y": 1839.85, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2805.99, + "y": 1841.59, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2804.36, + "y": 1839.84, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷翘英庄西-2个-下落1肉2.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷翘英庄西-2个-下落1肉2.json new file mode 100644 index 00000000..5e12973d --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷翘英庄西-2个-下落1肉2.json @@ -0,0 +1,40 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·上谷翘英庄西-2个-下落1肉2", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷翘英庄西\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 1746.68, + "y": 2325.17, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1579.6, + "y": 2250.61, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 3, + "x": 1579.6, + "y": 2250.61, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷翘英庄西北-2个-下落1肉2.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷翘英庄西北-2个-下落1肉2.json new file mode 100644 index 00000000..760a1225 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷翘英庄西北-2个-下落1肉2.json @@ -0,0 +1,40 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·上谷翘英庄西北-2个-下落1肉2", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷翘英庄西北\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 1746.68, + "y": 2325.17, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1782.42, + "y": 2397.24, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 3, + "x": 1782.42, + "y": 2397.24, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷赤望台北-2个-下落2肉2.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷赤望台北-2个-下落2肉2.json new file mode 100644 index 00000000..dc09aa60 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·上谷赤望台北-2个-下落2肉2.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·上谷赤望台北-2个-下落2肉2", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷赤望台北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2614.92, + "y": 2050.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2624.93, + "y": 2052.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 2627.12, + "y": 2044.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 2750.24, + "y": 1994.55, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2873.37, + "y": 1944.84, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 6, + "x": 2871.93, + "y": 1945.44, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": 2874.93, + "y": 1947.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": 2875.8, + "y": 1945.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤望台东-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤望台东-1个-下落2肉1.json new file mode 100644 index 00000000..bf23cd0c --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤望台东-1个-下落2肉1.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·南陵赤望台东-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤望台东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2870.04, + "y": 1503.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2813.17, + "y": 1480.43, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 2785.1, + "y": 1469.35, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 2785.81, + "y": 1457.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 2766.47, + "y": 1447.99, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 2685.86, + "y": 1459.72, + "action": "combat_script", + "move_mode": "fly", + "action_params": "keypress(space),wait(2),attack(0.1)", + "type": "target" + }, + { + "id": 7, + "x": 2685.06, + "y": 1459.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": 2685.99, + "y": 1459.14, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 9, + "x": 2688.26, + "y": 1456.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 10, + "x": 2687, + "y": 1455.59, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 11, + "x": 2685.06, + "y": 1455.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤望台东北-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤望台东北-1个-下落2肉1.json new file mode 100644 index 00000000..0670393d --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤望台东北-1个-下落2肉1.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·南陵赤望台东北-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤望台东北\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2628.09, + "y": 1528.56, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2604.98, + "y": 1538.94, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 2603.7, + "y": 1537.26, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2607.24, + "y": 1540.95, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2601.29, + "y": 1542.84, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2598.84, + "y": 1540.04, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2596.64, + "y": 1543.06, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤璋城垣南-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤璋城垣南-1个-下落2肉1.json new file mode 100644 index 00000000..245f7208 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-沉玉谷·南陵赤璋城垣南-1个-下落2肉1.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "璃月-禽肉-沉玉谷·南陵赤璋城垣南-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤璋城垣南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 2207.0, + "y": 1253.21, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2216.68, + "y": 1269.37, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 2232.61, + "y": 1280.31, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2231.08, + "y": 1280.99, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2231.14, + "y": 1279.27, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林华光林西南-2个-下落2肉2.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林华光林西南-2个-下落2肉2.json new file mode 100644 index 00000000..d2a74078 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林华光林西南-2个-下落2肉2.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "璃月-禽肉-珉林华光林西南-2个-下落2肉2", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林华光林西南\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 1604.46, + "y": 1039.7, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 1608.36, + "y": 1038.44, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 1803.64, + "y": 887.34, + "action": "combat_script", + "move_mode": "fly", + "action_params": "keypress(space),wait(3),attack(0.1)", + "type": "target" + }, + { + "id": 4, + "x": 1803.64, + "y": 887.34, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林奥藏山东-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林奥藏山东-1个-下落2肉1.json new file mode 100644 index 00000000..6a420b85 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林奥藏山东-1个-下落2肉1.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "璃月-禽肉-珉林奥藏山东-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林奥藏山东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 1604.42, + "y": 1039.32, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 1591.19, + "y": 1037.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 1570.91, + "y": 1034.33, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 1359.96, + "y": 1154.34, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 1359.96, + "y": 1154.34, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林琥牢山东-1个-下落2肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林琥牢山东-1个-下落2肉1.json new file mode 100644 index 00000000..2e8ce16b --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-珉林琥牢山东-1个-下落2肉1.json @@ -0,0 +1,49 @@ +{ + "info": { + "name": "璃月-禽肉-珉林琥牢山东-1个-下落2肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林琥牢山东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 1794.2, + "y": 717.49, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1781.85, + "y": 707.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "action": "combat_script", + "move_mode": "fly", + "type": "target", + "x": 1712.19, + "y": 682.33, + "action_params": "keypress(space),wait(5.5),attack(0.1),wait(3)", + "locked": false + }, + { + "id": 4, + "action": "pick_around", + "move_mode": "walk", + "type": "target", + "x": 1712.19, + "y": 682.33, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野明蕴镇西南-2个-下落2肉2.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野明蕴镇西南-2个-下落2肉2.json new file mode 100644 index 00000000..927274f2 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野明蕴镇西南-2个-下落2肉2.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "璃月-禽肉-琼玑野明蕴镇西南-2个-下落2肉2", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野明蕴镇西南\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": -255.08, + "y": 630.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -252.27, + "y": 621.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -151.72, + "y": 595.47, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 4, + "x": -151.72, + "y": 595.47, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -148.1, + "y": 595.65, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -148.24, + "y": 596.71, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野瑶光滩北-4个-下落2肉4.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野瑶光滩北-4个-下落2肉4.json new file mode 100644 index 00000000..99fa07dc --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野瑶光滩北-4个-下落2肉4.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "璃月-禽肉-琼玑野瑶光滩北-4个-下落2肉4", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野瑶光滩北\n数目: 4\n附加信息: 2禽肉鸟共4只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": -255.03, + "y": 630.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -261.9, + "y": 628.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -264.15, + "y": 619.02, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -282.64, + "y": 573.3, + "action": "combat_script", + "move_mode": "fly", + "action_params": "keypress(space),wait(2),attack(0.1)", + "type": "target" + }, + { + "id": 5, + "x": -282.24, + "y": 575.93, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -282.29, + "y": 574.02, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -284.55, + "y": 572.09, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -284.97, + "y": 574.08, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -255.36, + "y": 500.31, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 10, + "x": -255.33, + "y": 500.3, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 11, + "x": -252.04, + "y": 501.51, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -256.28, + "y": 495.39, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野瑶光滩西北-2个-下落2肉2.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野瑶光滩西北-2个-下落2肉2.json new file mode 100644 index 00000000..b3ac599f --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-琼玑野瑶光滩西北-2个-下落2肉2.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "璃月-禽肉-琼玑野瑶光滩西北-2个-下落2肉2", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野瑶光滩西北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": -255.01, + "y": 630.04, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -251.64, + "y": 627.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -85.28, + "y": 568.97, + "type": "target", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(space),wait(1.5),attack(0.1)" + }, + { + "id": 4, + "x": -83.55, + "y": 569.48, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -87.19, + "y": 568.79, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -87.65, + "y": 570.97, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -85.74, + "y": 567.56, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-璃月港舔狗桥-5个-下落2肉5.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-璃月港舔狗桥-5个-下落2肉5.json new file mode 100644 index 00000000..271ce430 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-璃月港舔狗桥-5个-下落2肉5.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "璃月-禽肉-璃月港舔狗桥-5个-下落2肉5", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 璃月港舔狗桥\n数目: 5\n附加信息: 2禽肉鸟共5只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 267.94, + "y": -665.15, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 261.95, + "y": -660.77, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 270.12, + "y": -641.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 295.25, + "y": -620.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 291.1, + "y": -616.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 6, + "x": 285.9, + "y": -619.95, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 276.86, + "y": -605.82, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": 276.86, + "y": -605.82, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 9, + "x": 274.92, + "y": -605.59, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 276.43, + "y": -602.94, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 281.31, + "y": -602.35, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-碧水原望舒客栈北-1个-下落1肉1.json b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-碧水原望舒客栈北-1个-下落1肉1.json new file mode 100644 index 00000000..f120b1e1 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/璃月-禽肉-碧水原望舒客栈北-1个-下落1肉1.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "璃月-禽肉-碧水原望舒客栈北-1个-下落1肉1", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 璃月\n类型: 禽肉\n详细位置: 碧水原望舒客栈北\n数目: 1\n附加信息: 1禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": 328.97, + "y": 873.64, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 318.77, + "y": 889.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 322.89, + "y": 901.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 313.94, + "y": 911.71, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 340.78, + "y": 989.76, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 6, + "x": 339.73, + "y": 990.67, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 341.58, + "y": 994.7, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/纳塔-禽肉-奥奇卡纳塔东南-5个-下落2肉5.json b/repo/js/AllFowlTeyvat/assets/pathing/纳塔-禽肉-奥奇卡纳塔东南-5个-下落2肉5.json new file mode 100644 index 00000000..1e088c75 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/纳塔-禽肉-奥奇卡纳塔东南-5个-下落2肉5.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "纳塔-禽肉-奥奇卡纳塔东南-5个-下落2肉5", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 纳塔\n类型: 禽肉\n详细位置: 奥奇卡纳塔东南\n数目: 5\n附加信息: 2禽肉鸟共5只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9813.49, + "y": -372.26, + "action_params": "" + }, + { + "id": 2, + "x": 9773.93, + "y": -378.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 9743.37, + "y": -350.49, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 9745.07, + "y": -347.68, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 5, + "x": 9742.97, + "y": -347.7, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 6, + "x": 9740.46, + "y": -349.45, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "id": 7, + "x": 9741.64, + "y": -352.24, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/蒙德-禽肉-风起地-3个-下落2肉3.json b/repo/js/AllFowlTeyvat/assets/pathing/蒙德-禽肉-风起地-3个-下落2肉3.json new file mode 100644 index 00000000..4f768014 --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/蒙德-禽肉-风起地-3个-下落2肉3.json @@ -0,0 +1,94 @@ +{ + "info": { + "name": "蒙德-禽肉-风起地-3个-下落2肉3", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 蒙德\n类型: 禽肉\n详细位置: 风起地\n数目: 3\n附加信息: 2禽肉鸟共3只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1266.44, + "y": 1933.72, + "action_params": "" + }, + { + "id": 2, + "x": -1271.32, + "y": 1924.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1266.95, + "y": 1893.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1263.5, + "y": 1888.16, + "type": "target", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1263.05, + "y": 1889.85, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1261.2, + "y": 1895.88, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1262.52, + "y": 1904.92, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1271.81, + "y": 1973.87, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 9, + "x": -1271.81, + "y": 1973.87, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing/蒙德-禽肉-风起地东南-11个-下落2肉11.json b/repo/js/AllFowlTeyvat/assets/pathing/蒙德-禽肉-风起地东南-11个-下落2肉11.json new file mode 100644 index 00000000..39541b9e --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing/蒙德-禽肉-风起地东南-11个-下落2肉11.json @@ -0,0 +1,246 @@ +{ + "info": { + "name": "蒙德-禽肉-风起地东南-11个-下落2肉11", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "地区: 蒙德\n类型: 禽肉\n详细位置: 风起地东南\n数目: 11\n附加信息: 2禽肉鸟共11只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "x": -1427.8, + "y": 1661.54, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1433.42, + "y": 1650.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1441.47, + "y": 1646.12, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1455.85, + "y": 1671.85, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1434.49, + "y": 1685.66, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1434.49, + "y": 1685.66, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": -1435.23, + "y": 1684.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1438.89, + "y": 1683.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1408.71, + "y": 1741.19, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 10, + "x": -1408.71, + "y": 1741.19, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 11, + "x": -1394.93, + "y": 1732.39, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1383.54, + "y": 1726.71, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1371.03, + "y": 1728.07, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(0.5),keypress(space),wait(0.5),keypress(space),wait(4)", + "type": "target" + }, + { + "id": 14, + "x": -1339.8, + "y": 1727.97, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 15, + "x": -1339.8, + "y": 1727.97, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 16, + "x": -1350.17, + "y": 1741.89, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1371.39, + "y": 1727.93, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(0.5),keypress(space),wait(0.5),keypress(space),wait(6)", + "type": "target" + }, + { + "id": 18, + "x": -1359.1, + "y": 1672.13, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 19, + "x": -1359.1, + "y": 1672.13, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 20, + "x": -1359.42, + "y": 1673.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -1371.52, + "y": 1728.39, + "action": "combat_script", + "move_mode": "fly", + "action_params": "wait(0.5),keypress(f)", + "type": "target" + }, + { + "id": 22, + "x": -1408.5, + "y": 1808.78, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 23, + "x": -1408.5, + "y": 1808.78, + "action": "pick_around", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 24, + "x": -1411.69, + "y": 1805.64, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -1409.7, + "y": 1805.23, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -1408.13, + "y": 1807.7, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/assets/pathing_statues/蒙德-七天神像-苍风高地.json b/repo/js/AllFowlTeyvat/assets/pathing_statues/蒙德-七天神像-苍风高地.json new file mode 100644 index 00000000..9f629aba --- /dev/null +++ b/repo/js/AllFowlTeyvat/assets/pathing_statues/蒙德-七天神像-苍风高地.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "蒙德-七天神像-苍风高地", + "type": "collect", + "author": "提瓦特钓鱼玳师", + "version": "1.0", + "description": "传送到蒙德-苍风高地的七天神像", + "bgiVersion": "0.43.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -578.72, + "y": 1853.39, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/main.js b/repo/js/AllFowlTeyvat/main.js new file mode 100644 index 00000000..77f511fe --- /dev/null +++ b/repo/js/AllFowlTeyvat/main.js @@ -0,0 +1,278 @@ +(async function () { + const pathing_list = [ + "璃月-禽肉-云来海璃月港北-1个-下落2肉1", + "璃月-禽肉-云来海璃月港西-2个-下落1肉2", + "璃月-禽肉-云来海璃月港西南-3个-下落1肉1", + "璃月-禽肉-来歆山赤望台东南-1个-下落2肉1", + "璃月-禽肉-沉玉谷·上谷宝玦口南-1个-下落2肉1", + "璃月-禽肉-沉玉谷·上谷暝垣山-1个-下落2肉1", + "璃月-禽肉-沉玉谷·上谷暝垣山西南-1个-下落2肉1", + "璃月-禽肉-沉玉谷·上谷灵濛山北-2个-下落2肉2", + "璃月-禽肉-沉玉谷·上谷瞑垣山南-1个-下落2肉1", + "璃月-禽肉-沉玉谷·上谷翘英庄西-2个-下落1肉2", + "璃月-禽肉-沉玉谷·上谷翘英庄西北-2个-下落1肉2", + "璃月-禽肉-沉玉谷·上谷赤望台北-2个-下落2肉2", + "璃月-禽肉-沉玉谷·南陵赤望台东-1个-下落2肉1", + "璃月-禽肉-沉玉谷·南陵赤望台东北-1个-下落2肉1", + "璃月-禽肉-沉玉谷·南陵赤璋城垣南-1个-下落2肉1", + "璃月-禽肉-珉林华光林西南-2个-下落2肉2", + "璃月-禽肉-珉林奥藏山东-1个-下落2肉1", + "璃月-禽肉-珉林琥牢山东-1个-下落2肉1", + "璃月-禽肉-琼玑野明蕴镇西南-2个-下落2肉2", + "璃月-禽肉-琼玑野瑶光滩北-4个-下落2肉4", + "璃月-禽肉-琼玑野瑶光滩西北-2个-下落2肉2", + "璃月-禽肉-璃月港舔狗桥-5个-下落2肉5", + "璃月-禽肉-碧水原望舒客栈北-1个-下落1肉1", + "纳塔-禽肉-奥奇卡纳塔东南-5个-下落2肉5", + "蒙德-禽肉-风起地-3个-下落2肉3", + "蒙德-禽肉-风起地东南-11个-下落2肉11" + ]; + const statue_name = "蒙德-七天神像-苍风高地"; + const longest_path_time = 300; // 耗时最长的路线的时长(s) + + /** + * 设置时间(白天和夜晚)。 + * + * 模拟键盘和鼠标操作来更改时间状态。 + * + * @param {string} time_state - 时间状态,可以是 "白天" 或 "夜晚"。 + */ + async function set_time(time_state) { + let position_center = [1440, 500]; + let position_0 = [1440, 670]; // 防止转动无效(鼠标途经点) + let position_6 = [1270, 500]; + let position_12 = [1440, 330]; // 防止转动无效(鼠标途经点) + let position_18 = [1610, 500]; + + await keyPress("Escape"); + await sleep(1000); + await click(45, 715); + await sleep(2000); + + moveMouseTo(position_center[0], position_center[1]); + await sleep(50); + leftButtonDown(); + await sleep(50); + if (time_state === "白天") { + moveMouseTo(position_12[0], position_12[1]); // 途经点 + await(50); + moveMouseTo(position_6[0], position_6[1]); + } else if (time_state === "夜晚") { + moveMouseTo(position_0[0], position_0[1]); // 途经点 + await(50); + moveMouseTo(position_18[0], position_18[1]); + } + await sleep(50); + leftButtonUp(); + + await sleep(1000); + await click(1450, 1020); // 确认 + await sleep(20000); // 等待时间调节 + await keyPress("Escape"); + await sleep(2000); + await keyPress("Escape"); + await sleep(2000); + } + + /** + * + * 自动领取空月祝福(检测并等待到4点) + * + * */ + async function welkin_moon() { + // 4点自动领取月卡 + let time_now = new Date(); + let time_4 = new Date(time_now.getFullYear(), time_now.getMonth(), time_now.getDate(), 4, 0, 0); // 4点 + let time_predict_end; // 预测本次任务结束时间(加1分钟容错) + time_predict_end = time_now.setSeconds(time_now.getSeconds() + longest_path_time + 60); + + // 30s点击一次,等待领取月卡 + let step_flag = 0; // 领取月卡步骤标志 + while (auto_skip && time_now < time_4 && time_predict_end >= time_4) { + log.info(`等待领取月卡(剩余${Math.floor((time_4 - new Date()) / 1000)}s)...`); + if (step_flag == 0) { + // 传送到七天神像 + await pathingScript.runFile(base_path_pathing + statue_name + ".json"); + step_flag += 1; + } + await sleep(30000); + keyDown("VK_LBUTTON"); + await sleep(100); + keyUp("VK_LBUTTON"); + + // 本次已经到达4点(5s容错) + if (new Date() > time_4.setSeconds(time_4.getSeconds() - 5)) { + step_flag += 1; + auto_skip = false; + } + + } + // 领取月卡(点击两次) + if (step_flag == 2) { + step_flag = 0; + await sleep(5); // 补回容错时间 + await click(1450, 1020); // 点击时间调节的确认按钮的位置 + await sleep(5); // 等待月卡动画时间 + await click(1450, 1020); + await sleep(1); + } + } + + /** + * + * 读取JS脚本配置 + * + * @return {Object} 包含解析后JS脚本配置的对象 + * */ + function read_settings() { + const mode_pick = typeof(settings.mode_pick) === "undefined" ? "自动拾取" : settings.mode_pick; + const check_upper_limit = typeof(settings.check_upper_limit) === "undefined" ? false : settings.check_upper_limit; + const check_descend = typeof(settings.check_descend) === "undefined" ? false : settings.check_descend; + const check_fight = typeof(settings.check_fight) === "undefined" ? false : settings.check_fight; + const check_one = typeof(settings.check_one) === "undefined" ? false : settings.check_one; + const check_two = typeof(settings.check_two) === "undefined" ? false : settings.check_two; + const check_three = typeof(settings.check_three) === "undefined" ? false : settings.check_three; + const check_welkin_moon = typeof(settings.check_welkin_moon) === "undefined" ? false : settings.check_welkin_moon; + + return { + "mode_pick": mode_pick, + "check_upper_limit": check_upper_limit, + "check_descend": check_descend, + "check_fight": check_fight, + "check_one": check_one, + "check_two": check_two, + "check_three": check_three, + "check_welkin_moon": check_welkin_moon + } + } + + /** + * + * 解析文件名 + * + * */ + function parse_file_name(file_name) { + try { + const file_msg = file_name.split("-") + let msg_dic = {}; // 存储路径信息 + + const area = file_msg[0]; + const type = file_msg[1]; + const detail = file_msg[2]; + const num = parseInt(file_msg[3].replace(/个/g, ""), 10); // 鸟类总数 + const addition = file_msg[4].slice(0, 2); // 路径类型 + const objects = file_msg[4].substring(2).split("_"); // 详细掉落数目(需处理) + + msg_dic["area"] = area; + msg_dic["type"] = type; + msg_dic["detail"] = detail; + msg_dic["num"] = num; + msg_dic["addition"] = addition; + msg_dic["objects"] = {}; // 初始化禽肉详情字典 + for (let i = 0; i < objects.length; i++) { + const temp_msg = objects[i].split("肉"); + msg_dic["objects"][temp_msg[0]] = temp_msg[1]; + } + + return msg_dic; + } catch (error) { + log.info("路径文件解析错误,请检查main.js内的文件名..."); + } + + } + + /** + * + * 加载路径任务 + * + * @param {string} file_name - JSON文件名 + * + * */ + async function run_file(file_name) { + const base_path_pathing = "assets/pathing/"; + await pathingScript.runFile(base_path_pathing + file_name + ".json"); + } + + async function main() { + try { + // 刷取上限所需 + let upper_one, upper_two, upper_three; + const target_num = 300; // 上限(可以设置[test]) + // 读取配置 + const setting_msg = read_settings(); + // 自动拾取 + if (setting_msg["mode_pick"] === "自动拾取") { + dispatcher.addTimer(new RealtimeTimer("AutoPick")); + } else if (setting_msg["mode_pick"] === "强制拾取") { + dispatcher.addTimer(new RealtimeTimer("AutoPick", {"forceInteraction": true})); + } + // 刷取禽肉上限 + // if (setting_msg["check_upper_limit"]) {} + upper_one = 0; + upper_two = 0; + upper_three = 0; + // 输出JS脚本配置 + log.info(`下落路线: ${setting_msg["check_descend"] ? "禁用": "启用"}`); + log.info(`战斗路线: ${setting_msg["check_fight"] ? "禁用": "启用"}`); + log.info(`小型鸟类: ${setting_msg["check_one"] ? "禁用": "启用"}`); + log.info(`中型鸟类: ${setting_msg["check_two"] ? "禁用": "启用"}`); + log.info(`大型鸟类: ${setting_msg["check_three"] ? "禁用": "启用"}`); + log.info(`4点领取空月祝福: ${setting_msg["check_welkin_moon"] ? "禁用": "启用"}`); + + // 筛选并执行路径 + for (let i = 0; i < pathing_list.length; i++) { + log.info(`当前路线: ${pathing_list[i]} (进度: ${i + 1}/${pathing_list.length})`); + const path_msg = parse_file_name(pathing_list[i]); + + // 禁用下落路线 + if (setting_msg["check_descend"] && path_msg["addition"] === "下落") continue; + // 禁用战斗路线 + if (setting_msg["check_fight"] && path_msg["addition"] === "战斗") continue; + // 排除小型鸟类 + if (setting_msg["check_one"] && path_msg["objects"].keys().includes("1")) continue; + // 排除中型鸟类 + if (setting_msg["check_two"] && path_msg["objects"].keys().includes("2")) continue; + // 排除大型鸟类 + if (setting_msg["check_three"] && path_msg["objects"].keys().includes("3")) continue; + // 自动领取空月祝福 + if (!setting_msg["check_welkin_moon"]) { + welkin_moon() + } + + // 执行任务 + await run_file(pathing_list[i]); + // 禽肉上限判定 + if (setting_msg["check_upper_limit"]) { + for (const [key, value] of Object.entries(path_msg["objects"])) { + if (key === "1") { + upper_one += parseInt(value, 10); + if (upper_one >= target_num) { + log.info(`小型鸟类已达 ${target_num} 上限,已禁用...`); + setting_msg["check_one"] = false; + } + } else if (key === "2") { + upper_two += parseInt(value, 10); + if (upper_two >= target_num) { + log.info(`中型鸟类已达 ${target_num} 上限,已禁用...`); + setting_msg["check_two"] = false; + } + } else if (key === "3") { + upper_three += parseInt(value, 10); + if (upper_three >= target_num) { + log.info(`大型鸟类已达 ${target_num} 上限,已禁用...`); + setting_msg["check_three"] = false; + } + } + } + } + } + log.info(`任务完成(统计为预测值,实际可能存在误差):\n小型鸟类 ${upper_one} 只\n中型鸟类 ${upper_two} 只\n大型鸟类 ${upper_three} 只\n`); + } catch (error) { + log.error(`任务执行出错: ${error}`); + return null; + } + + } + + await main(); +})(); \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/manifest.json b/repo/js/AllFowlTeyvat/manifest.json new file mode 100644 index 00000000..f6a9ac0e --- /dev/null +++ b/repo/js/AllFowlTeyvat/manifest.json @@ -0,0 +1,14 @@ +{ + "manifest_version": 1, + "name": "禽肉全收集(提瓦特)", + "version": "1.1", + "bgi_version": "0.43.1", + "description": "脚本名称:禽肉全收集(提瓦特)\n功能描述:多种形式的提瓦特禽肉采集(下落攻击、战斗)\n核心功能------------------------------>\n1.刷取禽肉上限(目前路线不足)\n2.支持自行启用(禁用)下落(战斗)路线\n3.支持选择刷取鸟类(1禽肉、2禽肉、3禽肉)\n4.内置了4点的空月祝福检测(默认启用)\n注意事项------------------------------>\n1.包含下落路线时行走位建议角色为绮良良或埃洛伊(天赋不易惊动小动物)\n2.内置的空月祝福领取逻辑与JS脚本:提瓦特自动钓鱼(全流程+自选)一致\n---------------------------------------->\n作者:提瓦特钓鱼玳师\n脚本反馈邮箱:hijiwos@hotmail.com", + "authors": [ + { + "name": "提瓦特钓鱼玳师" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/AllFowlTeyvat/settings.json b/repo/js/AllFowlTeyvat/settings.json new file mode 100644 index 00000000..ca0cd8d4 --- /dev/null +++ b/repo/js/AllFowlTeyvat/settings.json @@ -0,0 +1,47 @@ +[ + { + "name": "mode_pick", + "type": "select", + "label": "拾取模式(默认自动拾取)", + "options": [ + "自动拾取", + "强制拾取", + "不拾取" + ] + }, + { + "name": "check_upper_limit", + "type": "checkbox", + "label": "刷取禽肉上限(默认刷取全部路线)[测试]" + }, + { + "name": "check_descend", + "type": "checkbox", + "label": "禁用下落路线" + }, + { + "name": "check_fight", + "type": "checkbox", + "label": "禁用战斗路线" + }, + { + "name": "check_one", + "type": "checkbox", + "label": "禁用小型鸟类(1禽肉)" + }, + { + "name": "check_two", + "type": "checkbox", + "label": "禁用中型鸟类(2禽肉)" + }, + { + "name": "check_three", + "type": "checkbox", + "label": "禁用大型鸟类(3禽肉)" + }, + { + "name": "check_welkin_moon", + "type": "checkbox", + "label": "禁用4点领取空月祝福(默认启用)" + } +] diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json index 4c71c9f6..a3965ba6 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json @@ -1,16 +1,17 @@ { "info": { - "name": "", + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": -3288.212890625, "y": -3652.501953125, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": -3273.2841796875, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json index 691b76e2..a31fe166 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ @@ -10,8 +12,7 @@ { "x": -3156.5380859375, "y": -3886.1474609375, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": -3156.634765625, @@ -235,15 +236,15 @@ "move_mode": "fly" }, { - "x": -3139.01953125, - "y": -3571.0009765625, + "x": -3139.2958984375, + "y": -3571.2080078125, "type": "orientation", "move_mode": "walk" }, { - "x": -3139.01953125, - "y": -3571.0009765625, + "x": -3139.2958984375, + "y": -3571.2080078125, "type": "target", "move_mode": "walk", "#": "13" diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json index 781275f5..fd8d6f2a 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ @@ -10,8 +12,7 @@ { "x": -3156.5849609375, "y": -3886.06640625, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": -3139.6357421875, @@ -202,8 +203,8 @@ }, { - "x": -3152.818359375, - "y": -3697.5849609375, + "x": -3152.8251953125, + "y": -3697.9912109375, "type": "target", "move_mode": "walk", "#": "18" diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个-f.json index a0bd2948..1f179a60 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-璃月-珉林-北-5个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json index df61c3db..95457b1a 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-璃月-珉林-北-5个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-2个/3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-2个/3个-f.json index d2fe555b..37e0dc8b 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-2个/3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-2个/3个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-璃月-珉林-奥藏山南-2个/3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 1451.4638671875, "y": 1028.59423828125, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": 1488.1298828125, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个-m.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个-m.json index 3d5a7bed..45432d30 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个-m.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个-m.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-璃月-珉林-绝云间-3个-m", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 1182.685546875, "y": 626.04638671875, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": 1189.333984375, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个-f.json index 43a37d3b..37c06529 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-璃月-琼玑野-绿华池-3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 489.443359375, "y": 222.12353515625, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": 432.3994140625, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个-f.json index f29bc274..b4a8b23e 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-璃月-碧水源-盐中之地-3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": -164.5927734375, "y": 1182.50537109375, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": -171.73828125, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json index 94ec10f4..b4c2aa94 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 8738.201171875, "y": -1857.45947265625, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": 8716.09375, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json index 42cc17ea..6b2790aa 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-纳塔-奥奇卡纳塔-七天神像-14个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 9757.9697265625, "y": -613.59716796875, "type": "teleport", - "move_mode": "walk", "action": "force_tp" }, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json index 9b53bd8a..73946717 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { @@ -111,8 +113,8 @@ "//": "stop_flying" }, { - "x": 9587.705078125, - "y": 171.4501953125, + "x": 9586.58984375, + "y": 172.35888671875, "type": "target", "move_mode": "walk", "#": "6" diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json index 54bd649f..2a8f23fa 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 9813.4951171875, "y": -372.21435546875, "type": "teleport", - "move_mode": "walk", "action": "force_tp" }, { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json index 41751935..dfc7d14e 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-纳塔-涌流地-流泉之众-4个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 8918.939453125, "y": -2679.103515625, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个-f.json index 3aed6976..c71df3d7 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-纳塔-翘枝崖-北-6个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 9719.171875, "y": -852.11669921875, "type": "teleport", - "move_mode": "walk", "action": "force_tp" }, @@ -74,7 +75,7 @@ }, { "x": 9776.802734375, - "y": -769.34521484375, + "y": -769.10, "type": "target", "move_mode": "walk", "#": "2" diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-七天神像下-3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-七天神像下-3个-f.json index 732b5466..1146512b 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-七天神像下-3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-七天神像下-3个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-纳塔-镜璧山-七天神像下-3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 9520.5634765625, "y": -1779.60302734375, "type": "teleport", - "move_mode": "walk", "action": "force_tp" }, { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个-f.json index 1d156597..fc187711 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-纳塔-镜璧山-南-9个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ @@ -10,7 +12,6 @@ "x": 9638.033203125, "y": -1854.703125, "type": "teleport", - "move_mode": "walk", "action": "force_tp" }, { @@ -98,7 +99,7 @@ "x": 9576.17578125, "y": -1960.8349609375, "type": "target", - "move_mode": "fly", + "move_mode": "jump", "#" : "4 5 6" }, { @@ -111,17 +112,17 @@ "move_mode": "walk" }, { - "x": 9575.2177734375, - "y": -1960.056640625, + "x": 9575.287109375, + "y": -1960.943359375, "type": "orientation" }, { - "x": 9574.2177734375, - "y": -1959.256640625, - "type": "path", + "x": 9575.287109375, + "y": -1960.943359375, + "type": "target", "move_mode": "walk", "action": "combat_script", - "action_params": "wait(0.2),keypress(x),wait(1.0)", + "action_params": "keydown(w),wait(0.5),keyup(w),wait(0.2),keypress(x),wait(1.5)", "//": "stop_climbing" }, @@ -196,9 +197,59 @@ } ], + "positions_alternative3": [ + { + "_x": 9577.4677734375, + "_y": -1956.6142578125, + "x": 9577.240234375, + "y": -1957.71923828125, - "positions_alternative1": [ + "x_": 9577.2119140625, + "y_": -1957.74169921875, + + "type": "path", + "move_mode": "walk" + }, + { + "x": 9576.17578125, + "y": -1960.8349609375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 9576.17578125, + "y": -1960.8349609375, + "type": "target", + "move_mode": "jump", + "#" : "4 5 6" + }, + { + "_x": 9577.10546875, + "_y": -1957.60302734375, + + "x": 9578.9921875, + "y": -1961.9375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9575.2265625, + "y": -1960.08740234375, + "type": "orientation" + }, + { + "x": 9575.2265625, + "y": -1960.08740234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keydown(w),wait(0.5),keyup(w),wait(0.2),keypress(x),wait(1.5)", + "//": "stop_climbing" + } + ], + + "positions_alternative2": [ { "x": 9638.033203125, "y": -1854.703125, @@ -275,7 +326,7 @@ - "positions_alternative2": [ + "positions_alternative1": [ { "x": 9638.033203125, "y": -1854.703125, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-蒙德-龙脊雪山-西-3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-蒙德-龙脊雪山-西-3个-f.json index cbfaa16f..81d6bd6b 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-蒙德-龙脊雪山-西-3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-蒙德-龙脊雪山-西-3个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-蒙德-龙脊雪山-西-3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": -410.8212890625, "y": 1161.36767578125, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": -411.111328125, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个/8个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个/8个.json index 3150105d..cf78edb1 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个/8个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个/8个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-须弥-二净甸-七天神像-4个/8个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json index e876908a..a383f911 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-须弥-二净甸-觉王之殿南-6个/7个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 3592.20458984375, "y": -786.109375, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": 3583.609375, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个-f.json index 67c6cacc..88e1823f 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-须弥-失落的苗圃-南-8个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { @@ -161,6 +163,8 @@ "y": -1090.826171875, "type": "target", "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", "#": "6" }, { @@ -194,7 +198,7 @@ { "x": 3994.71826171875, "y": -1048.44091796875, - "type": "target", + "type": "path", "move_mode": "walk" } ] diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-须弥城-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-须弥城-4个.json index 6f5d1eef..965bc515 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-须弥城-4个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-须弥城-4个.json @@ -1,16 +1,17 @@ { "info": { - "name": "", + "name": "狗粮-须弥-须弥城-4个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 2877.02099609375, "y": -292.10693359375, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json index d0ef83fa..d3e6b020 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "(恢复)狗粮-璃月-琼玑野", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 259.4912109375, "y": -14.02978515625, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": 253.8203125, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json index ae96cf67..6164df00 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "(恢复)狗粮-稻妻-神无冢", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": -3233.2021484375, "y": -3534.1865234375, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": -3238.419921875, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json index ca41b924..222b6f4c 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "(恢复)狗粮-纳塔-涌流地", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 8582.041015625, "y": -2675.1962890625, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": 8579.3798828125, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-须弥-失落的苗圃.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-须弥-失落的苗圃.json index 19a0fc83..454423d6 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-须弥-失落的苗圃.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-须弥-失落的苗圃.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "(恢复)狗粮-须弥-失落的苗圃", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": 4021.7421875, "y": -719.65478515625, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": 4039.89453125, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json index 82b12415..aa0115b8 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { @@ -450,7 +452,7 @@ { "x": -3740.294921875, "y": -4437.44921875, - "type": "path", + "type": "target", "move_mode": "walk" }, { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json index 96eaf438..589d8131 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-枫丹庭区-3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-枫丹庭区-3个.json index 0f1cb7bf..61125b4e 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-枫丹庭区-3个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-枫丹庭区-3个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-枫丹庭区-3个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json index 28e2ca66..64635ac7 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-白露区-秋分山东侧-2个-f~m", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { @@ -24,8 +26,8 @@ "#" : "1" }, { - "x": 3883.02880859375, - "y": 2526.17431640625, + "x": 3883.2314453125, + "y": 2526.55029296875, "type": "target", "move_mode": "run", "action": "combat_script", diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json index db39d5dc..736b078c 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中部塔内-9个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中部塔内-9个.json index 5c42ea92..dc9407e5 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中部塔内-9个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中部塔内-9个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-研究院区-中部塔内-9个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions":[ @@ -163,6 +165,8 @@ "y": 4920.79248046875, "type": "target", "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", "#" : "5" }, diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json index 465a51fa..5789896a 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-研究院区-学术会堂-1个/2个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json index 7a056370..65554b58 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json index 162abafc..a09824b8 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-研究院区-西北-6个/7个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { @@ -12,28 +14,23 @@ }, { - "x": 4607.05322265625, - "y": 4943.1953125, + "x": 4610.19580078125, + "y": 4933.4912109375, "type": "path", "move_mode": "run" }, { - "x": 4604.587890625, - "y": 4933.91796875, + "x": 4605.03564453125, + "y": 4934.54052734375, "type": "orientation" }, { - "x": 4604.587890625, - "y": 4933.91796875, - "type": "target", - "move_mode": "run", - "#": "1" - }, - { - "x": 4604.587890625, - "y": 4933.91796875, + "x": 4605.03564453125, + "y": 4934.54052734375, "type": "target", "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.8)", "#": "1" }, @@ -194,13 +191,9 @@ "y": 4899.99755859375, "type": "target", "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", "#": "6" - }, - { - "x": 4758.90966796875, - "y": 4899.86083984375, - "type": "pth", - "move_mode": "walk" } ], diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个-m-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个-m-f.json index 461ac1bc..7dba149d 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个-m-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个-m-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-研究院区-西南偏南-6个-m-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个-f.json index 59d9f5e2..905da7e0 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-研究院区-西南偏西-4个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ @@ -92,8 +94,8 @@ "type": "orientation" }, { - "x": 4569.19482421875, - "y": 4826.39501953125, + "x": 4568.6279296875, + "y": 4826.10546875, "type": "target", "move_mode": "walk", "action": "combat_script", diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-3个/5个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-3个/5个.json index 03339685..c09ace91 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-3个/5个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-3个/5个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-黎翡区-七天神像-3个/5个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json index 8a1fcc73..af5bfc4b 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-枫丹-黎翡区-芒索斯山东-3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个-f.json index 98d899b2..7121c39c 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-海祇岛-东方小岛-2个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个-f.json index 7bcfb0dc..2ce92c96 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-海祇岛-望泷村西南-4个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json index ab132a6d..f384ccbd 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个-f.json index cad0b0d4..375035ee 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个-f.json @@ -1,15 +1,16 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-清籁岛-平海砦西-8个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { "x": -4185.0078125, "y": -4244.4521484375, - "type": "teleport", - "move_mode": "walk" + "type": "teleport" }, { "x": -4164.5859375, @@ -22,7 +23,6 @@ "y": -4245.0068359375, "type": "target", "move_mode": "walk", - "action": "", "#": "1" }, { @@ -30,7 +30,6 @@ "y": -4244.984375, "type": "target", "move_mode": "walk", - "action": "", "#": "1" }, @@ -39,7 +38,6 @@ "y": -4241.2314453125, "type": "target", "move_mode": "walk", - "action": "", "#": "2" }, { @@ -58,7 +56,6 @@ "x": -4156.60546875, "y": -4232.4990234375, "move_mode": "walk", - "action": "", "#": "3" }, @@ -87,7 +84,6 @@ "y": -4234.4384765625, "type": "target", "move_mode": "walk", - "action": "", "#": "4" }, { @@ -114,7 +110,6 @@ "y": -4260.6796875, "type": "target", "move_mode": "walk", - "action": "", "#": "5" }, @@ -136,22 +131,21 @@ "y": -4237.1826171875, "type": "target", "move_mode": "walk", - "action": "", "#": "6" }, - + { - "x": -4217.38671875, - "y": -4248.9228515625, - "type": "path", - "move_mode": "run" + "x": -4216.53125, + "y": -4251.341796875, + "type": "target", + "move_mode": "run", + "#": "7" }, { - "x": -4216.552734375, - "y": -4251.2568359375, + "x": -4216.53125, + "y": -4251.341796875, "type": "target", "move_mode": "walk", - "action": "", "#": "7" }, @@ -166,7 +160,6 @@ "y": -4300.0029296875, "type": "target", "move_mode": "run", - "action": "", "#": "8" }, { @@ -174,7 +167,6 @@ "y": -4300.9140625, "type": "target", "move_mode": "walk", - "action": "", "#": "8" } ] diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个-f.json index 609c42fc..20d3225d 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-清籁岛-浅濑神社-3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个-f.json index b8a7e410..07353a82 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-清籁岛-越石村-8个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个-f.json index 16b8f18b..dc0c8d71 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-神无冢-东-5个/6个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json index 9f75e192..4de00ec5 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-神无冢-九条阵屋-2个/3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json index 8841a0b7..8b7df670 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-神无冢-堇色之庭-4个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个-f.json index be7de009..c133ebc6 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-鹤观-东偏中-2个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个-f.json index de703829..4fbe9dd8 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "狗粮-稻妻-鹤观-南-2个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json index f3013cf6..8a6d3c83 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "(恢复)狗粮-枫丹-研究院区", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json index c81e21f1..98cbcc5c 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "(恢复)狗粮-枫丹-黎翡区", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json index 0ff54509..3d33a9a6 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "(恢复)狗粮-稻妻-清籁岛", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json index ae96cf67..9a5ff993 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "(恢复)狗粮-稻妻-神无冢", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json index 986c8186..4643f41d 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔-灵谜纹+13个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔-灵谜纹+13个.json index e02062ec..dd1a1804 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔-灵谜纹+13个.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔-灵谜纹+13个.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "【额外】狗粮-纳塔-灵谜纹+13个", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json index fd181438..1d6139ee 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "【额外】狗粮-纳塔-鸡屁股+8个/9个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ @@ -130,15 +132,15 @@ }, { - "x": 8123.28515625, - "y": -1275.88720703125, + "x": 8124.2548828125, + "y": -1275.65576171875, "type": "target", "move_mode": "walk", "#": "6" }, { - "x": 8123.25244140625, - "y": -1275.92138671875, + "x": 8124.2548828125, + "y": -1275.65576171875, "type": "target", "move_mode": "walk", "#": "6" diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个-f.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个-f.json index b595d057..0fcf3947 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个-f.json +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个-f.json @@ -1,8 +1,10 @@ { "info": { - "name": "", + "name": "【额外】狗粮-须弥-水天丛林+7个-f", "type": "collect", - "author":"Yang-z" + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, "positions": [ { diff --git a/repo/js/AutoArtifacts_A_B_Extra/main.js b/repo/js/AutoArtifacts_A_B_Extra/main.js index bc815e30..8be4be78 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/main.js +++ b/repo/js/AutoArtifacts_A_B_Extra/main.js @@ -214,12 +214,15 @@ // 配置自动拾取,根据文件名指定信息,确定是否强制交互(快速拾取) let forceInteraction = filePath.search("-f") != -1; // - dispatcher.addTimer(new RealtimeTimer("AutoPick", { "forceInteraction": forceInteraction })); + if (!isToRestore) dispatcher.addTimer(new RealtimeTimer("AutoPick", { "forceInteraction": forceInteraction })); //执行路径追踪脚本 log.info(filePath); await pathingScript.runFile(filePath); + // 配置强制拾取为关闭状态 + dispatcher.addTimer(new RealtimeTimer("AutoPick", { "forceInteraction": false })); + // 地图缩放按键同某些地图标识重叠,导致识别失败(bgi[v0.43.0]后引入) // // 完成路径后,放大地图,脚本中调用就近传送。仍可能被缩小回去。不可行 // let shouldResizeMap_after = filePath.search("~m") != -1; diff --git a/repo/js/AutoArtifacts_A_B_Extra/manifest.json b/repo/js/AutoArtifacts_A_B_Extra/manifest.json index 59096c50..95ce065f 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/manifest.json +++ b/repo/js/AutoArtifacts_A_B_Extra/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "狗粮ABE路线,自动拾取分解", - "version": "2.5.0", + "version": "2.5.3", "bgi_version": "0.42.0", "description": "圣遗物狗粮AB及额外路线,自动轮换,自动分解,就近恢复。", "authors": [ diff --git a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/assets/AutoPath/好感-张牙舞爪的恶党-循环(二净甸).json b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/assets/AutoPath/好感-张牙舞爪的恶党-循环(二净甸).json index e71e27c8..83844d1f 100644 --- a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/assets/AutoPath/好感-张牙舞爪的恶党-循环(二净甸).json +++ b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/assets/AutoPath/好感-张牙舞爪的恶党-循环(二净甸).json @@ -10,7 +10,7 @@ "positions": [ { "id": 1, - "action": "exit_and_relogin", + "action": "", "move_mode": "dash", "type": "path", "x": 3614.6240234375, diff --git a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/assets/AutoPath/好感-张牙舞爪的恶党-循环(二净甸刷肉版).json b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/assets/AutoPath/好感-张牙舞爪的恶党-循环(二净甸刷肉版).json index 3b471da1..89fcc153 100644 --- a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/assets/AutoPath/好感-张牙舞爪的恶党-循环(二净甸刷肉版).json +++ b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/assets/AutoPath/好感-张牙舞爪的恶党-循环(二净甸刷肉版).json @@ -12,7 +12,7 @@ "id": 1, "x": 3614.63, "y": -521.6, - "action": "exit_and_relogin", + "action": "", "move_mode": "dash", "action_params": "", "type": "path" diff --git a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/main.js b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/main.js index 18aaa878..cf64520a 100644 --- a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/main.js +++ b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/main.js @@ -43,7 +43,7 @@ // 优先使用小地图坐标 await genshin.returnMainUi(); currentPosition = genshin.getPositionFromMap(); - log.info(`当前小地图坐标: X=${currentPosition.X}, Y=${currentPosition.Y}`); + // log.info(`当前小地图坐标: X=${currentPosition.X}, Y=${currentPosition.Y}`); } catch (error) { // 如果失败,使用大地图坐标 log.warn(`获取小地图坐标失败,使用大地图坐标。错误信息: ${error}`); @@ -51,7 +51,7 @@ keyPress("M"); await sleep(2000); currentPosition = genshin.getPositionFromBigMap(); - log.info(`当前大地图坐标: X=${currentPosition.X}, Y=${currentPosition.Y}`); + // log.info(`当前大地图坐标: X=${currentPosition.X}, Y=${currentPosition.Y}`); keyPress("Escape"); } @@ -60,11 +60,9 @@ const dy = currentPosition.Y - targetPosition.Y; const distance = Math.sqrt(dx * dx + dy * dy); - log.info(`与目标坐标的距离为: ${distance}`); - // 判断距离是否在允许范围内 if (distance <= maxDistance) { - log.info("距离在突发任务范围内,循环继续"); + log.info(`距离:${distance} 在突发任务范围内,循环继续`); return true; } else { log.warn("距离超出突发任务范围,执行触发线路"); @@ -73,7 +71,7 @@ } // 好感核心函数 - async function AutoFriendship(runTimes, statueTimes, GetMeatMode, startTime) { + async function AutoFriendship(runTimes, statueTimes, GetMeatMode, delayTime, startTime, ocrTimeout) { for (let i = 0; i < runTimes; i++) { if ((i + 1) % statueTimes === 0) { // 判断当前循环次数否达到去神像设置值 await genshin.tpToStatueOfTheSeven(); @@ -81,24 +79,48 @@ } else if (!await comparePosition()) { // 对比触发位置坐标,如果不符合预期坐标则重新执行触发线路 log.info(`导航至突发任务(张牙舞爪的恶党)触发位置(二净甸)`); await AutoPath(`好感-张牙舞爪的恶党-触发位置(二净甸)`); + await sleep(delayTime); notification.send(`已抵达突发任务(张牙舞爪的恶党)触发位置`); } - // 开启急速拾取 - dispatcher.addTimer(new RealtimeTimer("AutoPick", { - "forceInteraction": true - })); - log.info(`当前次数:${i + 1}/${runTimes}`); - await AutoPath(`好感-张牙舞爪的恶党-循环${GetMeatMode ? '(二净甸刷肉版)' : '(二净甸)'}`); - // 关闭急速拾取 - dispatcher.addTimer(new RealtimeTimer("AutoPick", { - "forceInteraction": false - })); - // 判定本轮循环是否执行完毕 - if (await comparePosition()) { - log.info(`已完成次数:${i + 1}/${runTimes}`); + + await genshin.relogin(); + + // OCR识别是否触发任务(默认30秒超时) + let ocrStatus = false; + let ocrStartTime = Date.now(); + while (Date.now() - ocrStartTime < ocrTimeout) { + let captureRegion = captureGameRegion(); + let resList = captureRegion.findMulti(RecognitionObject.ocr(0, 200, 300, 300)); + for (let o = 0; o < resList.count; o++) { + let res = resList[o]; + if (res.text.includes("张牙") || res.text.includes("舞爪") || res.text.includes("恶党") || res.text.includes("打倒") || res.text.includes("所有") || res.text.includes("鳄鱼")) { + ocrStatus = true; + break; + } + } + } + + if (ocrStatus) { + log.info(`当前次数:${i + 1}/${runTimes}`); + // 开启急速拾取 + dispatcher.addTimer(new RealtimeTimer("AutoPick", { + "forceInteraction": true + })); + await AutoPath(`好感-张牙舞爪的恶党-循环${GetMeatMode ? '(二净甸刷肉版)' : '(二净甸)'}`); + // 关闭急速拾取 + dispatcher.addTimer(new RealtimeTimer("AutoPick", { + "forceInteraction": false + })); + // 判定本轮循环是否执行完毕 + if (await comparePosition()) { + log.info(`已完成次数:${i + 1}/${runTimes}`); + } else { + i = i - 1; // 退回这次次数 + log.warn(`判定本轮循环执行失败,退回本轮执行次数:${i + 1}/${runTimes}`); + } } else { - i = i - 1; // 退回这次次数 - log.warn(`判定本轮循环执行失败,退回本轮执行次数:${i + 1}/${runTimes}`); + notification.send(`未识别到突发任务(张牙舞爪的恶党),兽肉好感结束`); + break; } const estimatedCompletion = calculateEstimatedCompletion(startTime, i + 1, runTimes); logTimeTaken(startTime); @@ -114,6 +136,9 @@ // 神像相关参数 let goStatue = settings.goStatue ? settings.goStatue : false; let statueTimes = goStatue ? (isNaN(settings.statueTimes) ? 5 : settings.statueTimes) : 0; + // 延迟相关 + let delayTime = settings.delayTime ? settings.delayTime * 1000 : 0; + let ocrTimeout = settings.ocrTimeout ? settings.ocrTimeout * 1000 : 30000; // 卡时间相关参数 if (settings.waitTimeMode) { let maxTimes = settings.maxTimes ? settings.maxTimes : runTimes; @@ -170,7 +195,6 @@ } const startTime = Date.now(); - await AutoFriendship(runTimes, statueTimes, GetMeatMode, startTime); - log.info(`兽肉好感运行总时长:${logTimeTaken(startTime)}`); + await AutoFriendship(runTimes, statueTimes, GetMeatMode, delayTime, startTime, ocrTimeout); })(); \ No newline at end of file diff --git a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/manifest.json b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/manifest.json index fdef3441..0516071a 100644 --- a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/manifest.json +++ b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/manifest.json @@ -1,11 +1,13 @@ { "manifest_version": 1, "name": "兽肉好感:自动好感度&刷两只鳄鱼兽肉&卡时间", - "version": "1.3.3", + "version": "1.3.5", + "bgi_version": "0.44.6", "description": "通过突发事件:张牙舞爪的恶党刷兽肉,并顺带获取好感度(好感度超过10次后不再获取),请使用满员好感度队伍,并为全体队伍角色配置相应的战斗策略", "authors": [ { - "name": "起个名字好难的喵" + "name": "起个名字好难的喵", + "links":"https://github.com/MisakaAldrich" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/settings.json b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/settings.json index 98effd4f..90b8a881 100644 --- a/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/settings.json +++ b/repo/js/AutoFriendshipEvilBaresItsFangsGetRawMeat/settings.json @@ -43,5 +43,15 @@ "name": "statueTimes", "type": "input-text", "label": "返回神像周期(选填,默认为5次/循环)" + }, + { + "name": "delayTime", + "type": "input-text", + "label": "到达触发地点后的延迟时间(秒)" + }, + { + "name": "ocrTimeout", + "type": "input-text", + "label": "OCR超时时间(选填,默认为30秒)" } ] \ No newline at end of file diff --git a/repo/js/AutoFriendship鸡腿/main.js b/repo/js/AutoFriendship鸡腿/main.js index baaf18c1..9bb893a4 100644 --- a/repo/js/AutoFriendship鸡腿/main.js +++ b/repo/js/AutoFriendship鸡腿/main.js @@ -81,6 +81,7 @@ } function isPositiveInteger(value) { + value = Number(value); return Number.isInteger(value) && value > 0; } // 启用自动拾取的实时任务 diff --git a/repo/js/AutoSereniteaPot/main.js b/repo/js/AutoSereniteaPot/main.js index 5b0a0aad..8e957979 100644 --- a/repo/js/AutoSereniteaPot/main.js +++ b/repo/js/AutoSereniteaPot/main.js @@ -1,29 +1,217 @@ async function main() { - // 先提示一下一般都需要配置移动路线 + // 检查配置 + checkSettings(); + + // 打开背包并切换到小道具 + await openBackpack(); + + // 查找并使用尘歌壶 + await findAndUseSereniteaPot(); + + // 等待进入尘歌壶 + await waitForEnteringSereniteaPot(); + + // 找到阿圆 + await moveToAYuan(); + + // 与阿圆对话 + keyPress("F"); + await sleep(2000); + click(960, 540); + await sleep(2000); + + // 领取好感度以及洞天宝钱 + await collectRewards(); + // 兑换物品 + await exchangeItems(); + + // 关闭与阿圆的对话 + await sleep(1000) + click(1360, 800); + await sleep(1000); + click(960, 540); +} + +async function exchangeItems() { + if (!settings.itemsToBuy) { + log.warn("未配置要购买的物品"); + return; + } + + log.info("开始兑换物品"); + // 点击洞天百宝 + click(1386, 655); + await sleep(1000); + // 点击第一个选项卡 + click(712, 50) + await sleep(1000); + + // 获取用户想要购买的物品列表 + const itemsToBuy = settings.itemsToBuy.split(',').map(item => item.trim()); + log.info(`要购买的物品: ${itemsToBuy.join(', ')}`); + + // 设置固定的坐标 + const firstItemX = 193; + const firstItemY = 196; + const xOffset = 168; // 水平方向上的间距 + const yOffset = 190; // 垂直方向上的间距 + const itemsPerRow = 7; // 每行物品数量 + + // 临时变量,已找到的物品数组和上一个物品名称变量 + const foundItems = []; + let lastItemName = ""; + + // 遍历所有物品 + outerLoop: for (let row = 0; row < 3; row++) { + for (let col = 0; col < itemsPerRow; col++) { + // 计算当前物品中心点坐标 + const centerX = firstItemX + (xOffset * col); + const centerY = firstItemY + (yOffset * row); + + // 需要重复检查这个位置的物品 + let keepCheckingCurrentPosition = true; + + // 循环检查当前位置的物品,直到不再找到匹配的物品 + while (keepCheckingCurrentPosition) { + // 点击物品中心 + click(centerX, centerY); + await sleep(1000); + + // 获取物品详情区域截图 + let screen = captureGameRegion(); + let targetRegion = screen.DeriveCrop(1308, 120, 491, 56); + + // 使用OCR识别物品名称 + let ocrRo = RecognitionObject.Ocr(0, 0, targetRegion.Width, targetRegion.Height); + let ocrResult = targetRegion.find(ocrRo); + + if (ocrResult.isEmpty()) { + throw new Error("无法识别物品名称,请检查具体原因"); + } + + const itemName = ocrResult.Text.trim(); + // 检查是否与上一个物品名称相同 + if (itemName === lastItemName) { + break outerLoop; + } else { + lastItemName = itemName; + } + + // 检查物品是否已售罄 + let soldOutRegion = screen.DeriveCrop(1308, 403, 491, 100); + let soldOutOcrRo = RecognitionObject.Ocr(0, 0, soldOutRegion.Width, soldOutRegion.Height); + let soldOutResult = soldOutRegion.find(soldOutOcrRo); + + // 如果发现任何已售罄的物品,就认为所有可购买的物品都已检查过,结束搜索 + log.debug(`识别到的文字: ${soldOutResult.Text}`) + if (!soldOutResult.isEmpty() && soldOutResult.Text.includes("已售罄")) { + break outerLoop; + } + + // 检查是否是用户想要购买的物品(使用包含关系) + let matchedItem = itemsToBuy.find(item => itemName.includes(item)); + + if (matchedItem) { + log.info(`找到要购买的物品: ${itemName} (匹配: ${matchedItem})`); + // 记录已找到的物品 + if (!foundItems.includes(matchedItem)) { + foundItems.push(matchedItem); + } + + log.info(`开始购买物品: ${itemName}`); + + // 执行购买流程 + // 1. 鼠标移动到起始位置 + moveMouseTo(1448, 693); + await sleep(300); + + // 2. 按下鼠标左键 + leftButtonDown(); + await sleep(300); + + // 3. 移动到结束位置 + moveMouseTo(1753, 693); + await sleep(300); + + // 4. 松开鼠标左键 + leftButtonUp(); + await sleep(500); + + // 5. 点击确认按钮 + click(1698, 1022); + await sleep(1000); + + // 6. 关闭弹窗 + click(962, 763); + await sleep(1000); + + log.info(`成功购买物品: ${itemName}`); + + // 检查是否已找到所有物品 + if (foundItems.length === itemsToBuy.length) { + log.info("已找到所有需要购买的物品,提前结束搜索"); + break outerLoop; + } + } else { + // 如果不匹配,不继续检查当前位置 + keepCheckingCurrentPosition = false; + } + } + } + } + + // 如果浏览完所有格子后仍有未找到的物品 + const notFound = itemsToBuy.filter(item => !foundItems.includes(item)); + if (notFound.length > 0) { + log.warn(`浏览完所有物品后,以下物品未找到或已售罄: ${notFound.join(', ')}`); + } + + // 关闭兑换页面 + await sleep(1000); + click(1841, 47) + await sleep(1000); + +} + +// 检查配置 +function checkSettings() { if (!settings.route) { log.warn("当前未配置进入尘歌壶以后的路线,脚本可能无法正常运行"); } - // 打开背包 + // 记录是否跳过领取角色好感和洞天宝钱 + if (settings.skipCharacterReward) { + log.info("当前配置:不领取角色好感"); + } + + if (settings.skipTreasureReward) { + log.info("当前配置:不领取洞天宝钱"); + } +} + +// 打开背包并切换到小道具 +async function openBackpack() { keyPress("B"); await sleep(1000); - - // 点击小道具选项卡(1048,50) click(1048, 50); await sleep(1000); +} - // 查找并点击尘歌壶 +// 查找并使用尘歌壶 +async function findAndUseSereniteaPot() { await findSereniteaPot(); await sleep(1000); - - // 进入尘歌壶,等待加载动画 keyPress("F"); +} + +// 等待进入尘歌壶 +async function waitForEnteringSereniteaPot() { // 先等待5秒,应该不会比这快 await sleep(5000); + // 等待传送完成 let isEntering = true; while (isEntering) { - // 截图检测传送状态 let screen = captureGameRegion(); let targetRegion = screen.DeriveCrop(85, 1025, 69, 28); let ocrRo = RecognitionObject.Ocr(0, 0, targetRegion.Width, targetRegion.Height); @@ -36,40 +224,44 @@ async function main() { // 进入尘歌壶以后,等待1秒 await sleep(1000); +} - // 移动到阿圆 - await moveToAYuan(); +// 移动到阿圆并领取奖励 +async function collectRewards() { log.info("开始领取好感度以及洞天宝钱"); - // 按下 F - keyPress("F"); - await sleep(2000); - // 点击屏幕中间跳过对话 - click(960, 540); - await sleep(2000); - // 点击“信任等阶” - click(1370, 432) - await sleep(1000); - // 领取好感 - click(1810, 715) - await sleep(1000); - // 如果弹出“洞天赠礼”,把它关闭 - click(1346, 300) + click(1370, 432); await sleep(1000); + + // 领取好感度 + if (!settings.skipCharacterReward) { + log.info("领取角色好感度"); + click(1810, 715); + await sleep(1000); + + // 关闭洞天赠礼弹窗 + click(1346, 300); + await sleep(1000); + } else { + log.info("根据自定义配置,跳过领取角色好感度"); + } + // 领取洞天宝钱 - click(1080, 929) - await sleep(1000); - // 如果弹出“洞天财瓮”,把它关闭 - click(1346, 300) - await sleep(1000); - // 点击右上角的X - click(1864, 47) + if (!settings.skipTreasureReward) { + log.info("领取洞天宝钱"); + click(1080, 929); + await sleep(1000); + + // 关闭洞天财瓮弹窗 + click(1346, 300); + await sleep(1000); + } else { + log.info("根据自定义配置,跳过领取洞天宝钱"); + } + + // 关闭对话 + click(1864, 47); await sleep(3000); - // 点击“再见。” - click(1360, 800) - await sleep(1000); - // 点击屏幕中间跳过对话 - click(960, 540); } async function findSereniteaPot() { diff --git a/repo/js/AutoSereniteaPot/manifest.json b/repo/js/AutoSereniteaPot/manifest.json index 2a9d92e3..4e2b421e 100644 --- a/repo/js/AutoSereniteaPot/manifest.json +++ b/repo/js/AutoSereniteaPot/manifest.json @@ -1,8 +1,8 @@ { "manifest_version": 1, "name": "尘歌壶一条龙-领取洞天宝钱和角色好感", - "version": "0.0.2", - "description": "自动放置并进入尘歌壶,寻找阿圆,领取洞天宝钱和好感(需要配置进入尘歌壶以后的路线)(更新时间:5.5版本)", + "version": "0.0.3", + "description": "自动放置并进入尘歌壶,寻找阿圆,领取洞天宝钱和好感(需要配置进入尘歌壶以后的路线),支持自动购买指定物品(更新时间:5.5版本)", "authors": [ { "name": "bling-yshs", diff --git a/repo/js/AutoSereniteaPot/settings.json b/repo/js/AutoSereniteaPot/settings.json index 3f356f86..cddaab8b 100644 --- a/repo/js/AutoSereniteaPot/settings.json +++ b/repo/js/AutoSereniteaPot/settings.json @@ -3,5 +3,20 @@ "name": "route", "type": "input-text", "label": "进入尘歌壶以后寻找阿圆的路径\n填写规则:方向键+空格+时间(单位:毫秒)\n多个路径用英文逗号隔开,例如:A 1000,S 1500,A 500" + }, + { + "name": "itemsToBuy", + "type": "input-text", + "label": "想要购买的物品名称,支持只填写部分文字\n多个物品用英文逗号隔开,例如:祝圣精华,树脂" + }, + { + "name": "skipCharacterReward", + "type": "checkbox", + "label": "不领取角色好感(注意是不领取)" + }, + { + "name": "skipTreasureReward", + "type": "checkbox", + "label": "不领取洞天宝钱(注意是不领取)" } ] diff --git a/repo/js/Autopermission/main.js b/repo/js/Autopermission/main.js index 4fecc460..75b10654 100644 --- a/repo/js/Autopermission/main.js +++ b/repo/js/Autopermission/main.js @@ -1,9 +1,6 @@ (async function () { - - setGameMetrics(1920, 1080, 1.5) - - log.info("请确保执行脚本时处于主界面"); - + log.info("请确保执行脚本前能够通过ESC回到主界面"); + await genshin.returnMainUi(); keyPress("VK_F2") await sleep(1000); click(330,1010) //点击世界权限 @@ -26,6 +23,7 @@ default: click(330, 850); // 不允许 log.info("锁门"); - break; -} -})(); \ No newline at end of file + break; + } + await genshin.returnMainUi(); // 结束后回到主界面 +})(); diff --git a/repo/js/Auto全自动“枫丹”地脉花/AAA 地脉花注意事项.txt b/repo/js/Auto全自动“枫丹”地脉花/AAA 地脉花注意事项.txt index 42e7cb19..0ee01a63 100644 --- a/repo/js/Auto全自动“枫丹”地脉花/AAA 地脉花注意事项.txt +++ b/repo/js/Auto全自动“枫丹”地脉花/AAA 地脉花注意事项.txt @@ -42,4 +42,10 @@ v.1.2版本:20250414 1、优化切换队伍时间,避免可能得切换队伍失败导致退出的情况。 2、修复线路2在快速寻找模式下识别不准确问题。 3、优化提前出地脉花的检测时间。 -4、特殊处理:1、枫丹路线2秋分山西侧锚点左下第五朵花特殊处理,避免错误传送到地下螃蟹,直接跑过去。 \ No newline at end of file +4、特殊处理:1、枫丹路线2秋分山西侧锚点左下第五朵花特殊处理,避免错误传送到地下螃蟹,直接跑过去。 + +v.1.3版本:202500422 +1、优化最后领奖时检测是否误触地脉之花导致任务失败的问题。 +2、修复模糊模式下找到地脉花但没有的情况下会继续寻找地脉花的问题。 +3、优化模糊查找下的开始线路。 +4、修复由于检测地脉之花页面导致的软件报错。 \ No newline at end of file diff --git a/repo/js/Auto全自动“枫丹”地脉花/main.js b/repo/js/Auto全自动“枫丹”地脉花/main.js index f4845180..0253bafe 100644 --- a/repo/js/Auto全自动“枫丹”地脉花/main.js +++ b/repo/js/Auto全自动“枫丹”地脉花/main.js @@ -267,13 +267,16 @@ let XIAN23 = await imageRecognition(DIMAIHUA,1,0,0,1076,651,160,142); if ( (XIAN23.y+651)<=720){AutofilePath=3;log.info("找到线路'3'");await leftButtonUp();return true}//return true if ( (XIAN23.y+651)>720){AutofilePath=2;log.info("找到线路'2'");await leftButtonUp();return true}//return true + let XIANmo = await imageRecognition(DIMAIHUA,0.5,0,0);if (XIANmo.found){if(XIANmo.x<969){mo=0;}else if(XIANmo.x>1171){mo=2;}else{mo=1;}} let XIAN1 = await imageRecognition(DIMAIHUA,1,0,0,714,633,130,124);if (XIAN1.found){AutofilePath=1;log.info("找到线路'1'");await leftButtonUp();return true}//return true await moveMouseTo(132,583); await sleep(200); let XIAN4 = await imageRecognition(DIMAIHUA,1,0,0,884,497,107,87);if (XIAN4.found){AutofilePath=4;log.info("找到线路'4'");await leftButtonUp();return true}//return true + XIANmo = await imageRecognition(DIMAIHUA,0.5,0,0);if (XIANmo.found){mo=3} await moveMouseTo(1064,1026); await sleep(200); let XIAN5 = await imageRecognition(DIMAIHUA,1,0,0,680,148,87,72);if (XIAN5.found){AutofilePath=5;log.info("找到线路'5'");await leftButtonUp();return true}// + XIANmo = await imageRecognition(DIMAIHUA,0.5,0,0);if (XIANmo.found){mo=4}else{mo=5} AutofilePath =0; await leftButtonUp(); return false @@ -308,20 +311,22 @@ await genshin.setBigMapZoomLevel(1.5); for (let i = 0; i < coordArray.length; i++) { - const coord = coordArray[i]; - const coord2 = coordArray2[i]; + const coord = coordArray[i+mo]; + const coord2 = coordArray2[i+mo]; await genshin.moveMapTo(coord.x,coord.y,"枫丹"); await genshin.setBigMapZoomLevel(1.5); let DIMAI = await imageRecognition(DIMAIHUA,1.5,0,0,coord2.x,coord2.y,coord2.w,coord2.h); if (DIMAI.found) { log.info("地脉花找到,但不在初始位置,尝试寻找……"); - AutofilePath=i+1;FINDagin = 1;return true; + AutofilePath=i+1+mo;FINDagin = 1;return true; } await genshin.returnMainUi(); if (i === 5){return false;} } await genshin.returnMainUi(); + mo=0; //重置模糊量 + log.info("111"); return true; } @@ -372,7 +377,7 @@ let SHUY = await Textocr("使用原粹树脂",2,1,0,877,726,193,53); let SHUB = await Textocr("补充原粹树脂",1,0,0,877,726,193,53); await sleep(1000); - if (SHUB.found){log.warn("树脂消耗完毕,结束任务");await keyPress("VK_ESCAPE");await sleep(1000);if (FINDagin===1){SHUOVER=1;log.warn("模糊模式,地脉不在初始位置,继续寻找!");return true;}else{SHUOVER=2;return false;}} + if (SHUB.found){log.warn("树脂消耗完毕,结束任务");await keyPress("VK_ESCAPE");FINDagin=0;await sleep(1000);SHUOVER=2;return false;} else if (SHUN.found || SHUY.found) { log.info("找到树脂,已经使用...");FINDagin=0;dispatcher.addTimer(new RealtimeTimer("AutoPick", { forceInteraction: true })); return true; }else{ @@ -396,6 +401,7 @@ * @returns 无返回值 */ async function checkRewardPage(timeout = 1000) { + if (!shouldContinueChecking) { return; // 如果不应该继续检测,则直接返回 } @@ -488,6 +494,7 @@ var Rewards = settings.Rewards ? settings.Rewards : false; // ture 领取冒险点奖励,false 不领取冒险点奖励 var Fligtin = false; //领取冒险点奖励标志。 var FINDagin = 0; //地脉花寻找标志。lv.1.2新增,用于判断是否找线路余下地脉花。 + var mo=0; //线路模糊标志 @@ -495,13 +502,10 @@ if (Rewards){log.warn("结束后领励练点和提交每日!");if(settings.nh === undefined || settings.nh === "") {log.warn("好感队未配置,领奖励时不切换队伍")}} if (settings.nh === undefined || settings.nh === "") { log.warn("好感队禁用!");haoganq=0}else{var haogandui = settings.nh;haoganq=1;if(settings.n === undefined ) {throw new Error("好感队已经设置,请填战斗队伍!")}} if (settings.n === undefined || settings.n === "") { log.warn("队伍名称未配置,不更换队伍!");SHUOVER=1;} - if (SHUV === 1) {log.warn("线路模式 :'单线路!'");}else{log.warn("线路模式 :'树脂耗尽模式,强制打完整体线路!'");rawTimes=12} + if (SHUV == 1) {log.warn("线路模式 :'单线路!'");}else{log.warn("线路模式 :'树脂耗尽模式,强制打完整体线路!'");rawTimes=12} if (color == 1) {log.warn("地脉类型 :'蓝色经验书花!'");}else{log.warn("地脉类型 :'黄色摩拉花!'")} let nowuidString = settings.nowuid ? settings.nowuid : ""; - - - // UID获取存在概率不成功,慎用!请更换背景纯色的名片提高OCR成功率 let uidNumbers = nowuidString.match(/\d+/g); if (nowuidString) { @@ -520,8 +524,7 @@ SHUOVER = 2; // 假设 SHUOVER = 2 表示需要停止程序 break; } - } - + } } }else{log.warn("未配置禁用UID,继续进行!");} @@ -530,7 +533,7 @@ //根据SHUOVER决定模式 while (SHUOVER<=1){ Fligtin = true ; //领取冒险点奖励标志。 - if (!(await PathCheak(0))){if (!(await PathCheak(1))){throw new Error("未找到地脉花,退出!")}} + if (!(await PathCheak(0))){if (!(await PathCheak(1))){throw new Error("未找到地脉花,退出!")}}else{mo=0} //第一次执行选择队伍 if (SHUOVER == 0){await genshin.returnMainUi(); await sleep(1000);await genshin.SwitchParty(settings.n);await sleep(500);} //开始寻找并执行地脉花自动。 @@ -542,9 +545,18 @@ log.warn("本次地脉花路线已执行完毕。"); //领取冒险点奖励,切换好感队伍 if (Rewards && Fligtin) { - if(!(settings.nh === undefined)){log.info(`切换好感队伍:'${haogandui}'`);await genshin.returnMainUi(); await sleep(1000);await genshin.SwitchParty(haogandui);}else{log.warn("好感队未配置,领奖励时不切换队伍")} - await genshin.goToAdventurersGuild("枫丹");} - if (LCBMODEL){await dispatcher.runTask(new SoloTask("LCBAutoPickOPEN"));}//LCB自编译版本命令,公版BETTERGI无效===========LCB + if(!(settings.nh === undefined)){ + shouldContinueChecking = true; + checkRewardPage();// 执行自动战斗并同步检测领奖页面 + log.info(`切换好感队伍:'${haogandui}'`); + await genshin.returnMainUi(); await sleep(1000); + await genshin.SwitchParty(haogandui); + }else{log.warn("好感队未配置,领奖励时不切换队伍")} + await genshin.goToAdventurersGuild("枫丹"); + shouldContinueChecking = false; + await sleep(2000); + } + if (LCBMODEL){await dispatcher.runTask(new SoloTask("LCBAutoPickOPEN"));}//LCB自编译版本命令,公版BETTERGI无效===========LCB } catch (error) { log.error(`执行过程中发生错误:${error.message}`); }finally{ diff --git a/repo/js/Auto全自动“枫丹”地脉花/manifest.json b/repo/js/Auto全自动“枫丹”地脉花/manifest.json index 0823e1df..4bdc1e01 100644 --- a/repo/js/Auto全自动“枫丹”地脉花/manifest.json +++ b/repo/js/Auto全自动“枫丹”地脉花/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "地脉花-可禁UID&领每日&好感队切换", - "version": "1.2", + "version": "1.3", "bgi_version": "0.44.3", "description": "枫丹地脉花,蓝花金花通用。生存压力大,请带盾奶;避免纯水输出。地脉花特殊,请注意说明文件。QQ:119996800(茶包) 加我请说明来意。", "authors": [ diff --git a/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/ArtifactsButton.png b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/ArtifactsButton.png new file mode 100644 index 00000000..0f0f79f3 Binary files /dev/null and b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/ArtifactsButton.png differ diff --git a/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/AutoAddButton.png b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/AutoAddButton.png new file mode 100644 index 00000000..3d2fbfc7 Binary files /dev/null and b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/AutoAddButton.png differ diff --git a/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/ConfirmButton.png b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/ConfirmButton.png new file mode 100644 index 00000000..78d72f29 Binary files /dev/null and b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/ConfirmButton.png differ diff --git a/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/DeleteButton.png b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/DeleteButton.png new file mode 100644 index 00000000..ea48c70d Binary files /dev/null and b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/DeleteButton.png differ diff --git a/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/DestoryButton.png b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/DestoryButton.png new file mode 100644 index 00000000..1bff592c Binary files /dev/null and b/repo/js/DestroyArtifactsForMora/Assets/RecognitionObject/DestoryButton.png differ diff --git a/repo/js/DestroyArtifactsForMora/main.js b/repo/js/DestroyArtifactsForMora/main.js new file mode 100644 index 00000000..bcbe885c --- /dev/null +++ b/repo/js/DestroyArtifactsForMora/main.js @@ -0,0 +1,70 @@ +const ArtifactsButtonRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/ArtifactsButton.png")); +const DeleteButtonRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/DeleteButton.png")); +const AutoAddButtonRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/AutoAddButton.png")); +const ConfirmButtonRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/ConfirmButton.png")); +const DestoryButtonRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/DestoryButton.png")); + +/** + * @returns {Promise} + */ + +(async function() { + await genshin.returnMainUi(); + keyPress("B"); + await sleep(1500); + + let ArtifactsButton = captureGameRegion().find(ArtifactsButtonRo); + if (ArtifactsButton.isExist()) { + log.info("识别到圣遗物按钮"); + ArtifactsButton.click(); + await sleep(1500); + } + + //计算摧毁次数 + if (settings.number > 21){ + times = Math.ceil(settings.number/100) + } else if (settings.number <= 21){ + times = settings.number + } else { + times = 1 + } + try { + for (let i=0 ;i < times ; i++) { + captureGameRegion().find(DeleteButtonRo).click();// 点击摧毁 + await sleep(600); + captureGameRegion().find(AutoAddButtonRo).click();// 点击自动添加 + await sleep(600); + + if (settings.oneStar) { + await sleep(300); + click(150,150); + } + if (settings.twoStar) { + await sleep(300); + click(150,220); + } + if (settings.threeStar) { + await sleep(300); + click(150,300); + } + if (settings.fourStar) { + await sleep(300); + click(150,370); + } + + captureGameRegion().find(ConfirmButtonRo).click();// 点击快捷放入 + await sleep(600); + captureGameRegion().find(DestoryButtonRo).click();// 点击摧毁 + await sleep(600); + captureGameRegion().find(DestoryButtonRo).click();// 弹出页面点击摧毁 + await sleep(600); + click(960, 1000);// 点击空白处 + await sleep(1000); + } + } catch(ex) { + log.info("背包里的圣遗物已摧毁完毕,提前结束") + } finally { + await genshin.returnMainUi(); + } + +})(); \ No newline at end of file diff --git a/repo/js/DestroyArtifactsForMora/manifest.json b/repo/js/DestroyArtifactsForMora/manifest.json new file mode 100644 index 00000000..a4abe01e --- /dev/null +++ b/repo/js/DestroyArtifactsForMora/manifest.json @@ -0,0 +1,15 @@ +{ + "manifest_version": 1, + "name": "摧毁圣遗物换摩拉", + "version": "1.0", + "bgiVersion": "0.44.6", + "description": "图像识别改造版", + "authors": [ + { + "name": "起个名字好难的喵", + "links":"https://github.com/MisakaAldrich" + } + ], + "main": "main.js", + "settings_ui": "settings.json" +} diff --git a/repo/js/DestroyArtifactsForMora/settings.json b/repo/js/DestroyArtifactsForMora/settings.json new file mode 100644 index 00000000..b2e7e086 --- /dev/null +++ b/repo/js/DestroyArtifactsForMora/settings.json @@ -0,0 +1,27 @@ +[ + { + "name": "number", + "type": "input-text", + "label": "摧毁数量(百) 或 摧毁次数" + }, + { + "name": "oneStar", + "type": "checkbox", + "label": "摧毁一星圣遗物" + }, + { + "name": "twoStar", + "type": "checkbox", + "label": "摧毁二星圣遗物" + }, + { + "name": "threeStar", + "type": "checkbox", + "label": "摧毁三星圣遗物" + }, + { + "name": "fourStar", + "type": "checkbox", + "label": "摧毁四星圣遗物" + } +] \ No newline at end of file diff --git a/repo/js/OCR购买食材/assets/Comfirm.png b/repo/js/OCR购买食材/assets/Comfirm.png new file mode 100644 index 00000000..201445d0 Binary files /dev/null and b/repo/js/OCR购买食材/assets/Comfirm.png differ diff --git a/repo/js/OCR购买食材/main.js b/repo/js/OCR购买食材/main.js index c32afbfb..f46a095d 100644 --- a/repo/js/OCR购买食材/main.js +++ b/repo/js/OCR购买食材/main.js @@ -138,51 +138,97 @@ async function simulateKeyOperations(key, duration) { // 定义一个函数用于购买食材 async function purchaseIngredient(ingredient) { log.info(`购买食材: ${ingredient}`); - // 模拟购买操作的后续点击 - await click(1600, 1020); await sleep(1000); // 购买 - await click(1181, 600); await sleep(200); // 选择100个 - await click(1320, 780); await sleep(1000); // 最终确认 - await click(1320, 780); await sleep(1000); // 点击空白 + // 在购买前进行识别 + let ComfirmRoResult1 = await recognizeImage("assets/Comfirm.png", 1585, 1005, 31, 31, 2000); + if (ComfirmRoResult1) { + // 模拟购买操作的后续点击 + await click(1600, 1020); + await sleep(1000); // 购买 + } else { + log.warn(`食材: ${ingredient}已售罄或背包已满`); + return; // 退出操作 + } + + // 在点击选择100个之前进行识别 + let ComfirmRoResult2 = await recognizeImage("assets/Comfirm.png", 995, 766, 31, 31, 2000); + if (ComfirmRoResult2) { + log.info("选择100个的"); + await click(1181, 600); + await sleep(200); // 选择100个 + } else { + log.warn("尝试重新点击购买"); + await click(1600, 1020); + await sleep(1000); // 购买 + return; // 退出操作 + } + + await click(1320, 780); + await sleep(1000); // 最终确认 + await click(1320, 780); + await sleep(1000); // 点击空白 } + // 定义一个通用的图像识别函数 -function recognizeImage(templatePath, xMin, yMin, width, height) { - let template = file.ReadImageMatSync(templatePath); - let recognitionObject = RecognitionObject.TemplateMatch(template, xMin, yMin, width, height); - let result = captureGameRegion().find(recognitionObject); - return result.isExist() ? result : null; +function recognizeImage(templatePath, xMin, yMin, width, height, timeout = 2000) { + let startTime = Date.now(); + while (Date.now() - startTime < timeout) { + try { + let template = file.ReadImageMatSync(templatePath); + let recognitionObject = RecognitionObject.TemplateMatch(template, xMin, yMin, width, height); + let result = captureGameRegion().find(recognitionObject); + if (result.isExist()) { + return { success: true, x: result.x, y: result.y, width: result.width, height: result.height }; + } + } catch (error) { + log.error(`识别图像时发生异常: ${error.message}`); + return null; + } + } + log.warn("图像识别超时"); + return null; } // 定义一个函数用于执行OCR识别 -async function performOcr(targetText, xRange, yRange, tolerance) { - // 调整区域范围以包含容错区间 - let adjustedXMin = xRange.min - tolerance; - let adjustedXMax = xRange.max + tolerance; - let adjustedYMin = yRange.min - tolerance; - let adjustedYMax = yRange.max + tolerance; +function performOcr(targetText, xRange, yRange, tolerance, timeout = 2000) { + let startTime = Date.now(); + while (Date.now() - startTime < timeout) { + try { + // 调整区域范围以包含容错区间 + let adjustedXMin = xRange.min - tolerance; + let adjustedXMax = xRange.max + tolerance; + let adjustedYMin = yRange.min - tolerance; + let adjustedYMax = yRange.max + tolerance; - // 在捕获的区域内进行OCR识别 - let ra = captureGameRegion(); - let resList = ra.findMulti(RecognitionObject.ocr( - adjustedXMin, adjustedYMin, - adjustedXMax - adjustedXMin, adjustedYMax - adjustedYMin - )); + // 在捕获的区域内进行OCR识别 + let ra = captureGameRegion(); + let resList = ra.findMulti(RecognitionObject.ocr( + adjustedXMin, adjustedYMin, + adjustedXMax - adjustedXMin, adjustedYMax - adjustedYMin + )); - // 遍历识别结果,检查是否找到目标文本 - for (let i = 0; i < resList.count; i++) { - let res = resList[i]; - // 后处理:根据替换映射表检查和替换错误识别的字符 - let correctedText = res.text; - for (let [wrongChar, correctChar] of Object.entries(replacementMap)) { - correctedText = correctedText.replace(wrongChar, correctChar); - } + // 遍历识别结果,检查是否找到目标文本 + for (let i = 0; i < resList.count; i++) { + let res = resList[i]; + // 后处理:根据替换映射表检查和替换错误识别的字符 + let correctedText = res.text; + const replacementMap = { /* 替换映射表,例如:'0': 'O', '1': 'l' */ }; + for (let [wrongChar, correctChar] of Object.entries(replacementMap)) { + correctedText = correctedText.replace(new RegExp(wrongChar, 'g'), correctChar); + } - if (correctedText.includes(targetText)) { - // 如果找到目标文本,直接返回坐标 - return { success: true, x: res.x, y: res.y, width: res.width, height: res.height }; + if (correctedText.includes(targetText)) { + // 如果找到目标文本,直接返回坐标 + return { success: true, x: res.x, y: res.y, width: res.width, height: res.height }; + } + } + } catch (error) { + log.error(`识别文字时发生异常: ${error.message}`); + return { success: false }; } } - return { success: false }; // 未找到符合条件的文本 + log.warn("OCR识别超时"); + return { success: false }; } // 定义一个函数用于识别食材 @@ -194,7 +240,7 @@ async function recognizeIngredient(ingredient) { let ocrResult = await performOcr(ingredient, { min: 210, max: 390 }, { min: 105, max: 920 }, 10); if (ocrResult.success) { log.info(`通过 OCR 识别找到食材: ${ingredient}`); - log.info(`坐标: x=${ocrResult.x}, y=${ocrResult.y}`); + // log.info(`坐标: x=${ocrResult.x}, y=${ocrResult.y}`); await click(ocrResult.x, ocrResult.y + clickOffset); await sleep(1000); recognized = true; @@ -202,17 +248,19 @@ async function recognizeIngredient(ingredient) { // OCR 识别失败,尝试图像识别 let imagePath = `assets/Picture/${ingredientImageMap[ingredient]}`; if (!imagePath) { - log.error(`未找到食材 '${ingredient}' 的图片文件`); + log.warn(`未找到食材 '${ingredient}' 的图片文件`); return recognized; } - let imageResult = recognizeImage(imagePath, 120, 90, 95, 865); + let imageResult = recognizeImage(imagePath, 120, 90, 95, 865, 1000); if (imageResult) { log.info(`通过图像识别找到食材: ${ingredient}`); - imageResult.click(); - await sleep(1000); + // log.debug(`imageResult: ${JSON.stringify(imageResult)}`); + let x = Math.round(imageResult.x); + let y = Math.round(imageResult.y); + await click(x, y);await sleep(1000); recognized = true; } else { - log.error(`未能识别到食材: ${ingredient}`); + log.warn(`未能识别到食材: ${ingredient}`); } } @@ -240,13 +288,13 @@ async function clickSelectedIngredients(selectedIngredients, filePath, npcNames) await click(1300, 650); await sleep(500); // 双击增加低帧点击成功率 await click(1300, 650); await sleep(500); await click(1300, 650); await sleep(1000); - await click(1600, 1020); await sleep(1000); + await click(1320, 780); await sleep(1000); } else { log.info("执行其他路径文件的点击操作"); await click(1300, 580); await sleep(500); await click(1300, 580); await sleep(500); await click(1300, 580); await sleep(1000); - await click(1600, 1020); await sleep(1000); + await click(1320, 780); await sleep(1000); } } @@ -272,10 +320,10 @@ async function clickSelectedIngredients(selectedIngredients, filePath, npcNames) await sleep(500); } else { // 第三次未找到 F 图标 - log.error("尝试次数已达上限"); + log.warn("尝试次数已达上限"); return false; } - log.error(`尝试 ${f_attempts + 1}:寻找 F 图标`); + log.warn(`尝试 ${f_attempts + 1}:寻找 F 图标`); } } // 获取 F 图标的中心点 Y 坐标 @@ -284,7 +332,7 @@ async function clickSelectedIngredients(selectedIngredients, filePath, npcNames) // 在 F 图标右侧水平方向上识别 NPC 名称 let ocrResult = await performOcr(npcName, npcxRange, { min: fRes.y, max: fRes.y + fRes.height }, tolerance); if (!ocrResult.success) { - log.error(`OCR 识别未找到 NPC: ${npcName},尝试滚动`); + log.warn(`OCR 识别未找到 NPC: ${npcName},尝试滚动`); return false; } @@ -324,13 +372,39 @@ async function clickSelectedIngredients(selectedIngredients, filePath, npcNames) isAligned = await checkNpcAndFAlignment(npcName, fDialogueRo); } - if (isAligned) { // 如果水平对齐,执行交互操作 - keyPress("F"); - await sleep(2500); + if (isAligned) { + keyPress("F"); + await sleep(2500); - // 执行点击操作 +// 首次执行点击操作 await performClickOperations(filePath); + let ComfirmRoResult = null; + let C_maxAttempts = 2; // 最大尝试次数 + let C_attempts = 0; // 当前尝试次数 + + while (!ComfirmRoResult && C_attempts < C_maxAttempts) { + // 调用 recognizeImage 检测 ComfirmRo + ComfirmRoResult = await recognizeImage("assets/Comfirm.png", 1585, 1005, 31, 31, 2000); + + if (ComfirmRoResult) { + log.info("识别到购买按钮,执行食材选择"); + break; // 如果识别到,退出循环 + } else { + log.warn("未识别到购买按钮,尝试重新识别"); + } + + await sleep(500); // 等待一段时间后再次检测 + // 如果未识别到 ComfirmRo,再次执行点击操作 + await performClickOperations(filePath); + + C_attempts++; // 增加尝试次数 + } + + if (!ComfirmRoResult) { + log.warn("未在规定时间内完成对话"); + return; // 退出函数 +} // 只有在成功对齐并交互后,才执行后续的食材购买操作 // 记录已购买的食材 @@ -357,7 +431,7 @@ async function clickSelectedIngredients(selectedIngredients, filePath, npcNames) await purchaseIngredient(ingredient); purchasedIngredients.add(ingredient); } else { - log.error(`未能识别到食材: ${ingredient}`); + // log.error(`未能识别到食材: ${ingredient}`); allIngredientsFound = false; // 本轮有食材未找到 } } @@ -381,7 +455,7 @@ async function clickSelectedIngredients(selectedIngredients, filePath, npcNames) // 如果成功购买了所有食材,记录成功信息 if (allIngredientsFound) { - log.info("成功购买了所有食材!"); + log.info("该处所需食材已完成购买!"); } else { log.error("未能购买所有食材,部分食材可能未找到或未成功购买。"); } diff --git a/repo/js/OCR购买食材/manifest.json b/repo/js/OCR购买食材/manifest.json index 99c8128f..24d15306 100644 --- a/repo/js/OCR购买食材/manifest.json +++ b/repo/js/OCR购买食材/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "选择购买食材OCR", - "version": "1.20403", + "version": "1.30420", "description": "至少需要0.44版本bgi,对NPC和材料进行文字、图像识别。\n一般食材杂货在蒙德、璃月、稻妻、枫丹杂货商购买。\n10鱼肉、10螃蟹在卯师傅、珀姆、布特罗斯、阿扎莱和志村勘兵卫购买。\n咖啡豆在须弥、枫丹咖啡馆购买。\n增加对话F图像识别,增加个别字识别容错;增加香辛料,在阿扎莱处购买", "authors": [ { diff --git a/repo/js/七圣召唤七日历练全自动/main.js b/repo/js/七圣召唤七日历练全自动/main.js index 3a983056..d6e91a4e 100644 --- a/repo/js/七圣召唤七日历练全自动/main.js +++ b/repo/js/七圣召唤七日历练全自动/main.js @@ -1,5 +1,75 @@ (async function () { + + // 定义识别对象 - 玩家卡片图片 +const cardPlayerRo = RecognitionObject.TemplateMatch( file.ReadImageMatSync("assets/cardPlayer.png")); +/** + * 检测指定点位是否有玩家卡片,发现后调用对应的函数 + * @returns {Promise} 是否找到并处理了卡片 + */ +const detectCardPlayer = async () => { + // 定义要检测的6个点位及对应的处理函数 +let i =0; + const checkPoints = [ + { x: 640, y: 750, action: async () => await gotoTable1() }, // 点位1 + { x: 810, y: 790, action: async () => await gotoTable2() }, // 点位2 + { x: 810, y: 600, action: async () => await gotoTable3() }, // 点位3 + { x: 610, y: 360, action: async () => await gotoTable4() }, // 点位4 + { x: 700, y: 5, action: async () => await gotoTable5() }, // 点位5 + { x: 290, y: 530, action: async () => await gotoTable6() } // 点位6 + ]; + + await openMap(); + keyPress("M"); +await sleep(1200); +click(48, 441);//放大地图 +await sleep(500); +click(48, 441);//放大地图 +await sleep(500); +click(48, 441);//放大地图 +await sleep(500); +click(48, 441);//放大地图 +await sleep(500); +click(48, 441);//放大地图 + +await sleep(500); + + // 获取游戏区域截图 + const captureRegion = captureGameRegion(); + +for (const point of checkPoints) { +i++; + // 遍历所有检测点位 +const cropRegion = captureRegion.DeriveCrop( + point.x , + point.y , + 160, + 160 + ); + + // 在裁剪区域中查找卡片 + const result = cropRegion.Find(cardPlayerRo); + + // 如果找到卡片 + if (!result.IsEmpty()) { + log.info(`在点位${i}找到玩家卡片,执行对应操作`); + + await sleep(1000); + keyPress("ESCAPE"); + await sleep(1500); + await point.action(); // 调用该点位对应的函数 + return true; // 返回true表示已找到并处理 + + } + } + + // 所有点位都未找到 + log.info("未在任何检测点找到玩家卡片"); + textArray.length = 0; + return false; +} + + // 存储识别到的文本信息 let textArray = []; @@ -14,9 +84,10 @@ async function captureAndStoreTexts() { {x: 1070, y: 620}, {x: 1380, y: 620} ]; + // 截取区域大小 - const width = 210; - const height = 60; + const width = 240; + const height = 100; await sleep(500); keyPress("F6") await sleep(1000); @@ -28,20 +99,22 @@ async function captureAndStoreTexts() { // 遍历四个位置进行OCR识别 for (const pos of positions) { // 创建OCR识别区域 - const ocrRo = RecognitionObject.ocr(pos.x, pos.y, width, height); - + const ocrRo = RecognitionObject.ocr(pos.x, pos.y, width, height);//挑战者名字区域 + const ocrRo2 = RecognitionObject.ocr(pos.x, pos.y+100, width, height);//挑战是否完成 // 在指定区域进行OCR识别 const result = captureRegion.find(ocrRo); - + const result2 = captureRegion.find(ocrRo2); if (!result.isEmpty() && result.text) { // 存储识别结果和对应位置 + if(result2.text == "追踪"){ + log.info(`识别到文本: ${result.text} 位置: (${pos.x}, ${pos.y})`); textArray.push({ text: result.text.trim(), x: pos.x + width / 2, // 点击中心位置 y: pos.y + height / 2 - }); + });} - log.info(`识别到文本: ${result.text} 位置: (${pos.x}, ${pos.y})`); + } else { log.warn(`位置 (${pos.x}, ${pos.y}) 未识别到文本`); } @@ -99,7 +172,7 @@ async function searchAndClickTexts() { //函数:打开地图前往猫尾酒馆 async function gotoTavern() { -log.info(`前往猫尾酒馆`); + await sleep(1000); keyPress("m"); await sleep(1500); @@ -139,6 +212,8 @@ click(1610,900 );//点击挑战 await sleep(8000); await dispatcher.runTask(new SoloTask("AutoGeniusInvokation")); await sleep(3000); +click(960, 540); +await sleep(500); click(1860,50 );//避免失败卡死:点击设置 await sleep(1000); click(1600,260 );//避免失败卡死:退出对局 @@ -157,7 +232,8 @@ await sleep(900); //前往一号桌 async function gotoTable1() { - log.info(`前往1号桌`); +await gotoTavern(); +log.info(`前往1号桌`); keyDown("d"); await sleep(1500); keyUp("d"); @@ -173,6 +249,7 @@ await sleep(700); } //前往二号桌 async function gotoTable2() { +await gotoTavern(); log.info(`前往2号桌`); keyDown("d"); await sleep(1500); @@ -192,6 +269,7 @@ await sleep(700); } //前往三号桌 async function gotoTable3() { +await gotoTavern(); log.info(`前往3号桌`); keyDown("w"); await sleep(2000); @@ -206,6 +284,7 @@ await sleep(700); } //前往四号桌 async function gotoTable4() { +await gotoTavern(); log.info(`前往4号桌`); keyDown("w"); await sleep(2000); @@ -226,6 +305,7 @@ await sleep(700); } //前往一号包间 async function gotoTable5() { +await gotoTavern(); log.info(`前往1号包间`); keyDown("w"); await sleep(2500); @@ -245,6 +325,7 @@ await sleep(700); } //前往二号包间 async function gotoTable6() { +await gotoTavern(); log.info(`前往2号包间`); await sleep(1500); keyDown("d"); @@ -272,38 +353,38 @@ await sleep(500); } + async function openMap() { +await gotoTavern(); +keyDown("w"); +await sleep(2000); +keyUp("w"); +keyDown("d"); +await sleep(5000); +keyUp("d"); +await sleep(700); + } + + + //主流程 await genshin.returnMainUi(); await gotoTavern(); await sleep(4000); await captureAndStoreTexts(); - for (let i = 0;i < 6; i++) { + for (let i = 0;i < 6; i++) {//六次循环兜底,避免多次挑战不过 + +if (textArray.length === 0) break; +await detectCardPlayer(); +await searchAndClickTexts(); - if (textArray.length === 0) break; - if (i != 0)await gotoTavern(); - await gotoTable1(); - await searchAndClickTexts(); - if (textArray.length === 0) break; - await gotoTavern(); - await gotoTable2(); - await searchAndClickTexts(); - if (textArray.length === 0) break; - await gotoTavern(); - await gotoTable3(); - await searchAndClickTexts(); - if (textArray.length === 0) break; - await gotoTavern(); - await gotoTable4(); - await searchAndClickTexts(); - if (textArray.length === 0) break; - await gotoTavern(); - await gotoTable5(); - await searchAndClickTexts(); - if (textArray.length === 0) break; - await gotoTavern(); - await gotoTable6(); - await searchAndClickTexts(); - if (textArray.length === 0) break; } +await genshin.returnMainUi(); + await sleep(500); + keyPress("F6") + await sleep(1000); + click(300, 370);//点击七日历练 + await sleep(1000); + log.info(`打牌结束`); + })(); diff --git a/repo/js/七圣召唤七日历练全自动/manifest.json b/repo/js/七圣召唤七日历练全自动/manifest.json index a4734e79..7698a271 100644 --- a/repo/js/七圣召唤七日历练全自动/manifest.json +++ b/repo/js/七圣召唤七日历练全自动/manifest.json @@ -1,8 +1,8 @@ { "manifest_version": 1, "name": "打牌一条龙", - "version": "1.0", - "description": "不依靠分层地图的一条龙打牌(无奈.jpg), 所以什么时候加上?另外只靠一个牌组的话,胜率还是太低了,所以有没有既简单又强势的卡组推荐下呢?", + "version": "1.1", + "description": "只靠一个牌组的话,胜率还是太低了,所以有没有既简单又强势的卡组推荐下呢?", "authors": [ { "name": "柒叶子", diff --git a/repo/js/使用料理/main.js b/repo/js/使用料理/main.js index 1f215625..e1235b8f 100644 --- a/repo/js/使用料理/main.js +++ b/repo/js/使用料理/main.js @@ -1,6 +1,10 @@ (async function () { + +//吃料理 +async function eatFood() { let foodName = settings.foodName ?? 0; if(foodName){ +await genshin.returnMainUi(); await sleep(1000); keyPress("B");//打开背包 await sleep(2000); @@ -12,16 +16,7 @@ click(195, 1020);//重置 await sleep(1000); click(110, 110);//输入名字 await sleep(1000); -//恢复类食物click(75, 265); -//攻击类食物click(75, 350); -//冒险类食物click(75, 435); -//防御类食物click(75, 520); -//药剂click(75, 610); -for (const char of foodName) { - keyPress(char); - await sleep(500); -} -keyPress("SPACE"); +inputText(`${foodName}`); await sleep(500); click(490, 1020);//确认筛选 await sleep(1000); @@ -31,6 +26,9 @@ click(1690, 1015);//使用 await sleep(1000); keyPress("ESCAPE"); await sleep(1500); -}; +await genshin.returnMainUi(); +}} + +await eatFood(); })(); diff --git a/repo/js/使用料理/manifest.json b/repo/js/使用料理/manifest.json index aec43194..33a67f1b 100644 --- a/repo/js/使用料理/manifest.json +++ b/repo/js/使用料理/manifest.json @@ -1,8 +1,8 @@ { "manifest_version": 1, "name": "料理使用", - "version": "1.0", - "description": "请输入料理名称常见部分的拼音小写,比如月亮派输入yueliang", + "version": "1.2", + "description": "请输入料理全部名称,需要0.44.6以及以上版本", "authors": [ { "name": "柒叶子", @@ -11,4 +11,4 @@ ], "settings_ui": "settings.json", "main": "main.js" -} \ No newline at end of file +} diff --git a/repo/js/使用料理/settings.json b/repo/js/使用料理/settings.json index 07e320af..122b323e 100644 --- a/repo/js/使用料理/settings.json +++ b/repo/js/使用料理/settings.json @@ -2,6 +2,6 @@ { "name": "foodName", "type": "input-text", - "label": "请输入料理名称常见部分的拼音小写(月亮派,yueliang)" + "label": "请输入料理的正确名称 " }, - ] \ No newline at end of file + ] diff --git a/repo/js/使用脆弱树脂/Assets/RecognitionObject/ConfirmButton.png b/repo/js/使用脆弱树脂/Assets/RecognitionObject/ConfirmButton.png new file mode 100644 index 00000000..9186b5bc Binary files /dev/null and b/repo/js/使用脆弱树脂/Assets/RecognitionObject/ConfirmButton.png differ diff --git a/repo/js/使用脆弱树脂/Assets/RecognitionObject/FragileResin.png b/repo/js/使用脆弱树脂/Assets/RecognitionObject/FragileResin.png new file mode 100644 index 00000000..e2d7b736 Binary files /dev/null and b/repo/js/使用脆弱树脂/Assets/RecognitionObject/FragileResin.png differ diff --git a/repo/js/使用脆弱树脂/Assets/RecognitionObject/PlusButton.png b/repo/js/使用脆弱树脂/Assets/RecognitionObject/PlusButton.png new file mode 100644 index 00000000..1ca05aa5 Binary files /dev/null and b/repo/js/使用脆弱树脂/Assets/RecognitionObject/PlusButton.png differ diff --git a/repo/js/使用脆弱树脂/Assets/RecognitionObject/QuickUsePlusButton.png b/repo/js/使用脆弱树脂/Assets/RecognitionObject/QuickUsePlusButton.png new file mode 100644 index 00000000..0dcffc16 Binary files /dev/null and b/repo/js/使用脆弱树脂/Assets/RecognitionObject/QuickUsePlusButton.png differ diff --git a/repo/js/使用脆弱树脂/main.js b/repo/js/使用脆弱树脂/main.js index 92302546..a4517013 100644 --- a/repo/js/使用脆弱树脂/main.js +++ b/repo/js/使用脆弱树脂/main.js @@ -1,30 +1,37 @@ +const PlusButtonRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/PlusButton.png"), 1000, 0, 300, 100); +const FragileResinRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/FragileResin.png"), 800, 400, 200, 200); +const ConfirmButtonRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/ConfirmButton.png"), 900, 700, 200, 200); +const QuickUsePlusButtonRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/QuickUsePlusButton.png"), 1200, 600, 200, 100); + +/** + * @returns {Promise} + */ + (async function () { - const defaultTime = 1 - - setGameMetrics(3840, 2160, 1.5); // 设置游戏窗口大小和DPI + await genshin.returnMainUi(); keyPress("M");//打开地图 await sleep(1200); - click(2475, 95);// 点击添加体力 + captureGameRegion().find(PlusButtonRo).click();// 点击添加体力 await sleep(600); - click(1660, 950)// 选择脆弱树脂 + captureGameRegion().find(FragileResinRo).click();// 选择脆弱树脂 await sleep(600); - click(2350, 1550);// 点击使用 + captureGameRegion().find(ConfirmButtonRo).click();// 点击使用 await sleep(600); - if (isNaN(settings.times || settings.times <= 0)) { - times = defaultTime + let QuickUsePlusButton = captureGameRegion().find(QuickUsePlusButtonRo); + if (isNaN(settings.times || settings.numberPerUse <= 0)) { + number = 1 }else{ - for (let i = 1; i < settings.times; ++i) { - click(2585, 1295);// 点击使用数量 - await sleep(600); + for (let i = 1; i < settings.numberPerUse; ++i) { + QuickUsePlusButton.click();// 点击使用数量 + await sleep(300); } } - click(2350, 1550);// 点击使用 + captureGameRegion().find(ConfirmButtonRo).click();// 点击使用 await sleep(600); - click(1920, 1500);// 点击空白处 - await sleep(600); - keyPress("VK_ESCAPE");//关闭地图 + click(960, 1000);// 点击空白处 + await genshin.returnMainUi(); })(); diff --git a/repo/js/使用脆弱树脂/manifest.json b/repo/js/使用脆弱树脂/manifest.json index 30c1a632..1a1f8f77 100644 --- a/repo/js/使用脆弱树脂/manifest.json +++ b/repo/js/使用脆弱树脂/manifest.json @@ -1,13 +1,13 @@ { "manifest_version": 1, - "name": "使用脆弱树脂", - "version": "1.0", - "bgi_version": "0.37.1", + "name": "使用脆弱树脂(图像识别)", + "version": "1.1", + "bgi_version": "0.44.6", "description": "", "authors": [ { - "name": "起个名字好难", - "link": "https://mualani.fun" + "name": "起个名字好难的喵", + "link": "https://github.com/MisakaAldrich" } ], "settings_ui": "settings.json", diff --git a/repo/js/使用脆弱树脂/settings.json b/repo/js/使用脆弱树脂/settings.json index 3b6b0719..72dc9fd4 100644 --- a/repo/js/使用脆弱树脂/settings.json +++ b/repo/js/使用脆弱树脂/settings.json @@ -1,6 +1,6 @@ [ { - "name": "times", + "name": "numberPerUse", "type": "input-text", "label": "每次使用个数" } diff --git a/repo/js/切换账号(OCR)版本/README.md b/repo/js/切换账号(OCR)版本/README.md new file mode 100644 index 00000000..46999b5f --- /dev/null +++ b/repo/js/切换账号(OCR)版本/README.md @@ -0,0 +1,31 @@ +// ==UserScript== +// @name 原神自动化登录脚本 +// @version 1.0 +// @description 原神自动登录工具(仅供学习交流) +// @author 彩虹QQ人 +// @match 原神版本:5.5;BGI版本:0.44.6 +// ==/UserScript== + +此版本可以发送相关通知,如需要可以修改main中的notification方法。 + +/** + * === 重要免责声明 === + * 1. 数据安全 + * - 本脚本使用的用户名、密码等敏感信息仅存储在本地设备,开发者无法获取。 + * - 使用者需自行承担账户信息泄露风险,请勿在公共设备或不可信环境中使用。 + * + * 2. 使用风险 + * - 本脚本为开源学习项目,禁止用于商业用途或违反游戏条款的行为。 + * - 滥用可能导致游戏账号封禁,开发者不承担任何直接或间接责任。 + * + * 3. 责任限制 + * - 本脚本按“现状”提供,不承诺兼容性、安全性或功能完整性。 + * - 因使用本脚本导致的账号、数据、设备损失,开发者概不负责。 + * + * 4. 禁止条款 + * - 严禁逆向工程、恶意篡改或用于外挂等非法用途。 + * - 若游戏运营商提出要求,开发者保留随时停止维护的权利。 + * + * 继续使用即表示您已阅读并同意上述条款。 + * Last Updated: 2024-04-22 + */ \ No newline at end of file diff --git a/repo/js/切换账号(OCR)版本/assets/agree.png b/repo/js/切换账号(OCR)版本/assets/agree.png new file mode 100644 index 00000000..04d02d66 Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/agree.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/click_into.png b/repo/js/切换账号(OCR)版本/assets/click_into.png new file mode 100644 index 00000000..b99a56d0 Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/click_into.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/input_password.png b/repo/js/切换账号(OCR)版本/assets/input_password.png new file mode 100644 index 00000000..8f82c32f Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/input_password.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/input_phone_or_email.png b/repo/js/切换账号(OCR)版本/assets/input_phone_or_email.png new file mode 100644 index 00000000..638230a5 Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/input_phone_or_email.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/login_other_account.png b/repo/js/切换账号(OCR)版本/assets/login_other_account.png new file mode 100644 index 00000000..48a78f1c Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/login_other_account.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/login_out_account.png b/repo/js/切换账号(OCR)版本/assets/login_out_account.png new file mode 100644 index 00000000..7efbff24 Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/login_out_account.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/out_account.png b/repo/js/切换账号(OCR)版本/assets/out_account.png new file mode 100644 index 00000000..4e25371c Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/out_account.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/out_to_login.png b/repo/js/切换账号(OCR)版本/assets/out_to_login.png new file mode 100644 index 00000000..4c863424 Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/out_to_login.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/pm_menu.png b/repo/js/切换账号(OCR)版本/assets/pm_menu.png new file mode 100644 index 00000000..f1c7a385 Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/pm_menu.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/pm_out.png b/repo/js/切换账号(OCR)版本/assets/pm_out.png new file mode 100644 index 00000000..df31ebd6 Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/pm_out.png differ diff --git a/repo/js/切换账号(OCR)版本/assets/verification.png b/repo/js/切换账号(OCR)版本/assets/verification.png new file mode 100644 index 00000000..939b7a9d Binary files /dev/null and b/repo/js/切换账号(OCR)版本/assets/verification.png differ diff --git a/repo/js/切换账号(OCR)版本/main.js b/repo/js/切换账号(OCR)版本/main.js new file mode 100644 index 00000000..d2b9e8c7 --- /dev/null +++ b/repo/js/切换账号(OCR)版本/main.js @@ -0,0 +1,153 @@ +const author = "彩虹QQ人"; +const script_name = "切换账号(OCR)版本"; +const pm_menu = { + template: RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/pm_menu.png")), + name: "pm_menu.png" +}; +const pm_out = { + template: RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/pm_out.png")), + name: "pm_out.png" +}; +const out_to_login = { + template: RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/out_to_login.png")), + name: "out_to_login.png" +}; +const login_out_account = { + template:RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/login_out_account.png")), + name: "login_out_account.png" +}; +const out_account = { + template:RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/out_account.png")), + name: "out_account.png" +}; +const login_other_account = { + template:RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/login_other_account.png")), + name: "login_other_account.png" +}; +const input_phone_or_email = { + template:RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/input_phone_or_email.png")), + name: "input_phone_or_email.png" +}; +const input_password = { + template:RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/input_password.png")), + name: "input_password.png" +}; +const agree = { + template:RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/agree.png")), + name: "agree.png" +}; +//人机验证识别图片 +const login_verification = { + template:RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/verification.png")), + name: "verification.png" +}; +const click_into = { + template:RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/click_into.png")), + name: "click_into.png" +}; + + +(async function () { + + /** + * 普通的识别点击方法 + * @param obj 识别对象 + * @param desc 识别对象的描述,方便日志查看 + */ + async function identificationAndClick (obj,desc) { + const start = Date.now(); + // 在截图中寻找 + let result = captureGameRegion().Find(obj.template); + if (result.isExist()) { + result.click(); + log.info(`成功识别并点击 ${desc} | 耗时: ${Date.now() - start}ms`); + }else { + //这里可配置通知方法 + // notification.error(`${script_name}识别超时===待切换账号:${settings.username}===原因:未找到目标 [${desc}] | 文件:${obj.name}`); + throw new Error(`${script_name}识别超时:未找到目标 [${desc}] | 文件:${obj.name}`); + } + } + + /** + * 等待正确页面的识别点击方法 + * @param obj 识别对象 + * @param desc 识别对象的描述,方便日志查看 + * @param timeout 设置超时时间(默认值为15000即不传此参数情况下) + */ + async function waitForToClick(obj, desc,timeout = 15000) { + await sleep(1000); + const start = Date.now(); + let x = 1; + while (Date.now() - start < timeout) { + let result = captureGameRegion().Find(obj.template); + //等待1s确保识别结果 + await sleep(800); + if (result.isExist()) { + result.click(); + log.info(`成功识别并点击 ${desc}| 耗时: ${Date.now() - start}ms`); + return true; + } + log.info(`第${x}识别并点击 ${desc} 失败 | 耗时: ${Date.now() - start}ms`); + x++; + await sleep(1000); + } + //这里可配置通知方法 + //notification.error(`${script_name}等待超时,请人工介入。===待切换账号:${settings.username}===超时原因:未找到目标 [${desc}] | 文件:${obj.name}`); + throw new Error(`${script_name}等待超时:未找到目标 [${desc}] | 文件:${obj.name}`); + } + + await genshin.returnMainUi(); + //按下alt键(确保释放) + await keyDown("VK_MENU"); + await sleep(500); + try { + await identificationAndClick(pm_menu,"左上角派蒙脑袋"); + } finally { + await keyUp("VK_MENU"); + } + await waitForToClick(pm_out,"左下角退出门"); + await waitForToClick(out_to_login,"退出至登陆页面"); + //这一步根据 电脑配置和当前网络情况不同休眠时间不同,建议实际运行之后,如果有日志 : 第x次 识别失败,就适当增加休眠时间 + await sleep(9000); + await waitForToClick(login_out_account,"登录页的右下角退出按钮"); + await waitForToClick(out_account,"退出当前账号"); + await waitForToClick(login_other_account,"登录其他账号"); + await sleep(1000); + await waitForToClick(input_phone_or_email,"填写邮箱/手机号"); + await inputText(settings.username); + await sleep(1000); + await waitForToClick(input_password,"填写密码"); + await inputText(settings.password); + await sleep(1000); + //按下回车登录账号,弹出用户协议对话框 + await keyPress("VK_RETURN"); + //点击回车后,等待特瓦特大门加载 + await waitForToClick(agree,"同意用户协议"); + //如果当天上下线次数过于频繁 + for(let i = 1;i<=2;i++){ + await sleep(1000); + let verify = captureGameRegion().Find(login_verification.template); + //等待1s确保识别结果 + await sleep(800); + if (verify.isExist()) { + //这里可配置通知方法 + //notification.error(`${script_name}触发人机验证,请手动登录。===待切换账号:${settings.username}`); + throw new Error(`${script_name}触发人机验证,请手动登录`); + } + } + /** + * 根据不同网络环境和电脑配置,此操作可能会将领取月卡操作取代,但是不影响使用 + * 如果发现卡在这一步,请适当延长sleep时间 + */ + log.info("点击中心屏幕,等待提瓦特开门"); + await sleep(5000); + for(let i = 1;i<=8;i++){ + click(genshin.width/2.0,genshin.height/2.0); + await sleep(1000); + } + await sleep(5000); + log.info("执行开门自动领取月卡"); + await genshin.blessingOfTheWelkinMoon(); + await sleep(1000); + log.info(`账号切换成功,当前帐号:${settings.username}`); +})(); diff --git a/repo/js/切换账号(OCR)版本/manifest.json b/repo/js/切换账号(OCR)版本/manifest.json new file mode 100644 index 00000000..cdfd1ce6 --- /dev/null +++ b/repo/js/切换账号(OCR)版本/manifest.json @@ -0,0 +1,14 @@ +{ + "manifest_version": 1, + "name": "切换账号(OCR)版本", + "version": "1.0", + "description": "使用OCR实现:从主页面退出登录实现切换选定账号。脚本问题请联系作者。免责申明:所有的账号密码均保存在本地,请使用者妥善保管账号密码,请勿外泄账号密码。", + "authors": [ + { + "name": "彩虹QQ人", + "email": "846224811@qq.com" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/切换账号(OCR)版本/settings.json b/repo/js/切换账号(OCR)版本/settings.json new file mode 100644 index 00000000..2357498a --- /dev/null +++ b/repo/js/切换账号(OCR)版本/settings.json @@ -0,0 +1,13 @@ +[ + { + "name": "username", + "type": "input-text", + "label": "账号(账号只保存在本地,请妥善保管)" + }, + { + "name": "password", + "type": "input-text", + "label": "密码(账号只保存在本地,请妥善保管)" + } + +] diff --git a/repo/js/切换账号(非OCR)版本/README.md b/repo/js/切换账号(非OCR)版本/README.md new file mode 100644 index 00000000..cb1d1318 --- /dev/null +++ b/repo/js/切换账号(非OCR)版本/README.md @@ -0,0 +1,29 @@ +// ==UserScript== +// @name 原神自动化登录脚本 +// @version 1.0 +// @description 原神自动登录工具(仅供学习交流) +// @author 彩虹QQ人 +// @match 原神版本:5.5;BGI版本:0.44.6 +// ==/UserScript== + +/** + * === 重要免责声明 === + * 1. 数据安全 + * - 本脚本使用的用户名、密码等敏感信息仅存储在本地设备,开发者无法获取。 + * - 使用者需自行承担账户信息泄露风险,请勿在公共设备或不可信环境中使用。 + * + * 2. 使用风险 + * - 本脚本为开源学习项目,禁止用于商业用途或违反游戏条款的行为。 + * - 滥用可能导致游戏账号封禁,开发者不承担任何直接或间接责任。 + * + * 3. 责任限制 + * - 本脚本按“现状”提供,不承诺兼容性、安全性或功能完整性。 + * - 因使用本脚本导致的账号、数据、设备损失,开发者概不负责。 + * + * 4. 禁止条款 + * - 严禁逆向工程、恶意篡改或用于外挂等非法用途。 + * - 若游戏运营商提出要求,开发者保留随时停止维护的权利。 + * + * 继续使用即表示您已阅读并同意上述条款。 + * Last Updated: 2024-04-20 + */ diff --git a/repo/js/切换账号(非OCR)版本/main.js b/repo/js/切换账号(非OCR)版本/main.js new file mode 100644 index 00000000..4890f094 --- /dev/null +++ b/repo/js/切换账号(非OCR)版本/main.js @@ -0,0 +1,64 @@ +(async function () { + /** + * 不使用屏幕识别的登出至其他账号的脚本 + * 版本: + * 原神:5.5 + * BIG:0.44.6 + */ + //实测缩放倍数1.0、1.5可行,实测凡16:9(大于1920*1080)均能正常使用。 + setGameMetrics(1920, 1080, 2.0); + //到达主页面 + await genshin.returnMainUi(); + await sleep(1000); + //打开派蒙页面 + keyPress("VK_ESCAPE"); + await sleep(1000); + click(50, 1030); + //退出门图标 + await sleep(1000); + //退出至登录页面 + click(978, 540); + await sleep(10000); + //登录页面退出当前账号的小门图标 + click(1828, 985); + await sleep(1000); + //勾选:退出并保留登录记录 + click(701, 573); + await sleep(1000); + //点击退出大按钮 + click(1107, 684); + await sleep(1000); + //登录其他账号 + click(946, 703); + await sleep(1000); + //点击用户名输入框 + click(815, 400); + //如果有文本,清除 + await keyPress("VK_DELETE"); + // 输入文本 + await inputText(settings.username); + await sleep(500); + //点击密码输入框 + click(815, 480); + //如果有文本,清除 + await keyPress("VK_DELETE"); + // 输入文本 + await inputText(settings.password); + await sleep(500); + //登录 + keyPress("VK_RETURN"); + await sleep(500); + //用户协议弹窗,点击同意,等待8.5s,增加容错 + click(1093, 593); + await sleep(8500); + //进入世界循环点击,增加容错 + for(let i = 3;i>0;i--){ + click(960, 540); + await sleep(1500); + } + //确保进入主页面 + await sleep(12000); + //点击领月卡 + await genshin.blessingOfTheWelkinMoon(); + +})(); \ No newline at end of file diff --git a/repo/js/切换账号(非OCR)版本/manifest.json b/repo/js/切换账号(非OCR)版本/manifest.json new file mode 100644 index 00000000..b4a89826 --- /dev/null +++ b/repo/js/切换账号(非OCR)版本/manifest.json @@ -0,0 +1,14 @@ +{ + "manifest_version": 1, + "name": "切换账号(非OCR方案)", + "version": "1.0", + "description": "从主页面退出登录实现切换选定账号。\n脚本问题请联系作者。\n免责申明:所有的账号密码均保存在本地,请使用者妥善保管账号密码,请勿外泄账号密码。\n", + "authors": [ + { + "name": "彩虹QQ人", + "email": "846224811@qq.com" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/切换账号(非OCR)版本/settings.json b/repo/js/切换账号(非OCR)版本/settings.json new file mode 100644 index 00000000..1e56970b --- /dev/null +++ b/repo/js/切换账号(非OCR)版本/settings.json @@ -0,0 +1,13 @@ +[ + { + "name": "username", + "type": "input-text", + "label": "账号(账号只保存在本地)" + }, + { + "name": "password", + "type": "input-text", + "label": "密码(账号只保存在本地)" + } + +] diff --git a/repo/js/料理制作及食材加工/main.js b/repo/js/料理制作及食材加工/main.js index 35f393d8..867c0cbb 100644 --- a/repo/js/料理制作及食材加工/main.js +++ b/repo/js/料理制作及食材加工/main.js @@ -1,7 +1,7 @@ (async function () { let foodName = settings.foodName ?? 0; -let foodNum = settings.foodNum ?? 0; +let foodNum = settings.foodNum ?? 1; let flourNum = settings.flourNum ?? 0; let creamNum = settings.creamNum ?? 0; let smokedPoultryNum = settings.smokedPoultryNum ?? 0; @@ -30,11 +30,7 @@ click(195, 1020);//重置 await sleep(1000); click(110, 110);//输入名字 await sleep(1000); -for (const char of foodName) { - keyPress(char); - await sleep(500); -} -keyPress("SPACE"); +inputText(`${foodName}`); await sleep(500); click(490, 1020);//确认筛选 await sleep(1000); diff --git a/repo/js/料理制作及食材加工/manifest.json b/repo/js/料理制作及食材加工/manifest.json index b254563a..4612b296 100644 --- a/repo/js/料理制作及食材加工/manifest.json +++ b/repo/js/料理制作及食材加工/manifest.json @@ -1,8 +1,8 @@ { "manifest_version": 1, "name": "料理制作及食材加工", - "version": "1.0", - "description": "自动烹饪料理以及加工食材", + "version": "1.2", + "description": "自动烹饪料理以及加工食材,需要0.44.6及以上版本", "authors": [ { "name": "柒叶子", @@ -11,4 +11,4 @@ ], "settings_ui": "settings.json", "main": "main.js" -} \ No newline at end of file +} diff --git a/repo/js/料理制作及食材加工/settings.json b/repo/js/料理制作及食材加工/settings.json index d4b98d1a..929e9e6a 100644 --- a/repo/js/料理制作及食材加工/settings.json +++ b/repo/js/料理制作及食材加工/settings.json @@ -2,7 +2,7 @@ { "name": "foodName", "type": "input-text", - "label": "请输入料理的拼音小写" + "label": "请输入料理的全名" }, { @@ -84,4 +84,4 @@ }, - ] \ No newline at end of file + ] diff --git a/repo/pathing/薄荷/薄荷A01-蒙德-望风角1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A01-蒙德-望风角1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A01-蒙德-望风角1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A01-蒙德-望风角1.json diff --git a/repo/pathing/薄荷/薄荷A02-蒙德-望风角2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A02-蒙德-望风角2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A02-蒙德-望风角2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A02-蒙德-望风角2.json diff --git a/repo/pathing/薄荷/薄荷A03-蒙德-望风山地1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A03-蒙德-望风山地1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A03-蒙德-望风山地1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A03-蒙德-望风山地1.json diff --git a/repo/pathing/薄荷/薄荷A04-蒙德-望风山地2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A04-蒙德-望风山地2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A04-蒙德-望风山地2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A04-蒙德-望风山地2.json diff --git a/repo/pathing/薄荷/薄荷A05-蒙德-摘星崖.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A05-蒙德-摘星崖.json similarity index 100% rename from repo/pathing/薄荷/薄荷A05-蒙德-摘星崖.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A05-蒙德-摘星崖.json diff --git a/repo/pathing/薄荷/薄荷A06-蒙德-星落湖.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A06-蒙德-星落湖.json similarity index 100% rename from repo/pathing/薄荷/薄荷A06-蒙德-星落湖.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A06-蒙德-星落湖.json diff --git a/repo/pathing/薄荷/薄荷A07-蒙德-风起地1(收集50).json b/repo/js/薄荷采集/assets/AutoPath/薄荷A07-蒙德-风起地1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A07-蒙德-风起地1(收集50).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A07-蒙德-风起地1.json diff --git a/repo/pathing/薄荷/薄荷A08-蒙德-风起地2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A08-蒙德-风起地2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A08-蒙德-风起地2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A08-蒙德-风起地2.json diff --git a/repo/pathing/薄荷/薄荷A09-蒙德-风起地3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A09-蒙德-风起地3.json similarity index 100% rename from repo/pathing/薄荷/薄荷A09-蒙德-风起地3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A09-蒙德-风起地3.json diff --git a/repo/pathing/薄荷/薄荷A10-蒙德-鹰翔海滩.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A10-蒙德-鹰翔海滩.json similarity index 100% rename from repo/pathing/薄荷/薄荷A10-蒙德-鹰翔海滩.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A10-蒙德-鹰翔海滩.json diff --git a/repo/pathing/薄荷/薄荷A11-蒙德-千风神殿.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A11-蒙德-千风神殿.json similarity index 100% rename from repo/pathing/薄荷/薄荷A11-蒙德-千风神殿.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A11-蒙德-千风神殿.json diff --git a/repo/pathing/薄荷/薄荷A12-蒙德-誓言岬.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A12-蒙德-誓言岬.json similarity index 100% rename from repo/pathing/薄荷/薄荷A12-蒙德-誓言岬.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A12-蒙德-誓言岬.json diff --git a/repo/pathing/薄荷/薄荷A13-蒙德-达达乌帕谷1(运行0.5h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷A13-蒙德-达达乌帕谷1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A13-蒙德-达达乌帕谷1(运行0.5h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A13-蒙德-达达乌帕谷1.json diff --git a/repo/pathing/薄荷/薄荷A14-蒙德-达达乌帕谷2(收集100).json b/repo/js/薄荷采集/assets/AutoPath/薄荷A14-蒙德-达达乌帕谷2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A14-蒙德-达达乌帕谷2(收集100).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A14-蒙德-达达乌帕谷2.json diff --git a/repo/pathing/薄荷/薄荷A15-蒙德-晨曦酒馆.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A15-蒙德-晨曦酒馆.json similarity index 100% rename from repo/pathing/薄荷/薄荷A15-蒙德-晨曦酒馆.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A15-蒙德-晨曦酒馆.json diff --git a/repo/pathing/薄荷/薄荷A16-蒙德-奔狼领1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A16-蒙德-奔狼领1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A16-蒙德-奔狼领1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A16-蒙德-奔狼领1.json diff --git a/repo/pathing/薄荷/薄荷A17-蒙德-奔狼领2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A17-蒙德-奔狼领2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A17-蒙德-奔狼领2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A17-蒙德-奔狼领2.json diff --git a/repo/pathing/薄荷/薄荷A18-蒙德-奔狼领3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A18-蒙德-奔狼领3.json similarity index 100% rename from repo/pathing/薄荷/薄荷A18-蒙德-奔狼领3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A18-蒙德-奔狼领3.json diff --git a/repo/pathing/薄荷/薄荷A19-蒙德-明冠峡1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A19-蒙德-明冠峡1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A19-蒙德-明冠峡1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A19-蒙德-明冠峡1.json diff --git a/repo/pathing/薄荷/薄荷A20-蒙德-明冠峡2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A20-蒙德-明冠峡2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A20-蒙德-明冠峡2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A20-蒙德-明冠峡2.json diff --git a/repo/pathing/薄荷/薄荷A21-蒙德-明冠峡3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A21-蒙德-明冠峡3.json similarity index 100% rename from repo/pathing/薄荷/薄荷A21-蒙德-明冠峡3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A21-蒙德-明冠峡3.json diff --git a/repo/pathing/薄荷/薄荷A22-蒙德-风龙废墟1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A22-蒙德-风龙废墟1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A22-蒙德-风龙废墟1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A22-蒙德-风龙废墟1.json diff --git a/repo/pathing/薄荷/薄荷A23-蒙德-风龙废墟2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A23-蒙德-风龙废墟2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A23-蒙德-风龙废墟2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A23-蒙德-风龙废墟2.json diff --git a/repo/pathing/薄荷/薄荷A24-蒙德-风龙废墟3(收集150,运行1h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷A24-蒙德-风龙废墟3.json similarity index 100% rename from repo/pathing/薄荷/薄荷A24-蒙德-风龙废墟3(收集150,运行1h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A24-蒙德-风龙废墟3.json diff --git a/repo/pathing/薄荷/薄荷A25-蒙德-风龙废墟4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A25-蒙德-风龙废墟4.json similarity index 100% rename from repo/pathing/薄荷/薄荷A25-蒙德-风龙废墟4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A25-蒙德-风龙废墟4.json diff --git a/repo/pathing/薄荷/薄荷A26-蒙德-清泉镇.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A26-蒙德-清泉镇.json similarity index 100% rename from repo/pathing/薄荷/薄荷A26-蒙德-清泉镇.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A26-蒙德-清泉镇.json diff --git a/repo/pathing/薄荷/薄荷A27-蒙德-蒙德城.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A27-蒙德-蒙德城.json similarity index 100% rename from repo/pathing/薄荷/薄荷A27-蒙德-蒙德城.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A27-蒙德-蒙德城.json diff --git a/repo/pathing/薄荷/薄荷A28-雪山-覆雪之路1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A28-雪山-覆雪之路1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A28-雪山-覆雪之路1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A28-雪山-覆雪之路1.json diff --git a/repo/pathing/薄荷/薄荷A29-雪山-覆雪之路2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A29-雪山-覆雪之路2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A29-雪山-覆雪之路2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A29-雪山-覆雪之路2.json diff --git a/repo/pathing/薄荷/薄荷A30-雪山-旧宫1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A30-雪山-旧宫1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A30-雪山-旧宫1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A30-雪山-旧宫1.json diff --git a/repo/pathing/薄荷/薄荷A31-雪山-旧宫2(收集200).json b/repo/js/薄荷采集/assets/AutoPath/薄荷A31-雪山-旧宫2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A31-雪山-旧宫2(收集200).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A31-雪山-旧宫2.json diff --git a/repo/pathing/薄荷/薄荷A32-雪山-星荧洞窟1(运行1.5h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷A32-雪山-星荧洞窟1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A32-雪山-星荧洞窟1(运行1.5h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A32-雪山-星荧洞窟1.json diff --git a/repo/pathing/薄荷/薄荷A33-雪山-星荧洞窟2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A33-雪山-星荧洞窟2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A33-雪山-星荧洞窟2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A33-雪山-星荧洞窟2.json diff --git a/repo/pathing/薄荷/薄荷A34-雪山-眠龙谷1(收集250).json b/repo/js/薄荷采集/assets/AutoPath/薄荷A34-雪山-眠龙谷1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A34-雪山-眠龙谷1(收集250).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A34-雪山-眠龙谷1.json diff --git a/repo/pathing/薄荷/薄荷A35-雪山-眠龙谷2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A35-雪山-眠龙谷2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A35-雪山-眠龙谷2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A35-雪山-眠龙谷2.json diff --git a/repo/pathing/薄荷/薄荷A36-雪山-眠龙谷3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A36-雪山-眠龙谷3.json similarity index 100% rename from repo/pathing/薄荷/薄荷A36-雪山-眠龙谷3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A36-雪山-眠龙谷3.json diff --git a/repo/pathing/薄荷/薄荷A37-雪山-寒天之钉.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A37-雪山-寒天之钉.json similarity index 100% rename from repo/pathing/薄荷/薄荷A37-雪山-寒天之钉.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A37-雪山-寒天之钉.json diff --git a/repo/pathing/薄荷/薄荷A38-雪山-近郊1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A38-雪山-近郊1.json similarity index 100% rename from repo/pathing/薄荷/薄荷A38-雪山-近郊1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A38-雪山-近郊1.json diff --git a/repo/pathing/薄荷/薄荷A39-雪山-近郊2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷A39-雪山-近郊2.json similarity index 100% rename from repo/pathing/薄荷/薄荷A39-雪山-近郊2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷A39-雪山-近郊2.json diff --git a/repo/pathing/薄荷/薄荷B01-璃月-石门1(收集300).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B01-璃月-石门1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B01-璃月-石门1(收集300).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B01-璃月-石门1.json diff --git a/repo/pathing/薄荷/薄荷B02-璃月-石门2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B02-璃月-石门2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B02-璃月-石门2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B02-璃月-石门2.json diff --git a/repo/pathing/薄荷/薄荷B03-璃月-无妄坡1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B03-璃月-无妄坡1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B03-璃月-无妄坡1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B03-璃月-无妄坡1.json diff --git a/repo/pathing/薄荷/薄荷B04-璃月-无妄坡2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B04-璃月-无妄坡2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B04-璃月-无妄坡2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B04-璃月-无妄坡2.json diff --git a/repo/pathing/薄荷/薄荷B05-璃月-无妄坡3(收集350,运行2h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B05-璃月-无妄坡3.json similarity index 100% rename from repo/pathing/薄荷/薄荷B05-璃月-无妄坡3(收集350,运行2h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B05-璃月-无妄坡3.json diff --git a/repo/pathing/薄荷/薄荷B06-璃月-无妄坡4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B06-璃月-无妄坡4.json similarity index 100% rename from repo/pathing/薄荷/薄荷B06-璃月-无妄坡4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B06-璃月-无妄坡4.json diff --git a/repo/pathing/薄荷/薄荷B07-璃月-荻花洲.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B07-璃月-荻花洲.json similarity index 100% rename from repo/pathing/薄荷/薄荷B07-璃月-荻花洲.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B07-璃月-荻花洲.json diff --git a/repo/pathing/薄荷/薄荷B08-璃月-明藴镇1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B08-璃月-明藴镇1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B08-璃月-明藴镇1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B08-璃月-明藴镇1.json diff --git a/repo/pathing/薄荷/薄荷B09-璃月-明藴镇2(收集400).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B09-璃月-明藴镇2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B09-璃月-明藴镇2(收集400).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B09-璃月-明藴镇2.json diff --git a/repo/pathing/薄荷/薄荷B10-璃月-归离原1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B10-璃月-归离原1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B10-璃月-归离原1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B10-璃月-归离原1.json diff --git a/repo/pathing/薄荷/薄荷B11-璃月-归离原2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B11-璃月-归离原2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B11-璃月-归离原2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B11-璃月-归离原2.json diff --git a/repo/pathing/薄荷/薄荷B12-璃月-归离原3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B12-璃月-归离原3.json similarity index 100% rename from repo/pathing/薄荷/薄荷B12-璃月-归离原3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B12-璃月-归离原3.json diff --git a/repo/pathing/薄荷/薄荷B13-璃月-归离原4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B13-璃月-归离原4.json similarity index 100% rename from repo/pathing/薄荷/薄荷B13-璃月-归离原4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B13-璃月-归离原4.json diff --git a/repo/pathing/薄荷/薄荷B14-璃月-归离原5(收集450).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B14-璃月-归离原5.json similarity index 100% rename from repo/pathing/薄荷/薄荷B14-璃月-归离原5(收集450).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B14-璃月-归离原5.json diff --git a/repo/pathing/薄荷/薄荷B15-璃月-孤云阁.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B15-璃月-孤云阁.json similarity index 100% rename from repo/pathing/薄荷/薄荷B15-璃月-孤云阁.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B15-璃月-孤云阁.json diff --git a/repo/pathing/薄荷/薄荷B16-璃月-渌华池1(运行2.5h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B16-璃月-渌华池1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B16-璃月-渌华池1(运行2.5h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B16-璃月-渌华池1.json diff --git a/repo/pathing/薄荷/薄荷B17-璃月-渌华池2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B17-璃月-渌华池2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B17-璃月-渌华池2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B17-璃月-渌华池2.json diff --git a/repo/pathing/薄荷/薄荷B18-璃月-渌华池3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B18-璃月-渌华池3.json similarity index 100% rename from repo/pathing/薄荷/薄荷B18-璃月-渌华池3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B18-璃月-渌华池3.json diff --git a/repo/pathing/薄荷/薄荷B19-璃月-遁玉陵.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B19-璃月-遁玉陵.json similarity index 100% rename from repo/pathing/薄荷/薄荷B19-璃月-遁玉陵.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B19-璃月-遁玉陵.json diff --git a/repo/pathing/薄荷/薄荷B20-璃月-璃月港.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B20-璃月-璃月港.json similarity index 100% rename from repo/pathing/薄荷/薄荷B20-璃月-璃月港.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B20-璃月-璃月港.json diff --git a/repo/pathing/薄荷/薄荷B21-璃月-天衡山1(收集500).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B21-璃月-天衡山1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B21-璃月-天衡山1(收集500).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B21-璃月-天衡山1.json diff --git a/repo/pathing/薄荷/薄荷B22-璃月-天衡山2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B22-璃月-天衡山2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B22-璃月-天衡山2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B22-璃月-天衡山2.json diff --git a/repo/pathing/薄荷/薄荷B23-璃月-天衡山3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B23-璃月-天衡山3.json similarity index 100% rename from repo/pathing/薄荷/薄荷B23-璃月-天衡山3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B23-璃月-天衡山3.json diff --git a/repo/pathing/薄荷/薄荷B24-璃月-青墟浦1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B24-璃月-青墟浦1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B24-璃月-青墟浦1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B24-璃月-青墟浦1.json diff --git a/repo/pathing/薄荷/薄荷B25-璃月-青墟浦2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B25-璃月-青墟浦2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B25-璃月-青墟浦2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B25-璃月-青墟浦2.json diff --git a/repo/pathing/薄荷/薄荷B26-璃月-灵矩关1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B26-璃月-灵矩关1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B26-璃月-灵矩关1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B26-璃月-灵矩关1.json diff --git a/repo/pathing/薄荷/薄荷B27-璃月-灵矩关2(收集550).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B27-璃月-灵矩关2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B27-璃月-灵矩关2(收集550).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B27-璃月-灵矩关2.json diff --git a/repo/pathing/薄荷/薄荷B28-璃月-灵矩关3(运行3h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B28-璃月-灵矩关3.json similarity index 100% rename from repo/pathing/薄荷/薄荷B28-璃月-灵矩关3(运行3h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B28-璃月-灵矩关3.json diff --git a/repo/pathing/薄荷/薄荷B29-璃月-天遒谷1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B29-璃月-天遒谷1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B29-璃月-天遒谷1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B29-璃月-天遒谷1.json diff --git a/repo/pathing/薄荷/薄荷B30-璃月-天遒谷2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B30-璃月-天遒谷2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B30-璃月-天遒谷2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B30-璃月-天遒谷2.json diff --git a/repo/pathing/薄荷/薄荷B31-璃月-翠玦坡1(收集600).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B31-璃月-翠玦坡1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B31-璃月-翠玦坡1(收集600).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B31-璃月-翠玦坡1.json diff --git a/repo/pathing/薄荷/薄荷B32-璃月-翠玦坡2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B32-璃月-翠玦坡2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B32-璃月-翠玦坡2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B32-璃月-翠玦坡2.json diff --git a/repo/pathing/薄荷/薄荷B33-璃月-奥藏山1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B33-璃月-奥藏山1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B33-璃月-奥藏山1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B33-璃月-奥藏山1.json diff --git a/repo/pathing/薄荷/薄荷B34-璃月-奥藏山2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B34-璃月-奥藏山2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B34-璃月-奥藏山2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B34-璃月-奥藏山2.json diff --git a/repo/pathing/薄荷/薄荷B35-璃月-绝云间1(收集650h,运行3.5h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B35-璃月-绝云间1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B35-璃月-绝云间1(收集650h,运行3.5h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B35-璃月-绝云间1.json diff --git a/repo/pathing/薄荷/薄荷B36-璃月-绝云间2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B36-璃月-绝云间2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B36-璃月-绝云间2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B36-璃月-绝云间2.json diff --git a/repo/pathing/薄荷/薄荷B37-璃月-绝云间3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B37-璃月-绝云间3.json similarity index 100% rename from repo/pathing/薄荷/薄荷B37-璃月-绝云间3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B37-璃月-绝云间3.json diff --git a/repo/pathing/薄荷/薄荷B38-璃月-绝云间4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B38-璃月-绝云间4.json similarity index 100% rename from repo/pathing/薄荷/薄荷B38-璃月-绝云间4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B38-璃月-绝云间4.json diff --git a/repo/pathing/薄荷/薄荷B39-璃月-庆云顶.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B39-璃月-庆云顶.json similarity index 100% rename from repo/pathing/薄荷/薄荷B39-璃月-庆云顶.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B39-璃月-庆云顶.json diff --git a/repo/pathing/薄荷/薄荷B40-璃月-琥牢山1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B40-璃月-琥牢山1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B40-璃月-琥牢山1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B40-璃月-琥牢山1.json diff --git a/repo/pathing/薄荷/薄荷B41-璃月-琥牢山2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B41-璃月-琥牢山2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B41-璃月-琥牢山2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B41-璃月-琥牢山2.json diff --git a/repo/pathing/薄荷/薄荷B42-璃月-南天门(收集700).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B42-璃月-南天门.json similarity index 100% rename from repo/pathing/薄荷/薄荷B42-璃月-南天门(收集700).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B42-璃月-南天门.json diff --git a/repo/pathing/薄荷/薄荷B43-璃月-采樵谷1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B43-璃月-采樵谷1.json similarity index 100% rename from repo/pathing/薄荷/薄荷B43-璃月-采樵谷1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B43-璃月-采樵谷1.json diff --git a/repo/pathing/薄荷/薄荷B44-璃月-采樵谷2(收集750).json b/repo/js/薄荷采集/assets/AutoPath/薄荷B44-璃月-采樵谷2.json similarity index 100% rename from repo/pathing/薄荷/薄荷B44-璃月-采樵谷2(收集750).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷B44-璃月-采樵谷2.json diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B45-沉玉谷-翘英庄1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B45-沉玉谷-翘英庄1.json new file mode 100644 index 00000000..142d5d08 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B45-沉玉谷-翘英庄1.json @@ -0,0 +1,246 @@ +{ + "info": { + "name": "薄荷B45-沉玉谷-翘英庄1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1114.8125, + "y": 1947.99169921875, + "action_params": "" + }, + { + "id": 2, + "x": 1140.1865234375, + "y": 1928.7890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1173.791015625, + "y": 1920.03662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1204.185546875, + "y": 1907.35009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1229.98828125, + "y": 1896.10546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1244.8974609375, + "y": 1883.3486328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1270.064453125, + "y": 1861.0908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1283.53515625, + "y": 1856.50244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1304.4677734375, + "y": 1857.4580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1314.9853515625, + "y": 1845.67041015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1323.0166015625, + "y": 1813.4140625, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1307.9521484375, + "y": 1803.0927734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1278.90625, + "y": 1796.625, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1262.8837890625, + "y": 1807.78466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1233.958984375, + "y": 1815.60302734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1218.9931640625, + "y": 1819.255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1204.13671875, + "y": 1802.96923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1182.927734375, + "y": 1786.55322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1175.1572265625, + "y": 1797.05712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1147.0205078125, + "y": 1766.14208984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1152.744140625, + "y": 1732.56396484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1136.3662109375, + "y": 1722.046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1169.6728515625, + "y": 1713.474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1178.80078125, + "y": 1708.20703125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1193.3203125, + "y": 1712.5576171875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1204.65234375, + "y": 1756.23681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B46-沉玉谷-翘英庄2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B46-沉玉谷-翘英庄2.json new file mode 100644 index 00000000..c684f8c7 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B46-沉玉谷-翘英庄2.json @@ -0,0 +1,301 @@ +{ + "info": { + "name": "薄荷B46-沉玉谷-翘英庄2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1468.048828125, + "y": 1998.0146484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1460.8037109375, + "y": 1996.8779296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1444.79296875, + "y": 1998.1787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1406.7265625, + "y": 1942.744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1396.01171875, + "y": 1928.0927734375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1468.1396484375, + "y": 1998.0126953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": 1461.5146484375, + "y": 2009.38525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1460.3271484375, + "y": 2031.3720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1473.1611328125, + "y": 2066.05029296875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1468.1396484375, + "y": 1998.0126953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1490.25390625, + "y": 1981.64111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1506.412109375, + "y": 2004.29931640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1563.59765625, + "y": 2018.41650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1595.76953125, + "y": 2033.3427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1601.716796875, + "y": 2056.943359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1629.234375, + "y": 2043.95556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1667.6875, + "y": 2030.82666015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1677.8623046875, + "y": 2020.14453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1691.5537109375, + "y": 2010.38525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1707.083984375, + "y": 1999.3701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1716.4443359375, + "y": 1978.11767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1729.4775390625, + "y": 1993.26611328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1738.3046875, + "y": 2003.29150390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1748.5859375, + "y": 2017.798828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1761.6689453125, + "y": 2019.5146484375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1794.53125, + "y": 2021.74658203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1810.48828125, + "y": 2027.57080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1832.833984375, + "y": 2013.025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1851.2607421875, + "y": 2018.64404296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1861.7119140625, + "y": 2001.40673828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 1882.033203125, + "y": 1995.15087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1908.8935546875, + "y": 1981.09326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B47-沉玉谷-翘英庄3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B47-沉玉谷-翘英庄3.json new file mode 100644 index 00000000..9be427bf --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B47-沉玉谷-翘英庄3.json @@ -0,0 +1,318 @@ +{ + "info": { + "name": "薄荷B47-沉玉谷-翘英庄3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1545.173828125, + "y": 2246.093505859375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1521.697265625, + "y": 2248.159423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1511.95703125, + "y": 2243.196044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1508.205078125, + "y": 2230.4423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1513.3876953125, + "y": 2210.77197265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1524.0361328125, + "y": 2192.158935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1535.533203125, + "y": 2175.148681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1542.9755859375, + "y": 2165.05517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1555.6865234375, + "y": 2164.552734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1579.77734375, + "y": 2155.86572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1597.7236328125, + "y": 2153.119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1616.9345703125, + "y": 2150.4150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1631.6953125, + "y": 2152.15478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1634.7509765625, + "y": 2152.328369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1642.0244140625, + "y": 2163.75341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1647.84375, + "y": 2174.230712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1656.853515625, + "y": 2184.549072265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1668.7373046875, + "y": 2189.359619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1746.6796875, + "y": 2325.12646484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1731.15625, + "y": 2358.90478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1716.58984375, + "y": 2363.7236328125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1701.0751953125, + "y": 2361.704833984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 23, + "x": 1703.587890625, + "y": 2357.52294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1701.7255859375, + "y": 2345.84716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1704.5546875, + "y": 2328.7734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1696.1943359375, + "y": 2304.34716796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 27, + "x": 1686.1982421875, + "y": 2303.55419921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1665.578125, + "y": 2316.900146484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1644.8427734375, + "y": 2319.8818359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1618.0634765625, + "y": 2299.948974609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 31, + "x": 1613.392578125, + "y": 2285.31787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1574.0361328125, + "y": 2295.882080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 1553.05859375, + "y": 2303.72412109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 1524.4169921875, + "y": 2334.1025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B48-沉玉谷-灵濛山1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B48-沉玉谷-灵濛山1.json new file mode 100644 index 00000000..e61ac06a --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B48-沉玉谷-灵濛山1.json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "薄荷B48-沉玉谷-灵濛山1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1725.400390625, + "y": 2114.990478515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1747.8642578125, + "y": 2116.066162109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1732.94140625, + "y": 2135.786376953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1725.3505859375, + "y": 2137.95654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1757.2021484375, + "y": 2152.632080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1788.5390625, + "y": 2161.09033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1798.419921875, + "y": 2164.77685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1801.521484375, + "y": 2170.732666015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1786.2314453125, + "y": 2150.589111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1797.4013671875, + "y": 2142.334228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1804.673828125, + "y": 2130.55859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1813.720703125, + "y": 2103.85498046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1816.9091796875, + "y": 2098.01416015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1827.0029296875, + "y": 2090.765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1836.09765625, + "y": 2075.7880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1834.3720703125, + "y": 2084.84765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1837.9033203125, + "y": 2097.8818359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1852.515625, + "y": 2105.214111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1886.1494140625, + "y": 2100.310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1908.498046875, + "y": 2130.075439453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1923.03125, + "y": 2132.1279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1927.3896484375, + "y": 2142.68359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1921.1875, + "y": 2150.441162109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1886.787109375, + "y": 2175.110595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1855.025390625, + "y": 2172.7373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1903.3984375, + "y": 2200.35546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1911.6455078125, + "y": 2228.73681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1946.87109375, + "y": 2251.716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2015.1630859375, + "y": 2238.742919921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2025.4775390625, + "y": 2253.782470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B49-沉玉谷-灵濛山2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B49-沉玉谷-灵濛山2.json new file mode 100644 index 00000000..bbca482a --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B49-沉玉谷-灵濛山2.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "薄荷B49-沉玉谷-灵濛山2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1977.2587890625, + "y": 2341.04248046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1972.23046875, + "y": 2341.520263671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1901.7890625, + "y": 2371.29150390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 1897.8447265625, + "y": 2373.313232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2191.552734375, + "y": 2110.82421875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2207.021484375, + "y": 2135.985107421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2238.3544921875, + "y": 2207.077392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2220.0830078125, + "y": 2238.07958984375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 9, + "x": 2228.2001953125, + "y": 2231.68359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2191.576171875, + "y": 2110.8291015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2167.4404296875, + "y": 2104.309814453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2133.8896484375, + "y": 2100.822021484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2112.416015625, + "y": 2079.4560546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2104.4833984375, + "y": 2062.461669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2089.6591796875, + "y": 2031.19482421875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2096.61328125, + "y": 1983.81787109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 17, + "x": 2100.029296875, + "y": 1983.5576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B50-沉玉谷-药蝶谷.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B50-沉玉谷-药蝶谷.json new file mode 100644 index 00000000..c0409619 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B50-沉玉谷-药蝶谷.json @@ -0,0 +1,507 @@ +{ + "info": { + "name": "薄荷B50-沉玉谷-药蝶谷", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1689.419921875, + "y": 1652.70166015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 1678.98828125, + "y": 1644.3427734375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 1681.7509765625, + "y": 1628.7568359375, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 1681.314453125, + "y": 1608.8056640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 1682.1025390625, + "y": 1585.35009765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 1687.0068359375, + "y": 1581.33349609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 1688.8251953125, + "y": 1573.5390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 1688.5400390625, + "y": 1559.79150390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1675.8662109375, + "y": 1556.3330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1680.548828125, + "y": 1547.60107421875, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1678.189453125, + "y": 1535.3564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1706.57421875, + "y": 1540.70166015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 1710.232421875, + "y": 1537.93994140625, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 1715.830078125, + "y": 1534.29541015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 1721.7646484375, + "y": 1529.34521484375, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 1730.1650390625, + "y": 1533.009765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 1725.5263671875, + "y": 1491.2294921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 1732.2373046875, + "y": 1471.2373046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 1707.3349609375, + "y": 1437.87841796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 1689.5390625, + "y": 1443.86669921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 1687.06640625, + "y": 1442.36279296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 1657.548828125, + "y": 1450.93505859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 1613.1298828125, + "y": 1458.83154296875, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 1571.3974609375, + "y": 1466.71484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 1549.9482421875, + "y": 1471.23486328125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 1551.220703125, + "y": 1497.556640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 1551.6962890625, + "y": 1525.28515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 1553.7900390625, + "y": 1552.6826171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 1556.4150390625, + "y": 1589.69091796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 1585.2314453125, + "y": 1644.03662109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 1585.443359375, + "y": 1670.80029296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 1589.5849609375, + "y": 1677.1865234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": 1587.439453125, + "y": 1669.74267578125, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": 1582.7744140625, + "y": 1640.82421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": 1541.8720703125, + "y": 1611.10888671875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": 1500.095703125, + "y": 1627.15234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": 1490.07421875, + "y": 1612.64892578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": 1496.271484375, + "y": 1654.427734375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 39, + "x": 1488.0244140625, + "y": 1683.00390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 40, + "x": 1455.81640625, + "y": 1707.34130859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 41, + "x": 1452.923828125, + "y": 1714.91455078125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 42, + "x": 1499.7001953125, + "y": 1742.4365234375, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 43, + "x": 1537.279296875, + "y": 1773.39501953125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 44, + "x": 1540.71875, + "y": 1803.78125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 45, + "x": 1558.6416015625, + "y": 1730.23828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 46, + "x": 1548.0224609375, + "y": 1732.50439453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 47, + "x": 1477.3095703125, + "y": 1725.5947265625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 48, + "x": 1488.7490234375, + "y": 1723.63134765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 49, + "x": 1507.9072265625, + "y": 1729.99072265625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 50, + "x": 1525.625, + "y": 1723.09716796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 51, + "x": 1535.4326171875, + "y": 1716.84326171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 52, + "x": 1542.5517578125, + "y": 1707.95849609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 53, + "x": 1549.408203125, + "y": 1707.978515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 54, + "x": 1560.1865234375, + "y": 1712.72314453125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 55, + "x": 1565.107421875, + "y": 1711.8818359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B51-沉玉谷-古茶树坡.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B51-沉玉谷-古茶树坡.json new file mode 100644 index 00000000..8ec58400 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B51-沉玉谷-古茶树坡.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷B51-沉玉谷-古茶树坡", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1691.3251953125, + "y": 1829.2763671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1676.58203125, + "y": 1798.271484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1701.326171875, + "y": 1798.77587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1711.5283203125, + "y": 1795.85791015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1713.560546875, + "y": 1768.9814453125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1708.2822265625, + "y": 1735.642578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1724.9072265625, + "y": 1733.99609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1779.4619140625, + "y": 1744.65576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1806.978515625, + "y": 1743.80615234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1822.4306640625, + "y": 1724.283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1848.4345703125, + "y": 1733.58349609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1853.9501953125, + "y": 1751.5673828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1847.5126953125, + "y": 1766.83251953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1829.5986328125, + "y": 1765.373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1813.5068359375, + "y": 1768.49951171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1804.396484375, + "y": 1820.31640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1768.0732421875, + "y": 1841.98779296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1759.669921875, + "y": 1842.2529296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1752.8486328125, + "y": 1843.00732421875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1763.650390625, + "y": 1868.7890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1781.173828125, + "y": 1883.6591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1722.2392578125, + "y": 1881.93017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1697.177734375, + "y": 1904.87255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1664.8359375, + "y": 1911.44873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1649.4765625, + "y": 1913.2646484375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1616.8955078125, + "y": 1917.3447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1587.6435546875, + "y": 1881.70654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1552.34765625, + "y": 1867.26611328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1539.4384765625, + "y": 1856.26806640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B52-沉玉谷-赤璋城垣1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B52-沉玉谷-赤璋城垣1.json new file mode 100644 index 00000000..7813f585 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B52-沉玉谷-赤璋城垣1.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷B52-沉玉谷-赤璋城垣1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2066.1591796875, + "y": 1484.69873046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2073.9384765625, + "y": 1496.3681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2088.4716796875, + "y": 1513.37841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2053.880859375, + "y": 1538.974609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2048.6279296875, + "y": 1544.30029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2039.267578125, + "y": 1543.1337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2034.82421875, + "y": 1528.35986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2040.6044921875, + "y": 1502.375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2036.9345703125, + "y": 1489.2177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2030.263671875, + "y": 1455.24169921875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1863.6025390625, + "y": 1590.97412109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1854.3125, + "y": 1606.4892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1879.5673828125, + "y": 1615.26953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1885.6298828125, + "y": 1568.453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1907.1826171875, + "y": 1526.8046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1916.88671875, + "y": 1520.21826171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1904.3818359375, + "y": 1501.63720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1879.51953125, + "y": 1479.203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1885.2841796875, + "y": 1437.78173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1905.0302734375, + "y": 1410.41015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1933.34765625, + "y": 1377.603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B53-沉玉谷-赤璋城垣2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B53-沉玉谷-赤璋城垣2.json new file mode 100644 index 00000000..b751e6f1 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B53-沉玉谷-赤璋城垣2.json @@ -0,0 +1,220 @@ +{ + "info": { + "name": "薄荷B53-沉玉谷-赤璋城垣2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2323.8623046875, + "y": 1605.01416015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 2274.3974609375, + "y": 1602.42626953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2244.703125, + "y": 1590.73291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2235.3095703125, + "y": 1589.7900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2226.7333984375, + "y": 1589.48486328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2220.2822265625, + "y": 1587.00244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2222.9326171875, + "y": 1560.80859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2214.8740234375, + "y": 1541.89013671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2323.8623046875, + "y": 1605.01416015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2331.935546875, + "y": 1599.181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2358.724609375, + "y": 1563.43896484375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2344.1337890625, + "y": 1541.0244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2355.123046875, + "y": 1527.947265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2375.740234375, + "y": 1520.373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2364.673828125, + "y": 1492.99169921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2363.791015625, + "y": 1476.3876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2410.828125, + "y": 1441.30810546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1800" + }, + { + "id": 18, + "x": 2401.3681640625, + "y": 1414.748046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2384.55078125, + "y": 1400.10498046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2350.0576171875, + "y": 1381.81787109375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2336.919921875, + "y": 1387.990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2318.31640625, + "y": 1410.25634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2316.3896484375, + "y": 1419.04052734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B54-沉玉谷-赤璋城垣3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B54-沉玉谷-赤璋城垣3.json new file mode 100644 index 00000000..fe96b914 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B54-沉玉谷-赤璋城垣3.json @@ -0,0 +1,471 @@ +{ + "info": { + "name": "薄荷B54-沉玉谷-赤璋城垣3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2207.12890625, + "y": 1253.1572265625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2212.6591796875, + "y": 1229.44775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2229.2880859375, + "y": 1198.62939453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2245.2578125, + "y": 1188.37841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2262.646484375, + "y": 1176.853515625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "j,wait(0.1)" + }, + { + "id": 6, + "x": 2292.52734375, + "y": 1205.46630859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": 2305.337890625, + "y": 1164.1962890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 2328.5263671875, + "y": 1176.29833984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": 2342.763671875, + "y": 1194.560546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2341.0771484375, + "y": 1213.90380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2303.0751953125, + "y": 1251.7890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2294.546875, + "y": 1269.5712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2311.5078125, + "y": 1246.58935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2344.02734375, + "y": 1213.54345703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2361.5869140625, + "y": 1205.87548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2360.490234375, + "y": 1181.27392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2360.2587890625, + "y": 1164.0556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2361.59375, + "y": 1120.31298828125, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2362.955078125, + "y": 1103.08837890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2363.501953125, + "y": 1094.37548828125, + "type": "target", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2207.056640625, + "y": 1253.21484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2183.9775390625, + "y": 1231.94873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2137.1435546875, + "y": 1227.1630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 2104.18359375, + "y": 1230.56787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2096.1298828125, + "y": 1228.84130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2125.8408203125, + "y": 1219.2119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2143.283203125, + "y": 1213.640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2154.08203125, + "y": 1198.17431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2176.6689453125, + "y": 1150.31298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2190.9287109375, + "y": 1108.505859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 2198.859375, + "y": 1063.50634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 2172.16015625, + "y": 1050.90576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 2178.59765625, + "y": 1033.18017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 2185.21875, + "y": 1003.7109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 2184.7763671875, + "y": 985.48046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 2152.1748046875, + "y": 980.86474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 2122.9697265625, + "y": 953.09619140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 2111.46875, + "y": 943.513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 2087.677734375, + "y": 928.05126953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 2081.97265625, + "y": 923.3115234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 2072.169921875, + "y": 931.82470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 2065.443359375, + "y": 937.5810546875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 2058.4453125, + "y": 935.580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 2051.8486328125, + "y": 923.544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 2025.654296875, + "y": 931.916015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 1999.1884765625, + "y": 928.7001953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 47, + "x": 2013.97265625, + "y": 932.3837890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 2024.7119140625, + "y": 959.53759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 2013.298828125, + "y": 1009.9189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 1999.6357421875, + "y": 1035.45458984375, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 1998.4453125, + "y": 1036.96435546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B55-沉玉谷-悬练山.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B55-沉玉谷-悬练山.json new file mode 100644 index 00000000..02f9587c --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B55-沉玉谷-悬练山.json @@ -0,0 +1,255 @@ +{ + "info": { + "name": "薄荷B55-沉玉谷-悬练山", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1904.513671875, + "y": 1196.8974609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 1907.9228515625, + "y": 1211.39892578125, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 1926.5185546875, + "y": 1243.53759765625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "2200", + "type": "path" + }, + { + "id": 4, + "x": 1933.8203125, + "y": 1265.6123046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 1904.185546875, + "y": 1307.14453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 1862.7646484375, + "y": 1303.7841796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 1861.71875, + "y": 1316.32666015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 1847.5537109375, + "y": 1333.36865234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 1829.7744140625, + "y": 1342.2646484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 1802.673828125, + "y": 1347.31103515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 1779.328125, + "y": 1335.48681640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 1757.955078125, + "y": 1330.98486328125, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 1733.94921875, + "y": 1313.876953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 1723.482421875, + "y": 1289.8798828125, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 1718.525390625, + "y": 1274.9384765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 1708.6650390625, + "y": 1269.33203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 1707.3076171875, + "y": 1259.9814453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 1707.2958984375, + "y": 1246.31103515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 1708.21484375, + "y": 1235.05224609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 1703.1962890625, + "y": 1220.3154296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 1706.505859375, + "y": 1202.8251953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 1723.1328125, + "y": 1197.80712890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 23, + "x": 1904.4853515625, + "y": 1196.96142578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1861.0322265625, + "y": 1188.21826171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3000" + }, + { + "id": 25, + "x": 1862.248046875, + "y": 1160.15869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1887.166015625, + "y": 1112.369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1919.3740234375, + "y": 1082.3759765625, + "type": "path", + "move_mode": "swim", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B56-沉玉谷-遗珑埠.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B56-沉玉谷-遗珑埠.json new file mode 100644 index 00000000..966d414b --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B56-沉玉谷-遗珑埠.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "薄荷B56-沉玉谷-遗珑埠", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2145.6640625, + "y": 2412.943359375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2140.6533203125, + "y": 2419.8525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2142.4599609375, + "y": 2455.251220703125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2145.578125, + "y": 2476.467529296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 2143.4375, + "y": 2461.505859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2117.7626953125, + "y": 2447.118408203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2114.4482421875, + "y": 2466.866455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2108.62890625, + "y": 2471.459716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2115.13671875, + "y": 2487.358642578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2124.990234375, + "y": 2513.1533203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2139.412109375, + "y": 2506.49365234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2149.0390625, + "y": 2523.28076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2161.82421875, + "y": 2544.644775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2225.7783203125, + "y": 2533.686767578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 15, + "x": 2230.33984375, + "y": 2531.129150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B57-沉玉谷-暝垣山.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B57-沉玉谷-暝垣山.json new file mode 100644 index 00000000..b2600e41 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B57-沉玉谷-暝垣山.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "薄荷B57-沉玉谷-暝垣山", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2614.5107421875, + "y": 2375.412841796875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2657.87109375, + "y": 2362.294677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2737.900390625, + "y": 2357.708251953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3800" + }, + { + "id": 4, + "x": 2738.7587890625, + "y": 2352.693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2753.259765625, + "y": 2295.065185546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 6, + "x": 2753.232421875, + "y": 2291.9873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2615.03515625, + "y": 2375.6494140625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2646.345703125, + "y": 2387.564697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2644.890625, + "y": 2418.783203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2595.494140625, + "y": 2506.393310546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3000" + }, + { + "id": 11, + "x": 2585.2744140625, + "y": 2522.0361328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2619.5205078125, + "y": 2527.23046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2655.9873046875, + "y": 2527.945556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2622.4384765625, + "y": 2539.213623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2571.5810546875, + "y": 2570.54638671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2533.220703125, + "y": 2615.704833984375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2614.9873046875, + "y": 2375.628662109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2583.087890625, + "y": 2357.79541015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1800" + }, + { + "id": 19, + "x": 2528.623046875, + "y": 2330.101806640625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2509.8095703125, + "y": 2307.590087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2446.6494140625, + "y": 2245.314208984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "4000" + }, + { + "id": 22, + "x": 2450.1259765625, + "y": 2241.736083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B58-沉玉谷-宝玦口.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B58-沉玉谷-宝玦口.json new file mode 100644 index 00000000..4c4df65c --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B58-沉玉谷-宝玦口.json @@ -0,0 +1,292 @@ +{ + "info": { + "name": "薄荷B58-沉玉谷-宝玦口", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2614.99609375, + "y": 2050.85595703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 2590.3212890625, + "y": 2049.962158203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2574.5244140625, + "y": 2036.62548828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 2570.541015625, + "y": 2032.62841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2614.99609375, + "y": 2050.85595703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2630.8720703125, + "y": 2035.98291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2718.58984375, + "y": 1988.30419921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 2720.0576171875, + "y": 1979.21826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2462.8125, + "y": 1801.62451171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2437.8359375, + "y": 1827.201171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1700" + }, + { + "id": 11, + "x": 2467.5771484375, + "y": 1865.283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2510.2724609375, + "y": 1861.046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2522.9033203125, + "y": 1866.322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2520.2412109375, + "y": 1869.40478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2466.4814453125, + "y": 1880.0146484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 16, + "x": 2453.8349609375, + "y": 1888.27490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2429.3583984375, + "y": 1893.5029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2435.619140625, + "y": 1909.7587890625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2462.6728515625, + "y": 1801.59765625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2458.765625, + "y": 1797.0087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2384.529296875, + "y": 1729.984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2357.6875, + "y": 1727.11962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2325.96484375, + "y": 1731.9130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 2321.6875, + "y": 1736.7998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2311.7529296875, + "y": 1752.43310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2300.560546875, + "y": 1760.24609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2282.91015625, + "y": 1767.57763671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2269.15234375, + "y": 1800.67236328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 29, + "x": 2281.3642578125, + "y": 1801.216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2338.626953125, + "y": 1780.171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 31, + "x": 2343.11328125, + "y": 1778.61962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B59-沉玉谷-赤望台1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B59-沉玉谷-赤望台1.json new file mode 100644 index 00000000..a317800b --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B59-沉玉谷-赤望台1.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷B59-沉玉谷-赤望台1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2628.1103515625, + "y": 1528.55859375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2630.9580078125, + "y": 1535.16796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2644.1748046875, + "y": 1585.46728515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 2657.2568359375, + "y": 1596.37841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2662.455078125, + "y": 1617.85693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2668.3837890625, + "y": 1616.896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2647.1435546875, + "y": 1639.783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2636.9794921875, + "y": 1673.0595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2644.1611328125, + "y": 1684.24072265625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2628.1044921875, + "y": 1528.54296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2617.5732421875, + "y": 1499.36767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2627.609375, + "y": 1467.80908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2630.494140625, + "y": 1435.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2657.408203125, + "y": 1441.130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2686.9072265625, + "y": 1447.6357421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2660.70703125, + "y": 1440.34912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2645.125, + "y": 1439.02734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2627.921875, + "y": 1423.6162109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2620.4638671875, + "y": 1416.1025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2639.8232421875, + "y": 1400.6630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2645.869140625, + "y": 1396.28369140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2654.1572265625, + "y": 1388.69921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2619.6376953125, + "y": 1350.17333984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 24, + "x": 2612.755859375, + "y": 1350.75390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2596.9091796875, + "y": 1360.66455078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 26, + "x": 2597.9990234375, + "y": 1350.2255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2601.501953125, + "y": 1342.470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2609.6708984375, + "y": 1325.8583984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2618.546875, + "y": 1312.22119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B60-沉玉谷-赤望台2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B60-沉玉谷-赤望台2.json new file mode 100644 index 00000000..2c04ca23 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B60-沉玉谷-赤望台2.json @@ -0,0 +1,399 @@ +{ + "info": { + "name": "薄荷B60-沉玉谷-赤望台2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2628.111328125, + "y": 1528.5341796875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2619.3994140625, + "y": 1533.56103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2590.5888671875, + "y": 1535.27587890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 2585.609375, + "y": 1517.6962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2579.0478515625, + "y": 1501.3046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2584.6064453125, + "y": 1487.609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2576.6005859375, + "y": 1456.14697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2535.130859375, + "y": 1430.6064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2529.4521484375, + "y": 1413.61962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2542.9619140625, + "y": 1390.51318359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2544.19140625, + "y": 1372.63525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2550.80078125, + "y": 1357.28076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2556.505859375, + "y": 1341.62646484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2575.9892578125, + "y": 1326.93212890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2587.1416015625, + "y": 1307.17626953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2614.4482421875, + "y": 1296.89794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2619.708984375, + "y": 1288.86865234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2652.2392578125, + "y": 1276.6337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2680.0830078125, + "y": 1268.44580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2709.50390625, + "y": 1250.5126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2726.25, + "y": 1227.62646484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2737.5732421875, + "y": 1217.947265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2743.5244140625, + "y": 1210.5859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 2730.1572265625, + "y": 1225.32080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2722.484375, + "y": 1235.8681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2706.5654296875, + "y": 1252.71875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2684.806640625, + "y": 1272.998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2701.4775390625, + "y": 1297.4482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2726.1123046875, + "y": 1315.16845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2734.943359375, + "y": 1309.41015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 2744.546875, + "y": 1306.51025390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 2753.3193359375, + "y": 1312.140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 33, + "x": 2761.740234375, + "y": 1315.66064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 2796.775390625, + "y": 1327.76806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 35, + "x": 2809.857421875, + "y": 1322.61572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 2830.9794921875, + "y": 1313.44580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 2856.009765625, + "y": 1303.30126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 2856.228515625, + "y": 1335.9892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 2835.7578125, + "y": 1337.529296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 2870.69140625, + "y": 1324.7392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 2926.626953125, + "y": 1334.42431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 2979.6337890625, + "y": 1317.638671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 2993.4140625, + "y": 1333.328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B61-沉玉谷-赤望台3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B61-沉玉谷-赤望台3.json new file mode 100644 index 00000000..06bb9d3c --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B61-沉玉谷-赤望台3.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷B61-沉玉谷-赤望台3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2870.0380859375, + "y": 1503.326171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2878.55078125, + "y": 1505.59326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2896.7978515625, + "y": 1523.07373046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 4, + "x": 2922.748046875, + "y": 1528.916015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 2930.404296875, + "y": 1555.8955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2936.7001953125, + "y": 1552.9580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3006.376953125, + "y": 1519.13525390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3008.6494140625, + "y": 1512.466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3008.5625, + "y": 1500.70263671875, + "type": "target", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2984.912109375, + "y": 1543.60009765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2979.4736328125, + "y": 1567.25341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2982.1767578125, + "y": 1589.1923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2970.7451171875, + "y": 1647.50732421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2940.9912109375, + "y": 1695.28857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2938.7265625, + "y": 1717.18310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2974.072265625, + "y": 1713.71923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2869.0400390625, + "y": 1503.01953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2877.640625, + "y": 1505.7099609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2899.212890625, + "y": 1523.49609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 20, + "x": 2890.3583984375, + "y": 1521.52490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2873.873046875, + "y": 1519.53955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2866.7783203125, + "y": 1517.6748046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2849.642578125, + "y": 1500.29248046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 2836.6611328125, + "y": 1505.61279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2831.0595703125, + "y": 1508.84228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2815.322265625, + "y": 1503.93798828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2795.943359375, + "y": 1511.69384765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2772.458984375, + "y": 1526.298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2743.748046875, + "y": 1532.34716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2733.34765625, + "y": 1471.36865234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 31, + "x": 2740.908203125, + "y": 1465.42333984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷B62-沉玉谷-赤望台4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷B62-沉玉谷-赤望台4.json new file mode 100644 index 00000000..6a6aef86 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷B62-沉玉谷-赤望台4.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷B62-沉玉谷-赤望台4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2870.0478515625, + "y": 1503.328125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2845.7578125, + "y": 1493.43603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2830.1640625, + "y": 1509.04443359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2823.1025390625, + "y": 1510.9111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2804.1396484375, + "y": 1507.62255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2784.1591796875, + "y": 1504.7431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2792.2998046875, + "y": 1517.98291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2786.6201171875, + "y": 1518.09423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2786.041015625, + "y": 1526.8291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2784.4248046875, + "y": 1531.1201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2786.7998046875, + "y": 1532.48388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2786.06640625, + "y": 1541.99462890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2784.9326171875, + "y": 1547.07177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2783.30078125, + "y": 1565.716796875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2782.8564453125, + "y": 1574.07421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2787.5849609375, + "y": 1582.52392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2794.7177734375, + "y": 1595.228515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2816.4365234375, + "y": 1597.61669921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": 2840.994140625, + "y": 1651.66455078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 20, + "x": 2831.8154296875, + "y": 1642.5546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2790.578125, + "y": 1653.03515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2769.8828125, + "y": 1657.36279296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2734.6103515625, + "y": 1654.42138671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 24, + "x": 2736.5126953125, + "y": 1627.07275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2726.25390625, + "y": 1619.88623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2729.70703125, + "y": 1599.8662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2732.0986328125, + "y": 1582.103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2734.1474609375, + "y": 1568.4326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2744.6845703125, + "y": 1556.4443359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2758.921875, + "y": 1564.66845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 2765.80859375, + "y": 1564.92919921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 2767.904296875, + "y": 1565.689453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷C01-稻妻-鸣神岛-离岛.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C01-稻妻-鸣神岛-离岛.json similarity index 100% rename from repo/pathing/薄荷/薄荷C01-稻妻-鸣神岛-离岛.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C01-稻妻-鸣神岛-离岛.json diff --git a/repo/pathing/薄荷/薄荷C02-稻妻-鸣神岛-荒海1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C02-稻妻-鸣神岛-荒海1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C02-稻妻-鸣神岛-荒海1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C02-稻妻-鸣神岛-荒海1.json diff --git a/repo/pathing/薄荷/薄荷C03-稻妻-鸣神岛-荒海2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C03-稻妻-鸣神岛-荒海2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C03-稻妻-鸣神岛-荒海2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C03-稻妻-鸣神岛-荒海2.json diff --git a/repo/pathing/薄荷/薄荷C04-稻妻-鸣神岛-绀田村.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C04-稻妻-鸣神岛-绀田村.json similarity index 100% rename from repo/pathing/薄荷/薄荷C04-稻妻-鸣神岛-绀田村.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C04-稻妻-鸣神岛-绀田村.json diff --git a/repo/pathing/薄荷/薄荷C05-稻妻-鸣神岛-神樱大社(运行4h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷C05-稻妻-鸣神岛-神樱大社.json similarity index 100% rename from repo/pathing/薄荷/薄荷C05-稻妻-鸣神岛-神樱大社(运行4h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C05-稻妻-鸣神岛-神樱大社.json diff --git a/repo/pathing/薄荷/薄荷C06-稻妻-鸣神岛-神里屋敷.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C06-稻妻-鸣神岛-神里屋敷.json similarity index 100% rename from repo/pathing/薄荷/薄荷C06-稻妻-鸣神岛-神里屋敷.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C06-稻妻-鸣神岛-神里屋敷.json diff --git a/repo/pathing/薄荷/薄荷C07-稻妻-鸣神岛-白狐之野.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C07-稻妻-鸣神岛-白狐之野.json similarity index 100% rename from repo/pathing/薄荷/薄荷C07-稻妻-鸣神岛-白狐之野.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C07-稻妻-鸣神岛-白狐之野.json diff --git a/repo/pathing/薄荷/薄荷C08-稻妻-鸣神岛-稻妻城1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C08-稻妻-鸣神岛-稻妻城1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C08-稻妻-鸣神岛-稻妻城1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C08-稻妻-鸣神岛-稻妻城1.json diff --git a/repo/pathing/薄荷/薄荷C09-稻妻-鸣神岛-稻妻城2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C09-稻妻-鸣神岛-稻妻城2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C09-稻妻-鸣神岛-稻妻城2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C09-稻妻-鸣神岛-稻妻城2.json diff --git a/repo/pathing/薄荷/薄荷C10-稻妻-鸣神岛-堇色之庭.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C10-稻妻-鸣神岛-堇色之庭.json similarity index 100% rename from repo/pathing/薄荷/薄荷C10-稻妻-鸣神岛-堇色之庭.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C10-稻妻-鸣神岛-堇色之庭.json diff --git a/repo/pathing/薄荷/薄荷C11-稻妻-神无冢-九条阵屋1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C11-稻妻-神无冢-九条阵屋1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C11-稻妻-神无冢-九条阵屋1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C11-稻妻-神无冢-九条阵屋1.json diff --git a/repo/pathing/薄荷/薄荷C12-稻妻-神无冢-九条阵屋2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C12-稻妻-神无冢-九条阵屋2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C12-稻妻-神无冢-九条阵屋2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C12-稻妻-神无冢-九条阵屋2.json diff --git a/repo/pathing/薄荷/薄荷C13-稻妻-神无冢-无相之火(收集800).json b/repo/js/薄荷采集/assets/AutoPath/薄荷C13-稻妻-神无冢-无相之火.json similarity index 100% rename from repo/pathing/薄荷/薄荷C13-稻妻-神无冢-无相之火(收集800).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C13-稻妻-神无冢-无相之火.json diff --git a/repo/pathing/薄荷/薄荷C14-稻妻-神无冢-踏鞴砂1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C14-稻妻-神无冢-踏鞴砂1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C14-稻妻-神无冢-踏鞴砂1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C14-稻妻-神无冢-踏鞴砂1.json diff --git a/repo/pathing/薄荷/薄荷C15-稻妻-神无冢-踏鞴砂2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C15-稻妻-神无冢-踏鞴砂2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C15-稻妻-神无冢-踏鞴砂2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C15-稻妻-神无冢-踏鞴砂2.json diff --git a/repo/pathing/薄荷/薄荷C16-稻妻-神无冢-踏鞴砂3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C16-稻妻-神无冢-踏鞴砂3.json similarity index 100% rename from repo/pathing/薄荷/薄荷C16-稻妻-神无冢-踏鞴砂3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C16-稻妻-神无冢-踏鞴砂3.json diff --git a/repo/pathing/薄荷/薄荷C17-稻妻-神无冢-踏鞴砂4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C17-稻妻-神无冢-踏鞴砂4.json similarity index 100% rename from repo/pathing/薄荷/薄荷C17-稻妻-神无冢-踏鞴砂4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C17-稻妻-神无冢-踏鞴砂4.json diff --git a/repo/pathing/薄荷/薄荷C18-稻妻-神无冢-名椎滩.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C18-稻妻-神无冢-名椎滩.json similarity index 100% rename from repo/pathing/薄荷/薄荷C18-稻妻-神无冢-名椎滩.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C18-稻妻-神无冢-名椎滩.json diff --git a/repo/pathing/薄荷/薄荷C19-稻妻-八酝岛-无想刃狭间.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C19-稻妻-八酝岛-无想刃狭间.json similarity index 100% rename from repo/pathing/薄荷/薄荷C19-稻妻-八酝岛-无想刃狭间.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C19-稻妻-八酝岛-无想刃狭间.json diff --git a/repo/pathing/薄荷/薄荷C20-稻妻-八酝岛-藤兜砦1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C20-稻妻-八酝岛-藤兜砦1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C20-稻妻-八酝岛-藤兜砦1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C20-稻妻-八酝岛-藤兜砦1.json diff --git a/repo/pathing/薄荷/薄荷C21-稻妻-八酝岛-藤兜砦2(收集850).json b/repo/js/薄荷采集/assets/AutoPath/薄荷C21-稻妻-八酝岛-藤兜砦2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C21-稻妻-八酝岛-藤兜砦2(收集850).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C21-稻妻-八酝岛-藤兜砦2.json diff --git a/repo/pathing/薄荷/薄荷C22-稻妻-八酝岛-绯木村.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C22-稻妻-八酝岛-绯木村.json similarity index 100% rename from repo/pathing/薄荷/薄荷C22-稻妻-八酝岛-绯木村.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C22-稻妻-八酝岛-绯木村.json diff --git a/repo/pathing/薄荷/薄荷C23-稻妻-八酝岛-蛇神之首1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C23-稻妻-八酝岛-蛇神之首1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C23-稻妻-八酝岛-蛇神之首1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C23-稻妻-八酝岛-蛇神之首1.json diff --git a/repo/pathing/薄荷/薄荷C24-稻妻-八酝岛-蛇神之首2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C24-稻妻-八酝岛-蛇神之首2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C24-稻妻-八酝岛-蛇神之首2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C24-稻妻-八酝岛-蛇神之首2.json diff --git a/repo/pathing/薄荷/薄荷C25-稻妻-八酝岛-蛇骨矿洞1(运行4.5h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷C25-稻妻-八酝岛-蛇骨矿洞1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C25-稻妻-八酝岛-蛇骨矿洞1(运行4.5h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C25-稻妻-八酝岛-蛇骨矿洞1.json diff --git a/repo/pathing/薄荷/薄荷C26-稻妻-八酝岛-蛇骨矿洞2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C26-稻妻-八酝岛-蛇骨矿洞2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C26-稻妻-八酝岛-蛇骨矿洞2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C26-稻妻-八酝岛-蛇骨矿洞2.json diff --git a/repo/pathing/薄荷/薄荷C27-稻妻-八酝岛-蛇骨矿洞3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C27-稻妻-八酝岛-蛇骨矿洞3.json similarity index 100% rename from repo/pathing/薄荷/薄荷C27-稻妻-八酝岛-蛇骨矿洞3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C27-稻妻-八酝岛-蛇骨矿洞3.json diff --git a/repo/pathing/薄荷/薄荷C28-稻妻-海祇岛-水月池1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C28-稻妻-海祇岛-水月池1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C28-稻妻-海祇岛-水月池1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C28-稻妻-海祇岛-水月池1.json diff --git a/repo/pathing/薄荷/薄荷C29-稻妻-海祇岛-水月池2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C29-稻妻-海祇岛-水月池2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C29-稻妻-海祇岛-水月池2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C29-稻妻-海祇岛-水月池2.json diff --git a/repo/pathing/薄荷/薄荷C30-稻妻-海祇岛-曚云神社(收集900).json b/repo/js/薄荷采集/assets/AutoPath/薄荷C30-稻妻-海祇岛-曚云神社.json similarity index 100% rename from repo/pathing/薄荷/薄荷C30-稻妻-海祇岛-曚云神社(收集900).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C30-稻妻-海祇岛-曚云神社.json diff --git a/repo/pathing/薄荷/薄荷C31-稻妻-海祇岛-珊瑚宫.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C31-稻妻-海祇岛-珊瑚宫.json similarity index 100% rename from repo/pathing/薄荷/薄荷C31-稻妻-海祇岛-珊瑚宫.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C31-稻妻-海祇岛-珊瑚宫.json diff --git a/repo/pathing/薄荷/薄荷C32-稻妻-海祇岛-望泷村1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C32-稻妻-海祇岛-望泷村1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C32-稻妻-海祇岛-望泷村1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C32-稻妻-海祇岛-望泷村1.json diff --git a/repo/pathing/薄荷/薄荷C33-稻妻-海祇岛-望泷村2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C33-稻妻-海祇岛-望泷村2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C33-稻妻-海祇岛-望泷村2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C33-稻妻-海祇岛-望泷村2.json diff --git a/repo/pathing/薄荷/薄荷C34-稻妻-清籁岛-越石村.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C34-稻妻-清籁岛-越石村.json similarity index 100% rename from repo/pathing/薄荷/薄荷C34-稻妻-清籁岛-越石村.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C34-稻妻-清籁岛-越石村.json diff --git a/repo/pathing/薄荷/薄荷C35-稻妻-清籁岛-平海砦.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C35-稻妻-清籁岛-平海砦.json similarity index 100% rename from repo/pathing/薄荷/薄荷C35-稻妻-清籁岛-平海砦.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C35-稻妻-清籁岛-平海砦.json diff --git a/repo/pathing/薄荷/薄荷C36-稻妻-清籁岛-天云峠1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C36-稻妻-清籁岛-天云峠1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C36-稻妻-清籁岛-天云峠1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C36-稻妻-清籁岛-天云峠1.json diff --git a/repo/pathing/薄荷/薄荷C37-稻妻-清籁岛-天云峠2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C37-稻妻-清籁岛-天云峠2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C37-稻妻-清籁岛-天云峠2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C37-稻妻-清籁岛-天云峠2.json diff --git a/repo/pathing/薄荷/薄荷C38-稻妻-清籁岛-浅濑神社.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C38-稻妻-清籁岛-浅濑神社.json similarity index 100% rename from repo/pathing/薄荷/薄荷C38-稻妻-清籁岛-浅濑神社.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C38-稻妻-清籁岛-浅濑神社.json diff --git a/repo/pathing/薄荷/薄荷C39-稻妻-鹤观-知比山.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C39-稻妻-鹤观-知比山.json similarity index 100% rename from repo/pathing/薄荷/薄荷C39-稻妻-鹤观-知比山.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C39-稻妻-鹤观-知比山.json diff --git a/repo/pathing/薄荷/薄荷C40-稻妻-鹤观-笈名海滨.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C40-稻妻-鹤观-笈名海滨.json similarity index 100% rename from repo/pathing/薄荷/薄荷C40-稻妻-鹤观-笈名海滨.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C40-稻妻-鹤观-笈名海滨.json diff --git a/repo/pathing/薄荷/薄荷C41-稻妻-鹤观-茂知祭场1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C41-稻妻-鹤观-茂知祭场1.json similarity index 100% rename from repo/pathing/薄荷/薄荷C41-稻妻-鹤观-茂知祭场1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C41-稻妻-鹤观-茂知祭场1.json diff --git a/repo/pathing/薄荷/薄荷C42-稻妻-鹤观-茂知祭场2(运行5h).json b/repo/js/薄荷采集/assets/AutoPath/薄荷C42-稻妻-鹤观-茂知祭场2.json similarity index 100% rename from repo/pathing/薄荷/薄荷C42-稻妻-鹤观-茂知祭场2(运行5h).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C42-稻妻-鹤观-茂知祭场2.json diff --git a/repo/pathing/薄荷/薄荷C43-稻妻-鹤观-茂知祭场3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C43-稻妻-鹤观-茂知祭场3.json similarity index 100% rename from repo/pathing/薄荷/薄荷C43-稻妻-鹤观-茂知祭场3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C43-稻妻-鹤观-茂知祭场3.json diff --git a/repo/pathing/薄荷/薄荷C44-稻妻-鹤观-茂知祭场4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C44-稻妻-鹤观-茂知祭场4.json similarity index 100% rename from repo/pathing/薄荷/薄荷C44-稻妻-鹤观-茂知祭场4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C44-稻妻-鹤观-茂知祭场4.json diff --git a/repo/pathing/薄荷/薄荷C45-稻妻-鹤观-惑饲滩.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C45-稻妻-鹤观-惑饲滩.json similarity index 100% rename from repo/pathing/薄荷/薄荷C45-稻妻-鹤观-惑饲滩.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C45-稻妻-鹤观-惑饲滩.json diff --git a/repo/pathing/薄荷/薄荷C46-稻妻-鸣神岛-镇守之森.json b/repo/js/薄荷采集/assets/AutoPath/薄荷C46-稻妻-鸣神岛-镇守之森.json similarity index 100% rename from repo/pathing/薄荷/薄荷C46-稻妻-鸣神岛-镇守之森.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷C46-稻妻-鸣神岛-镇守之森.json diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E01-枫丹-海露港.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E01-枫丹-海露港.json new file mode 100644 index 00000000..11fbd53c --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E01-枫丹-海露港.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "薄荷E01-枫丹-海露港", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4984.18896484375, + "y": 1699.791015625, + "action_params": "" + }, + { + "id": 2, + "x": 4977.69970703125, + "y": 1712.12548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4981.21875, + "y": 1735.72265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4969.58544921875, + "y": 1817.54638671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 4953.99365234375, + "y": 1819.2978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4916.28466796875, + "y": 1802.65478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4903.10888671875, + "y": 1792.3671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4893.7958984375, + "y": 1747.2373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4885.5126953125, + "y": 1776.16259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4859.14599609375, + "y": 1785.04248046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4827.43359375, + "y": 1780.99169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E02-枫丹-厄里那斯1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E02-枫丹-厄里那斯1.json new file mode 100644 index 00000000..d50f798f --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E02-枫丹-厄里那斯1.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "薄荷E02-枫丹-厄里那斯1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4625.865234375, + "y": 2182.688720703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4570.5595703125, + "y": 2236.6875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4525.56396484375, + "y": 2283.653076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4506.11962890625, + "y": 2280.9931640625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4625.7333984375, + "y": 2181.958984375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4559.45849609375, + "y": 2195.29443359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4512.0908203125, + "y": 2183.5615234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4496.59912109375, + "y": 2176.062744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4472.8818359375, + "y": 2165.9912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4469.07275390625, + "y": 2149.92236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4477.7138671875, + "y": 2140.664794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4505.99560546875, + "y": 2104.48046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4512.33740234375, + "y": 2077.497314453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4513.205078125, + "y": 2038.44775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4539.07275390625, + "y": 2045.46923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4609.060546875, + "y": 2047.80859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4630.19140625, + "y": 2057.357666015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4654.74169921875, + "y": 2057.752197265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4688.32080078125, + "y": 2052.30517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E03-枫丹-厄里那斯2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E03-枫丹-厄里那斯2.json new file mode 100644 index 00000000..d28ce5ca --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E03-枫丹-厄里那斯2.json @@ -0,0 +1,363 @@ +{ + "info": { + "name": "薄荷E03-枫丹-厄里那斯2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4876.5576171875, + "y": 2255.205078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4856.44482421875, + "y": 2256.41748046875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4852.4931640625, + "y": 2254.96728515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4823.85009765625, + "y": 2247.295166015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4829.60693359375, + "y": 2247.7275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4859.36767578125, + "y": 2228.99853515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4854.7646484375, + "y": 2217.603759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4851.7646484375, + "y": 2208.382080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4851.04931640625, + "y": 2201.60009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4848.38916015625, + "y": 2197.47021484375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4850.3896484375, + "y": 2182.23388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4846.06787109375, + "y": 2166.6962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4844.8955078125, + "y": 2149.6201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4853.6455078125, + "y": 2137.07080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4857.279296875, + "y": 2130.028564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4877.38525390625, + "y": 2124.193359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4898.2705078125, + "y": 2112.695556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4971.12646484375, + "y": 2097.218994140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 19, + "x": 4975.12158203125, + "y": 2106.476318359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4967.22509765625, + "y": 2128.027587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4959.44091796875, + "y": 2144.01904296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4952.55322265625, + "y": 2159.27392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4941.5751953125, + "y": 2184.193603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4927.73486328125, + "y": 2187.596435546875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4953.19140625, + "y": 2192.154541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4960.3564453125, + "y": 2205.53662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 5009.70751953125, + "y": 2233.0810546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 28, + "x": 5016.3857421875, + "y": 2294.266357421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 5006.38232421875, + "y": 2308.878173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 5005.619140625, + "y": 2334.523681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 5024.46728515625, + "y": 2346.047607421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 5025.59716796875, + "y": 2352.90283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 4997.66259765625, + "y": 2357.2392578125, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 4987.47607421875, + "y": 2356.768798828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 4974.87939453125, + "y": 2353.15625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 4962.24658203125, + "y": 2357.524169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 4955.583984375, + "y": 2366.5400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 4939.076171875, + "y": 2396.105224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 4906.037109375, + "y": 2413.927490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E04-枫丹-厄里那斯3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E04-枫丹-厄里那斯3.json new file mode 100644 index 00000000..fafe3553 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E04-枫丹-厄里那斯3.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "薄荷E04-枫丹-厄里那斯3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4689.4326171875, + "y": 2429.441650390625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4705.5, + "y": 2429.541015625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4709.8466796875, + "y": 2415.99169921875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 4749.56591796875, + "y": 2636.22607421875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4742.26806640625, + "y": 2634.981201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4730.31640625, + "y": 2607.3876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4693.82177734375, + "y": 2563.931884765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4666.11669921875, + "y": 2558.705322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4644.2021484375, + "y": 2552.33642578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4635.75634765625, + "y": 2558.07861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4628.19091796875, + "y": 2572.80224609375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 12, + "x": 4749.56494140625, + "y": 2636.219970703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4747.33203125, + "y": 2660.655029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4744.64453125, + "y": 2682.0302734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4741.9912109375, + "y": 2695.8994140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4737.30712890625, + "y": 2711.2470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4735.15185546875, + "y": 2725.724609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4730.74609375, + "y": 2731.744140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4722.5029296875, + "y": 2741.083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4714.4052734375, + "y": 2743.497802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4713.24755859375, + "y": 2776.701416015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4695.49951171875, + "y": 2790.287109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4688.59912109375, + "y": 2804.5830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4646.04296875, + "y": 2812.473388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4608.69580078125, + "y": 2814.254638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 5117.44287109375, + "y": 2543.38720703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 5106.40966796875, + "y": 2555.96044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 5086.06103515625, + "y": 2579.30712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 5073.81884765625, + "y": 2588.091064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 5051.63037109375, + "y": 2580.134033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 5040.34228515625, + "y": 2565.1103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 5022.13232421875, + "y": 2569.12353515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 5008.453125, + "y": 2571.053955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 5003.81787109375, + "y": 2576.05029296875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 4954.98193359375, + "y": 2760.1103515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 4982.00634765625, + "y": 2680.11572265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3800" + }, + { + "id": 37, + "x": 4928.37841796875, + "y": 2674.89501953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 4909.28466796875, + "y": 2695.0009765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 4903.30224609375, + "y": 2702.597900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 4897.79736328125, + "y": 2698.905029296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E05-枫丹-厄里那斯4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E05-枫丹-厄里那斯4.json new file mode 100644 index 00000000..f512e52f --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E05-枫丹-厄里那斯4.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "薄荷E05-枫丹-厄里那斯4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4954.97119140625, + "y": 2760.106201171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4922.3037109375, + "y": 2886.52783203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 3, + "x": 4901.87890625, + "y": 2888.7998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4868.6611328125, + "y": 2882.9912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4818.5146484375, + "y": 2852.75439453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 6, + "x": 4824.4306640625, + "y": 2851.573974609375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4828.83251953125, + "y": 2852.0595703125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4705.5341796875, + "y": 2951.564697265625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4714.1962890625, + "y": 2945.561767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4779.61083984375, + "y": 2931.82861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4804.01220703125, + "y": 2946.87060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4812.677734375, + "y": 2960.660400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4810.28515625, + "y": 2989.837158203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4818.29541015625, + "y": 2973.781494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4839.83984375, + "y": 2974.461669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4871.984375, + "y": 2990.612060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4912.85205078125, + "y": 3010.8193359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E06-枫丹-厄里那斯5.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E06-枫丹-厄里那斯5.json new file mode 100644 index 00000000..750e9b30 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E06-枫丹-厄里那斯5.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "薄荷E06-枫丹-厄里那斯5", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4954.96142578125, + "y": 2760.06494140625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4956.5693359375, + "y": 2773.498779296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 5102.79296875, + "y": 2831.802001953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1800" + }, + { + "id": 4, + "x": 5117.56982421875, + "y": 2828.78173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 5135.0927734375, + "y": 2836.428466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 5161.3681640625, + "y": 2840.304443359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 5277.3642578125, + "y": 2838.040771484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 5293.66064453125, + "y": 2834.673095703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 5298.2353515625, + "y": 2889.547607421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 5286.26611328125, + "y": 2919.197021484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 5294.98974609375, + "y": 2953.82568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 5113.58837890625, + "y": 2998.220703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 5119.21875, + "y": 3029.952880859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": 5107.8447265625, + "y": 3033.275634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 5065.65869140625, + "y": 3062.11181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 5011.31982421875, + "y": 3103.376708984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4988.68408203125, + "y": 3131.14404296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 5002.61083984375, + "y": 3179.65087890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": 5008.9345703125, + "y": 3196.28125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E07-枫丹-秋分山西侧.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E07-枫丹-秋分山西侧.json new file mode 100644 index 00000000..ad6302be --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E07-枫丹-秋分山西侧.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷E07-枫丹-秋分山西侧", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4146.7939453125, + "y": 2606.3642578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 4158.0205078125, + "y": 2583.79443359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 4156.4345703125, + "y": 2572.126953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 4147.642578125, + "y": 2551.832275390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 4160.08642578125, + "y": 2495.91943359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 4190.28466796875, + "y": 2449.256591796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 4194.94091796875, + "y": 2451.293701171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": 4146.7802734375, + "y": 2606.251220703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 9, + "x": 4285.51806640625, + "y": 2658.178955078125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 4261.82861328125, + "y": 2674.483642578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 4231.45751953125, + "y": 2701.920166015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 4225.8818359375, + "y": 2706.350341796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 4231.9619140625, + "y": 2722.837890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 4237.76416015625, + "y": 2741.7763671875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 4220.50146484375, + "y": 2738.022216796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 4143.51123046875, + "y": 2749.1279296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 4134.60791015625, + "y": 2746.617431640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 4123.58935546875, + "y": 2735.0078125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 4148.40673828125, + "y": 2784.14306640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 4169.01904296875, + "y": 2815.43310546875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 4174.76123046875, + "y": 2833.981201171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 4190.41552734375, + "y": 2830.275146484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 4226.88525390625, + "y": 2809.1064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4252.11572265625, + "y": 2805.7099609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4281.70263671875, + "y": 2787.6494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4298.7119140625, + "y": 2788.34033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4335.2490234375, + "y": 2813.015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4337.2724609375, + "y": 2818.284912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4343.86767578125, + "y": 2825.752685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E08-枫丹-秋分山东侧.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E08-枫丹-秋分山东侧.json new file mode 100644 index 00000000..bea08d29 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E08-枫丹-秋分山东侧.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "薄荷E08-枫丹-秋分山东侧", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3917.171875, + "y": 2576.343017578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3925.4658203125, + "y": 2597.033447265625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 3927.744140625, + "y": 2604.61181640625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3932.822265625, + "y": 2597.8017578125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3956.4384765625, + "y": 2606.664794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3981.45703125, + "y": 2606.3955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3990.5439453125, + "y": 2608.21826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3984.52734375, + "y": 2615.726318359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E09-枫丹-枫丹廷1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E09-枫丹-枫丹廷1.json new file mode 100644 index 00000000..9156d4cc --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E09-枫丹-枫丹廷1.json @@ -0,0 +1,255 @@ +{ + "info": { + "name": "薄荷E09-枫丹-枫丹廷1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4823.59814453125, + "y": 3628.760498046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4816.3876953125, + "y": 3642.2333984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4796.52001953125, + "y": 3657.0478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4797.72412109375, + "y": 3680.046630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4813.16064453125, + "y": 3750.449462890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4838.52294921875, + "y": 3739.707763671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4877.11767578125, + "y": 3700.868408203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4892.15966796875, + "y": 3695.5029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4902.70263671875, + "y": 3679.796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4934.8369140625, + "y": 3696.40380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4953.33837890625, + "y": 3701.916259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4981.2421875, + "y": 3703.4267578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4991.42626953125, + "y": 3711.125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4998.32666015625, + "y": 3715.946533203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 5026.91357421875, + "y": 3714.501708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 5089.404296875, + "y": 3731.2060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 5087.77783203125, + "y": 3746.23583984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 5071.5478515625, + "y": 3755.39892578125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4865.400390625, + "y": 3913.07666015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4889.69091796875, + "y": 3915.24462890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4913.69091796875, + "y": 3901.230224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4906.38134765625, + "y": 3907.53369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4904.73828125, + "y": 3928.507080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4925.38623046875, + "y": 3931.262939453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4979.6357421875, + "y": 3953.56787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 5012.79443359375, + "y": 3971.872802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 5017.587890625, + "y": 4008.16845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E10-枫丹-枫丹廷2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E10-枫丹-枫丹廷2.json new file mode 100644 index 00000000..69533b0f --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E10-枫丹-枫丹廷2.json @@ -0,0 +1,264 @@ +{ + "info": { + "name": "薄荷E10-枫丹-枫丹廷2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4599.63525390625, + "y": 4023.545654296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4608.32666015625, + "y": 4021.201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4648.0546875, + "y": 3978.915283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4651.06591796875, + "y": 3986.64892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4640.39453125, + "y": 3977.064208984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4606.28369140625, + "y": 3984.4111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4581.90087890625, + "y": 3971.37548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4537.8798828125, + "y": 3960.8046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4528.40771484375, + "y": 3933.55126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4527.4892578125, + "y": 3900.437744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4503.6064453125, + "y": 3877.379638671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4491.52880859375, + "y": 3865.3349609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4488.92919921875, + "y": 3850.224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4455.96630859375, + "y": 3804.994384765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4414.8271484375, + "y": 3778.798583984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4366.8154296875, + "y": 3767.973876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4353.42529296875, + "y": 3750.369873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4417.5068359375, + "y": 3788.80078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4469.2158203125, + "y": 3804.73388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4540.36669921875, + "y": 3785.731201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4568.69482421875, + "y": 3790.881591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4602.716796875, + "y": 3803.885986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4597.97119140625, + "y": 3786.968994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4625.80712890625, + "y": 3775.378662109375, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4633.3076171875, + "y": 3776.41748046875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4642.02685546875, + "y": 3775.713134765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4661.7412109375, + "y": 3738.73779296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 28, + "x": 4675.92822265625, + "y": 3717.43505859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E11-枫丹-芒索斯山东麓.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E11-枫丹-芒索斯山东麓.json new file mode 100644 index 00000000..8b07f449 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E11-枫丹-芒索斯山东麓.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "薄荷E11-枫丹-芒索斯山东麓", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4984.7822265625, + "y": 4462.951171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4992.94580078125, + "y": 4466.4228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 5051.97314453125, + "y": 4526.91845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 5074.5751953125, + "y": 4545.025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 5089.8212890625, + "y": 4568.1298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 5078.80712890625, + "y": 4593.49755859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E12-枫丹-新枫丹科学院1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E12-枫丹-新枫丹科学院1.json new file mode 100644 index 00000000..56cf0356 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E12-枫丹-新枫丹科学院1.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷E12-枫丹-新枫丹科学院1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4624.4111328125, + "y": 4951.6748046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4596.326171875, + "y": 4974.72314453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4574.94189453125, + "y": 4970.6484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4625.2587890625, + "y": 4969.3564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4640.62939453125, + "y": 4977.19189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4631.88720703125, + "y": 4985.81298828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4647.734375, + "y": 5008.1044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4665.81982421875, + "y": 5030.56787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4636.5029296875, + "y": 5056.4365234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4624.6396484375, + "y": 5060.1787109375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4609.29345703125, + "y": 5064.7431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4549.45556640625, + "y": 5053.4169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4519.00244140625, + "y": 5039.484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4509.328125, + "y": 5079.6884765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E13-枫丹-新枫丹科学院2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E13-枫丹-新枫丹科学院2.json new file mode 100644 index 00000000..e97cf362 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E13-枫丹-新枫丹科学院2.json @@ -0,0 +1,354 @@ +{ + "info": { + "name": "薄荷E13-枫丹-新枫丹科学院2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4434.32763671875, + "y": 5091.73046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4431.26123046875, + "y": 5100.5126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4420.58984375, + "y": 5107.08544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4406.14208984375, + "y": 5119.021484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4393.5859375, + "y": 5111.1337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4330.39697265625, + "y": 5067.068359375, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4302.94921875, + "y": 5049.51904296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4286.4189453125, + "y": 5038.3330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4244.33837890625, + "y": 5046.8623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4234.88037109375, + "y": 5049.70751953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4151.52392578125, + "y": 5065.900390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4097.82666015625, + "y": 5035.5986328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2800" + }, + { + "id": 13, + "x": 4093.275390625, + "y": 5036.427734375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4434.36279296875, + "y": 5091.7373046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4435.0830078125, + "y": 5070.9423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4438.58447265625, + "y": 5052.71630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4437.6845703125, + "y": 5028.650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4451.90380859375, + "y": 4994.22802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4455.474609375, + "y": 4984.3759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4466.04931640625, + "y": 4968.4775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4470.85888671875, + "y": 4946.38525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4462.33544921875, + "y": 4922.2978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4451.75146484375, + "y": 4898.9755859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4446.68115234375, + "y": 4884.10595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4435.697265625, + "y": 4889.88671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4428.34326171875, + "y": 4888.99365234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4420.81787109375, + "y": 4885.7724609375, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4417.1123046875, + "y": 4888.08544921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4411.3603515625, + "y": 4890.705078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 4415.73046875, + "y": 4892.29443359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 4421.86181640625, + "y": 4904.07861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 4405.373046875, + "y": 4908.15478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 4400.04833984375, + "y": 4909.29833984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 4399.56787109375, + "y": 4911.33447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 4396.47509765625, + "y": 4914.5244140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 4392.6015625, + "y": 4913.1650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 4386.96142578125, + "y": 4916.72265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 4385.94482421875, + "y": 4928.201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E14-枫丹-新枫丹科学院3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E14-枫丹-新枫丹科学院3.json new file mode 100644 index 00000000..6fe8bdce --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E14-枫丹-新枫丹科学院3.json @@ -0,0 +1,507 @@ +{ + "info": { + "name": "薄荷E14-枫丹-新枫丹科学院3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4498.1298828125, + "y": 4710.787109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4504.22119140625, + "y": 4727.705078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4511.64697265625, + "y": 4735.15625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 4520.10791015625, + "y": 4743.8115234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4534.08740234375, + "y": 4759.20703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4559.328125, + "y": 4785.71435546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4571.1337890625, + "y": 4813.4912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4575.7099609375, + "y": 4813.537109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4577.5849609375, + "y": 4809.740234375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4498.16796875, + "y": 4710.7861328125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4481.98974609375, + "y": 4688.603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4463.720703125, + "y": 4663.0390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4464.7734375, + "y": 4654.60546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4471.3974609375, + "y": 4612.654296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4488.2998046875, + "y": 4614.70654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4487.337890625, + "y": 4587.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4476.99462890625, + "y": 4572.6181640625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4301.29638671875, + "y": 4764.9912109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4316.64208984375, + "y": 4774.380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4338.84375, + "y": 4787.8623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4355.548828125, + "y": 4792.43896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4373.623046875, + "y": 4792.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4365.92333984375, + "y": 4799.1650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4348.46875, + "y": 4813.0576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4368.5234375, + "y": 4822.681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4380.18359375, + "y": 4835.56396484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4386.07666015625, + "y": 4837.19384765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4389.4326171875, + "y": 4831.54345703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4392.8359375, + "y": 4817.86962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 4399.43212890625, + "y": 4802.54150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 4401.53662109375, + "y": 4797.7802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 4396.41845703125, + "y": 4781.85791015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 4395.626953125, + "y": 4766.60888671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 4392.806640625, + "y": 4756.6494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 4398.27197265625, + "y": 4743.47900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 4387.4658203125, + "y": 4729.81298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 4381.6416015625, + "y": 4719.748046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 4380.05029296875, + "y": 4704.5732421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 4387.3916015625, + "y": 4681.48046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 4396.5419921875, + "y": 4679.4248046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 4396.11572265625, + "y": 4679.970703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 4382.4921875, + "y": 4678.53125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 4367.51708984375, + "y": 4673.7265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 4352.25244140625, + "y": 4663.806640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 4343.79150390625, + "y": 4658.0771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 4319.984375, + "y": 4661.17431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 4300.6083984375, + "y": 4633.64013671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 4292.31787109375, + "y": 4600.9189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 4304.5244140625, + "y": 4612.4208984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 4310.33837890625, + "y": 4620.125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 4334.92529296875, + "y": 4622.880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": 4341.1923828125, + "y": 4612.87451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": 4366.77099609375, + "y": 4598.53662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 54, + "x": 4368.6728515625, + "y": 4586.52685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 55, + "x": 4369.1416015625, + "y": 4578.0869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E15-枫丹-新枫丹科学院4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E15-枫丹-新枫丹科学院4.json new file mode 100644 index 00000000..36e4d783 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E15-枫丹-新枫丹科学院4.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "薄荷E15-枫丹-新枫丹科学院4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4301.27978515625, + "y": 4765.05810546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4316.0380859375, + "y": 4773.32861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4305.93701171875, + "y": 4785.38525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4287.01708984375, + "y": 4791.61474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4256.01220703125, + "y": 4802.923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4239.2255859375, + "y": 4807.6875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4219.76123046875, + "y": 4821.1103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4165.15576171875, + "y": 4839.08544921875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4001.05078125, + "y": 4878.4296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4010.779296875, + "y": 4830.87158203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4013.634765625, + "y": 4819.32373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4029.0908203125, + "y": 4822.458984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4052.208984375, + "y": 4824.8525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4001.064453125, + "y": 4878.39501953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3999.513671875, + "y": 4902.2861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3997.2177734375, + "y": 4943.087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4002.482421875, + "y": 4973.8720703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 18, + "x": 3982.49609375, + "y": 4956.2900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3970.1904296875, + "y": 4948.24609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3961.48828125, + "y": 4932.826171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3952.751953125, + "y": 4925.10009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3929.5009765625, + "y": 4895.625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3918.1552734375, + "y": 4865.9130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3912.7392578125, + "y": 4851.55908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E16-枫丹-新枫丹科学院5.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E16-枫丹-新枫丹科学院5.json new file mode 100644 index 00000000..9031723a --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E16-枫丹-新枫丹科学院5.json @@ -0,0 +1,238 @@ +{ + "info": { + "name": "薄荷E16-枫丹-新枫丹科学院5", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3811.7255859375, + "y": 4952.5078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 3811.080078125, + "y": 4958.89111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3812.205078125, + "y": 4982.095703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3839.3623046875, + "y": 4959.759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3841.7802734375, + "y": 4943.44091796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3866.4658203125, + "y": 4960.1591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3879.9091796875, + "y": 4978.68701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3909.5986328125, + "y": 5002.0341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3915.0576171875, + "y": 4989.70263671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3811.7255859375, + "y": 4952.5078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3800.595703125, + "y": 4940.79541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3799.2373046875, + "y": 4921.8994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3789.4990234375, + "y": 4922.19287109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3782.220703125, + "y": 4918.0390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3764.0498046875, + "y": 4943.00830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3758.88671875, + "y": 4964.2978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3729.85546875, + "y": 4958.685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3700.83984375, + "y": 4950.92919921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3693.0791015625, + "y": 4932.19482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3679.5146484375, + "y": 4943.2939453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3646.5009765625, + "y": 4956.3994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3649.6337890625, + "y": 4934.05419921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3653.8134765625, + "y": 4896.78955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3621.71875, + "y": 4889.8076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3595.384765625, + "y": 4869.572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E17-枫丹-中央实验室遗址1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E17-枫丹-中央实验室遗址1.json new file mode 100644 index 00000000..bf687831 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E17-枫丹-中央实验室遗址1.json @@ -0,0 +1,221 @@ +{ + "info": { + "name": "薄荷E17-枫丹-中央实验室遗址1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3636.08203125, + "y": 4796.14501953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 3615.625, + "y": 4775.6005859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3592.5234375, + "y": 4779.9853515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3569.18359375, + "y": 4778.0693359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3636.08203125, + "y": 4796.14501953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3675.048828125, + "y": 4807.74169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3705.32421875, + "y": 4804.50927734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3728.275390625, + "y": 4825.93359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3765.111328125, + "y": 4812.63671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3785.09765625, + "y": 4797.11279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3817.2822265625, + "y": 4782.5751953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3822.8896484375, + "y": 4760.78515625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3636.08203125, + "y": 4796.14501953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 14, + "x": 3652.6845703125, + "y": 4740.66015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3682.583984375, + "y": 4730.427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3697.064453125, + "y": 4723.7587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3704.05859375, + "y": 4715.494140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3717.5498046875, + "y": 4715.70947265625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3729.4326171875, + "y": 4710.52978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3757.2333984375, + "y": 4704.2060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3772.6494140625, + "y": 4678.07177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3804.4755859375, + "y": 4673.30712890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 23, + "x": 3822.03515625, + "y": 4670.96142578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E18-枫丹-中央实验室遗址2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E18-枫丹-中央实验室遗址2.json new file mode 100644 index 00000000..79b00c2c --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E18-枫丹-中央实验室遗址2.json @@ -0,0 +1,454 @@ +{ + "info": { + "name": "薄荷E18-枫丹-中央实验室遗址2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3846.9296875, + "y": 4652.86669921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3841.650390625, + "y": 4642.662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3845.177734375, + "y": 4610.50732421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3822.138671875, + "y": 4616.28515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3804.0673828125, + "y": 4628.05029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3843.0361328125, + "y": 4601.18017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3857.5810546875, + "y": 4591.4990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3868.482421875, + "y": 4578.8349609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3871.6982421875, + "y": 4574.5869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3883.193359375, + "y": 4569.9951171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3894.4306640625, + "y": 4567.857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3920.470703125, + "y": 4564.24462890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3964.0185546875, + "y": 4549.9677734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": 3968.1083984375, + "y": 4548.24609375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3865.1357421875, + "y": 4492.2978515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3869.064453125, + "y": 4489.306640625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3911.5322265625, + "y": 4485.0849609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 18, + "x": 3916.755859375, + "y": 4483.970703125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3865.1357421875, + "y": 4492.30419921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3839.517578125, + "y": 4463.21875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3816.73828125, + "y": 4476.6171875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3865.12890625, + "y": 4492.3173828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3854.28125, + "y": 4477.287109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3862.1298828125, + "y": 4463.2216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3859.083984375, + "y": 4450.8466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3872.59765625, + "y": 4432.4072265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3883.6220703125, + "y": 4430.2802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3889.6513671875, + "y": 4429.19677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3904.6494140625, + "y": 4417.1630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3914.0419921875, + "y": 4423.3076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3963.0478515625, + "y": 4432.876953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 32, + "x": 3968.2392578125, + "y": 4433.7490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 3628.4853515625, + "y": 4447.57666015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 34, + "x": 3653.23046875, + "y": 4477.52294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 3660.419921875, + "y": 4486.04443359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 3672.4248046875, + "y": 4499.5966796875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 3628.4853515625, + "y": 4447.57666015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 3619.2783203125, + "y": 4447.037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 3612.794921875, + "y": 4429.6572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 3612.5, + "y": 4386.703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 3617.6767578125, + "y": 4354.81298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 3617.0283203125, + "y": 4339.1708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 3610.259765625, + "y": 4330.50048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 3620.765625, + "y": 4323.548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 3647.4765625, + "y": 4320.63232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 3664.6259765625, + "y": 4325.5654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 3686.62890625, + "y": 4330.46630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 3730.619140625, + "y": 4323.619140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 3753.404296875, + "y": 4305.93701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E19-枫丹-中央实验室遗址3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E19-枫丹-中央实验室遗址3.json new file mode 100644 index 00000000..e19c3c3e --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E19-枫丹-中央实验室遗址3.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷E19-枫丹-中央实验室遗址3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3923.0908203125, + "y": 4233.85498046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3950.0712890625, + "y": 4251.712890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4035.3310546875, + "y": 4261.40283203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 4083.068359375, + "y": 4260.36328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4097.8447265625, + "y": 4268.1689453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4115.5107421875, + "y": 4267.2783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4133.9638671875, + "y": 4274.9423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4154.00732421875, + "y": 4273.119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4182.71533203125, + "y": 4271.0537109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4210.8564453125, + "y": 4267.81201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4227.6953125, + "y": 4262.8544921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4287.1298828125, + "y": 4277.5986328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": 4292.38818359375, + "y": 4278.00830078125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3923.0751953125, + "y": 4233.876953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3928.5224609375, + "y": 4234.62451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3984.361328125, + "y": 4236.21728515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4011.2685546875, + "y": 4184.36083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4032.6943359375, + "y": 4012.64501953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 19, + "x": 4043.6748046875, + "y": 4015.56787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4063.833984375, + "y": 4030.492431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4080.595703125, + "y": 4041.9423828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E20-枫丹-优兰尼娅湖.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E20-枫丹-优兰尼娅湖.json new file mode 100644 index 00000000..1561e27d --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E20-枫丹-优兰尼娅湖.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷E20-枫丹-优兰尼娅湖", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3618.2568359375, + "y": 4057.9853515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3634.6884765625, + "y": 4064.506103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3672.34765625, + "y": 4064.025146484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3695.5693359375, + "y": 4049.059814453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3702.015625, + "y": 4040.90185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3724.5341796875, + "y": 4047.0634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3751.6494140625, + "y": 4020.486572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3754.12109375, + "y": 4012.21044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3764.28515625, + "y": 3968.169189453125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3759.615234375, + "y": 3953.51025390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 3765.478515625, + "y": 3938.905517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3764.2392578125, + "y": 3928.06298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3770.056640625, + "y": 3903.811767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3785.1015625, + "y": 3909.860595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3814.8984375, + "y": 3920.11328125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3618.2255859375, + "y": 4057.919677734375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3604.7900390625, + "y": 4079.25048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3593.3603515625, + "y": 4092.707275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3576.251953125, + "y": 4084.384033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3579.21875, + "y": 4106.58056640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3529.2060546875, + "y": 4101.91064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3528.689453125, + "y": 4118.42578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3519.0068359375, + "y": 4152.25244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3528.876953125, + "y": 4151.7255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3550.2900390625, + "y": 4149.984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3553.6953125, + "y": 4146.025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3551.728515625, + "y": 4157.43896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3549.2373046875, + "y": 4192.53564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3609.51953125, + "y": 4165.78662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3636.8544921875, + "y": 4160.3671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3625.7314453125, + "y": 4133.67431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E21-枫丹-茉洁站.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E21-枫丹-茉洁站.json new file mode 100644 index 00000000..597af3c5 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E21-枫丹-茉洁站.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷E21-枫丹-茉洁站", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3635.5517578125, + "y": 3801.353271484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3616.1962890625, + "y": 3869.81103515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3611.7734375, + "y": 3882.927734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3579.939453125, + "y": 3903.029541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3569.29296875, + "y": 3921.608154296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3554.5595703125, + "y": 3895.806884765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3527.7744140625, + "y": 3897.809326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3516.068359375, + "y": 3897.736572265625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3499.8720703125, + "y": 3898.860595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3500.64453125, + "y": 3874.07275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3516.28125, + "y": 3826.423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3524.216796875, + "y": 3814.275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3535.3310546875, + "y": 3820.552490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3541.5107421875, + "y": 3835.134765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3542.68359375, + "y": 3825.415283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3566.9892578125, + "y": 3787.5703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3556.265625, + "y": 3770.156982421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3504.435546875, + "y": 3734.662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3500.916015625, + "y": 3716.546142578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3493.5048828125, + "y": 3710.722412109375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3490.142578125, + "y": 3698.530517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3487.4267578125, + "y": 3676.667236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3489.1083984375, + "y": 3659.665771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3489.4873046875, + "y": 3635.3544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3538.0380859375, + "y": 3637.80224609375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3773.9736328125, + "y": 3784.02685546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3796.62890625, + "y": 3779.85986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3803.5224609375, + "y": 3778.08251953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3821.0712890625, + "y": 3773.33056640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3845.4521484375, + "y": 3752.57470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3873.9140625, + "y": 3728.166748046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 32, + "x": 3879.6533203125, + "y": 3722.572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E22-枫丹-幽林雾道1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E22-枫丹-幽林雾道1.json new file mode 100644 index 00000000..9c34cae8 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E22-枫丹-幽林雾道1.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "薄荷E22-枫丹-幽林雾道1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3469.95703125, + "y": 3551.998291015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3492.9873046875, + "y": 3532.657470703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3499.2490234375, + "y": 3528.780029296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3505.3603515625, + "y": 3509.2373046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 3491.6953125, + "y": 3482.416259765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 3480.859375, + "y": 3476.987548828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3473.4140625, + "y": 3463.21533203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3461.66015625, + "y": 3454.1337890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 3468.0986328125, + "y": 3446.912841796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 3487.6162109375, + "y": 3448.1220703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 3508.9296875, + "y": 3462.55419921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 3513.2578125, + "y": 3461.85888671875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 3524.34375, + "y": 3477.260986328125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 3527.349609375, + "y": 3466.23876953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 3533.1279296875, + "y": 3445.57421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 16, + "x": 3595.76953125, + "y": 3254.351806640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 17, + "x": 3593.0732421875, + "y": 3264.64404296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 3579, + "y": 3336.699951171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 3599.7236328125, + "y": 3363.217041015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 20, + "x": 3367.1923828125, + "y": 3294.16650390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 21, + "x": 3377.427734375, + "y": 3294.478271484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 3381.01171875, + "y": 3287.103515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 3388.2421875, + "y": 3282.590576171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 3391.8505859375, + "y": 3276.58642578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 3416.69140625, + "y": 3280.855712890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 3427.9912109375, + "y": 3257.50244140625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 3432.876953125, + "y": 3241.0498046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 3425.099609375, + "y": 3239.58740234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 3387.57421875, + "y": 3233.10107421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 3335.6064453125, + "y": 3224.61376953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 3338.4521484375, + "y": 3209.706787109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 32, + "x": 3469.5927734375, + "y": 3551.060546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 3454.181640625, + "y": 3560.197998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 3430.8408203125, + "y": 3565.05712890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 3423.216796875, + "y": 3573.5908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 3418.171875, + "y": 3582.663330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 3404.2548828125, + "y": 3610.3603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 3387.951171875, + "y": 3610.27783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 3377.2431640625, + "y": 3666.531494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 3383.1162109375, + "y": 3700.9580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E23-枫丹-幽林雾道2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E23-枫丹-幽林雾道2.json new file mode 100644 index 00000000..cd9821da --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E23-枫丹-幽林雾道2.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "薄荷E23-枫丹-幽林雾道2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3199.82421875, + "y": 3433.900390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3212.1865234375, + "y": 3432.423828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3218.865234375, + "y": 3429.46337890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3230.705078125, + "y": 3424.8916015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 3257.2734375, + "y": 3421.66650390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 3265.3017578125, + "y": 3421.470703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3303.9609375, + "y": 3407.221923828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3292.2412109375, + "y": 3372.8037109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 3264.5361328125, + "y": 3398.67578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 3241.888671875, + "y": 3383.505859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 3216.876953125, + "y": 3403.029296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 3210.09375, + "y": 3399.526123046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 3181.9423828125, + "y": 3366.760009765625, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E24-枫丹-湖中垂柳.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E24-枫丹-湖中垂柳.json new file mode 100644 index 00000000..1d4d55d6 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E24-枫丹-湖中垂柳.json @@ -0,0 +1,336 @@ +{ + "info": { + "name": "薄荷E24-枫丹-湖中垂柳", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3258.037109375, + "y": 3672.810546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3251.75390625, + "y": 3690.613037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3259.2060546875, + "y": 3695.078369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3266.0244140625, + "y": 3692.069580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3247.60546875, + "y": 3696.789794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3235.701171875, + "y": 3693.532958984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3223.634765625, + "y": 3687.010009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3217.869140625, + "y": 3691.443603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3196.66015625, + "y": 3698.10205078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3172.3095703125, + "y": 3694.464599609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3166.443359375, + "y": 3702.755126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3163.0390625, + "y": 3712.340087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3159.666015625, + "y": 3717.40380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3141.9697265625, + "y": 3720.18017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3136.068359375, + "y": 3736.209228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3129.77734375, + "y": 3745.51123046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3111.6083984375, + "y": 3774.488037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3105.3349609375, + "y": 3810.2802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3097.7783203125, + "y": 3826.213623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3095.361328125, + "y": 3842.765380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3103.9365234375, + "y": 3847.126708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3109.6328125, + "y": 3863.80712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3124.705078125, + "y": 3869.44482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3137.6416015625, + "y": 3876.0087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3153.8857421875, + "y": 3880.409912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3162.0517578125, + "y": 3884.9306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3167.1845703125, + "y": 3880.114501953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3199.3759765625, + "y": 3871.015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3206.6591796875, + "y": 3871.26513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3214.453125, + "y": 3858.878173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3234.04296875, + "y": 3851.023681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 3259.10546875, + "y": 3822.711181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 3264.06640625, + "y": 3807.551513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 3269.712890625, + "y": 3795.66455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 3279.642578125, + "y": 3772.0771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 3292.67578125, + "y": 3738.007080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E25-枫丹-卡布狄斯堡遗迹.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E25-枫丹-卡布狄斯堡遗迹.json new file mode 100644 index 00000000..10463f8d --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E25-枫丹-卡布狄斯堡遗迹.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "薄荷E25-枫丹-卡布狄斯堡遗迹", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3252.48828125, + "y": 2963.612060546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3261.953125, + "y": 2959.1787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3285.96484375, + "y": 2950.781982421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3309.4619140625, + "y": 2956.48095703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3368.83203125, + "y": 2982.48828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3384.8115234375, + "y": 3009.881103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3394.435546875, + "y": 3016.6171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3398.2138671875, + "y": 3010.64306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3397.2158203125, + "y": 3022.986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3378.427734375, + "y": 3030.913330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3358.376953125, + "y": 3030.318115234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3350.9833984375, + "y": 3025.0986328125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3383.255859375, + "y": 2692.281494140625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3380.1083984375, + "y": 2689.381103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3328.8720703125, + "y": 2633.456298828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3283.6591796875, + "y": 2584.664794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3243.5185546875, + "y": 2540.7333984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3216.515625, + "y": 2473.52392578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": 3226.7998046875, + "y": 2463.792236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3243.80859375, + "y": 2460.523193359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/薄荷采集/assets/AutoPath/薄荷E26-枫丹-佩特莉可镇.json b/repo/js/薄荷采集/assets/AutoPath/薄荷E26-枫丹-佩特莉可镇.json new file mode 100644 index 00000000..d3c43843 --- /dev/null +++ b/repo/js/薄荷采集/assets/AutoPath/薄荷E26-枫丹-佩特莉可镇.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷E26-枫丹-佩特莉可镇", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4322.158203125, + "y": 1172.81298828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4330.75537109375, + "y": 1187.048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4327.44580078125, + "y": 1203.20263671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4322.21484375, + "y": 1208.1259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4317.19482421875, + "y": 1207.98828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4311.01025390625, + "y": 1209.69189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4305.1083984375, + "y": 1204.02001953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4298.470703125, + "y": 1211.33984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4292.0888671875, + "y": 1216.13720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4291.7412109375, + "y": 1220.28662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4291.5146484375, + "y": 1223.3427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4293.80810546875, + "y": 1229.16064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4300.12744140625, + "y": 1235.40380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4306.42529296875, + "y": 1236.9931640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4310.6416015625, + "y": 1241.3525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4322.62060546875, + "y": 1236.697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4328.6591796875, + "y": 1239.03857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4328.29638671875, + "y": 1233.232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4331.84130859375, + "y": 1228.37353515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4329.345703125, + "y": 1223.00390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4333.54931640625, + "y": 1217.9150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4348.82763671875, + "y": 1204.2119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4345.7197265625, + "y": 1208.60546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4355.92431640625, + "y": 1215.265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4367.3046875, + "y": 1220.669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4378.14208984375, + "y": 1214.677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4381.943359375, + "y": 1204.8154296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4384.97021484375, + "y": 1197.85986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4383.373046875, + "y": 1196.40576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 4388.18310546875, + "y": 1194.92431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 4399.005859375, + "y": 1197.546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷F01-纳塔-回声之子.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F01-纳塔-回声之子.json similarity index 100% rename from repo/pathing/薄荷/薄荷F01-纳塔-回声之子.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F01-纳塔-回声之子.json diff --git a/repo/pathing/薄荷/薄荷F02-纳塔-流泉之众1(收集1000).json b/repo/js/薄荷采集/assets/AutoPath/薄荷F02-纳塔-流泉之众1.json similarity index 100% rename from repo/pathing/薄荷/薄荷F02-纳塔-流泉之众1(收集1000).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F02-纳塔-流泉之众1.json diff --git a/repo/pathing/薄荷/薄荷F03-纳塔-流泉之众2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F03-纳塔-流泉之众2.json similarity index 100% rename from repo/pathing/薄荷/薄荷F03-纳塔-流泉之众2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F03-纳塔-流泉之众2.json diff --git a/repo/pathing/薄荷/薄荷F04-纳塔-流泉之众3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F04-纳塔-流泉之众3.json similarity index 100% rename from repo/pathing/薄荷/薄荷F04-纳塔-流泉之众3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F04-纳塔-流泉之众3.json diff --git a/repo/pathing/薄荷/薄荷F05-纳塔-流泉之众4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F05-纳塔-流泉之众4.json similarity index 100% rename from repo/pathing/薄荷/薄荷F05-纳塔-流泉之众4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F05-纳塔-流泉之众4.json diff --git a/repo/pathing/薄荷/薄荷F06-纳塔-流泉之众5.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F06-纳塔-流泉之众5.json similarity index 100% rename from repo/pathing/薄荷/薄荷F06-纳塔-流泉之众5.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F06-纳塔-流泉之众5.json diff --git a/repo/pathing/薄荷/薄荷F07-纳塔-烟密主1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F07-纳塔-烟密主1.json similarity index 100% rename from repo/pathing/薄荷/薄荷F07-纳塔-烟密主1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F07-纳塔-烟密主1.json diff --git a/repo/pathing/薄荷/薄荷F08-纳塔-烟密主2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F08-纳塔-烟密主2.json similarity index 100% rename from repo/pathing/薄荷/薄荷F08-纳塔-烟密主2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F08-纳塔-烟密主2.json diff --git a/repo/pathing/薄荷/薄荷F09-纳塔-烟密主3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F09-纳塔-烟密主3.json similarity index 100% rename from repo/pathing/薄荷/薄荷F09-纳塔-烟密主3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F09-纳塔-烟密主3.json diff --git a/repo/pathing/薄荷/薄荷F10-纳塔-烟密主4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F10-纳塔-烟密主4.json similarity index 100% rename from repo/pathing/薄荷/薄荷F10-纳塔-烟密主4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F10-纳塔-烟密主4.json diff --git a/repo/pathing/薄荷/薄荷F11-纳塔-花语会1.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F11-纳塔-花语会1.json similarity index 100% rename from repo/pathing/薄荷/薄荷F11-纳塔-花语会1.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F11-纳塔-花语会1.json diff --git a/repo/pathing/薄荷/薄荷F12-纳塔-花语会2.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F12-纳塔-花语会2.json similarity index 100% rename from repo/pathing/薄荷/薄荷F12-纳塔-花语会2.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F12-纳塔-花语会2.json diff --git a/repo/pathing/薄荷/薄荷F13-纳塔-花语会3.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F13-纳塔-花语会3.json similarity index 100% rename from repo/pathing/薄荷/薄荷F13-纳塔-花语会3.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F13-纳塔-花语会3.json diff --git a/repo/pathing/薄荷/薄荷F14-纳塔-花语会4.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F14-纳塔-花语会4.json similarity index 100% rename from repo/pathing/薄荷/薄荷F14-纳塔-花语会4.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F14-纳塔-花语会4.json diff --git a/repo/pathing/薄荷/薄荷F15-纳塔-花语会5.json b/repo/js/薄荷采集/assets/AutoPath/薄荷F15-纳塔-花语会5.json similarity index 100% rename from repo/pathing/薄荷/薄荷F15-纳塔-花语会5.json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F15-纳塔-花语会5.json diff --git a/repo/pathing/薄荷/薄荷F16-纳塔-花语会6(收集1031,运行5.35).json b/repo/js/薄荷采集/assets/AutoPath/薄荷F16-纳塔-花语会6.json similarity index 100% rename from repo/pathing/薄荷/薄荷F16-纳塔-花语会6(收集1031,运行5.35).json rename to repo/js/薄荷采集/assets/AutoPath/薄荷F16-纳塔-花语会6.json diff --git a/repo/js/薄荷采集/main.js b/repo/js/薄荷采集/main.js new file mode 100644 index 00000000..30483e71 --- /dev/null +++ b/repo/js/薄荷采集/main.js @@ -0,0 +1,231 @@ +(async function () { + try { + // 1. 读取用户配置 + const targetMint = parseInt(settings.targetMintCount); + if (isNaN(targetMint) || targetMint <= 0) { + notification.error("请输入有效的目标薄荷数量(正整数)"); + return; + } + + // 读取是否刷新的配置 + const isRefresh = settings.isRefresh; + + // 输出已设置采集薄荷数量的日志 + log.info(`已设置采集薄荷数量:${targetMint}`); + + // ====================== 内置Sheet5任务数据(按顺序排列) ====================== + const sheet5Tasks = [ + { taskName: "薄荷E26-枫丹-佩特莉可镇", mintCount: 14 }, + { taskName: "薄荷E08-枫丹-秋分山东侧", mintCount: 6 }, + { taskName: "薄荷E23-枫丹-幽林雾道2", mintCount: 8 }, + { taskName: "薄荷C38-稻妻-清籁岛-浅濑神社", mintCount: 20 }, + { taskName: "薄荷A39-雪山-近郊2", mintCount: 21 }, + { taskName: "薄荷A38-雪山-近郊1", mintCount: 6 }, + { taskName: "薄荷E24-枫丹-湖中垂柳", mintCount: 15 }, + { taskName: "薄荷B10-璃月-归离原1", mintCount: 10 }, + { taskName: "薄荷C31-稻妻-海祇岛-珊瑚宫", mintCount: 11 }, + { taskName: "薄荷A08-蒙德-风起地2", mintCount: 7 }, + { taskName: "薄荷C27-稻妻-八酝岛-蛇骨矿洞3", mintCount: 12 }, + { taskName: "薄荷C04-稻妻-鸣神岛-绀田村", mintCount: 7 }, + { taskName: "薄荷C21-稻妻-八酝岛-藤兜砦2", mintCount: 5 }, + { taskName: "薄荷E20-枫丹-优兰尼娅湖1", mintCount: 15 }, + { taskName: "薄荷E16-枫丹-新枫丹科学院5", mintCount: 11 }, + { taskName: "薄荷C42-稻妻-鹤观-茂知祭场2", mintCount: 4 }, + { taskName: "薄荷E22-枫丹-幽林雾道1", mintCount: 12 }, + { taskName: "薄荷B17-璃月-渌华池2", mintCount: 9 }, + { taskName: "薄荷B11-璃月-归离原2", mintCount: 14 }, + { taskName: "薄荷E14-枫丹-新枫丹科学院3", mintCount: 17 }, + { taskName: "薄荷B60-沉玉谷-赤望台2", mintCount: 17 }, + { taskName: "薄荷C24-稻妻-八酝岛-蛇神之首2", mintCount: 6 }, + { taskName: "薄荷C16-稻妻-神无冢-踏鞴砂3", mintCount: 6 }, + { taskName: "薄荷B32-璃月-翠玦坡2", mintCount: 19 }, + { taskName: "薄荷B08-璃月-明藴镇1", mintCount: 13 }, + { taskName: "薄荷B47-沉玉谷-翘英庄3", mintCount: 11 }, + { taskName: "薄荷A10-蒙德-鹰翔海滩", mintCount: 10 }, + { taskName: "薄荷B07-璃月-荻花洲", mintCount: 14 }, + { taskName: "薄荷A34-雪山-眠龙谷1", mintCount: 22 }, + { taskName: "薄荷C43-稻妻-鹤观-茂知祭场3", mintCount: 7 }, + { taskName: "薄荷C35-稻妻-清籁岛-平海砦", mintCount: 2 }, + { taskName: "薄荷B18-璃月-渌华池3", mintCount: 14 }, + { taskName: "薄荷B42-璃月-南天门", mintCount: 6 }, + { taskName: "薄荷C19-稻妻-八酝岛-无想刃狭间", mintCount: 6 }, + { taskName: "薄荷C15-稻妻-神无冢-踏鞴砂2", mintCount: 3 }, + { taskName: "薄荷C12-稻妻-神无冢-九条阵屋2", mintCount: 3 }, + { taskName: "薄荷A04-蒙德-望风山地2", mintCount: 6 }, + { taskName: "薄荷B52-沉玉谷-赤璋城垣1", mintCount: 9 }, + { taskName: "薄荷C41-稻妻-鹤观-茂知祭场1", mintCount: 6 }, + { taskName: "薄荷B59-沉玉谷-赤望台1", mintCount: 10 }, + { taskName: "薄荷B12-璃月-归离原3", mintCount: 7 }, + { taskName: "薄荷F15-纳塔-花语会5", mintCount: 6 }, + { taskName: "薄荷E17-枫丹-中央实验室遗址1", mintCount: 9 }, + { taskName: "薄荷A02-蒙德-望风角2", mintCount: 13 }, + { taskName: "薄荷A29-雪山-覆雪之路2", mintCount: 7 }, + { taskName: "薄荷C44-稻妻-鹤观-茂知祭场4", mintCount: 3 }, + { taskName: "薄荷B35-璃月-绝云间1", mintCount: 18 }, + { taskName: "薄荷A01-蒙德-望风角1", mintCount: 9 }, + { taskName: "薄荷B19-璃月-遁玉陵", mintCount: 14 }, + { taskName: "薄荷B24-璃月-青墟浦1", mintCount: 16 }, + { taskName: "薄荷A32-雪山-星荧洞窟1", mintCount: 19 }, + { taskName: "薄荷B05-璃月-无妄坡3", mintCount: 13 }, + { taskName: "薄荷B37-璃月-绝云间3", mintCount: 9 }, + { taskName: "薄荷B13-璃月-归离原4", mintCount: 13 }, + { taskName: "薄荷B31-璃月-翠玦坡1", mintCount: 24 }, + { taskName: "薄荷B43-璃月-采樵谷1", mintCount: 32 }, + { taskName: "薄荷C37-稻妻-清籁岛-天云峠2", mintCount: 7 }, + { taskName: "薄荷A36-雪山-眠龙谷3", mintCount: 3 }, + { taskName: "薄荷A03-蒙德-望风山地1", mintCount: 6 }, + { taskName: "薄荷B34-璃月-奥藏山2", mintCount: 16 }, + { taskName: "薄荷B29-璃月-天遒谷1", mintCount: 7 }, + { taskName: "薄荷A35-雪山-眠龙谷2", mintCount: 15 }, + { taskName: "薄荷E21-枫丹-茉洁站", mintCount: 10 }, + { taskName: "薄荷C25-稻妻-八酝岛-蛇骨矿洞1", mintCount: 8 }, + { taskName: "薄荷B14-璃月-归离原5", mintCount: 7 }, + { taskName: "薄荷B02-璃月-石门2", mintCount: 13 }, + { taskName: "薄荷B01-璃月-石门1", mintCount: 19 }, + { taskName: "薄荷C34-稻妻-清籁岛-越石村", mintCount: 6 }, + { taskName: "薄荷B44-璃月-采樵谷2", mintCount: 19 }, + { taskName: "薄荷F02-纳塔-流泉之众1", mintCount: 2 }, + { taskName: "薄荷C40-稻妻-鹤观-笈名海滨", mintCount: 7 }, + { taskName: "薄荷E12-枫丹-新枫丹科学院1", mintCount: 6 }, + { taskName: "薄荷B56-沉玉谷-遗珑埠", mintCount: 5 }, + { taskName: "薄荷C22-稻妻-八酝岛-绯木村", mintCount: 6 }, + { taskName: "薄荷C11-稻妻-神无冢-九条阵屋1", mintCount: 6 }, + { taskName: "薄荷B41-璃月-琥牢山2", mintCount: 6 }, + { taskName: "薄荷B48-沉玉谷-灵濛山1", mintCount: 9 }, + { taskName: "薄荷B61-沉玉谷-赤望台3", mintCount: 10 }, + { taskName: "薄荷C23-稻妻-八酝岛-蛇神之首1", mintCount: 4 }, + { taskName: "薄荷C17-稻妻-神无冢-踏鞴砂4", mintCount: 10 }, + { taskName: "薄荷C39-稻妻-鹤观-知比山", mintCount: 7 }, + { taskName: "薄荷B22-璃月-天衡山2", mintCount: 7 }, + { taskName: "薄荷A09-蒙德-风起地3", mintCount: 3 }, + { taskName: "薄荷C14-稻妻-神无冢-踏鞴砂1", mintCount: 6 }, + { taskName: "薄荷C26-稻妻-八酝岛-蛇骨矿洞2", mintCount: 7 }, + { taskName: "薄荷F12-纳塔-花语会2", mintCount: 5 }, + { taskName: "薄荷B23-璃月-天衡山3", mintCount: 8 }, + { taskName: "薄荷C45-稻妻-鹤观-惑饲滩", mintCount: 3 }, + { taskName: "薄荷B15-璃月-孤云阁", mintCount: 6 }, + { taskName: "薄荷B27-璃月-灵矩关2", mintCount: 7 }, + { taskName: "薄荷C08-稻妻-鸣神岛-稻妻城1", mintCount: 5 }, + { taskName: "薄荷C07-稻妻-鸣神岛-白狐之野", mintCount: 5 }, + { taskName: "薄荷A07-蒙德-风起地1", mintCount: 5 }, + { taskName: "薄荷C32-稻妻-海祇岛-望泷村1", mintCount: 6 }, + { taskName: "薄荷B62-沉玉谷-赤望台4", mintCount: 7 }, + { taskName: "薄荷C33-稻妻-海祇岛-望泷村2", mintCount: 8 }, + { taskName: "薄荷B28-璃月-灵矩关3", mintCount: 8 }, + { taskName: "薄荷A28-雪山-覆雪之路1", mintCount: 16 }, + { taskName: "薄荷B46-沉玉谷-翘英庄2", mintCount: 9 }, + { taskName: "薄荷C20-稻妻-八酝岛-藤兜砦1", mintCount: 7 }, + { taskName: "薄荷B55-沉玉谷-悬练山2", mintCount: 8 }, + { taskName: "薄荷B21-璃月-天衡山1", mintCount: 9 }, + { taskName: "薄荷A15-蒙德-晨曦酒馆", mintCount: 8 }, + { taskName: "薄荷B51-沉玉谷-古茶树坡", mintCount: 8 }, + { taskName: "薄荷B03-璃月-无妄坡1", mintCount: 4 }, + { taskName: "薄荷B04-璃月-无妄坡2", mintCount: 5 }, + { taskName: "薄荷B09-璃月-明藴镇2", mintCount: 13 }, + { taskName: "薄荷E18-枫丹-中央实验室遗址2", mintCount: 11 }, + { taskName: "薄荷A19-蒙德-明冠峡1", mintCount: 5 }, + { taskName: "薄荷B36-璃月-绝云间2", mintCount: 9 }, + { taskName: "薄荷E15-枫丹-新枫丹科学院4", mintCount: 6 }, + { taskName: "薄荷B06-璃月-无妄坡4", mintCount: 9 }, + { taskName: "薄荷F06-纳塔-流泉之众5", mintCount: 1 }, + { taskName: "薄荷A22-蒙德-风龙废墟1", mintCount: 7 }, + { taskName: "薄荷B58-沉玉谷-宝玦口", mintCount: 9 }, + { taskName: "薄荷B25-璃月-青墟浦2", mintCount: 6 }, + { taskName: "薄荷C02-稻妻-鸣神岛-荒海1", mintCount: 4 }, + { taskName: "薄荷B33-璃月-奥藏山1", mintCount: 8 }, + { taskName: "薄荷C18-稻妻-神无冢-名椎滩", mintCount: 5 }, + { taskName: "薄荷A06-蒙德-星落湖", mintCount: 6 }, + { taskName: "薄荷A05-蒙德-摘星崖", mintCount: 3 }, + { taskName: "薄荷A24-蒙德-风龙废墟3", mintCount: 9 }, + { taskName: "薄荷B57-沉玉谷-暝垣山", mintCount: 8 }, + { taskName: "薄荷C06-稻妻-鸣神岛-神里屋敷", mintCount: 3 }, + { taskName: "薄荷F08-纳塔-烟密主2", mintCount: 2 }, + { taskName: "薄荷E03-枫丹-厄里那斯2", mintCount: 8 }, + { taskName: "薄荷B54-沉玉谷-赤璋城垣3", mintCount: 14 }, + { taskName: "薄荷B53-沉玉谷-赤璋城垣2", mintCount: 5 }, + { taskName: "薄荷A33-雪山-星荧洞窟2", mintCount: 5 }, + { taskName: "薄荷C05-稻妻-鸣神岛-神樱大社", mintCount: 1 }, + { taskName: "薄荷C03-稻妻-鸣神岛-荒海2", mintCount: 3 }, + { taskName: "薄荷E9-枫丹-枫丹廷1", mintCount: 6 }, + { taskName: "薄荷E7-枫丹-秋分山西侧", mintCount: 5 }, + { taskName: "薄荷B40-璃月-琥牢山1", mintCount: 8 }, + { taskName: "薄荷A13-蒙德-达达乌帕谷1", mintCount: 11 }, + { taskName: "薄荷A26-蒙德-清泉镇", mintCount: 8 }, + { taskName: "薄荷C09-稻妻-鸣神岛-稻妻城2", mintCount: 5 }, + { taskName: "薄荷E10-枫丹-枫丹廷2", mintCount: 6 }, + { taskName: "薄荷B45-沉玉谷-翘英庄1", mintCount: 6 }, + { taskName: "薄荷A14-蒙德-达达乌帕谷2", mintCount: 2 }, + { taskName: "薄荷E25-枫丹-卡布狄斯堡遗迹", mintCount: 4 }, + { taskName: "薄荷B49-沉玉谷-灵濛山2", mintCount: 4 }, + // 可以根据实际情况添加更多任务 + ]; + + // 2. 读取/初始化进度文件(存储上次执行到的任务索引) + let currentIndex = 0; + if (!isRefresh) { + try { + const progress = await file.readText("mint_progress.txt"); + currentIndex = parseInt(progress); + if (isNaN(currentIndex) || currentIndex < 0 || currentIndex >= sheet5Tasks.length) { + currentIndex = 0; // 无效进度,重置为0 + } + } catch (error) { + currentIndex = 0; // 文件不存在,初始化为0 + } + } + + let collected = 0; + let taskIndex = currentIndex; + + while (collected < targetMint) { + // 执行当前任务 + const currentTask = sheet5Tasks[taskIndex]; + if (!currentTask) { + taskIndex = 0; // 循环回起点 + continue; + } + + const scriptPath = `assets/AutoPath/${currentTask.taskName}.json`; + try { + // 尝试读取脚本文件,以此判断脚本是否存在 + await file.readText(scriptPath); + } catch (error) { + log.info(`未检测到脚本 ${currentTask.taskName},跳过该任务`); + taskIndex++; + // 到达任务列表末尾,从头开始循环 + if (taskIndex >= sheet5Tasks.length) { + taskIndex = 0; + } + continue; + } + + log.info(`执行任务:${currentTask.taskName},预计获得${currentTask.mintCount}薄荷`); + // 假设地图追踪脚本文件名为 taskName.js,实际需根据脚本命名规则调整 + // 这里使用 runFile 从用户目录读取脚本,路径需根据实际情况修改 + await pathingScript.runFile(scriptPath); + await sleep(1000); // 等待任务完成(根据实际情况调整等待时间) + + collected += currentTask.mintCount; + log.info(`已采集${collected}个薄荷`); + + taskIndex++; + + // 记录进度:当前任务索引(下一次从下一个任务开始) + await file.writeText("mint_progress.txt", taskIndex.toString()); + + // 到达任务列表末尾,从头开始循环 + if (taskIndex >= sheet5Tasks.length) { + taskIndex = 0; + } + + // 检查是否达到目标 + if (collected >= targetMint) { + log.info(`已采集${collected}薄荷,达到目标${targetMint},任务完成!`); + await file.writeText("mint_progress.txt", "0"); // 重置进度 + break; + } + } + } catch (error) { + log.error(`执行过程中出现错误: ${error.message}`); + } +})(); \ No newline at end of file diff --git a/repo/js/薄荷采集/manifest.json b/repo/js/薄荷采集/manifest.json new file mode 100644 index 00000000..c5c173ae --- /dev/null +++ b/repo/js/薄荷采集/manifest.json @@ -0,0 +1,15 @@ +{ + "manifest_version": 1, + "name": "薄荷采集", + "version": "1.0", + "bgi_version": "0.44.7", + "description": "按薄荷效率大小顺序执行地图追踪脚本采集薄荷,支持断点续传", + "authors": [ + { + "name": "Tool_tingsu", + "link": "" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/薄荷采集/settings.json b/repo/js/薄荷采集/settings.json new file mode 100644 index 00000000..434a367f --- /dev/null +++ b/repo/js/薄荷采集/settings.json @@ -0,0 +1,13 @@ +[ + { + "name": "targetMintCount", + "type": "input-text", + "label": "目标薄荷采集数量", + "placeholder": "请输入需要采集的薄荷数量(如:500)" + }, + { + "name": "isRefresh", + "type": "checkbox", + "label": "是否刷新" + } +] \ No newline at end of file diff --git a/repo/js/购买四方八方之网/assets/四方八方之网.json b/repo/js/购买四方八方之网/assets/四方八方之网.json new file mode 100644 index 00000000..c648b395 --- /dev/null +++ b/repo/js/购买四方八方之网/assets/四方八方之网.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "四方八方之网", + "type": "collect", + "author": "越空", + "version": "1.0", + "description": "走到稻妻若紫位置,准备购买四方八方之网", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4232.1875, + "y": -3001.9599609375, + "action_params": "" + }, + { + "id": 2, + "x": -4236.78515625, + "y": -2995.244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4242.451171875, + "y": -2998.5556640625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/购买四方八方之网/main.js b/repo/js/购买四方八方之网/main.js new file mode 100644 index 00000000..e12380f4 --- /dev/null +++ b/repo/js/购买四方八方之网/main.js @@ -0,0 +1,32 @@ +(async function () { + setGameMetrics(1920, 1080, 2); + // 传送到稻妻若紫处 + async function AutoPath(locationName) { + log.info(`前往稻妻-白狐之野-若紫处`); + try { + let filePath = `assets/${locationName}.json`; + await pathingScript.runFile(filePath); + } catch (error) { + log.error(`执行 ${locationName} 路径时发生错误`); + } + await sleep(500); + } + async function Shopping() { + await sleep(500); + for (let j = 0; j < 4; j++) { + keyPress("F"); await sleep(1000);//对话 + } + await sleep(1000); + for (let i = 0; i < 5; i++) { + click(1690, 1020); await sleep(500); // 购买 + click(1170, 780); await sleep(400); // 确定 + click(1690, 1020); await sleep(200); // 点击空白处 + } + keyPress("ESCAPE"); await sleep(2000); + } + log.info("开始执行脚本"); + await AutoPath("四方八方之网"); + log.info("到达若紫处"); + await Shopping(); + log.info("已购买5个四方八方之网"); +})(); \ No newline at end of file diff --git a/repo/js/购买四方八方之网/manifest.json b/repo/js/购买四方八方之网/manifest.json new file mode 100644 index 00000000..60c5bb49 --- /dev/null +++ b/repo/js/购买四方八方之网/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "购买四方八方之网", + "version": "1.0", + "description": "传送到稻妻白狐之野,找若紫买四方八方之网(基于路径追踪)", + "authors": [ + { + "name": "越空", + "link": "https://github.com/SophieZ22" + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/食材加工 识图/main.js b/repo/js/食材加工 识图/main.js index 0d9f535c..6dda06ca 100644 --- a/repo/js/食材加工 识图/main.js +++ b/repo/js/食材加工 识图/main.js @@ -99,7 +99,7 @@ const processingKeyChineseMap = { let template = file.ReadImageMatSync(imagePath); let recognitionObject = RecognitionObject.TemplateMatch(template, x, y, searchWidth, searchHeight); // 设置识别阈值和通道 - recognitionObject.threshold = 0.95; // 设置识别阈值为 0.85 + recognitionObject.threshold = 0.90; // 设置识别阈值为 0.85 recognitionObject.Use3Channels = true; // 使用三通道匹配 let result = captureGameRegion().find(recognitionObject); diff --git a/repo/js/首领讨伐一条龙/assets/box.png b/repo/js/首领讨伐一条龙/assets/box.png new file mode 100644 index 00000000..521895c4 Binary files /dev/null and b/repo/js/首领讨伐一条龙/assets/box.png differ diff --git a/repo/js/首领讨伐一条龙/assets/recover.json b/repo/js/首领讨伐一条龙/assets/recover.json new file mode 100644 index 00000000..a4e55f13 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/recover.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":2297.6201171875,"y":-824.5869140625,"type":"teleport","move_mode":"walk"},{"x":2292.62109375,"y":-826.0419921875,"type":"path","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/兆载永劫龙兽前往.json b/repo/js/首领讨伐一条龙/assets/兆载永劫龙兽前往.json new file mode 100644 index 00000000..2ee88cfa --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/兆载永劫龙兽前往.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "我谬和", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "前往 ", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2246.1162109375, + "y": -1680.36279296875, + "action_params": "" + }, + { + "id": 2, + "x": 2245.779296875, + "y": -1651.337890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2253.7314453125, + "y": -1621.24267578125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2247.4794921875, + "y": -1587.03857421875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2241.6005859375, + "y": -1556.7548828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2234.6533203125, + "y": -1521.65185546875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2229.4765625, + "y": -1495.34326171875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2224.85546875, + "y": -1471.94091796875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2221.9716796875, + "y": -1450.27587890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2219.53125, + "y": -1425.24267578125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2217.6103515625, + "y": -1404.46728515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2212.7041015625, + "y": -1380.08984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2213.7421875, + "y": -1358.82861328125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2218.5048828125, + "y": -1340.68603515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2224.982421875, + "y": -1325.1953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "4000" + }, + { + "id": 16, + "x": 2213.7138671875, + "y": -1335.1328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2206.09765625, + "y": -1334.076171875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} diff --git a/repo/js/首领讨伐一条龙/assets/兆载永劫龙兽前往键鼠.json b/repo/js/首领讨伐一条龙/assets/兆载永劫龙兽前往键鼠.json new file mode 100644 index 00000000..c5c9224c --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/兆载永劫龙兽前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":2094},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":4125},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":4766},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":6063},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":7906},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":11375},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":12360},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":12547},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":12781},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":12953},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":23110},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":24235},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":24453},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":24594},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":25860},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":26531}],"info":{"name":"","description":"","x":958,"y":562,"width":1920,"height":1080,"recordDpi":1.75}} diff --git a/repo/js/首领讨伐一条龙/assets/千年珍珠骏麟前往.json b/repo/js/首领讨伐一条龙/assets/千年珍珠骏麟前往.json new file mode 100644 index 00000000..96f1b932 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/千年珍珠骏麟前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "千年珍珠骏麟前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "千年珍珠骏麟前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4851.37451171875, + "y": 4806.48828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/千年珍珠骏麟前往键鼠.json b/repo/js/首领讨伐一条龙/assets/千年珍珠骏麟前往键鼠.json new file mode 100644 index 00000000..ee76c535 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/千年珍珠骏麟前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":1860},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":3203},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":3703},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":5219},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":5250},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":8203},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":8407},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":8750},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":8875},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":16391},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":16532},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":17235},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":17391},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":18063},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":18235},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":19672}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/半永恒统辖矩阵前往.json b/repo/js/首领讨伐一条龙/assets/半永恒统辖矩阵前往.json new file mode 100644 index 00000000..1c5a9a5d --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/半永恒统辖矩阵前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":4810.27734375,"y":-2732.9296875,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/半永恒统辖矩阵前往键鼠.json b/repo/js/首领讨伐一条龙/assets/半永恒统辖矩阵前往键鼠.json new file mode 100644 index 00000000..068e2728 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/半永恒统辖矩阵前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1907},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":2016},{"type":0,"keyCode":77,"mouseX":0,"mouseY":0,"time":3172},{"type":1,"keyCode":77,"mouseX":0,"mouseY":0,"time":3266},{"type":6,"mouseX":0,"mouseY":120,"time":5922},{"type":6,"mouseX":0,"mouseY":120,"time":5938},{"type":6,"mouseX":0,"mouseY":120,"time":6297},{"type":6,"mouseX":0,"mouseY":120,"time":6610},{"type":6,"mouseX":0,"mouseY":120,"time":6657},{"type":6,"mouseX":0,"mouseY":120,"time":7016},{"type":6,"mouseX":0,"mouseY":120,"time":7047},{"type":6,"mouseX":0,"mouseY":120,"time":7094},{"type":6,"mouseX":0,"mouseY":120,"time":7438},{"type":6,"mouseX":0,"mouseY":120,"time":7469},{"type":6,"mouseX":0,"mouseY":120,"time":7516},{"type":6,"mouseX":0,"mouseY":120,"time":7938},{"type":6,"mouseX":0,"mouseY":120,"time":7985},{"type":6,"mouseX":0,"mouseY":120,"time":8016},{"type":6,"mouseX":0,"mouseY":120,"time":8453},{"type":6,"mouseX":0,"mouseY":120,"time":8500},{"type":6,"mouseX":0,"mouseY":120,"time":8532},{"type":6,"mouseX":0,"mouseY":120,"time":8969},{"type":6,"mouseX":0,"mouseY":120,"time":9000},{"type":6,"mouseX":0,"mouseY":120,"time":9032},{"type":6,"mouseX":0,"mouseY":120,"time":9500},{"type":6,"mouseX":0,"mouseY":120,"time":9563},{"type":6,"mouseX":0,"mouseY":120,"time":9594},{"type":6,"mouseX":0,"mouseY":120,"time":10032},{"type":6,"mouseX":0,"mouseY":120,"time":10078},{"type":6,"mouseX":0,"mouseY":120,"time":10141},{"type":6,"mouseX":0,"mouseY":120,"time":10532},{"type":6,"mouseX":0,"mouseY":120,"time":10547},{"type":6,"mouseX":0,"mouseY":120,"time":10578},{"type":6,"mouseX":0,"mouseY":120,"time":10610},{"type":6,"mouseX":0,"mouseY":120,"time":11000},{"type":6,"mouseX":0,"mouseY":120,"time":11047},{"type":6,"mouseX":0,"mouseY":120,"time":11078},{"type":6,"mouseX":0,"mouseY":120,"time":11125},{"type":6,"mouseX":0,"mouseY":120,"time":11594},{"type":6,"mouseX":0,"mouseY":120,"time":11625},{"type":6,"mouseX":0,"mouseY":120,"time":11657},{"type":6,"mouseX":0,"mouseY":120,"time":11688},{"type":6,"mouseX":0,"mouseY":120,"time":12157},{"type":6,"mouseX":0,"mouseY":120,"time":12203},{"type":6,"mouseX":0,"mouseY":120,"time":12250},{"type":6,"mouseX":0,"mouseY":120,"time":12313},{"type":6,"mouseX":0,"mouseY":120,"time":12750},{"type":6,"mouseX":0,"mouseY":120,"time":12797},{"type":6,"mouseX":0,"mouseY":120,"time":12844},{"type":6,"mouseX":0,"mouseY":120,"time":13344},{"type":6,"mouseX":0,"mouseY":120,"time":13375},{"type":6,"mouseX":0,"mouseY":120,"time":13438},{"type":6,"mouseX":0,"mouseY":120,"time":13813},{"type":6,"mouseX":0,"mouseY":120,"time":13860},{"type":6,"mouseX":0,"mouseY":120,"time":13891},{"type":6,"mouseX":0,"mouseY":120,"time":14016},{"type":6,"mouseX":0,"mouseY":120,"time":14407},{"type":6,"mouseX":0,"mouseY":120,"time":14469},{"type":6,"mouseX":0,"mouseY":120,"time":14532},{"type":6,"mouseX":0,"mouseY":120,"time":14922},{"type":6,"mouseX":0,"mouseY":120,"time":14969},{"type":6,"mouseX":0,"mouseY":120,"time":15016},{"type":6,"mouseX":0,"mouseY":120,"time":15453},{"type":6,"mouseX":0,"mouseY":120,"time":15500},{"type":6,"mouseX":0,"mouseY":120,"time":15563},{"type":6,"mouseX":0,"mouseY":120,"time":15985},{"type":6,"mouseX":0,"mouseY":120,"time":16032},{"type":6,"mouseX":0,"mouseY":120,"time":16078},{"type":2,"mouseX":1917,"mouseY":1081,"time":17078},{"type":2,"mouseX":1879,"mouseY":1095,"time":17110},{"type":2,"mouseX":1812,"mouseY":1110,"time":17141},{"type":2,"mouseX":1743,"mouseY":1123,"time":17172},{"type":2,"mouseX":1707,"mouseY":1132,"time":17203},{"type":2,"mouseX":1617,"mouseY":1147,"time":17235},{"type":2,"mouseX":1562,"mouseY":1155,"time":17266},{"type":2,"mouseX":1487,"mouseY":1165,"time":17297},{"type":2,"mouseX":1444,"mouseY":1171,"time":17328},{"type":2,"mouseX":1417,"mouseY":1176,"time":17360},{"type":2,"mouseX":1370,"mouseY":1188,"time":17391},{"type":2,"mouseX":1339,"mouseY":1194,"time":17422},{"type":2,"mouseX":1317,"mouseY":1197,"time":17453},{"type":2,"mouseX":1291,"mouseY":1200,"time":17485},{"type":2,"mouseX":1255,"mouseY":1203,"time":17516},{"type":2,"mouseX":1239,"mouseY":1205,"time":17547},{"type":2,"mouseX":1230,"mouseY":1206,"time":17578},{"type":2,"mouseX":1217,"mouseY":1207,"time":17610},{"type":2,"mouseX":1193,"mouseY":1207,"time":17641},{"type":2,"mouseX":1188,"mouseY":1207,"time":17672},{"type":2,"mouseX":1180,"mouseY":1207,"time":17703},{"type":2,"mouseX":1162,"mouseY":1205,"time":17735},{"type":2,"mouseX":1143,"mouseY":1204,"time":17766},{"type":2,"mouseX":1142,"mouseY":1204,"time":17813},{"type":2,"mouseX":1131,"mouseY":1204,"time":17844},{"type":2,"mouseX":1126,"mouseY":1204,"time":17875},{"type":2,"mouseX":1126,"mouseY":1202,"time":18110},{"type":2,"mouseX":1127,"mouseY":1202,"time":18141},{"type":2,"mouseX":1127,"mouseY":1200,"time":18250},{"type":2,"mouseX":1128,"mouseY":1200,"time":18282},{"type":2,"mouseX":1128,"mouseY":1199,"time":18313},{"type":4,"mouseX":1130,"mouseY":1199,"mouseButton":"Left","time":18407},{"type":5,"mouseX":1130,"mouseY":1199,"mouseButton":"Left","time":18563},{"type":2,"mouseX":1140,"mouseY":1194,"time":19000},{"type":2,"mouseX":1156,"mouseY":1192,"time":19032},{"type":2,"mouseX":1204,"mouseY":1188,"time":19063},{"type":2,"mouseX":1250,"mouseY":1188,"time":19094},{"type":2,"mouseX":1315,"mouseY":1191,"time":19125},{"type":2,"mouseX":1445,"mouseY":1213,"time":19157},{"type":2,"mouseX":1541,"mouseY":1230,"time":19188},{"type":2,"mouseX":1655,"mouseY":1247,"time":19219},{"type":2,"mouseX":1720,"mouseY":1259,"time":19250},{"type":2,"mouseX":1822,"mouseY":1282,"time":19282},{"type":2,"mouseX":1877,"mouseY":1293,"time":19313},{"type":2,"mouseX":1964,"mouseY":1315,"time":19344},{"type":2,"mouseX":2050,"mouseY":1335,"time":19375},{"type":2,"mouseX":2220,"mouseY":1376,"time":19407},{"type":2,"mouseX":2287,"mouseY":1391,"time":19438},{"type":2,"mouseX":2444,"mouseY":1424,"time":19469},{"type":2,"mouseX":2478,"mouseY":1433,"time":19500},{"type":2,"mouseX":2495,"mouseY":1438,"time":19532},{"type":2,"mouseX":2513,"mouseY":1446,"time":19563},{"type":2,"mouseX":2522,"mouseY":1451,"time":19594},{"type":2,"mouseX":2534,"mouseY":1462,"time":19625},{"type":2,"mouseX":2545,"mouseY":1473,"time":19657},{"type":2,"mouseX":2562,"mouseY":1488,"time":19688},{"type":2,"mouseX":2578,"mouseY":1502,"time":19719},{"type":2,"mouseX":2618,"mouseY":1538,"time":19750},{"type":2,"mouseX":2626,"mouseY":1543,"time":19782},{"type":2,"mouseX":2628,"mouseY":1546,"time":19813},{"type":2,"mouseX":2630,"mouseY":1546,"time":19844},{"type":2,"mouseX":2633,"mouseY":1551,"time":19875},{"type":2,"mouseX":2637,"mouseY":1556,"time":19907},{"type":2,"mouseX":2640,"mouseY":1560,"time":19938},{"type":4,"mouseX":2640,"mouseY":1560,"mouseButton":"Left","time":20078},{"type":5,"mouseX":2640,"mouseY":1560,"mouseButton":"Left","time":20188},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":29594},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":35360},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":35516},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":42047},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":42766},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":45125},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":45313},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":45500},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":45672},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":49610},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":51453},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":53219}],"info":{"name":"","description":"","x":958,"y":562,"width":1920,"height":1080,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/古岩龙蜥前往.json b/repo/js/首领讨伐一条龙/assets/古岩龙蜥前往.json new file mode 100644 index 00000000..91b9f90e --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/古岩龙蜥前往.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "前往古岩龙蜥", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "前往古岩龙蜥", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1669.650390625, + "y": 341.86962890625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1674.890625, + "y": 345.15625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1573.65234375, + "y": 254.67041015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1533.3095703125, + "y": 229.28857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1485.296875, + "y": 208.9697265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/古岩龙蜥前往键鼠.json b/repo/js/首领讨伐一条龙/assets/古岩龙蜥前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/古岩龙蜥前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/实验性场力发生装置前往.json b/repo/js/首领讨伐一条龙/assets/实验性场力发生装置前往.json new file mode 100644 index 00000000..b58e6e78 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/实验性场力发生装置前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":4143.87841796875,"y":4423.5322265625,"type":"teleport","move_mode":"walk"},{"x":4139.38818359375,"y":4395.79150390625,"type":"path","move_mode":"walk"},{"x":4171.7255859375,"y":4351.97998046875,"type":"path","move_mode":"walk"},{"x":4155.06591796875,"y":4346.6455078125,"type":"path","move_mode":"walk"},{"x":4126.453125,"y":4340.89453125,"type":"path","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/实验性场力发生装置前往键鼠.json b/repo/js/首领讨伐一条龙/assets/实验性场力发生装置前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/实验性场力发生装置前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/急冻树前往.json b/repo/js/首领讨伐一条龙/assets/急冻树前往.json new file mode 100644 index 00000000..6761ea04 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/急冻树前往.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "前往急冻树", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "前往急冻树", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1638.951171875, + "y": 2154.76025390625, + "action_params": "" + }, + { + "id": 2, + "x": -1629.4853515625, + "y": 2117.233154296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1644.8564453125, + "y": 2104.396240234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1657.8251953125, + "y": 2107.20751953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": -1672.27734375, + "y": 2097.213134765625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/急冻树前往键鼠.json b/repo/js/首领讨伐一条龙/assets/急冻树前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/急冻树前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/恒常机关阵列前往.json b/repo/js/首领讨伐一条龙/assets/恒常机关阵列前往.json new file mode 100644 index 00000000..90b4b7fe --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/恒常机关阵列前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":-4352.80078125,"y":-2142.396484375,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/恒常机关阵列前往键鼠.json b/repo/js/首领讨伐一条龙/assets/恒常机关阵列前往键鼠.json new file mode 100644 index 00000000..6b68a751 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/恒常机关阵列前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":953},{"type":4,"mouseX":1916,"mouseY":1142,"mouseButton":"Right","time":4375},{"type":5,"mouseX":1916,"mouseY":1142,"mouseButton":"Right","time":4547},{"type":4,"mouseX":1916,"mouseY":1142,"mouseButton":"Right","time":6390},{"type":5,"mouseX":1916,"mouseY":1142,"mouseButton":"Right","time":6547},{"type":4,"mouseX":1916,"mouseY":1142,"mouseButton":"Right","time":8281},{"type":5,"mouseX":1916,"mouseY":1142,"mouseButton":"Right","time":8422},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":11437},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":11750},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":12625},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":12703},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":14078},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":14390},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":15015},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":15140},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":19125},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":19297},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":19828},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":19984},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":23672},{"type":4,"mouseX":1916,"mouseY":1142,"mouseButton":"Left","time":23875},{"type":5,"mouseX":1916,"mouseY":1142,"mouseButton":"Left","time":24015},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":25359},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":25844}],"info":{"name":"","description":"","x":635,"y":445,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/掣电树前往.json b/repo/js/首领讨伐一条龙/assets/掣电树前往.json new file mode 100644 index 00000000..13d41909 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/掣电树前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":2067.69140625,"y":108.900390625,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/掣电树前往键鼠.json b/repo/js/首领讨伐一条龙/assets/掣电树前往键鼠.json new file mode 100644 index 00000000..f5069c12 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/掣电树前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":2468},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":2828},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":2859},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":7031},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":8750},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":9890},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":11765},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":11890},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":12453},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":14156},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":14437},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":22375},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":23343},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":24359},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":24593},{"type":0,"keyCode":83,"mouseX":0,"mouseY":0,"time":25468},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":25500},{"type":1,"keyCode":83,"mouseX":0,"mouseY":0,"time":25984}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之岩前往.json b/repo/js/首领讨伐一条龙/assets/无相之岩前往.json new file mode 100644 index 00000000..ebc3e83b --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之岩前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":-656.78515625,"y":-90.4169921875,"type":"teleport","move_mode":"walk"},{"x":-687.0263671875,"y":-96.19189453125,"type":"path","move_mode":"walk"},{"x":-719.9736328125,"y":-94.6748046875,"type":"path","move_mode":"walk"},{"x":-754.28125,"y":-91.27001953125,"type":"path","move_mode":"walk"},{"x":-781.6640625,"y":-96.474609375,"type":"path","move_mode":"walk"},{"x":-809.107421875,"y":-119.3671875,"type":"path","move_mode":"walk"},{"x":-833.240234375,"y":-132.7734375,"type":"path","move_mode":"walk"},{"x":-857.30859375,"y":-119.65185546875,"type":"path","move_mode":"walk"},{"x":-857.30078125,"y":-119.65380859375,"type":"path","move_mode":"walk"},{"x":-875.322265625,"y":-102.798828125,"type":"path","move_mode":"walk"},{"x":-889.1103515625,"y":-81.04638671875,"type":"path","move_mode":"walk"},{"x":-894.4716796875,"y":-54.01171875,"type":"path","move_mode":"walk"},{"x":-889.3955078125,"y":-26.36376953125,"type":"path","move_mode":"walk"},{"x":-896.947265625,"y":-4.6171875,"type":"path","move_mode":"walk"},{"x":-882.3173828125,"y":6.94140625,"type":"path","move_mode":"walk"},{"x":-864.560546875,"y":20.841796875,"type":"path","move_mode":"walk"},{"x":-855.5419921875,"y":44.05712890625,"type":"path","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之岩前往键鼠.json b/repo/js/首领讨伐一条龙/assets/无相之岩前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之岩前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之水前往.json b/repo/js/首领讨伐一条龙/assets/无相之水前往.json new file mode 100644 index 00000000..d751ae55 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之水前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":-765.90234375,"y":-3557.412109375,"type":"teleport","move_mode":"walk"},{"x":-790.990234375,"y":-3549.166015625,"type":"path","move_mode":"walk"},{"x":-826.115234375,"y":-3552.04296875,"type":"path","move_mode":"walk"},{"x":-854.0869140625,"y":-3562.6025390625,"type":"path","move_mode":"walk"},{"x":-879.5634765625,"y":-3561.162109375,"type":"path","move_mode":"walk"},{"x":-898.95703125,"y":-3558.9677734375,"type":"path","move_mode":"walk"},{"x":-920.3505859375,"y":-3568.9912109375,"type":"path","move_mode":"walk"},{"x":-927.857421875,"y":-3576.30859375,"type":"path","move_mode":"walk"},{"x":-930.1455078125,"y":-3581.4541015625,"type":"path","move_mode":"walk"},{"x":-947.55859375,"y":-3578.083984375,"type":"path","move_mode":"walk"},{"x":-967.3955078125,"y":-3584.1630859375,"type":"path","move_mode":"walk"},{"x":-964.3115234375,"y":-3596.328125,"type":"path","move_mode":"fly","action": "stop_flying"},{"x":-965.771484375,"y":-3553.0556640625,"type":"path","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之水前往键鼠.json b/repo/js/首领讨伐一条龙/assets/无相之水前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之水前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之火前往.json b/repo/js/首领讨伐一条龙/assets/无相之火前往.json new file mode 100644 index 00000000..1f27b45a --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之火前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":-3234.1484375,"y":-3155.572265625,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之火前往键鼠.json b/repo/js/首领讨伐一条龙/assets/无相之火前往键鼠.json new file mode 100644 index 00000000..ddbac7e7 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之火前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":844},{"type":4,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":4266},{"type":5,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":4407},{"type":4,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":5985},{"type":5,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":6188},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":6875},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":9625},{"type":4,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":10407},{"type":5,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":10594},{"type":4,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":12157},{"type":5,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":12375},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":15735},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":16188},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":17828},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":18344},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":19860},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":19860},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":21875},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":22907},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":23266},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":24110},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":25469},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":27391},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":29891}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之草前往.json b/repo/js/首领讨伐一条龙/assets/无相之草前往.json new file mode 100644 index 00000000..0d367adc --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之草前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":4036.2392578125,"y":-2464.943359375,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之草前往键鼠.json b/repo/js/首领讨伐一条龙/assets/无相之草前往键鼠.json new file mode 100644 index 00000000..3b630e12 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之草前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":2218},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":2359},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":2984},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":4093},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Middle","time":4718},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Middle","time":4843},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":5765},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":7734},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":7906},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":8265},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":8375},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":10875},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":11046},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":11265},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":11953},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":12140},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":14890},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":15625},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Middle","time":16593},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Middle","time":16765},{"type":6,"mouseX":0,"mouseY":120,"time":16890},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":18328},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":19343},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":19359},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":19921},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":21000},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":21203},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":24453},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":24781},{"type":0,"keyCode":84,"mouseX":0,"mouseY":0,"time":25671},{"type":1,"keyCode":84,"mouseX":0,"mouseY":0,"time":25890},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":28750},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":29812},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":30328},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":31921},{"type":0,"keyCode":84,"mouseX":0,"mouseY":0,"time":32281},{"type":1,"keyCode":84,"mouseX":0,"mouseY":0,"time":32578},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":35343},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":35984},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":36031},{"type":0,"keyCode":84,"mouseX":0,"mouseY":0,"time":38781},{"type":1,"keyCode":84,"mouseX":0,"mouseY":0,"time":39078},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":39406},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":42250},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":42640},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Middle","time":43875},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Middle","time":44015},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":45250},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":45531},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":45765},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":46031},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":46156},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":46421},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":46562},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":49906},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":55078},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":57859},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":58031},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":59000},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":59781},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":60484}],"info":{"name":"","description":"","x":958,"y":562,"width":1920,"height":1080,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之雷前往.json b/repo/js/首领讨伐一条龙/assets/无相之雷前往.json new file mode 100644 index 00000000..4228cdb1 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之雷前往.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "未命名路径", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "前往无相雷", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1867.2705078125, + "y": 1331.20263671875, + "action_params": "" + }, + { + "id": 2, + "x": -1891.6884765625, + "y": 1332.6962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1897.3974609375, + "y": 1327.93408203125, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1901.708984375, + "y": 1330.705078125, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1939.1865234375, + "y": 1309.36376953125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/无相之雷前往键鼠.json b/repo/js/首领讨伐一条龙/assets/无相之雷前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/无相之雷前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/暂时不用/无相之岩前往.json b/repo/js/首领讨伐一条龙/assets/暂时不用/无相之岩前往.json new file mode 100644 index 00000000..412a15f3 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/暂时不用/无相之岩前往.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "无相之岩前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "无相之岩前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -656.8173828125, + "y": -90.5322265625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -754.9423828125, + "y": -82.669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -825.33203125, + "y": -130.67724609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -868.37109375, + "y": -112.06494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -897.0439453125, + "y": -63.62353515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -888, + "y": -37.96533203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -895.705078125, + "y": -4.998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -867.4208984375, + "y": 18.765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -855.2919921875, + "y": 44.7216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/暂时不用/无相之岩前往键鼠.json b/repo/js/首领讨伐一条龙/assets/暂时不用/无相之岩前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/暂时不用/无相之岩前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/暂时不用/无相之风前往.json b/repo/js/首领讨伐一条龙/assets/暂时不用/无相之风前往.json new file mode 100644 index 00000000..b8d40003 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/暂时不用/无相之风前往.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "未命名路径", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "前往无相之风", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1273.7763671875, + "y": 2721.693359375, + "action_params": "" + }, + { + "id": 2, + "x": -1261.0166015625, + "y": 2752.52587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1309.2685546875, + "y": 2879.669189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1302.6962890625, + "y": 2903.755126953125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/暂时不用/深海龙蜥之群前往键鼠.json b/repo/js/首领讨伐一条龙/assets/暂时不用/深海龙蜥之群前往键鼠.json new file mode 100644 index 00000000..1eae748a --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/暂时不用/深海龙蜥之群前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1407},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1516},{"type":0,"keyCode":77,"mouseX":0,"mouseY":0,"time":2407},{"type":1,"keyCode":77,"mouseX":0,"mouseY":0,"time":2516},{"type":2,"mouseX":2021,"mouseY":1105,"time":3329},{"type":2,"mouseX":2176,"mouseY":1166,"time":3360},{"type":2,"mouseX":2377,"mouseY":1262,"time":3391},{"type":2,"mouseX":2712,"mouseY":1445,"time":3422},{"type":2,"mouseX":2945,"mouseY":1597,"time":3454},{"type":2,"mouseX":3062,"mouseY":1667,"time":3485},{"type":2,"mouseX":3117,"mouseY":1702,"time":3516},{"type":2,"mouseX":3119,"mouseY":1705,"time":3563},{"type":2,"mouseX":3127,"mouseY":1707,"time":3594},{"type":2,"mouseX":3129,"mouseY":1710,"time":3657},{"type":2,"mouseX":3130,"mouseY":1712,"time":3688},{"type":2,"mouseX":3134,"mouseY":1715,"time":3750},{"type":2,"mouseX":3144,"mouseY":1722,"time":3782},{"type":2,"mouseX":3144,"mouseY":1723,"time":3860},{"type":2,"mouseX":3146,"mouseY":1725,"time":4032},{"type":2,"mouseX":3148,"mouseY":1728,"time":4125},{"type":2,"mouseX":3150,"mouseY":1730,"time":4188},{"type":2,"mouseX":3151,"mouseY":1732,"time":4219},{"type":2,"mouseX":3155,"mouseY":1740,"time":4282},{"type":2,"mouseX":3160,"mouseY":1747,"time":4313},{"type":4,"mouseX":3161,"mouseY":1748,"mouseButton":"Left","time":4469},{"type":5,"mouseX":3161,"mouseY":1748,"mouseButton":"Left","time":4625},{"type":2,"mouseX":3160,"mouseY":1738,"time":4875},{"type":2,"mouseX":3155,"mouseY":1714,"time":4907},{"type":2,"mouseX":3142,"mouseY":1671,"time":4938},{"type":2,"mouseX":3117,"mouseY":1618,"time":4969},{"type":2,"mouseX":3082,"mouseY":1513,"time":5000},{"type":2,"mouseX":3064,"mouseY":1460,"time":5032},{"type":2,"mouseX":3034,"mouseY":1380,"time":5063},{"type":2,"mouseX":3024,"mouseY":1341,"time":5094},{"type":2,"mouseX":3003,"mouseY":1277,"time":5125},{"type":2,"mouseX":2996,"mouseY":1250,"time":5157},{"type":2,"mouseX":2987,"mouseY":1219,"time":5188},{"type":2,"mouseX":2977,"mouseY":1189,"time":5219},{"type":2,"mouseX":2971,"mouseY":1172,"time":5250},{"type":2,"mouseX":2966,"mouseY":1154,"time":5282},{"type":2,"mouseX":2960,"mouseY":1137,"time":5313},{"type":2,"mouseX":2959,"mouseY":1131,"time":5344},{"type":2,"mouseX":2957,"mouseY":1128,"time":5375},{"type":2,"mouseX":2956,"mouseY":1126,"time":5407},{"type":2,"mouseX":2956,"mouseY":1125,"time":5438},{"type":2,"mouseX":2955,"mouseY":1122,"time":5469},{"type":2,"mouseX":2955,"mouseY":1117,"time":5500},{"type":2,"mouseX":2954,"mouseY":1112,"time":5532},{"type":2,"mouseX":2954,"mouseY":1107,"time":5563},{"type":2,"mouseX":2954,"mouseY":1098,"time":5594},{"type":2,"mouseX":2954,"mouseY":1095,"time":5625},{"type":2,"mouseX":2954,"mouseY":1092,"time":5657},{"type":2,"mouseX":2954,"mouseY":1091,"time":5704},{"type":2,"mouseX":2953,"mouseY":1091,"time":5750},{"type":2,"mouseX":2945,"mouseY":1089,"time":5782},{"type":2,"mouseX":2937,"mouseY":1087,"time":5813},{"type":2,"mouseX":2930,"mouseY":1086,"time":5844},{"type":2,"mouseX":2925,"mouseY":1086,"time":5875},{"type":2,"mouseX":2892,"mouseY":1096,"time":5907},{"type":2,"mouseX":2874,"mouseY":1103,"time":5938},{"type":2,"mouseX":2860,"mouseY":1107,"time":5969},{"type":2,"mouseX":2852,"mouseY":1110,"time":6000},{"type":2,"mouseX":2845,"mouseY":1112,"time":6032},{"type":2,"mouseX":2841,"mouseY":1112,"time":6063},{"type":2,"mouseX":2840,"mouseY":1112,"time":6094},{"type":2,"mouseX":2834,"mouseY":1112,"time":6125},{"type":2,"mouseX":2805,"mouseY":1105,"time":6157},{"type":2,"mouseX":2773,"mouseY":1091,"time":6188},{"type":2,"mouseX":2726,"mouseY":1077,"time":6219},{"type":2,"mouseX":2714,"mouseY":1072,"time":6250},{"type":2,"mouseX":2682,"mouseY":1062,"time":6282},{"type":2,"mouseX":2667,"mouseY":1058,"time":6313},{"type":2,"mouseX":2664,"mouseY":1055,"time":6344},{"type":2,"mouseX":2657,"mouseY":1054,"time":6375},{"type":2,"mouseX":2646,"mouseY":1050,"time":6407},{"type":2,"mouseX":2643,"mouseY":1049,"time":6438},{"type":2,"mouseX":2635,"mouseY":1047,"time":6469},{"type":2,"mouseX":2630,"mouseY":1045,"time":6500},{"type":2,"mouseX":2625,"mouseY":1044,"time":6532},{"type":2,"mouseX":2609,"mouseY":1041,"time":6563},{"type":2,"mouseX":2604,"mouseY":1039,"time":6594},{"type":2,"mouseX":2602,"mouseY":1039,"time":6625},{"type":2,"mouseX":2599,"mouseY":1039,"time":6657},{"type":2,"mouseX":2595,"mouseY":1039,"time":6688},{"type":2,"mouseX":2593,"mouseY":1038,"time":6719},{"type":2,"mouseX":2593,"mouseY":1037,"time":6922},{"type":4,"mouseX":2593,"mouseY":1037,"mouseButton":"Left","time":7079},{"type":5,"mouseX":2593,"mouseY":1037,"mouseButton":"Left","time":7235},{"type":2,"mouseX":2586,"mouseY":1039,"time":8188},{"type":2,"mouseX":2562,"mouseY":1046,"time":8219},{"type":2,"mouseX":2476,"mouseY":1056,"time":8250},{"type":2,"mouseX":2433,"mouseY":1059,"time":8282},{"type":2,"mouseX":2410,"mouseY":1059,"time":8313},{"type":2,"mouseX":2405,"mouseY":1059,"time":8344},{"type":6,"mouseX":0,"mouseY":120,"time":8610},{"type":6,"mouseX":0,"mouseY":120,"time":8641},{"type":6,"mouseX":0,"mouseY":120,"time":9016},{"type":6,"mouseX":0,"mouseY":120,"time":9047},{"type":6,"mouseX":0,"mouseY":120,"time":9391},{"type":6,"mouseX":0,"mouseY":120,"time":9422},{"type":6,"mouseX":0,"mouseY":120,"time":9454},{"type":6,"mouseX":0,"mouseY":120,"time":9485},{"type":6,"mouseX":0,"mouseY":120,"time":9532},{"type":6,"mouseX":0,"mouseY":120,"time":9844},{"type":6,"mouseX":0,"mouseY":120,"time":9875},{"type":6,"mouseX":0,"mouseY":120,"time":9891},{"type":6,"mouseX":0,"mouseY":120,"time":10219},{"type":6,"mouseX":0,"mouseY":120,"time":10235},{"type":6,"mouseX":0,"mouseY":120,"time":10250},{"type":6,"mouseX":0,"mouseY":120,"time":10282},{"type":6,"mouseX":0,"mouseY":120,"time":10313},{"type":6,"mouseX":0,"mouseY":120,"time":10657},{"type":6,"mouseX":0,"mouseY":120,"time":10672},{"type":6,"mouseX":0,"mouseY":120,"time":10688},{"type":6,"mouseX":0,"mouseY":120,"time":10704},{"type":6,"mouseX":0,"mouseY":120,"time":10719},{"type":6,"mouseX":0,"mouseY":120,"time":10735},{"type":6,"mouseX":0,"mouseY":120,"time":10766},{"type":6,"mouseX":0,"mouseY":120,"time":10782},{"type":6,"mouseX":0,"mouseY":120,"time":11157},{"type":6,"mouseX":0,"mouseY":120,"time":11188},{"type":6,"mouseX":0,"mouseY":120,"time":11188},{"type":6,"mouseX":0,"mouseY":120,"time":11219},{"type":6,"mouseX":0,"mouseY":120,"time":11594},{"type":6,"mouseX":0,"mouseY":120,"time":11610},{"type":6,"mouseX":0,"mouseY":120,"time":11641},{"type":6,"mouseX":0,"mouseY":120,"time":11641},{"type":6,"mouseX":0,"mouseY":120,"time":11688},{"type":6,"mouseX":0,"mouseY":120,"time":12079},{"type":6,"mouseX":0,"mouseY":120,"time":12094},{"type":6,"mouseX":0,"mouseY":120,"time":12110},{"type":6,"mouseX":0,"mouseY":120,"time":12141},{"type":6,"mouseX":0,"mouseY":120,"time":12157},{"type":6,"mouseX":0,"mouseY":120,"time":12188},{"type":6,"mouseX":0,"mouseY":120,"time":12219},{"type":6,"mouseX":0,"mouseY":120,"time":12579},{"type":6,"mouseX":0,"mouseY":120,"time":12594},{"type":6,"mouseX":0,"mouseY":120,"time":12625},{"type":6,"mouseX":0,"mouseY":120,"time":12657},{"type":6,"mouseX":0,"mouseY":120,"time":12688},{"type":6,"mouseX":0,"mouseY":120,"time":12719},{"type":6,"mouseX":0,"mouseY":120,"time":13094},{"type":6,"mouseX":0,"mouseY":120,"time":13110},{"type":6,"mouseX":0,"mouseY":120,"time":13141},{"type":6,"mouseX":0,"mouseY":120,"time":13157},{"type":6,"mouseX":0,"mouseY":120,"time":13188},{"type":6,"mouseX":0,"mouseY":120,"time":13219},{"type":6,"mouseX":0,"mouseY":120,"time":13235},{"type":6,"mouseX":0,"mouseY":120,"time":13282},{"type":6,"mouseX":0,"mouseY":120,"time":13610},{"type":6,"mouseX":0,"mouseY":120,"time":13641},{"type":6,"mouseX":0,"mouseY":120,"time":13672},{"type":6,"mouseX":0,"mouseY":120,"time":13704},{"type":6,"mouseX":0,"mouseY":120,"time":13719},{"type":6,"mouseX":0,"mouseY":120,"time":13750},{"type":6,"mouseX":0,"mouseY":120,"time":13782},{"type":6,"mouseX":0,"mouseY":120,"time":14172},{"type":6,"mouseX":0,"mouseY":120,"time":14204},{"type":6,"mouseX":0,"mouseY":120,"time":14235},{"type":6,"mouseX":0,"mouseY":120,"time":14266},{"type":6,"mouseX":0,"mouseY":120,"time":14282},{"type":6,"mouseX":0,"mouseY":120,"time":14313},{"type":6,"mouseX":0,"mouseY":120,"time":14329},{"type":6,"mouseX":0,"mouseY":120,"time":14360},{"type":2,"mouseX":2394,"mouseY":1063,"time":14688},{"type":2,"mouseX":2385,"mouseY":1069,"time":14719},{"type":2,"mouseX":2383,"mouseY":1070,"time":14813},{"type":2,"mouseX":2372,"mouseY":1070,"time":14844},{"type":2,"mouseX":2336,"mouseY":1077,"time":14875},{"type":2,"mouseX":2237,"mouseY":1095,"time":14907},{"type":2,"mouseX":2183,"mouseY":1095,"time":14938},{"type":2,"mouseX":2133,"mouseY":1093,"time":14969},{"type":2,"mouseX":2079,"mouseY":1095,"time":15000},{"type":2,"mouseX":2048,"mouseY":1103,"time":15032},{"type":2,"mouseX":2042,"mouseY":1103,"time":15063},{"type":2,"mouseX":2039,"mouseY":1104,"time":15110},{"type":2,"mouseX":2036,"mouseY":1104,"time":15141},{"type":2,"mouseX":2022,"mouseY":1105,"time":15219},{"type":2,"mouseX":2017,"mouseY":1107,"time":15250},{"type":2,"mouseX":2002,"mouseY":1111,"time":15329},{"type":2,"mouseX":1997,"mouseY":1113,"time":15360},{"type":2,"mouseX":1995,"mouseY":1115,"time":15422},{"type":2,"mouseX":1994,"mouseY":1115,"time":15454},{"type":2,"mouseX":1989,"mouseY":1116,"time":15547},{"type":2,"mouseX":1986,"mouseY":1117,"time":15579},{"type":2,"mouseX":1985,"mouseY":1117,"time":15641},{"type":4,"mouseX":1985,"mouseY":1117,"mouseButton":"Left","time":15719},{"type":5,"mouseX":1985,"mouseY":1117,"mouseButton":"Left","time":15860},{"type":2,"mouseX":2000,"mouseY":1125,"time":16063},{"type":2,"mouseX":2030,"mouseY":1147,"time":16094},{"type":2,"mouseX":2105,"mouseY":1199,"time":16125},{"type":2,"mouseX":2243,"mouseY":1282,"time":16157},{"type":2,"mouseX":2394,"mouseY":1371,"time":16188},{"type":2,"mouseX":2490,"mouseY":1425,"time":16219},{"type":2,"mouseX":2620,"mouseY":1497,"time":16250},{"type":2,"mouseX":2633,"mouseY":1508,"time":16282},{"type":2,"mouseX":2654,"mouseY":1527,"time":16313},{"type":2,"mouseX":2680,"mouseY":1548,"time":16344},{"type":2,"mouseX":2702,"mouseY":1563,"time":16375},{"type":2,"mouseX":2730,"mouseY":1588,"time":16407},{"type":2,"mouseX":2760,"mouseY":1608,"time":16438},{"type":2,"mouseX":2788,"mouseY":1628,"time":16469},{"type":2,"mouseX":2810,"mouseY":1646,"time":16500},{"type":2,"mouseX":2835,"mouseY":1663,"time":16532},{"type":2,"mouseX":2854,"mouseY":1678,"time":16563},{"type":2,"mouseX":2885,"mouseY":1702,"time":16594},{"type":2,"mouseX":2890,"mouseY":1706,"time":16625},{"type":2,"mouseX":2900,"mouseY":1713,"time":16657},{"type":2,"mouseX":2903,"mouseY":1714,"time":16688},{"type":2,"mouseX":2909,"mouseY":1717,"time":16735},{"type":2,"mouseX":2921,"mouseY":1726,"time":16766},{"type":2,"mouseX":2922,"mouseY":1726,"time":16797},{"type":4,"mouseX":2922,"mouseY":1726,"mouseButton":"Left","time":16891},{"type":5,"mouseX":2922,"mouseY":1726,"mouseButton":"Left","time":17016},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":32079},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":35219},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":35360},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":37563},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":37750},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":43172},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":43688},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":44297},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":45047},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":46610},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":47094},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":47860},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Left","time":51625},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Left","time":51813},{"type":0,"keyCode":83,"mouseX":0,"mouseY":0,"time":53813},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":55407},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":55579},{"type":1,"keyCode":83,"mouseX":0,"mouseY":0,"time":57297}],"info":{"name":"","description":"","x":703,"y":398,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/歌裴莉娅的葬送前往.json b/repo/js/首领讨伐一条龙/assets/歌裴莉娅的葬送前往.json new file mode 100644 index 00000000..82346b3a --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/歌裴莉娅的葬送前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":3602.1923828125,"y":3529.43701171875,"type":"teleport","move_mode":"walk"},{"x":3619.8857421875,"y":3512.381103515625,"type":"path","move_mode":"walk"},{"x":3636.697265625,"y":3496.835693359375,"type":"path","move_mode":"walk"},{"x":3660.19140625,"y":3500.75146484375,"type":"path","move_mode":"walk"},{"x":3688.8544921875,"y":3503.58935546875,"type":"path","move_mode":"walk"},{"x":3710.1884765625,"y":3502.442626953125,"type":"path","move_mode":"walk"},{"x":3729.37890625,"y":3515.59326171875,"type":"path","move_mode":"walk"},{"x":3745.1494140625,"y":3530.898193359375,"type":"path","move_mode":"walk"},{"x":3766.2216796875,"y":3551.20361328125,"type":"path","move_mode":"walk"},{"x":3786.3583984375,"y":3570.281005859375,"type":"path","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/歌裴莉娅的葬送前往键鼠.json b/repo/js/首领讨伐一条龙/assets/歌裴莉娅的葬送前往键鼠.json new file mode 100644 index 00000000..6daf3320 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/歌裴莉娅的葬送前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1782},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1907},{"type":0,"keyCode":70,"mouseX":0,"mouseY":0,"time":2672},{"type":1,"keyCode":70,"mouseX":0,"mouseY":0,"time":2813},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":6047},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":6204},{"type":0,"keyCode":70,"mouseX":0,"mouseY":0,"time":8563},{"type":1,"keyCode":70,"mouseX":0,"mouseY":0,"time":8704},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":16782},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":17007}],"info":{"name":"","description":"","x":669,"y":325,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/水形幻人前往.json b/repo/js/首领讨伐一条龙/assets/水形幻人前往.json new file mode 100644 index 00000000..fdc9213b --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/水形幻人前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "水形幻人前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "水形幻人前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 5200.884765625, + "y": 3365.32568359375, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/水形幻人前往键鼠.json b/repo/js/首领讨伐一条龙/assets/水形幻人前往键鼠.json new file mode 100644 index 00000000..f0204343 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/水形幻人前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":2094},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":2203},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":2547},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":4016},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":4250},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":8078},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":8203},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":10110},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":10266},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":16047}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/深罪浸礼者前往.json b/repo/js/首领讨伐一条龙/assets/深罪浸礼者前往.json new file mode 100644 index 00000000..836188f5 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/深罪浸礼者前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":6609.3154296875,"y":342.23876953125,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/深罪浸礼者前往键鼠.json b/repo/js/首领讨伐一条龙/assets/深罪浸礼者前往键鼠.json new file mode 100644 index 00000000..4f74b054 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/深罪浸礼者前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1234},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":3156},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":3297},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":4984},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":5156},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":6641},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":6812},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":8156},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":8312},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":9391},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":9578},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":10719},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":10906},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":11875},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":12094},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":12906},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":13078},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":13703},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":14625},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":15062},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":15234},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":16281},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":16437},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":17594},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":17766},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":18828},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":19047},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":21031},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":21531},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":23094},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":25156},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":26062},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":26203},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":27734},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":27906},{"type":4,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":30156},{"type":5,"mouseX":1984,"mouseY":1095,"mouseButton":"Right","time":30312},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":34953},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":38766},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":41078},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":41781},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":42078},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":42234},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":42453},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":42641},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":53125},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":53812},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":55250},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":58547},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":59562},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":61859},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":66828},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":66859},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":67172}],"info":{"name":"","description":"","x":703,"y":398,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/深邃摹结株前往.json b/repo/js/首领讨伐一条龙/assets/深邃摹结株前往.json new file mode 100644 index 00000000..bec0c9f7 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/深邃摹结株前往.json @@ -0,0 +1,22 @@ +{ + "info": { + "name": "深邃摹结株前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "深邃摹结株前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9352.87109375, + "y": -1333.6162109375, + "action_params": "" + } + + ] +} diff --git a/repo/js/首领讨伐一条龙/assets/深邃摹结株前往键鼠.json b/repo/js/首领讨伐一条龙/assets/深邃摹结株前往键鼠.json new file mode 100644 index 00000000..1263ddb1 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/深邃摹结株前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":83,"mouseX":0,"mouseY":0,"time":953},{"type":1,"keyCode":83,"mouseX":0,"mouseY":0,"time":1125},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":2156},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":3640},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":7640},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":8781},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":8890},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":12828},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":12968},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":14875},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":15031},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":16359}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/灵觉隐修的迷者前往.json b/repo/js/首领讨伐一条龙/assets/灵觉隐修的迷者前往.json new file mode 100644 index 00000000..581be747 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/灵觉隐修的迷者前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "灵觉隐修的迷者前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "灵觉隐修的迷者前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9604.9140625, + "y": -1851.7744140625, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/灵觉隐修的迷者前往键鼠.json b/repo/js/首领讨伐一条龙/assets/灵觉隐修的迷者前往键鼠.json new file mode 100644 index 00000000..d05413ad --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/灵觉隐修的迷者前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":1141},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":1547},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":1625},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":2860},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":3203},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":4438},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":4594},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":6016},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":6188},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":8032},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":8203},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":9672},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":9813},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":11282},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":11438},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":12500},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":12672},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":14500},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":15438},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":15563}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/熔岩辉龙像前往.json b/repo/js/首领讨伐一条龙/assets/熔岩辉龙像前往.json new file mode 100644 index 00000000..aef9b768 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/熔岩辉龙像前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":9879.2666015625,"y":-2224.0830078125,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/熔岩辉龙像前往键鼠.json b/repo/js/首领讨伐一条龙/assets/熔岩辉龙像前往键鼠.json new file mode 100644 index 00000000..18dd6b49 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/熔岩辉龙像前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1250},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1437},{"type":0,"keyCode":77,"mouseX":0,"mouseY":0,"time":2671},{"type":1,"keyCode":77,"mouseX":0,"mouseY":0,"time":2796},{"type":6,"mouseX":0,"mouseY":120,"time":3765},{"type":2,"mouseX":1919,"mouseY":1080,"time":3765},{"type":6,"mouseX":0,"mouseY":120,"time":4140},{"type":6,"mouseX":0,"mouseY":120,"time":4468},{"type":6,"mouseX":0,"mouseY":120,"time":4515},{"type":6,"mouseX":0,"mouseY":120,"time":4750},{"type":6,"mouseX":0,"mouseY":120,"time":4781},{"type":6,"mouseX":0,"mouseY":120,"time":4828},{"type":6,"mouseX":0,"mouseY":120,"time":5062},{"type":6,"mouseX":0,"mouseY":120,"time":5093},{"type":6,"mouseX":0,"mouseY":120,"time":5125},{"type":6,"mouseX":0,"mouseY":120,"time":5421},{"type":6,"mouseX":0,"mouseY":120,"time":5453},{"type":6,"mouseX":0,"mouseY":120,"time":5718},{"type":6,"mouseX":0,"mouseY":120,"time":5750},{"type":6,"mouseX":0,"mouseY":120,"time":6000},{"type":6,"mouseX":0,"mouseY":120,"time":6031},{"type":6,"mouseX":0,"mouseY":120,"time":6328},{"type":6,"mouseX":0,"mouseY":120,"time":6875},{"type":6,"mouseX":0,"mouseY":120,"time":6906},{"type":6,"mouseX":0,"mouseY":120,"time":6937},{"type":6,"mouseX":0,"mouseY":120,"time":7156},{"type":6,"mouseX":0,"mouseY":120,"time":7187},{"type":6,"mouseX":0,"mouseY":120,"time":7218},{"type":6,"mouseX":0,"mouseY":120,"time":7453},{"type":6,"mouseX":0,"mouseY":120,"time":7484},{"type":6,"mouseX":0,"mouseY":120,"time":7515},{"type":6,"mouseX":0,"mouseY":120,"time":7796},{"type":6,"mouseX":0,"mouseY":120,"time":7843},{"type":6,"mouseX":0,"mouseY":120,"time":8125},{"type":6,"mouseX":0,"mouseY":120,"time":8171},{"type":6,"mouseX":0,"mouseY":120,"time":8468},{"type":6,"mouseX":0,"mouseY":120,"time":8515},{"type":6,"mouseX":0,"mouseY":120,"time":8796},{"type":6,"mouseX":0,"mouseY":120,"time":8828},{"type":6,"mouseX":0,"mouseY":120,"time":8859},{"type":6,"mouseX":0,"mouseY":120,"time":9109},{"type":6,"mouseX":0,"mouseY":120,"time":9140},{"type":6,"mouseX":0,"mouseY":120,"time":9171},{"type":6,"mouseX":0,"mouseY":120,"time":9421},{"type":6,"mouseX":0,"mouseY":120,"time":9468},{"type":6,"mouseX":0,"mouseY":120,"time":9812},{"type":6,"mouseX":0,"mouseY":120,"time":10140},{"type":6,"mouseX":0,"mouseY":120,"time":10171},{"type":6,"mouseX":0,"mouseY":120,"time":10437},{"type":6,"mouseX":0,"mouseY":120,"time":10484},{"type":6,"mouseX":0,"mouseY":120,"time":10515},{"type":6,"mouseX":0,"mouseY":120,"time":10765},{"type":6,"mouseX":0,"mouseY":120,"time":10812},{"type":6,"mouseX":0,"mouseY":120,"time":10843},{"type":6,"mouseX":0,"mouseY":120,"time":11125},{"type":6,"mouseX":0,"mouseY":120,"time":11156},{"type":6,"mouseX":0,"mouseY":120,"time":11437},{"type":6,"mouseX":0,"mouseY":120,"time":11468},{"type":6,"mouseX":0,"mouseY":120,"time":11515},{"type":6,"mouseX":0,"mouseY":120,"time":11828},{"type":6,"mouseX":0,"mouseY":120,"time":11843},{"type":6,"mouseX":0,"mouseY":120,"time":12156},{"type":6,"mouseX":0,"mouseY":120,"time":12187},{"type":6,"mouseX":0,"mouseY":120,"time":12218},{"type":6,"mouseX":0,"mouseY":120,"time":12500},{"type":6,"mouseX":0,"mouseY":120,"time":12531},{"type":6,"mouseX":0,"mouseY":120,"time":12562},{"type":2,"mouseX":1918,"mouseY":1063,"time":13125},{"type":2,"mouseX":1918,"mouseY":1028,"time":13156},{"type":2,"mouseX":1905,"mouseY":977,"time":13187},{"type":2,"mouseX":1878,"mouseY":899,"time":13218},{"type":2,"mouseX":1855,"mouseY":815,"time":13250},{"type":2,"mouseX":1831,"mouseY":729,"time":13281},{"type":2,"mouseX":1811,"mouseY":696,"time":13312},{"type":2,"mouseX":1809,"mouseY":692,"time":13343},{"type":2,"mouseX":1805,"mouseY":696,"time":13515},{"type":2,"mouseX":1804,"mouseY":699,"time":13546},{"type":2,"mouseX":1804,"mouseY":703,"time":13625},{"type":2,"mouseX":1804,"mouseY":704,"time":13671},{"type":2,"mouseX":1803,"mouseY":705,"time":13718},{"type":2,"mouseX":1803,"mouseY":710,"time":13750},{"type":2,"mouseX":1803,"mouseY":711,"time":13781},{"type":2,"mouseX":1803,"mouseY":719,"time":13859},{"type":2,"mouseX":1806,"mouseY":730,"time":13890},{"type":2,"mouseX":1809,"mouseY":734,"time":13921},{"type":4,"mouseX":1809,"mouseY":734,"mouseButton":"Left","time":14125},{"type":5,"mouseX":1809,"mouseY":734,"mouseButton":"Left","time":14265},{"type":2,"mouseX":1818,"mouseY":743,"time":14421},{"type":2,"mouseX":1868,"mouseY":790,"time":14453},{"type":2,"mouseX":1967,"mouseY":879,"time":14484},{"type":2,"mouseX":2043,"mouseY":956,"time":14515},{"type":2,"mouseX":2098,"mouseY":1006,"time":14546},{"type":2,"mouseX":2137,"mouseY":1048,"time":14578},{"type":2,"mouseX":2171,"mouseY":1087,"time":14609},{"type":2,"mouseX":2208,"mouseY":1130,"time":14640},{"type":2,"mouseX":2225,"mouseY":1153,"time":14671},{"type":2,"mouseX":2246,"mouseY":1187,"time":14703},{"type":2,"mouseX":2276,"mouseY":1240,"time":14734},{"type":2,"mouseX":2296,"mouseY":1274,"time":14765},{"type":2,"mouseX":2329,"mouseY":1312,"time":14796},{"type":2,"mouseX":2388,"mouseY":1382,"time":14828},{"type":2,"mouseX":2416,"mouseY":1411,"time":14859},{"type":2,"mouseX":2456,"mouseY":1443,"time":14890},{"type":2,"mouseX":2488,"mouseY":1468,"time":14921},{"type":2,"mouseX":2522,"mouseY":1493,"time":14953},{"type":2,"mouseX":2539,"mouseY":1504,"time":14984},{"type":2,"mouseX":2546,"mouseY":1508,"time":15015},{"type":2,"mouseX":2558,"mouseY":1519,"time":15046},{"type":2,"mouseX":2572,"mouseY":1526,"time":15078},{"type":2,"mouseX":2574,"mouseY":1527,"time":15109},{"type":2,"mouseX":2578,"mouseY":1527,"time":15140},{"type":2,"mouseX":2582,"mouseY":1530,"time":15171},{"type":2,"mouseX":2587,"mouseY":1532,"time":15203},{"type":2,"mouseX":2603,"mouseY":1543,"time":15234},{"type":2,"mouseX":2607,"mouseY":1544,"time":15265},{"type":2,"mouseX":2617,"mouseY":1551,"time":15296},{"type":2,"mouseX":2624,"mouseY":1554,"time":15328},{"type":2,"mouseX":2628,"mouseY":1555,"time":15375},{"type":4,"mouseX":2628,"mouseY":1555,"mouseButton":"Left","time":15515},{"type":5,"mouseX":2628,"mouseY":1555,"mouseButton":"Left","time":15656},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":23828},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":23937},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":24437},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":26062},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":29640},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":29906},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":30046},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":30500},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":30640},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":38093}],"info":{"name":"","description":"","x":958,"y":562,"width":1920,"height":1080,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/爆炎树前往.json b/repo/js/首领讨伐一条龙/assets/爆炎树前往.json new file mode 100644 index 00000000..aaf9a5ba --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/爆炎树前往.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "前往爆炎树", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "前往爆炎树", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 837.5556640625, + "y": 235.142578125, + "action_params": "" + }, + { + "id": 2, + "x": 856.955078125, + "y": 230.3837890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 897.263671875, + "y": 234.44580078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 928.572265625, + "y": 240.56103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 954.2783203125, + "y": 227.30078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 954.2890625, + "y": 175.15966796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 954.2763671875, + "y": 152.3193359375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/爆炎树前往键鼠.json b/repo/js/首领讨伐一条龙/assets/爆炎树前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/爆炎树前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/科培琉司的劫罚前往.json b/repo/js/首领讨伐一条龙/assets/科培琉司的劫罚前往.json new file mode 100644 index 00000000..82346b3a --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/科培琉司的劫罚前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":3602.1923828125,"y":3529.43701171875,"type":"teleport","move_mode":"walk"},{"x":3619.8857421875,"y":3512.381103515625,"type":"path","move_mode":"walk"},{"x":3636.697265625,"y":3496.835693359375,"type":"path","move_mode":"walk"},{"x":3660.19140625,"y":3500.75146484375,"type":"path","move_mode":"walk"},{"x":3688.8544921875,"y":3503.58935546875,"type":"path","move_mode":"walk"},{"x":3710.1884765625,"y":3502.442626953125,"type":"path","move_mode":"walk"},{"x":3729.37890625,"y":3515.59326171875,"type":"path","move_mode":"walk"},{"x":3745.1494140625,"y":3530.898193359375,"type":"path","move_mode":"walk"},{"x":3766.2216796875,"y":3551.20361328125,"type":"path","move_mode":"walk"},{"x":3786.3583984375,"y":3570.281005859375,"type":"path","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/科培琉司的劫罚前往键鼠.json b/repo/js/首领讨伐一条龙/assets/科培琉司的劫罚前往键鼠.json new file mode 100644 index 00000000..fdb3ef1f --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/科培琉司的劫罚前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1391},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1500},{"type":0,"keyCode":70,"mouseX":0,"mouseY":0,"time":2625},{"type":1,"keyCode":70,"mouseX":0,"mouseY":0,"time":2734},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":5656},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":5797},{"type":6,"mouseX":0,"mouseY":-120,"time":7984},{"type":2,"mouseX":1951,"mouseY":1023,"time":7984},{"type":0,"keyCode":70,"mouseX":0,"mouseY":0,"time":8891},{"type":1,"keyCode":70,"mouseX":0,"mouseY":0,"time":9050},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":17350},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":17700}],"info":{"name":"","description":"","x":669,"y":325,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/秘源机兵·构型械前往.json b/repo/js/首领讨伐一条龙/assets/秘源机兵·构型械前往.json new file mode 100644 index 00000000..e40505aa --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/秘源机兵·构型械前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "秘源机兵·构型械前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "秘源机兵·构型械前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8348.302734375, + "y": -2671.43359375, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/秘源机兵·构型械前往键鼠.json b/repo/js/首领讨伐一条龙/assets/秘源机兵·构型械前往键鼠.json new file mode 100644 index 00000000..76a22f84 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/秘源机兵·构型械前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":1359},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":2797},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":3578},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":4062},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":4094},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":4953},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":5078},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":5469},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":5656},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":9234},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":9375},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":11547},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":11703},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":13765},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":15172},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":16406}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/纯水精灵前往.json b/repo/js/首领讨伐一条龙/assets/纯水精灵前往.json new file mode 100644 index 00000000..0d209e61 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/纯水精灵前往.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "纯水精灵前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "纯水精灵前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 283.859375, + "y": 1668.58056640625, + "action_params": "" + }, + { + "id": 2, + "x": 291.0908203125, + "y": 1675.892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 284.8623046875, + "y": 1704.5244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 281.953125, + "y": 1766.923828125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold),keypress(F)" + }, + { + "id": 5, + "x": 256.689453125, + "y": 1782.7421875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold),keypress(F)" + }, + { + "id": 6, + "x": 271.4609375, + "y": 1807.50830078125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold),keypress(F)" + }, + { + "id": 7, + "x": 296.4892578125, + "y": 1793.669921875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold),keypress(F)" + }, + { + "id": 8, + "x": 276.9873046875, + "y": 1787.93603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/纯水精灵前往键鼠.json b/repo/js/首领讨伐一条龙/assets/纯水精灵前往键鼠.json new file mode 100644 index 00000000..7332002f --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/纯水精灵前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1297},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1422},{"type":0,"keyCode":70,"mouseX":0,"mouseY":0,"time":2282},{"type":1,"keyCode":70,"mouseX":0,"mouseY":0,"time":2407}],"info":{"name":"","description":"","x":958,"y":562,"width":1920,"height":1080,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/翠翎恐簟前往.json b/repo/js/首领讨伐一条龙/assets/翠翎恐簟前往.json new file mode 100644 index 00000000..bd6b0e55 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/翠翎恐簟前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":3933.6064453125,"y":-164.453125,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/翠翎恐簟前往键鼠.json b/repo/js/首领讨伐一条龙/assets/翠翎恐簟前往键鼠.json new file mode 100644 index 00000000..c756f224 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/翠翎恐簟前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":1657},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":3047},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":3563},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":4016},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":4094},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":4625},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":4766},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":5000},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":5157},{"type":4,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":13500},{"type":5,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":13672},{"type":4,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":14172},{"type":5,"mouseX":1961,"mouseY":1421,"mouseButton":"Right","time":14313},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":15594}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/贪食匿叶龙山王前往.json b/repo/js/首领讨伐一条龙/assets/贪食匿叶龙山王前往.json new file mode 100644 index 00000000..48bbe9cc --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/贪食匿叶龙山王前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "贪食匿叶龙山王前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "贪食匿叶龙山王前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8427.697265625, + "y": -1814.73193359375, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/贪食匿叶龙山王前往键鼠.json b/repo/js/首领讨伐一条龙/assets/贪食匿叶龙山王前往键鼠.json new file mode 100644 index 00000000..f8686ee3 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/贪食匿叶龙山王前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":1329},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":1579},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":1938},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":3172},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":3750},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":4297},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":4454},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":4766},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":4907},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":15672},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":15766},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":16813},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":16954},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":18000},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":18172},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":19500},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":19579},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":20516}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/遗迹巨蛇前往.json b/repo/js/首领讨伐一条龙/assets/遗迹巨蛇前往.json new file mode 100644 index 00000000..757fb70a --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/遗迹巨蛇前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":2297.623046875,"y":-824.53515625,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/遗迹巨蛇前往键鼠.json b/repo/js/首领讨伐一条龙/assets/遗迹巨蛇前往键鼠.json new file mode 100644 index 00000000..5bbdbc3d --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/遗迹巨蛇前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1265},{"type":0,"keyCode":77,"mouseX":0,"mouseY":0,"time":3031},{"type":1,"keyCode":77,"mouseX":0,"mouseY":0,"time":3140},{"type":2,"mouseX":1926,"mouseY":1076,"time":4406},{"type":2,"mouseX":1934,"mouseY":1067,"time":4437},{"type":2,"mouseX":1935,"mouseY":1062,"time":4468},{"type":2,"mouseX":1935,"mouseY":1061,"time":4515},{"type":2,"mouseX":1937,"mouseY":1059,"time":4547},{"type":2,"mouseX":1941,"mouseY":1063,"time":4609},{"type":2,"mouseX":1944,"mouseY":1068,"time":4640},{"type":2,"mouseX":1957,"mouseY":1083,"time":4672},{"type":2,"mouseX":1965,"mouseY":1091,"time":4703},{"type":2,"mouseX":1970,"mouseY":1097,"time":4734},{"type":2,"mouseX":1985,"mouseY":1110,"time":4765},{"type":2,"mouseX":2002,"mouseY":1124,"time":4797},{"type":2,"mouseX":2012,"mouseY":1131,"time":4828},{"type":2,"mouseX":2042,"mouseY":1152,"time":4859},{"type":2,"mouseX":2061,"mouseY":1165,"time":4890},{"type":2,"mouseX":2086,"mouseY":1185,"time":4922},{"type":2,"mouseX":2116,"mouseY":1207,"time":4953},{"type":2,"mouseX":2180,"mouseY":1255,"time":4984},{"type":2,"mouseX":2228,"mouseY":1284,"time":5015},{"type":2,"mouseX":2350,"mouseY":1364,"time":5047},{"type":2,"mouseX":2414,"mouseY":1407,"time":5078},{"type":2,"mouseX":2466,"mouseY":1443,"time":5109},{"type":2,"mouseX":2537,"mouseY":1500,"time":5140},{"type":2,"mouseX":2606,"mouseY":1556,"time":5172},{"type":2,"mouseX":2628,"mouseY":1564,"time":5203},{"type":2,"mouseX":2649,"mouseY":1575,"time":5234},{"type":2,"mouseX":2660,"mouseY":1582,"time":5265},{"type":2,"mouseX":2685,"mouseY":1595,"time":5297},{"type":2,"mouseX":2750,"mouseY":1619,"time":5328},{"type":2,"mouseX":2773,"mouseY":1624,"time":5359},{"type":2,"mouseX":2797,"mouseY":1627,"time":5390},{"type":2,"mouseX":2816,"mouseY":1630,"time":5422},{"type":2,"mouseX":2830,"mouseY":1630,"time":5453},{"type":2,"mouseX":2869,"mouseY":1636,"time":5484},{"type":2,"mouseX":2896,"mouseY":1641,"time":5515},{"type":2,"mouseX":2916,"mouseY":1646,"time":5547},{"type":2,"mouseX":2976,"mouseY":1669,"time":5578},{"type":2,"mouseX":2984,"mouseY":1672,"time":5609},{"type":2,"mouseX":2989,"mouseY":1673,"time":5640},{"type":2,"mouseX":3004,"mouseY":1679,"time":5672},{"type":2,"mouseX":3005,"mouseY":1680,"time":5703},{"type":2,"mouseX":3030,"mouseY":1692,"time":5734},{"type":2,"mouseX":3047,"mouseY":1700,"time":5765},{"type":2,"mouseX":3051,"mouseY":1703,"time":5797},{"type":2,"mouseX":3055,"mouseY":1706,"time":5828},{"type":2,"mouseX":3059,"mouseY":1708,"time":5859},{"type":2,"mouseX":3060,"mouseY":1709,"time":5890},{"type":2,"mouseX":3071,"mouseY":1715,"time":5937},{"type":2,"mouseX":3072,"mouseY":1715,"time":5984},{"type":2,"mouseX":3078,"mouseY":1719,"time":6015},{"type":2,"mouseX":3082,"mouseY":1721,"time":6047},{"type":2,"mouseX":3084,"mouseY":1723,"time":6109},{"type":2,"mouseX":3087,"mouseY":1724,"time":6172},{"type":2,"mouseX":3091,"mouseY":1729,"time":6218},{"type":2,"mouseX":3093,"mouseY":1729,"time":6250},{"type":2,"mouseX":3094,"mouseY":1730,"time":6281},{"type":4,"mouseX":3094,"mouseY":1730,"mouseButton":"Left","time":6359},{"type":5,"mouseX":3094,"mouseY":1730,"mouseButton":"Left","time":6515},{"type":2,"mouseX":3094,"mouseY":1727,"time":6968},{"type":2,"mouseX":3090,"mouseY":1721,"time":7015},{"type":2,"mouseX":3086,"mouseY":1714,"time":7047},{"type":2,"mouseX":3085,"mouseY":1709,"time":7078},{"type":2,"mouseX":3081,"mouseY":1696,"time":7109},{"type":2,"mouseX":3075,"mouseY":1675,"time":7140},{"type":2,"mouseX":3066,"mouseY":1637,"time":7172},{"type":2,"mouseX":3062,"mouseY":1618,"time":7203},{"type":2,"mouseX":3047,"mouseY":1545,"time":7234},{"type":2,"mouseX":3040,"mouseY":1506,"time":7265},{"type":2,"mouseX":3034,"mouseY":1465,"time":7297},{"type":2,"mouseX":3028,"mouseY":1434,"time":7328},{"type":2,"mouseX":3024,"mouseY":1406,"time":7359},{"type":2,"mouseX":3023,"mouseY":1391,"time":7390},{"type":2,"mouseX":3019,"mouseY":1330,"time":7422},{"type":2,"mouseX":3010,"mouseY":1250,"time":7453},{"type":2,"mouseX":3008,"mouseY":1208,"time":7484},{"type":2,"mouseX":3006,"mouseY":1156,"time":7515},{"type":2,"mouseX":3002,"mouseY":1129,"time":7547},{"type":2,"mouseX":3002,"mouseY":1112,"time":7578},{"type":2,"mouseX":3002,"mouseY":1103,"time":7609},{"type":2,"mouseX":3001,"mouseY":1078,"time":7656},{"type":2,"mouseX":3001,"mouseY":1068,"time":7687},{"type":2,"mouseX":3001,"mouseY":1058,"time":7718},{"type":2,"mouseX":2999,"mouseY":1046,"time":7750},{"type":2,"mouseX":2998,"mouseY":1036,"time":7797},{"type":2,"mouseX":2998,"mouseY":1032,"time":7828},{"type":2,"mouseX":2997,"mouseY":1028,"time":7859},{"type":2,"mouseX":2997,"mouseY":1027,"time":7906},{"type":2,"mouseX":2997,"mouseY":1024,"time":7953},{"type":2,"mouseX":2997,"mouseY":1019,"time":7984},{"type":2,"mouseX":2997,"mouseY":1018,"time":8015},{"type":2,"mouseX":2997,"mouseY":1016,"time":8047},{"type":2,"mouseX":2997,"mouseY":1015,"time":8078},{"type":2,"mouseX":2997,"mouseY":1013,"time":8109},{"type":4,"mouseX":2997,"mouseY":1013,"mouseButton":"Left","time":8734},{"type":5,"mouseX":2997,"mouseY":1013,"mouseButton":"Left","time":8875},{"type":2,"mouseX":2996,"mouseY":1013,"time":9968},{"type":2,"mouseX":2986,"mouseY":1013,"time":10000},{"type":2,"mouseX":2937,"mouseY":1011,"time":10031},{"type":2,"mouseX":2884,"mouseY":1011,"time":10062},{"type":2,"mouseX":2804,"mouseY":1012,"time":10093},{"type":2,"mouseX":2703,"mouseY":1015,"time":10125},{"type":2,"mouseX":2584,"mouseY":1015,"time":10156},{"type":2,"mouseX":2473,"mouseY":1013,"time":10187},{"type":2,"mouseX":2381,"mouseY":1011,"time":10218},{"type":2,"mouseX":2224,"mouseY":1005,"time":10250},{"type":2,"mouseX":1970,"mouseY":1000,"time":10281},{"type":2,"mouseX":1787,"mouseY":996,"time":10312},{"type":2,"mouseX":1650,"mouseY":997,"time":10343},{"type":2,"mouseX":1554,"mouseY":1006,"time":10375},{"type":2,"mouseX":1486,"mouseY":1014,"time":10406},{"type":2,"mouseX":1422,"mouseY":1025,"time":10437},{"type":2,"mouseX":1336,"mouseY":1040,"time":10468},{"type":2,"mouseX":1245,"mouseY":1055,"time":10500},{"type":2,"mouseX":1120,"mouseY":1087,"time":10531},{"type":2,"mouseX":1082,"mouseY":1095,"time":10562},{"type":2,"mouseX":1015,"mouseY":1107,"time":10593},{"type":2,"mouseX":978,"mouseY":1119,"time":10625},{"type":2,"mouseX":961,"mouseY":1125,"time":10656},{"type":2,"mouseX":932,"mouseY":1135,"time":10687},{"type":2,"mouseX":926,"mouseY":1139,"time":10718},{"type":2,"mouseX":924,"mouseY":1140,"time":10750},{"type":2,"mouseX":926,"mouseY":1140,"time":10984},{"type":2,"mouseX":988,"mouseY":1144,"time":11015},{"type":2,"mouseX":1067,"mouseY":1154,"time":11047},{"type":2,"mouseX":1138,"mouseY":1163,"time":11078},{"type":2,"mouseX":1418,"mouseY":1205,"time":11109},{"type":2,"mouseX":1472,"mouseY":1212,"time":11140},{"type":2,"mouseX":1499,"mouseY":1215,"time":11172},{"type":2,"mouseX":1511,"mouseY":1218,"time":11203},{"type":2,"mouseX":1570,"mouseY":1228,"time":11234},{"type":2,"mouseX":1644,"mouseY":1241,"time":11265},{"type":2,"mouseX":1673,"mouseY":1245,"time":11297},{"type":2,"mouseX":1695,"mouseY":1246,"time":11328},{"type":2,"mouseX":1749,"mouseY":1252,"time":11359},{"type":2,"mouseX":1768,"mouseY":1254,"time":11390},{"type":2,"mouseX":1779,"mouseY":1255,"time":11422},{"type":2,"mouseX":1796,"mouseY":1258,"time":11453},{"type":2,"mouseX":1809,"mouseY":1258,"time":11484},{"type":2,"mouseX":1881,"mouseY":1268,"time":11515},{"type":2,"mouseX":1895,"mouseY":1272,"time":11547},{"type":2,"mouseX":1900,"mouseY":1272,"time":11578},{"type":2,"mouseX":1912,"mouseY":1273,"time":11609},{"type":2,"mouseX":1914,"mouseY":1273,"time":11640},{"type":2,"mouseX":1914,"mouseY":1274,"time":11734},{"type":6,"mouseX":0,"mouseY":-120,"time":11859},{"type":6,"mouseX":0,"mouseY":-120,"time":11968},{"type":2,"mouseX":1949,"mouseY":1274,"time":12140},{"type":2,"mouseX":2013,"mouseY":1274,"time":12172},{"type":2,"mouseX":2062,"mouseY":1274,"time":12203},{"type":2,"mouseX":2100,"mouseY":1276,"time":12234},{"type":2,"mouseX":2101,"mouseY":1276,"time":12265},{"type":6,"mouseX":0,"mouseY":-120,"time":12281},{"type":6,"mouseX":0,"mouseY":-120,"time":12312},{"type":6,"mouseX":0,"mouseY":-120,"time":12359},{"type":6,"mouseX":0,"mouseY":-120,"time":12609},{"type":6,"mouseX":0,"mouseY":-120,"time":12640},{"type":6,"mouseX":0,"mouseY":-120,"time":12656},{"type":6,"mouseX":0,"mouseY":-120,"time":12984},{"type":6,"mouseX":0,"mouseY":-120,"time":13265},{"type":6,"mouseX":0,"mouseY":-120,"time":13265},{"type":6,"mouseX":0,"mouseY":-120,"time":13281},{"type":6,"mouseX":0,"mouseY":-120,"time":13297},{"type":6,"mouseX":0,"mouseY":-120,"time":13312},{"type":6,"mouseX":0,"mouseY":-120,"time":13328},{"type":6,"mouseX":0,"mouseY":-120,"time":13343},{"type":6,"mouseX":0,"mouseY":-120,"time":13343},{"type":6,"mouseX":0,"mouseY":-120,"time":13375},{"type":6,"mouseX":0,"mouseY":-120,"time":13390},{"type":6,"mouseX":0,"mouseY":-120,"time":13406},{"type":6,"mouseX":0,"mouseY":-120,"time":13422},{"type":6,"mouseX":0,"mouseY":-120,"time":13453},{"type":6,"mouseX":0,"mouseY":-120,"time":13453},{"type":6,"mouseX":0,"mouseY":-120,"time":13484},{"type":6,"mouseX":0,"mouseY":-120,"time":13500},{"type":6,"mouseX":0,"mouseY":-120,"time":13531},{"type":6,"mouseX":0,"mouseY":-120,"time":13562},{"type":6,"mouseX":0,"mouseY":-120,"time":13609},{"type":6,"mouseX":0,"mouseY":-120,"time":13734},{"type":6,"mouseX":0,"mouseY":-120,"time":14078},{"type":6,"mouseX":0,"mouseY":-120,"time":14437},{"type":6,"mouseX":0,"mouseY":-120,"time":14765},{"type":6,"mouseX":0,"mouseY":-120,"time":14797},{"type":6,"mouseX":0,"mouseY":-120,"time":15125},{"type":6,"mouseX":0,"mouseY":-120,"time":15156},{"type":6,"mouseX":0,"mouseY":-120,"time":15172},{"type":6,"mouseX":0,"mouseY":-120,"time":15547},{"type":6,"mouseX":0,"mouseY":-120,"time":15562},{"type":6,"mouseX":0,"mouseY":-120,"time":15906},{"type":6,"mouseX":0,"mouseY":-120,"time":15922},{"type":6,"mouseX":0,"mouseY":-120,"time":15953},{"type":6,"mouseX":0,"mouseY":-120,"time":15968},{"type":6,"mouseX":0,"mouseY":-120,"time":16312},{"type":6,"mouseX":0,"mouseY":-120,"time":16328},{"type":6,"mouseX":0,"mouseY":-120,"time":16359},{"type":6,"mouseX":0,"mouseY":-120,"time":16406},{"type":6,"mouseX":0,"mouseY":-120,"time":16734},{"type":6,"mouseX":0,"mouseY":-120,"time":16765},{"type":6,"mouseX":0,"mouseY":-120,"time":16781},{"type":6,"mouseX":0,"mouseY":-120,"time":17172},{"type":6,"mouseX":0,"mouseY":-120,"time":17187},{"type":6,"mouseX":0,"mouseY":-120,"time":17218},{"type":6,"mouseX":0,"mouseY":-120,"time":17578},{"type":6,"mouseX":0,"mouseY":-120,"time":17609},{"type":6,"mouseX":0,"mouseY":-120,"time":17625},{"type":6,"mouseX":0,"mouseY":-120,"time":17656},{"type":6,"mouseX":0,"mouseY":-120,"time":18031},{"type":6,"mouseX":0,"mouseY":-120,"time":18062},{"type":6,"mouseX":0,"mouseY":-120,"time":18437},{"type":6,"mouseX":0,"mouseY":-120,"time":18468},{"type":6,"mouseX":0,"mouseY":-120,"time":18500},{"type":6,"mouseX":0,"mouseY":-120,"time":18859},{"type":6,"mouseX":0,"mouseY":-120,"time":18875},{"type":6,"mouseX":0,"mouseY":-120,"time":18890},{"type":6,"mouseX":0,"mouseY":-120,"time":18937},{"type":6,"mouseX":0,"mouseY":-120,"time":19265},{"type":6,"mouseX":0,"mouseY":-120,"time":19281},{"type":6,"mouseX":0,"mouseY":-120,"time":19312},{"type":6,"mouseX":0,"mouseY":-120,"time":19687},{"type":6,"mouseX":0,"mouseY":-120,"time":19718},{"type":6,"mouseX":0,"mouseY":-120,"time":19750},{"type":6,"mouseX":0,"mouseY":-120,"time":20140},{"type":6,"mouseX":0,"mouseY":-120,"time":20156},{"type":6,"mouseX":0,"mouseY":-120,"time":20218},{"type":6,"mouseX":0,"mouseY":-120,"time":20531},{"type":6,"mouseX":0,"mouseY":-120,"time":20547},{"type":6,"mouseX":0,"mouseY":-120,"time":20578},{"type":6,"mouseX":0,"mouseY":-120,"time":20593},{"type":6,"mouseX":0,"mouseY":-120,"time":20984},{"type":6,"mouseX":0,"mouseY":-120,"time":21015},{"type":6,"mouseX":0,"mouseY":-120,"time":21047},{"type":6,"mouseX":0,"mouseY":-120,"time":21437},{"type":6,"mouseX":0,"mouseY":-120,"time":21468},{"type":6,"mouseX":0,"mouseY":-120,"time":21500},{"type":2,"mouseX":2093,"mouseY":1279,"time":21937},{"type":2,"mouseX":2080,"mouseY":1280,"time":21968},{"type":2,"mouseX":2053,"mouseY":1282,"time":22000},{"type":2,"mouseX":2038,"mouseY":1285,"time":22031},{"type":2,"mouseX":2028,"mouseY":1285,"time":22062},{"type":2,"mouseX":2013,"mouseY":1286,"time":22093},{"type":2,"mouseX":2008,"mouseY":1286,"time":22125},{"type":2,"mouseX":1999,"mouseY":1288,"time":22156},{"type":2,"mouseX":1989,"mouseY":1289,"time":22187},{"type":2,"mouseX":1982,"mouseY":1290,"time":22218},{"type":2,"mouseX":1974,"mouseY":1290,"time":22250},{"type":2,"mouseX":1969,"mouseY":1291,"time":22281},{"type":2,"mouseX":1965,"mouseY":1292,"time":22312},{"type":2,"mouseX":1960,"mouseY":1292,"time":22343},{"type":2,"mouseX":1953,"mouseY":1294,"time":22375},{"type":2,"mouseX":1951,"mouseY":1294,"time":22422},{"type":2,"mouseX":1945,"mouseY":1294,"time":22468},{"type":2,"mouseX":1941,"mouseY":1294,"time":22500},{"type":2,"mouseX":1940,"mouseY":1294,"time":22547},{"type":2,"mouseX":1938,"mouseY":1294,"time":22625},{"type":2,"mouseX":1936,"mouseY":1294,"time":22672},{"type":2,"mouseX":1930,"mouseY":1294,"time":22718},{"type":2,"mouseX":1928,"mouseY":1295,"time":22750},{"type":2,"mouseX":1927,"mouseY":1295,"time":22828},{"type":2,"mouseX":1926,"mouseY":1295,"time":22859},{"type":4,"mouseX":1926,"mouseY":1295,"mouseButton":"Left","time":22953},{"type":5,"mouseX":1926,"mouseY":1295,"mouseButton":"Left","time":23078},{"type":2,"mouseX":1942,"mouseY":1301,"time":23531},{"type":2,"mouseX":2008,"mouseY":1324,"time":23562},{"type":2,"mouseX":2083,"mouseY":1351,"time":23593},{"type":2,"mouseX":2141,"mouseY":1376,"time":23625},{"type":2,"mouseX":2233,"mouseY":1416,"time":23656},{"type":2,"mouseX":2301,"mouseY":1447,"time":23687},{"type":2,"mouseX":2351,"mouseY":1467,"time":23718},{"type":2,"mouseX":2431,"mouseY":1496,"time":23750},{"type":2,"mouseX":2479,"mouseY":1519,"time":23781},{"type":2,"mouseX":2505,"mouseY":1530,"time":23812},{"type":2,"mouseX":2546,"mouseY":1549,"time":23843},{"type":2,"mouseX":2568,"mouseY":1563,"time":23875},{"type":2,"mouseX":2608,"mouseY":1586,"time":23906},{"type":2,"mouseX":2649,"mouseY":1611,"time":23937},{"type":2,"mouseX":2691,"mouseY":1632,"time":23968},{"type":2,"mouseX":2705,"mouseY":1640,"time":24000},{"type":2,"mouseX":2736,"mouseY":1656,"time":24031},{"type":2,"mouseX":2771,"mouseY":1668,"time":24062},{"type":2,"mouseX":2787,"mouseY":1675,"time":24093},{"type":2,"mouseX":2803,"mouseY":1680,"time":24125},{"type":2,"mouseX":2810,"mouseY":1683,"time":24156},{"type":2,"mouseX":2816,"mouseY":1684,"time":24187},{"type":2,"mouseX":2840,"mouseY":1692,"time":24218},{"type":2,"mouseX":2846,"mouseY":1694,"time":24250},{"type":2,"mouseX":2882,"mouseY":1709,"time":24281},{"type":2,"mouseX":2948,"mouseY":1735,"time":24312},{"type":2,"mouseX":2953,"mouseY":1738,"time":24343},{"type":4,"mouseX":2953,"mouseY":1738,"mouseButton":"Left","time":24531},{"type":5,"mouseX":2953,"mouseY":1738,"mouseButton":"Left","time":24703},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":46922},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":47062},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":47687},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":49468},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":50125},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":51250},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":51406},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":51609},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":51781},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":62656},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":62828},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":63234},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":65468},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":65593},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":66218},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":67922},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":70203},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":72515},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":73625},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":79578}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/金焰绒翼龙暴君前往.json b/repo/js/首领讨伐一条龙/assets/金焰绒翼龙暴君前往.json new file mode 100644 index 00000000..e9ee7afd --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/金焰绒翼龙暴君前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "未命名路径", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "传送到金焰绒翼龙暴君", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9047.134765625, + "y": -1458.2744140625, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/金焰绒翼龙暴君前往键鼠.json b/repo/js/首领讨伐一条龙/assets/金焰绒翼龙暴君前往键鼠.json new file mode 100644 index 00000000..a5bc63da --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/金焰绒翼龙暴君前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":687},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":1390},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":2109},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":3625},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":4234},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":4484},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":4672},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":4937},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":5078},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":7812},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":12359},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":17547},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":18281},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":18562},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":18734},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":19312},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":19453},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":19953}],"info":{"name":"","description":"","x":958,"y":562,"width":1920,"height":1080,"recordDpi":1.75}} diff --git a/repo/js/首领讨伐一条龙/assets/铁甲熔火帝皇前往.json b/repo/js/首领讨伐一条龙/assets/铁甲熔火帝皇前往.json new file mode 100644 index 00000000..6ea3ad57 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/铁甲熔火帝皇前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "铁甲熔火帝皇前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "铁甲熔火帝皇前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4417.22900390625, + "y": 2236.826416015625, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/铁甲熔火帝皇前往键鼠.json b/repo/js/首领讨伐一条龙/assets/铁甲熔火帝皇前往键鼠.json new file mode 100644 index 00000000..7885073f --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/铁甲熔火帝皇前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":2250},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":2360},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":2625},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":4157},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":4735},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":4969},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":5094},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":5625},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":5813},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":7922},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":8110},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":9672},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":9813},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":11594},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":11813},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":13750},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Right","time":13938},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":15985}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/隐山猊兽前往.json b/repo/js/首领讨伐一条龙/assets/隐山猊兽前往.json new file mode 100644 index 00000000..69f3d0f1 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/隐山猊兽前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "隐山猊兽前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "隐山猊兽前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2207.056640625, + "y": 1253.2041015625, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/隐山猊兽前往键鼠.json b/repo/js/首领讨伐一条龙/assets/隐山猊兽前往键鼠.json new file mode 100644 index 00000000..457510f8 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/隐山猊兽前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":84,"mouseX":0,"mouseY":0,"time":1641},{"type":1,"keyCode":84,"mouseX":0,"mouseY":0,"time":1797},{"type":0,"keyCode":84,"mouseX":0,"mouseY":0,"time":3578},{"type":1,"keyCode":84,"mouseX":0,"mouseY":0,"time":3735},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":5719},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":5875},{"type":0,"keyCode":84,"mouseX":0,"mouseY":0,"time":6250},{"type":1,"keyCode":84,"mouseX":0,"mouseY":0,"time":6391},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":8547},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":9485},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":10391},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":10531},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":11860},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":12016},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":14578},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":16219},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":16406},{"type":0,"keyCode":160,"mouseX":0,"mouseY":0,"time":17860},{"type":1,"keyCode":160,"mouseX":0,"mouseY":0,"time":18047},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":18938},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":20188},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":21625}],"info":{"name":"","description":"","x":638,"y":382,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/雷音权现前往.json b/repo/js/首领讨伐一条龙/assets/雷音权现前往.json new file mode 100644 index 00000000..42bf2772 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/雷音权现前往.json @@ -0,0 +1 @@ +{"info":{"name":"","type":""},"positions":[{"x":-4251.880859375,"y":-4785.4755859375,"type":"teleport","move_mode":"walk"}]} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/雷音权现前往键鼠.json b/repo/js/首领讨伐一条龙/assets/雷音权现前往键鼠.json new file mode 100644 index 00000000..3fbe53d6 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/雷音权现前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":687},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":1906},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":2640},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":3218},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":3390},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":3687},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":3828},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":11968},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":13859},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":15640},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":15640},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":15812},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":16812},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":17718}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/风蚀沙虫前往.json b/repo/js/首领讨伐一条龙/assets/风蚀沙虫前往.json new file mode 100644 index 00000000..9049d64c --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/风蚀沙虫前往.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "前往风蚀沙虫", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "前往风蚀沙虫", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4571.9658203125, + "y": -1072.18798828125, + "action_params": "" + }, + { + "id": 2, + "x": 4566.89697265625, + "y": -1045.69482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4559.556640625, + "y": -1016.4638671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3000" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/风蚀沙虫前往键鼠.json b/repo/js/首领讨伐一条龙/assets/风蚀沙虫前往键鼠.json new file mode 100644 index 00000000..f2189363 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/风蚀沙虫前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":1015},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":1156}],"info":{"name":"","description":"","x":680,"y":724,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/魔偶剑鬼前往.json b/repo/js/首领讨伐一条龙/assets/魔偶剑鬼前往.json new file mode 100644 index 00000000..1ebe5781 --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/魔偶剑鬼前往.json @@ -0,0 +1,21 @@ +{ + "info": { + "name": "魔偶剑鬼前往", + "type": "collect", + "author": "柒叶子", + "version": "1.0", + "description": "魔偶剑鬼前往", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2405.7724609375, + "y": -3912.9658203125, + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/assets/魔偶剑鬼前往键鼠.json b/repo/js/首领讨伐一条龙/assets/魔偶剑鬼前往键鼠.json new file mode 100644 index 00000000..c33a86af --- /dev/null +++ b/repo/js/首领讨伐一条龙/assets/魔偶剑鬼前往键鼠.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":83,"mouseX":0,"mouseY":0,"time":1781},{"type":1,"keyCode":83,"mouseX":0,"mouseY":0,"time":1953},{"type":6,"mouseX":0,"mouseY":-120,"time":3765},{"type":4,"mouseX":1916,"mouseY":1142,"mouseButton":"Middle","time":4062},{"type":5,"mouseX":1916,"mouseY":1142,"mouseButton":"Middle","time":4250},{"type":6,"mouseX":0,"mouseY":120,"time":4375},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":7062},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":7171},{"type":0,"keyCode":69,"mouseX":0,"mouseY":0,"time":7625},{"type":1,"keyCode":69,"mouseX":0,"mouseY":0,"time":9093},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":9859},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":10406},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":10562},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":10828},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":10953},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":21296},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":21359},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":21468},{"type":4,"mouseX":1916,"mouseY":1142,"mouseButton":"Left","time":23843},{"type":5,"mouseX":1916,"mouseY":1142,"mouseButton":"Left","time":23984},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":25859},{"type":0,"keyCode":87,"mouseX":0,"mouseY":0,"time":26609},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":26734},{"type":1,"keyCode":87,"mouseX":0,"mouseY":0,"time":27375}],"info":{"name":"","description":"","x":635,"y":445,"width":2560,"height":1440,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/首领讨伐一条龙/main.js b/repo/js/首领讨伐一条龙/main.js new file mode 100644 index 00000000..4d0354f9 --- /dev/null +++ b/repo/js/首领讨伐一条龙/main.js @@ -0,0 +1,142 @@ +(async function () { +let challengeNum= settings.challengeNum ?? 1;//挑战次数 +let challengeName = settings.challengeName ?? 0;//挑战首领名称 +let resinNum = settings.resinNum ?? 0;//使用树脂数量 +let samePlace = settings.samePlace ?? 1;//是否原地连续挑战 +if(challengeName =="纯水精灵" || challengeName =="歌裴莉娅的葬送" ||challengeName =="科培琉司的劫罚") samePlace = 1;//这些 boss 挑战后不会原地刷新 +const boxIconRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("assets/box.png")); +const rewardTextRo = RecognitionObject.Ocr(1210, 515, 200, 50);//领奖区域检测 +let advanceNum = 0;//前进次数 + +const autoNavigateToReward = async () => { + middleButtonClick(); + await sleep(1000); + moveMouseBy(0, 1030);//调整为俯视视野 + await sleep(500); + moveMouseBy(0, 920);//调整为俯视视野 + await sleep(500); + moveMouseBy(0, 710);//调整为俯视视野 + while (true) { + // 1. 优先检查是否已到达领奖点 + let captureRegion = captureGameRegion(); + let rewardTextArea = captureRegion.DeriveCrop(1210, 515, 200, 50); + let ocrResults = rewardTextArea.findMulti(RecognitionObject.ocrThis); + + // 仅检测到文字则结束!!! + if (ocrResults.count > 0 && ocrResults[0].text.trim().length > 0) { + log.info("已到达领奖点,检测到文字: " + ocrResults[0].text); + return; + } + else if(advanceNum > 80){ + throw new Error('前进时间超时'); + } + // 2. 未到达领奖点,则调整视野 + await adjustViewForReward(); + + // 3. 前进一小步 + keyDown("w"); + await sleep(800); + keyUp("w"); + await sleep(100); // 等待角色移动稳定 + } +}; + +/** + * 调整视野直到图标位于正前方 + */ +const adjustViewForReward = async () => { + + + + for(let i = 0; i < 100; i++){ + let captureRegion = captureGameRegion(); + let iconRes = captureRegion.Find(boxIconRo); + + if (iconRes.x >= 920 && iconRes.x <= 980 && iconRes.y <= 540) { + advanceNum++; + log.info(`视野已调正,前进第${advanceNum}次`); + return; + } else { + // 小幅度调整 + let adjustAmount = iconRes.x < 920 ? -20 : 20; + let adjustAmount2 = iconRes.y < 540 ? 1 : 10; + moveMouseBy(adjustAmount*adjustAmount2, 0); + await sleep(100); + } + } + +throw new Error('视野调整超时'); +}; + + +//主流程 +if(!settings.confirm) throw new Error('请阅读使用说明后,在调度器中调用JS脚本,并设置好相关参数'); +if(challengeName){ + //使用树脂 +if (resinNum){ + await genshin.returnMainUi(); + keyPress("M");//打开地图 + await sleep(1200); + click(2476/2, 96/2);// 点击添加体力 + await sleep(600); + click(1660/2, 950/2)// 选择脆弱树脂 + await sleep(600); + click(2350/2, 1550/2);// 点击使用 + await sleep(600); + for (let i = 1; i < resinNum; ++i) { + click(2586/2, 1296/2);// 点击使用数量 + await sleep(600); + } + } + click(2350/2, 1550/2);// 点击使用 + await sleep(600); + click(1920/2, 1500/2);// 点击空白处 + await sleep(600); + keyPress("VK_ESCAPE");//关闭地图 +} +if(samePlace == "YES" ) log.info(`已启用原地连续挑战模式`); +log.info(`前往第1次恢复状态`); +await pathingScript.runFile("assets/recover.json");//回复状态 +log.info(`前往第1次讨伐${challengeName}`); +await pathingScript.runFile(`assets/${challengeName}前往.json`); +await keyMouseScript.runFile(`assets/${challengeName}前往键鼠.json`); +for (let i = 0;i < challengeNum; i++) { + await sleep(1000); +if(samePlace != "YES" && i > 0){ +log.info(`前往第${i+1}次恢复状态`); +await pathingScript.runFile("assets/recover.json");//回复状态 +log.info(`前往第${i+1}次讨伐${challengeName}`); +await pathingScript.runFile(`assets/${challengeName}前往.json`); +await keyMouseScript.runFile(`assets/${challengeName}前往键鼠.json`); +} +log.info(`开始第${i+1}次战斗`); +try { +await dispatcher.runTask(new SoloTask("AutoFight")); +} catch (error) { +//失败后最多只挑战一次,因为两次都打不过,基本上没戏,干脆直接报错结束 +log.info(`挑战失败,再来一次`); +await pathingScript.runFile("assets/recover.json");//回复状态 +await pathingScript.runFile(`assets/${challengeName}前往.json`); +await keyMouseScript.runFile(`assets/${challengeName}前往键鼠.json`); +await dispatcher.runTask(new SoloTask("AutoFight")); +} + +log.info(`等待一会儿,避免钟离柱子害人`); +await sleep(10000); +log.info(`第${i+1}次领奖`); +await autoNavigateToReward();//前往地脉之花 +//await pathingScript.runFile(`assets/${challengeName}领奖.json`); +await sleep(600); + +keyPress("F"); +await sleep(800); +click(968, 759);//消耗树脂领取 +await sleep(3000); +click(975, 1000);//点击空白区域 +await sleep(5000);//等待 boss 刷新 + + +} +await pathingScript.runFile("assets/recover.json");//回复状态 +log.info(`首领讨伐结束`); +})(); diff --git a/repo/js/首领讨伐一条龙/manifest.json b/repo/js/首领讨伐一条龙/manifest.json new file mode 100644 index 00000000..98411e57 --- /dev/null +++ b/repo/js/首领讨伐一条龙/manifest.json @@ -0,0 +1,14 @@ +{ + "manifest_version": 1, + "name": "首领连续讨伐", + "version": "1.3", + "description": "请看一看readme文件", + "authors": [ + { + "name": "柒叶子", + "link": "https://github.com/511760049" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} diff --git a/repo/js/首领讨伐一条龙/readme.txt b/repo/js/首领讨伐一条龙/readme.txt new file mode 100644 index 00000000..003e8368 --- /dev/null +++ b/repo/js/首领讨伐一条龙/readme.txt @@ -0,0 +1,7 @@ +1、由于各种原因,目前有一部分点位没有收录,无相之风(打不过)、黄金王兽(打不过)、魔像督军(我没开地图录不了)、无相之冰(很难打过)、深海龙蜥之群(打不过)。 +2、另外还有很多机制BOSS,必须带特定的角色才行,至于怎么配队,自己研究一下,我暂时没空写,至于其他的请随意。 +机制BOSS:无相之雷、无相之水、无相之火、无相之草、深罪浸礼者、灵觉隐修的迷者…… +此外「冰风组曲」分为「歌裴莉娅的葬送」荒(蓝)与「科培琉司的劫罚」芒(金),不要选错了。 +3、由于一些 boss 的特殊性,不能选择原地连续挑战,比如「冰风组曲」和纯水精灵。 +4、另外很多行走脚本,是基于键鼠录制制作的,只能选择钟离作为行走位,并保证队伍中没有任何速度加成。(想解决这个问题,只能靠大家一起找鸭蛋催一下分层地图了) +5、最后讲一下调度器中的设置,打开地图追踪行走配置,打开允许在JsScript中使用,选择切换的队伍,选择行走位(钟离),打开战斗配置,打开覆盖JS中的自动战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,不要打开更快的检查结束,战斗超时可以设置长一点,比如240s。 diff --git a/repo/js/首领讨伐一条龙/settings.json b/repo/js/首领讨伐一条龙/settings.json new file mode 100644 index 00000000..81cde006 --- /dev/null +++ b/repo/js/首领讨伐一条龙/settings.json @@ -0,0 +1,77 @@ +[ + + { + "name": "confirm", + "type": "select", + "label": "请问你设置好相关参数了吗", + "options": [ + "YES", + "YES", + "YES" + ] + }, + + { + "name": "samePlace", + "type": "select", + "label": "是否原地连续挑战(默认不使用)", + "options": [ + "YES", + "NO" + ] + }, + + + { + "name": "challengeName", + "type": "select", + "label": "请选择首领", + "options": [ +"爆炎树", +"半永恒统辖矩阵", +"掣电树", +"纯水精灵", +"翠翎恐簟", +"深罪浸礼者", +"深邃摹结株", +"风蚀沙虫", +"歌裴莉娅的葬送", +"古岩龙蜥", +"恒常机关阵列", +"急冻树", +"金焰绒翼龙暴君", +"科培琉司的劫罚", +"雷音权现", +"灵觉隐修的迷者", +"秘源机兵·构型械", +"魔偶剑鬼", +"千年珍珠骏麟", +"熔岩辉龙像", +"贪食匿叶龙山王", +"铁甲熔火帝皇", +"无相之草", +"无相之火", +"无相之雷", +"无相之水", +"无相之岩", +"水形幻人", +"实验性场力发生装置", +"遗迹巨蛇", +"隐山猊兽", +"兆载永劫龙兽" + ] + }, + + { + "name": "challengeNum", + "type": "input-text", + "label": "挑战次数" + }, + + { + "name": "resinNum", + "type": "input-text", + "label": "是否使用树脂(默认0)" + }, + +] diff --git a/repo/pathing/新版锄地--小怪/6101--纳塔_镜璧山_西海岸1_(8-13).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json similarity index 93% rename from repo/pathing/新版锄地--小怪/6101--纳塔_镜璧山_西海岸1_(8-13).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json index a8889951..75de4df6 100644 --- a/repo/pathing/新版锄地--小怪/6101--纳塔_镜璧山_西海岸1_(8-13).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json @@ -2,7 +2,7 @@ "info": { "name": "6101--纳塔_镜璧山_西海岸1_(8-13)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.5", "description": "", "bgiVersion": "0.42.3" @@ -186,7 +186,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6102--纳塔_镜璧山_西海岸2_(8-6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6102--纳塔_镜璧山_西海岸2_(8-6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json diff --git a/repo/pathing/新版锄地--小怪/6103--纳塔_镜璧山_西海岸3_(5-3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json similarity index 82% rename from repo/pathing/新版锄地--小怪/6103--纳塔_镜璧山_西海岸3_(5-3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json index 3f0cd7f3..80364c3b 100644 --- a/repo/pathing/新版锄地--小怪/6103--纳塔_镜璧山_西海岸3_(5-3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json @@ -2,7 +2,7 @@ "info": { "name": "6103--纳塔_镜璧山_西海岸3_(5-3)", "type": "collect", - "author": "Demo", + "author": "Demo&mno", "version": "1.4", "description": "", "bgiVersion": "0.42.3" @@ -60,7 +60,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6104--纳塔_镜璧山_中部1_(8-6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json similarity index 94% rename from repo/pathing/新版锄地--小怪/6104--纳塔_镜璧山_中部1_(8-6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json index 45bb6562..6de24d51 100644 --- a/repo/pathing/新版锄地--小怪/6104--纳塔_镜璧山_中部1_(8-6).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json @@ -2,7 +2,7 @@ "info": { "name": "6104--纳塔_镜璧山_中部1_(8-6)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.2", "description": "", "bgiVersion": "0.42.3" @@ -222,7 +222,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6105--纳塔_镜璧山_神像1_(4-0).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json similarity index 65% rename from repo/pathing/新版锄地--小怪/6105--纳塔_镜璧山_神像1_(4-0).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json index 58eced09..e2674743 100644 --- a/repo/pathing/新版锄地--小怪/6105--纳塔_镜璧山_神像1_(4-0).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json @@ -2,7 +2,7 @@ "info": { "name": "6105--纳塔_镜璧山_神像1_(4-0)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.4", "description": "", "bgiVersion": "0.42.3" @@ -10,33 +10,6 @@ "positions": [ { "id": 1, - "x": 9519.966796875, - "y": -1779.22021484375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" - }, - { - "id": 2, - "x": 9517.5703125, - "y": -1785.0126953125, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, - { - "id": 3, - "x": 9506.7978515625, - "y": -1769.9169921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, "x": 9481.5595703125, "y": -1931.47119140625, "action": "", @@ -45,7 +18,7 @@ "type": "teleport" }, { - "id": 5, + "id": 2, "x": 9441.021484375, "y": -1944.1137695312505, "action": "", @@ -54,7 +27,7 @@ "type": "path" }, { - "id": 6, + "id": 3, "x": 9403.625118502488, "y": -1958.1241511540466, "action": "", @@ -63,13 +36,22 @@ "type": "path" }, { - "id": 7, + "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/新版锄地--小怪/6106--纳塔_镜璧山_中部2.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6106--纳塔_镜璧山_中部2.json similarity index 100% rename from repo/pathing/新版锄地--小怪/6106--纳塔_镜璧山_中部2.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6106--纳塔_镜璧山_中部2.json diff --git a/repo/pathing/新版锄地--小怪/6107--纳塔_镜璧山_神像2_(9-6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json similarity index 89% rename from repo/pathing/新版锄地--小怪/6107--纳塔_镜璧山_神像2_(9-6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json index 6b8d3ec1..fb4cb596 100644 --- a/repo/pathing/新版锄地--小怪/6107--纳塔_镜璧山_神像2_(9-6).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json @@ -2,7 +2,7 @@ "info": { "name": "6107--纳塔_镜璧山_神像2_(9-6)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.6", "description": "", "bgiVersion": "0.42.3" @@ -114,7 +114,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6201--纳塔_奥奇_西北海岸_(8-1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json similarity index 90% rename from repo/pathing/新版锄地--小怪/6201--纳塔_奥奇_西北海岸_(8-1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json index 17036450..38271afa 100644 --- a/repo/pathing/新版锄地--小怪/6201--纳塔_奥奇_西北海岸_(8-1).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json @@ -2,7 +2,7 @@ "info": { "name": "6201--纳塔_奥奇_西北海岸_(8-1)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.7", "description": "", "bgiVersion": "0.42.3" @@ -123,7 +123,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6203--纳塔_奥奇_中层悬崖_11-2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json similarity index 93% rename from repo/pathing/新版锄地--小怪/6203--纳塔_奥奇_中层悬崖_11-2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json index 3440989c..71397262 100644 --- a/repo/pathing/新版锄地--小怪/6203--纳塔_奥奇_中层悬崖_11-2).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json @@ -2,7 +2,7 @@ "info": { "name": "6203--纳塔_奥奇_中层悬崖_11-2)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.6", "description": "", "bgiVersion": "0.42.3" @@ -193,7 +193,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6204--纳塔_奥奇_神像_(7-1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json similarity index 87% rename from repo/pathing/新版锄地--小怪/6204--纳塔_奥奇_神像_(7-1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json index bdfb1c5a..07e6a1a6 100644 --- a/repo/pathing/新版锄地--小怪/6204--纳塔_奥奇_神像_(7-1).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json @@ -2,7 +2,7 @@ "info": { "name": "6204--纳塔_奥奇_神像_(7-1)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.2", "description": "", "bgiVersion": "0.42.3" @@ -96,7 +96,17 @@ "action": "fight", "move_mode": "walk", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6205--纳塔_奥奇_东北岛屿_(5-1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6205--纳塔_奥奇_东北岛屿_(5-1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json diff --git a/repo/pathing/新版锄地--小怪/6301--纳塔_翘枝崖_神像_(8-3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json similarity index 90% rename from repo/pathing/新版锄地--小怪/6301--纳塔_翘枝崖_神像_(8-3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json index 167f174e..f7d14dc8 100644 --- a/repo/pathing/新版锄地--小怪/6301--纳塔_翘枝崖_神像_(8-3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json @@ -2,7 +2,7 @@ "info": { "name": "6301--纳塔_翘枝崖_神像_(8-3)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.4", "description": "", "bgiVersion": "0.42.3" @@ -123,7 +123,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6302--纳塔_翘枝崖_北海岸_(3-5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json similarity index 87% rename from repo/pathing/新版锄地--小怪/6302--纳塔_翘枝崖_北海岸_(3-5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json index a0c56a7a..65b9fbd3 100644 --- a/repo/pathing/新版锄地--小怪/6302--纳塔_翘枝崖_北海岸_(3-5).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json @@ -2,7 +2,7 @@ "info": { "name": "6302--纳塔_翘枝崖_北海岸_(3-5)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -87,7 +87,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6303--纳塔_翘枝崖_花语会南_(3-6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json similarity index 88% rename from repo/pathing/新版锄地--小怪/6303--纳塔_翘枝崖_花语会南_(3-6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json index 7d24addd..0ed9ed65 100644 --- a/repo/pathing/新版锄地--小怪/6303--纳塔_翘枝崖_花语会南_(3-6).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json @@ -2,7 +2,7 @@ "info": { "name": "6303--纳塔_翘枝崖_花语会南_(3-6)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.2", "description": "", "bgiVersion": "0.42.3" @@ -105,7 +105,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6304--纳塔_翘枝崖_花语会南2_(3-9).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json similarity index 91% rename from repo/pathing/新版锄地--小怪/6304--纳塔_翘枝崖_花语会南2_(3-9).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json index d56e5d53..30ba2a5f 100644 --- a/repo/pathing/新版锄地--小怪/6304--纳塔_翘枝崖_花语会南2_(3-9).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json @@ -2,7 +2,7 @@ "info": { "name": "6304--纳塔_翘枝崖_花语会南2_(3-9)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.2", "description": "", "bgiVersion": "0.42.3" @@ -150,7 +150,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "path", + "locked": false + }, + { + "id": 17, + "x": 9500.3896484375, + "y": -1477.9541015625, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" } ] } \ No newline at end of file diff --git a/repo/pathing/新版锄地--小怪/6305--纳塔_翘枝崖_花语会南3_(4-4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json similarity index 90% rename from repo/pathing/新版锄地--小怪/6305--纳塔_翘枝崖_花语会南3_(4-4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json index 136fb1b0..17904cba 100644 --- a/repo/pathing/新版锄地--小怪/6305--纳塔_翘枝崖_花语会南3_(4-4).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json @@ -2,7 +2,7 @@ "info": { "name": "6305--纳塔_翘枝崖_花语会南3_(4-4)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.2", "description": "", "bgiVersion": "0.42.3" @@ -123,7 +123,17 @@ "action": "fight", "move_mode": "walk", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json similarity index 95% rename from repo/pathing/新版锄地--小怪/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json index a967ba5f..c6bebb0d 100644 --- a/repo/pathing/新版锄地--小怪/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json @@ -2,7 +2,7 @@ "info": { "name": "6306--纳塔_翘枝崖_柴薪之丘_(11-18)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.5", "description": "", "bgiVersion": "0.42.3" @@ -258,7 +258,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6401--纳塔_万火之瓯_竞技场_(14-17).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6401--纳塔_万火之瓯_竞技场_(14-17).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json diff --git a/repo/pathing/新版锄地--小怪/6402--纳塔_万火之瓯_竞技场2_(3-4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json similarity index 69% rename from repo/pathing/新版锄地--小怪/6402--纳塔_万火之瓯_竞技场2_(3-4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json index 8dd0b3fa..12a3f2bf 100644 --- a/repo/pathing/新版锄地--小怪/6402--纳塔_万火之瓯_竞技场2_(3-4).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json @@ -2,7 +2,7 @@ "info": { "name": "6402--纳塔_万火之瓯_竞技场2_(3-4)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -33,10 +33,20 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "path", + "locked": false }, { "id": 4, + "x": 8760.65626, + "y": -1828.96728515626, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, "x": 8823.76953125, "y": -1774.45263671875, "action": "", @@ -45,16 +55,26 @@ "type": "path" }, { - "id": 5, + "id": 6, "x": 8884.58203125, "y": -1761.26318359375, "action": "fight", "move_mode": "dash", "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 7, + "x": 8884.58203125, + "y": -1761.26318359375, + "action": "", + "move_mode": "walk", + "action_params": "", "type": "path" }, { - "id": 6, + "id": 8, "x": 8905.416015625, "y": -1743.73828125, "action": "", @@ -63,13 +83,22 @@ "type": "path" }, { - "id": 7, + "id": 9, "x": 8940.3466796875, "y": -1731.37158203125, "action": "fight", "move_mode": "dash", "action_params": "", "type": "path" + }, + { + "id": 10, + "x": 8940.3466796875, + "y": -1731.37158203125, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" } ] } \ No newline at end of file diff --git a/repo/pathing/新版锄地--小怪/6403--纳塔_万火之瓯_竞技场3_(4-3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json similarity index 80% rename from repo/pathing/新版锄地--小怪/6403--纳塔_万火之瓯_竞技场3_(4-3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json index ab451416..4287aa19 100644 --- a/repo/pathing/新版锄地--小怪/6403--纳塔_万火之瓯_竞技场3_(4-3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json @@ -2,7 +2,7 @@ "info": { "name": "6403--纳塔_万火之瓯_竞技场3_(4-3)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -51,7 +51,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "path", + "locked": false + }, + { + "id": 6, + "x": 8751.90234375, + "y": -1732.84033203125, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" } ] } \ No newline at end of file diff --git a/repo/pathing/新版锄地--小怪/6404--纳塔_万火之瓯_竞技场4_(12-11).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6404--纳塔_万火之瓯_竞技场4_(12-11).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json 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 new file mode 100644 index 00000000..f19e5c50 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "6405--纳塔_万火之瓯_竞技场5_(3-5)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/新版锄地--小怪/6406--纳塔_万火之瓯_悬木人_(6-6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json similarity index 87% rename from repo/pathing/新版锄地--小怪/6406--纳塔_万火之瓯_悬木人_(6-6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json index 9d99275a..8db3226f 100644 --- a/repo/pathing/新版锄地--小怪/6406--纳塔_万火之瓯_悬木人_(6-6).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json @@ -2,7 +2,7 @@ "info": { "name": "6406--纳塔_万火之瓯_悬木人_(6-6)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -96,7 +96,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6407--纳塔_万火之瓯_悬木人_(5-4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6407--纳塔_万火之瓯_悬木人_(5-4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json diff --git a/repo/pathing/新版锄地--小怪/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json diff --git a/repo/pathing/新版锄地--小怪/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json similarity index 89% rename from repo/pathing/新版锄地--小怪/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json index 0d312d4a..6477cec7 100644 --- a/repo/pathing/新版锄地--小怪/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json @@ -2,7 +2,7 @@ "info": { "name": "6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -114,7 +114,17 @@ "action": "fight", "move_mode": "walk", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json similarity index 91% rename from repo/pathing/新版锄地--小怪/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json index 386e26d7..8710ca94 100644 --- a/repo/pathing/新版锄地--小怪/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json @@ -2,7 +2,7 @@ "info": { "name": "6503--纳塔_坚岩隘谷_隆崛坡_(6-1)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -141,7 +141,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json similarity index 96% rename from repo/pathing/新版锄地--小怪/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json index c2e5c7c3..4d2abfd2 100644 --- a/repo/pathing/新版锄地--小怪/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json @@ -2,7 +2,7 @@ "info": { "name": "6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -321,7 +321,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6505--纳塔_坚岩隘谷_回声之子_(7-13).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6505--纳塔_坚岩隘谷_回声之子_(7-13).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json diff --git a/repo/pathing/新版锄地--小怪/6506--纳塔_坚岩隘谷_回声之子_(8-9).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json similarity index 90% rename from repo/pathing/新版锄地--小怪/6506--纳塔_坚岩隘谷_回声之子_(8-9).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json index abba55b9..1ad62fde 100644 --- a/repo/pathing/新版锄地--小怪/6506--纳塔_坚岩隘谷_回声之子_(8-9).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json @@ -2,7 +2,7 @@ "info": { "name": "6506--纳塔_坚岩隘谷_回声之子_(8-9)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -132,7 +132,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6507--纳塔_坚岩隘谷_中部河流_(15-9).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6507--纳塔_坚岩隘谷_中部河流_(15-9).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json diff --git a/repo/pathing/新版锄地--小怪/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json similarity index 88% rename from repo/pathing/新版锄地--小怪/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json index cfa3c1fb..7b4a18cf 100644 --- a/repo/pathing/新版锄地--小怪/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json @@ -2,7 +2,7 @@ "info": { "name": "6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -96,7 +96,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json similarity index 88% rename from repo/pathing/新版锄地--小怪/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json index fa132716..f8927738 100644 --- a/repo/pathing/新版锄地--小怪/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json @@ -2,7 +2,7 @@ "info": { "name": "6509--纳塔_坚岩隘谷_南侧崖壁_(5-5)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -105,7 +105,17 @@ "action": "fight", "move_mode": "walk", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json similarity index 92% rename from repo/pathing/新版锄地--小怪/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json index 29cd78a1..a623e1cf 100644 --- a/repo/pathing/新版锄地--小怪/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json @@ -2,7 +2,7 @@ "info": { "name": "6510--纳塔_坚岩隘谷_南侧崖壁_(8-13)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -159,7 +159,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json similarity index 85% rename from repo/pathing/新版锄地--小怪/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json index d046b07a..53768caa 100644 --- a/repo/pathing/新版锄地--小怪/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json @@ -2,7 +2,7 @@ "info": { "name": "6511--纳塔_坚岩隘谷_隆崛坡2_(2-3)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -78,7 +78,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6601--纳塔_涌流地_北侧山脉_(2-4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json similarity index 82% rename from repo/pathing/新版锄地--小怪/6601--纳塔_涌流地_北侧山脉_(2-4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json index 3c3ae5ab..99f05ed7 100644 --- a/repo/pathing/新版锄地--小怪/6601--纳塔_涌流地_北侧山脉_(2-4).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json @@ -2,7 +2,7 @@ "info": { "name": "6601--纳塔_涌流地_北侧山脉_(2-4)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -60,7 +60,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6602--纳塔_涌流地_北侧山脉2_(11-7).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json similarity index 94% rename from repo/pathing/新版锄地--小怪/6602--纳塔_涌流地_北侧山脉2_(11-7).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json index d9e4f403..6bd070d5 100644 --- a/repo/pathing/新版锄地--小怪/6602--纳塔_涌流地_北侧山脉2_(11-7).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json @@ -2,7 +2,7 @@ "info": { "name": "6602--纳塔_涌流地_北侧山脉2_(11-7)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -213,7 +213,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6603--纳塔_涌流地_秘境西侧_(2-7).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json similarity index 83% rename from repo/pathing/新版锄地--小怪/6603--纳塔_涌流地_秘境西侧_(2-7).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json index 61319955..83ff07cc 100644 --- a/repo/pathing/新版锄地--小怪/6603--纳塔_涌流地_秘境西侧_(2-7).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json @@ -2,7 +2,7 @@ "info": { "name": "6603--纳塔_涌流地_秘境西侧_(2-7)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -69,7 +69,17 @@ "action": "fight", "move_mode": "jump", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6604--纳塔_涌流地_秘境南侧_(2-7).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json similarity index 88% rename from repo/pathing/新版锄地--小怪/6604--纳塔_涌流地_秘境南侧_(2-7).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json index 6a61ecfc..15ceb201 100644 --- a/repo/pathing/新版锄地--小怪/6604--纳塔_涌流地_秘境南侧_(2-7).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json @@ -2,7 +2,7 @@ "info": { "name": "6604--纳塔_涌流地_秘境南侧_(2-7)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -105,7 +105,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6605--纳塔_涌流地_溶水域_(6-0).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json similarity index 87% rename from repo/pathing/新版锄地--小怪/6605--纳塔_涌流地_溶水域_(6-0).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json index ecc3bdf3..1339e456 100644 --- a/repo/pathing/新版锄地--小怪/6605--纳塔_涌流地_溶水域_(6-0).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json @@ -2,7 +2,7 @@ "info": { "name": "6605--纳塔_涌流地_溶水域_(6-0)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -87,7 +87,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6606--纳塔_涌流地_溶水域2_(4-3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json similarity index 85% rename from repo/pathing/新版锄地--小怪/6606--纳塔_涌流地_溶水域2_(4-3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json index ca4df7df..55aaac15 100644 --- a/repo/pathing/新版锄地--小怪/6606--纳塔_涌流地_溶水域2_(4-3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json @@ -2,7 +2,7 @@ "info": { "name": "6606--纳塔_涌流地_溶水域2_(4-3)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -78,7 +78,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6607--纳塔_涌流地_溶水域3_(11-5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json similarity index 90% rename from repo/pathing/新版锄地--小怪/6607--纳塔_涌流地_溶水域3_(11-5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json index 920f5569..549f8ae1 100644 --- a/repo/pathing/新版锄地--小怪/6607--纳塔_涌流地_溶水域3_(11-5).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json @@ -2,7 +2,7 @@ "info": { "name": "6607--纳塔_涌流地_溶水域3_(11-5)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -123,7 +123,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6608--纳塔_涌流地_溶水域4_(2-3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6608--纳塔_涌流地_溶水域4_(2-3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json diff --git a/repo/pathing/新版锄地--小怪/6609--纳塔_涌流地_南侧小岛_(5-8).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json similarity index 82% rename from repo/pathing/新版锄地--小怪/6609--纳塔_涌流地_南侧小岛_(5-8).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json index 47f573ad..5eb5134f 100644 --- a/repo/pathing/新版锄地--小怪/6609--纳塔_涌流地_南侧小岛_(5-8).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json @@ -2,7 +2,7 @@ "info": { "name": "6609--纳塔_涌流地_南侧小岛_(5-8)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -60,7 +60,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6610--纳塔_涌流地_东侧小岛_(10-14).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json similarity index 85% rename from repo/pathing/新版锄地--小怪/6610--纳塔_涌流地_东侧小岛_(10-14).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json index 81ff0c9d..c0186242 100644 --- a/repo/pathing/新版锄地--小怪/6610--纳塔_涌流地_东侧小岛_(10-14).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json @@ -2,7 +2,7 @@ "info": { "name": "6610--纳塔_涌流地_东侧小岛_(10-14)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -114,46 +114,20 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "path", + "locked": false }, { "id": 13, - "x": 8291.626953125, - "y": -2922.3984375, - "action": "", - "move_mode": "walk", - "action_params": "", - "type": "teleport" + "x": 8168.64453125, + "y": -2931.0341796875, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" }, { "id": 14, - "x": 8251.12540290846, - "y": -2830.9087965378603, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 15, - "x": 8288.55078125, - "y": -2796.021484375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack(1)", - "type": "path" - }, - { - "id": 16, - "x": 8287.75, - "y": -2804.5478515625, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 17, "x": 8291.626953125, "y": -2922.3984375, "action": "", @@ -162,7 +136,7 @@ "type": "teleport" }, { - "id": 18, + "id": 15, "x": 8309.968597921807, "y": -2910.999128417101, "action": "", @@ -171,7 +145,7 @@ "type": "path" }, { - "id": 19, + "id": 16, "x": 8369.970703125, "y": -2853.705078125, "action": "combat_script", @@ -180,7 +154,7 @@ "type": "path" }, { - "id": 20, + "id": 17, "x": 8358.44140625, "y": -2879.669921875, "action": "fight", @@ -189,7 +163,7 @@ "type": "path" }, { - "id": 21, + "id": 18, "x": 8315.892578125, "y": -2837.9189453125, "action": "", @@ -198,7 +172,7 @@ "type": "path" }, { - "id": 22, + "id": 19, "x": 8326.5576171875, "y": -2813.564453125, "action": "", @@ -207,13 +181,23 @@ "type": "path" }, { - "id": 23, + "id": 20, "x": 8328.2666015625, "y": -2808.953125, "action": "fight", "move_mode": "walk", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6611--纳塔_涌流地_中央神像_(9-8).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6611--纳塔_涌流地_中央神像_(9-8).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json diff --git a/repo/pathing/新版锄地--小怪/6701--纳塔_踞石山_庙宇北侧_(3-5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6701--纳塔_踞石山_庙宇北侧_(3-5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json diff --git a/repo/pathing/新版锄地--小怪/6702--纳塔_踞石山_庙宇北侧_(1-11).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json similarity index 89% rename from repo/pathing/新版锄地--小怪/6702--纳塔_踞石山_庙宇北侧_(1-11).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json index 9a23d3e0..8f42c002 100644 --- a/repo/pathing/新版锄地--小怪/6702--纳塔_踞石山_庙宇北侧_(1-11).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json @@ -2,7 +2,7 @@ "info": { "name": "6702--纳塔_踞石山_庙宇北侧_(1-11)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -114,7 +114,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6703--纳塔_踞石山_北侧主峰_(10-9).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json similarity index 91% rename from repo/pathing/新版锄地--小怪/6703--纳塔_踞石山_北侧主峰_(10-9).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json index 61e547e7..7e04adb7 100644 --- a/repo/pathing/新版锄地--小怪/6703--纳塔_踞石山_北侧主峰_(10-9).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json @@ -2,7 +2,7 @@ "info": { "name": "6703--纳塔_踞石山_北侧主峰_(10-9)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -132,7 +132,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6704--纳塔_踞石山_东侧海边_(3-7).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json similarity index 86% rename from repo/pathing/新版锄地--小怪/6704--纳塔_踞石山_东侧海边_(3-7).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json index fc01b19b..170b29c1 100644 --- a/repo/pathing/新版锄地--小怪/6704--纳塔_踞石山_东侧海边_(3-7).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json @@ -2,7 +2,7 @@ "info": { "name": "6704--纳塔_踞石山_东侧海边_(3-7)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -86,7 +86,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6705--纳塔_踞石山_彩石顶_(10-4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json similarity index 73% rename from repo/pathing/新版锄地--小怪/6705--纳塔_踞石山_彩石顶_(10-4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json index 7470a3f8..3d21c5e2 100644 --- a/repo/pathing/新版锄地--小怪/6705--纳塔_踞石山_彩石顶_(10-4).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json @@ -2,7 +2,7 @@ "info": { "name": "6705--纳塔_踞石山_彩石顶_(10-4)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -39,22 +39,32 @@ "id": 4, "x": 8309.7255859375, "y": -2226.662109375, - "type": "path", - "move_mode": "fly", "action": "", - "action_params": "" + "move_mode": "fly", + "action_params": "", + "type": "path" }, { "id": 5, "x": 8327.0966796875, "y": -2221.1201171875, - "type": "path", - "move_mode": "dash", "action": "fight", - "action_params": "" + "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": "", @@ -63,7 +73,7 @@ "type": "path" }, { - "id": 7, + "id": 8, "x": 8286.499970374378, "y": -2185.437697053525, "action": "combat_script", @@ -72,7 +82,7 @@ "type": "path" }, { - "id": 8, + "id": 9, "x": 8249.062389397677, "y": -2145.0617724177537, "action": "combat_script", @@ -81,16 +91,26 @@ "type": "path" }, { - "id": 9, + "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": 10, + "id": 12, "x": 8271.78117988603, "y": -2162.24973473564, "action": "", @@ -99,16 +119,26 @@ "type": "path" }, { - "id": 11, + "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": 12, + "id": 15, "x": 8157.125292306137, "y": -2101.496907775454, "action": "", @@ -117,7 +147,7 @@ "type": "path" }, { - "id": 13, + "id": 16, "x": 8099.54638671875, "y": -2068.87109375, "action": "", @@ -126,7 +156,7 @@ "type": "path" }, { - "id": 14, + "id": 17, "x": 8060.5625, "y": -2036.04052734375, "action": "", @@ -135,7 +165,7 @@ "type": "path" }, { - "id": 15, + "id": 18, "x": 8023.093767775374, "y": -2010.0311590522197, "action": "stop_flying", @@ -144,25 +174,45 @@ "type": "path" }, { - "id": 16, + "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": 17, + "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": 18, + "id": 23, "x": 7999.152832031249, "y": -1996.30517578125, "action": "", @@ -171,13 +221,22 @@ "type": "path" }, { - "id": 19, + "id": 24, "x": 8002.50341796875, "y": -1987.94189453125, - "type": "path", - "move_mode": "dash", "action": "fight", - "action_params": "" + "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/新版锄地--小怪/6706--纳塔_踞石山_彩石顶2_(7-16).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json similarity index 94% rename from repo/pathing/新版锄地--小怪/6706--纳塔_踞石山_彩石顶2_(7-16).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json index a86c131d..73528bf4 100644 --- a/repo/pathing/新版锄地--小怪/6706--纳塔_踞石山_彩石顶2_(7-16).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json @@ -2,7 +2,7 @@ "info": { "name": "6706--纳塔_踞石山_彩石顶2_(7-16)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -231,7 +231,17 @@ "action": "fight", "move_mode": "walk", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6707--纳塔_踞石山_庙宇_(9-11).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json similarity index 94% rename from repo/pathing/新版锄地--小怪/6707--纳塔_踞石山_庙宇_(9-11).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json index a733dd75..06da86f9 100644 --- a/repo/pathing/新版锄地--小怪/6707--纳塔_踞石山_庙宇_(9-11).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json @@ -2,7 +2,7 @@ "info": { "name": "6707--纳塔_踞石山_庙宇_(9-11)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -222,7 +222,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6708--纳塔_踞石山_彩石顶3_(6-9).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json similarity index 89% rename from repo/pathing/新版锄地--小怪/6708--纳塔_踞石山_彩石顶3_(6-9).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json index 11334eb7..e5f416d8 100644 --- a/repo/pathing/新版锄地--小怪/6708--纳塔_踞石山_彩石顶3_(6-9).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json @@ -2,7 +2,7 @@ "info": { "name": "6708--纳塔_踞石山_彩石顶3_(6-9)", "type": "collect", - "author": "Demo&汐", + "author": "Demo&汐&mno", "version": "1.1", "description": "", "bgiVersion": "0.42.3" @@ -114,7 +114,17 @@ "action": "fight", "move_mode": "walk", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6801--纳塔_安饶之野_镜壁山东南_(20).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json similarity index 94% rename from repo/pathing/新版锄地--小怪/6801--纳塔_安饶之野_镜壁山东南_(20).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json index b19fff03..23d6b866 100644 --- a/repo/pathing/新版锄地--小怪/6801--纳塔_安饶之野_镜壁山东南_(20).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json @@ -2,7 +2,7 @@ "info": { "name": "6801--纳塔_安饶之野_镜壁山东南_(20)", "type": "collect", - "author": "汐", + "author": "汐&mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -240,7 +240,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6802--纳塔_安饶之野_镜壁山西南_(23).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6802--纳塔_安饶之野_镜壁山西南_(23).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json diff --git a/repo/pathing/新版锄地--小怪/6803--纳塔_熔岩辉龙像东南_(5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6803--纳塔_熔岩辉龙像东南_(5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json diff --git a/repo/pathing/新版锄地--小怪/6804--纳塔_安饶之野东北海岸_(8).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6804--纳塔_安饶之野东北海岸_(8).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json diff --git a/repo/pathing/新版锄地--小怪/6805--纳塔_安饶之野东岩浆池_(5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json similarity index 83% rename from repo/pathing/新版锄地--小怪/6805--纳塔_安饶之野东岩浆池_(5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json index 7feafe2c..350c4b79 100644 --- a/repo/pathing/新版锄地--小怪/6805--纳塔_安饶之野东岩浆池_(5).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json @@ -2,7 +2,7 @@ "info": { "name": "6805--纳塔_安饶之野东岩浆池_(5)", "type": "collect", - "author": "汐", + "author": "汐&mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -69,7 +69,17 @@ "action": "fight", "move_mode": "walk", "action_params": "", - "type": "path" + "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/新版锄地--小怪/6806--纳塔_安饶之野东斜坡_(16).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6806--纳塔_安饶之野东斜坡_(16).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json diff --git a/repo/pathing/新版锄地--小怪/6807--纳塔_安饶之野神像_(8).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6807--纳塔_安饶之野神像_(8).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json diff --git a/repo/pathing/新版锄地--小怪/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json similarity index 86% rename from repo/pathing/新版锄地--小怪/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json index c8acf2f8..683ad638 100644 --- a/repo/pathing/新版锄地--小怪/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json @@ -2,7 +2,7 @@ "info": { "name": "6808--纳塔_安饶之野_沃陆之邦北小岛_(14)", "type": "collect", - "author": "汐", + "author": "汐&mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -84,28 +84,38 @@ "id": 9, "x": 10357.6142578125, "y": -2159.2880859375, - "type": "path", - "move_mode": "dash", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 10, "x": 10358.98046875, "y": -2081.8291015625, - "type": "path", - "move_mode": "dash", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 11, "x": 10410.94921875, "y": -2048.7236328125, - "type": "path", - "move_mode": "dash", "action": "fight", - "action_params": "" + "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/新版锄地--小怪/6809--纳塔_安饶之野_石火坠陨处_(12).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json similarity index 60% rename from repo/pathing/新版锄地--小怪/6809--纳塔_安饶之野_石火坠陨处_(12).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json index 78b6868d..5c574e80 100644 --- a/repo/pathing/新版锄地--小怪/6809--纳塔_安饶之野_石火坠陨处_(12).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json @@ -2,7 +2,7 @@ "info": { "name": "6809--纳塔_安饶之野_石火坠陨处_(12)", "type": "collect", - "author": "汐", + "author": "汐&mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -10,104 +10,84 @@ "positions": [ { "id": 1, - "action": "", - "move_mode": "walk", - "type": "teleport", "x": 10595.94140625, "y": -2665.2509765625, + "action": "", + "move_mode": "walk", "action_params": "", - "locked": false + "type": "teleport" }, { "id": 2, "x": 10581.9599609375, "y": -2589.3125, - "type": "path", - "move_mode": "run", "action": "", - "action_params": "" + "move_mode": "run", + "action_params": "", + "type": "path" }, { "id": 3, "x": 10532.1201171875, "y": -2554.5712890625, - "type": "path", - "move_mode": "dash", "action": "combat_script", - "action_params": "attack(0.3)" + "move_mode": "dash", + "action_params": "attack(0.3)", + "type": "path" }, { "id": 4, "x": 10510.4521484375, "y": -2571.8828125, - "type": "path", - "move_mode": "walk", "action": "", - "action_params": "" + "move_mode": "walk", + "action_params": "", + "type": "path" }, { "id": 5, "x": 10503.857421875, "y": -2584.2353515625, - "type": "path", - "move_mode": "jump", "action": "", - "action_params": "" + "move_mode": "jump", + "action_params": "", + "type": "path" }, { "id": 6, "x": 10514.24609375, "y": -2568.8134765625, - "type": "path", - "move_mode": "dash", "action": "fight", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 7, "x": 10489.2587890625, "y": -2553.068359375, - "type": "path", - "move_mode": "dash", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 8, "x": 10431.5224609375, "y": -2524.94921875, - "type": "path", - "move_mode": "dash", "action": "fight", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 9, - "action": "", - "move_mode": "walk", - "type": "teleport", - "x": 10595.94140625, - "y": -2665.2509765625, - "action_params": "" - }, - { - "id": 10, - "x": 10611.6484375, - "y": -2697.0615234375, - "type": "path", + "x": 10431.5224609375, + "y": -2524.94921875, + "action": "combat_script", "move_mode": "dash", - "action": "", - "action_params": "" - }, - { - "id": 11, - "x": 10623.3232421875, - "y": -2716.884765625, - "type": "path", - "move_mode": "dash", - "action": "fight", - "action_params": "", - "locked": false + "action_params": "wait(1)", + "type": "orientation" } ] } \ No newline at end of file diff --git a/repo/pathing/新版锄地--小怪/6810--纳塔_安饶之野西南_(21).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json similarity index 100% rename from repo/pathing/新版锄地--小怪/6810--纳塔_安饶之野西南_(21).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json diff --git a/repo/pathing/新版锄地--小怪/6811--纳塔_安饶之野_荒废弃造坞_(10).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json similarity index 54% rename from repo/pathing/新版锄地--小怪/6811--纳塔_安饶之野_荒废弃造坞_(10).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json index a16dccba..ebea8485 100644 --- a/repo/pathing/新版锄地--小怪/6811--纳塔_安饶之野_荒废弃造坞_(10).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json @@ -2,7 +2,7 @@ "info": { "name": "6811--纳塔_安饶之野_荒废弃造坞_(10)", "type": "collect", - "author": "汐", + "author": "汐&mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -10,84 +10,123 @@ "positions": [ { "id": 1, - "action": "force_tp", - "move_mode": "walk", - "type": "teleport", "x": 10363.763671875, "y": -3315.8740234375, - "action_params": "" + "action": "force_tp", + "move_mode": "walk", + "action_params": "", + "type": "teleport" }, { "id": 2, "x": 10377.21875, "y": -3352.564453125, - "type": "path", - "move_mode": "dash", "action": "fight", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false }, { "id": 3, - "x": 10410.64453125, - "y": -3390.16796875, - "type": "path", - "move_mode": "dash", + "x": 10377.21875, + "y": -3352.564453125, "action": "", - "action_params": "" + "move_mode": "walk", + "action_params": "", + "type": "path" }, { "id": 4, - "x": 10417.8486328125, - "y": -3412.3056640625, - "type": "path", + "x": 10410.64453125, + "y": -3390.16796875, + "action": "", "move_mode": "dash", - "action": "fight", - "action_params": "" + "action_params": "", + "type": "path" }, { "id": 5, - "x": 10405.5126953125, - "y": -3436.30078125, - "type": "path", + "x": 10417.8486328125, + "y": -3412.3056640625, + "action": "fight", "move_mode": "dash", - "action": "", - "action_params": "" + "action_params": "", + "type": "path", + "locked": false }, { "id": 6, - "x": 10365.021484375, - "y": -3517.12109375, - "type": "path", - "move_mode": "run", + "x": 10417.8486328125, + "y": -3412.3056640625, "action": "", - "action_params": "" + "move_mode": "walk", + "action_params": "", + "type": "path" }, { "id": 7, - "x": 10384.89453125, - "y": -3538.2587890625, - "type": "path", + "x": 10405.5126953125, + "y": -3436.30078125, + "action": "", "move_mode": "dash", - "action": "fight", - "action_params": "" + "action_params": "", + "type": "path" }, { "id": 8, - "x": 10320.4130859375, - "y": -3500.7734375, - "type": "path", - "move_mode": "dash", + "x": 10365.021484375, + "y": -3517.12109375, "action": "", - "action_params": "" + "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, - "type": "path", - "move_mode": "dash", "action": "fight", - "action_params": "" + "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 new file mode 100644 index 00000000..5542d1a6 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "6812--纳塔_安饶之野_孑遗的留迹东南_(20)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": 9917.955078125, + "y": -3275.8310546875, + "action": "force_tp", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 3, + "x": 9956.34375, + "y": -3264.0927734375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 9957.6142578125, + "y": -3210.7763671875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 9958.6142578125, + "y": -3210.7763671875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 10018.4208984375, + "y": -3213.65625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 10002.1875, + "y": -3163.1826171875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 10002.1875, + "y": -3163.1826171875, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/新版锄地--小怪/6813--纳塔_安饶之野西北_(8).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json similarity index 81% rename from repo/pathing/新版锄地--小怪/6813--纳塔_安饶之野西北_(8).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json index 7f493acb..5c5c525d 100644 --- a/repo/pathing/新版锄地--小怪/6813--纳塔_安饶之野西北_(8).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json @@ -2,7 +2,7 @@ "info": { "name": "6813--纳塔_安饶之野西北_(8)", "type": "collect", - "author": "汐", + "author": "汐&mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -39,10 +39,10 @@ "id": 4, "x": 10913.62109375, "y": -2434.6923828125, - "type": "path", - "move_mode": "dash", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 5, @@ -60,7 +60,17 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "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蒙德望风角.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1101蒙德望风角.json new file mode 100644 index 00000000..1b412fd0 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1101蒙德望风角.json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "1101蒙德望风角", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "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蒙德望风角.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1102蒙德望风角.json new file mode 100644 index 00000000..e74bc1c8 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1102蒙德望风角.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "1102蒙德望风角", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "dash", + "action_params": "", + "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蒙德望风山地.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1103蒙德望风山地.json new file mode 100644 index 00000000..6aa6532c --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1103蒙德望风山地.json @@ -0,0 +1,336 @@ +{ + "info": { + "name": "1103蒙德望风山地", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1291.5, + "y": 2678.4, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1291.5, + "y": 2678.4, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1277.369140625, + "y": 2658.291259765625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1266.369140625, + "y": 2648.291259765625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1235.2568359375, + "y": 2639.375244140625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1235.2568359375, + "y": 2639.375244140625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -1227.953125, + "y": 2657.877197265625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1219.765625, + "y": 2678.180908203125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1219.765626, + "y": 2678.180908203126, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1219.765626, + "y": 2678.180908203126, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1206.806640625, + "y": 2681.305419921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1191.37109375, + "y": 2677.0751953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1177.6240234375, + "y": 2683.637939453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1151.98046875, + "y": 2702.3193359375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1151.98046875, + "y": 2702.3193359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -1127.1025390625, + "y": 2664.409423828125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -1127.1025390626, + "y": 2664.409423828126, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -1127.1025390626, + "y": 2664.409423828126, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -1271.5732421875, + "y": 2724.694580078125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 22, + "x": -1262.681640625, + "y": 2755.527587890625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -1272.1279296875, + "y": 2779.388916015625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -1272.1279296875, + "y": 2779.388916015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -1251.4912109375, + "y": 2776.62451171875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -1230.48046875, + "y": 2771.06494140625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -1221.9833984375, + "y": 2780.493408203125, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -1221.9833984375, + "y": 2780.493408203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -1186.8837890625, + "y": 2754.42138671875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -1162.994140625, + "y": 2759.685791015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -1160.1337890625, + "y": 2732.940673828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -1169.8818359375, + "y": 2730.030517578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 33, + "x": -1170.4169921875, + "y": 2730.04150390625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": -1173.2958984375, + "y": 2731.14501953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": -1173.9646484375, + "y": 2735.8306640625, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "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蒙德千风西.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1104蒙德千风西.json new file mode 100644 index 00000000..19bbc022 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1104蒙德千风西.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "1104蒙德千风西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "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蒙德奔狼领.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1202蒙德奔狼领.json new file mode 100644 index 00000000..8cf53810 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1202蒙德奔狼领.json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "1202蒙德奔狼领", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "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蒙德塞西莉亚苗圃.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1203蒙德塞西莉亚苗圃.json new file mode 100644 index 00000000..f64da0f7 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_1_蒙德/1203蒙德塞西莉亚苗圃.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "1203蒙德塞西莉亚苗圃", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "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 new file mode 100644 index 00000000..6410c548 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2101璃月无妄坡西南.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "2101璃月无妄坡西南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..a4044aa3 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2201璃月明蕴镇西北.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "2201璃月明蕴镇西北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "dash", + "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 new file mode 100644 index 00000000..c1f0cc7c --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2202璃月瑶光滩西北.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "2202璃月瑶光滩西北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..93eedd84 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2301璃月太山府.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "2301璃月太山府", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..50a2a010 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2302璃月珉林.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "2302璃月珉林", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..b2200286 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2303璃月琥牢山.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "2303璃月琥牢山", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..0d43a833 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2401璃月地面矿区.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "2401璃月地面矿区", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..3d69c989 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2501璃月遁玉陵.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "2501璃月遁玉陵", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..7ff838bc --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2502璃月群玉阁西.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "2502璃月群玉阁西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..48b78bb9 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_2_璃月/2601璃月港东北.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "2601璃月港东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..02c63da9 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3101稻妻白狐之野南.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "3101稻妻白狐之野南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..398f49e3 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3102稻妻绀田村南.json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "3102稻妻绀田村南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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_稻妻/3104稻妻绀田村南2.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3104稻妻绀田村南2.json new file mode 100644 index 00000000..3e39c9eb --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3104稻妻绀田村南2.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "3104稻妻绀田村南2", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..d5522ec7 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3105稻妻镇守之森.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "3105稻妻镇守之森", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..496f91af --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3106稻妻神里屋敷.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "3106稻妻神里屋敷", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..4c62172e --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3107稻妻绀田村.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "3107稻妻绀田村", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..8394f797 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3108稻妻荒海南.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "3108稻妻荒海南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..558bd962 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3201稻妻九条阵屋.json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "3201稻妻九条阵屋", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..8182092b --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3202稻妻踏鞴东北.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "3202稻妻踏鞴东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/601纳塔奥奇(600_1,200_1)次数盾.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3204稻妻踏鞴神像2.json similarity index 58% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/601纳塔奥奇(600_1,200_1)次数盾.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3204稻妻踏鞴神像2.json index bd9cd2b2..4e7a2140 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/601纳塔奥奇(600_1,200_1)次数盾.json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3204稻妻踏鞴神像2.json @@ -1,8 +1,8 @@ { "info": { - "name": "601纳塔奥奇(600_1,200_1)次数盾", + "name": "3204稻妻踏鞴神像2", "type": "collect", - "author": "汐", + "author": "mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -10,54 +10,53 @@ "positions": [ { "id": 1, - "x": 10070.2421875, - "y": 25.6572265625, - "action": "force_tp", + "x": -3233.22265625, + "y": -3534.1513671875, + "action": "", "move_mode": "walk", "action_params": "", "type": "teleport" }, { "id": 2, - "x": 10062.212890625, - "y": 81.35107421875, + "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": 3, - "x": 10034.8984375, - "y": 121.6630859375, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path", - "locked": false - }, { "id": 4, - "x": 10034.8984375, - "y": 121.6630859375, - "action": "combat_script", - "move_mode": "run", - "action_params": "wait(1)", - "type": "orientation" + "x": -3225.34375, + "y": -3581.1552734375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 5, - "x": 10070.2412109375, - "y": 25.65771484375, - "action": "force_tp", - "move_mode": "walk", + "x": -3231.5302734375, + "y": -3585.4658203125, + "action": "fight", + "move_mode": "dash", "action_params": "", - "type": "teleport" + "type": "path" }, { "id": 6, - "x": 10071.8681640625, - "y": 8.4462890625, + "x": -3236.7861328125, + "y": -3581.650390625, "action": "", "move_mode": "walk", "action_params": "", @@ -65,57 +64,57 @@ }, { "id": 7, - "x": 10049.390625, - "y": -5.8046875, - "action": "", - "move_mode": "run", - "action_params": "", + "x": -3263.701171875, + "y": -3556.994140625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "500", "type": "path" }, { "id": 8, - "x": 10017.3251953125, - "y": -13.10888671875, + "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": 9, - "x": 9968.927734375, - "y": -4.99658203125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 10, - "x": 9943.7431640625, - "y": -26.27197265625, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, { "id": 11, - "x": 9928.93359375, - "y": -30.705078125, - "action": "", + "x": -3316.662109375, + "y": -3562.6474609375, + "action": "fight", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 12, - "x": 9938.5, - "y": -46.749380273778115, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" + "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 new file mode 100644 index 00000000..b634d46a --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3205稻妻踏鞴反应炉东三骗骗花.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "3205稻妻踏鞴反应炉东三骗骗花", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..7d1362b9 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3206稻妻踏鞴反应炉东.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "3206稻妻踏鞴反应炉东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..82450507 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3207稻妻踏鞴浪船.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "3207稻妻踏鞴浪船", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..852661a0 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3208稻妻借景之馆.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "3208稻妻借景之馆", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..9c284178 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3209稻妻踏鞴公义东南.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "3209稻妻踏鞴公义东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..1613bafe --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3210稻妻公义飞萤.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "3210稻妻公义飞萤", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..b865c724 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3211稻妻名椎滩东.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "3211稻妻名椎滩东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/102蒙德雪山(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3212稻妻名椎滩西.json similarity index 62% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/102蒙德雪山(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3212稻妻名椎滩西.json index bfee0d8b..3e4c9cd9 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/102蒙德雪山(600_1).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3212稻妻名椎滩西.json @@ -1,8 +1,8 @@ { "info": { - "name": "102蒙德雪山(600_1)", + "name": "3212稻妻名椎滩西", "type": "collect", - "author": "汐", + "author": "mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -10,8 +10,8 @@ "positions": [ { "id": 1, - "x": -705.48046875, - "y": 925.74072265625, + "x": -2533.369140625, + "y": -3539.66796875, "action": "", "move_mode": "walk", "action_params": "", @@ -19,35 +19,35 @@ }, { "id": 2, - "x": -684.21875, - "y": 934.7939453125, - "action": "fight", + "x": -2525.541015625, + "y": -3577.1787109375, + "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 3, - "x": -664.2497471946917, - "y": 940.4998181044384, - "action": "", + "x": -2515.724609375, + "y": -3562.4443359375, + "action": "fight", "move_mode": "run", "action_params": "", "type": "path" }, { "id": 4, - "x": -680.9371958436132, - "y": 1008.6252122114884, + "x": -2515.724609375, + "y": -3562.4443359375, "action": "", - "move_mode": "run", + "move_mode": "walk", "action_params": "", "type": "path" }, { "id": 5, - "x": -693.4619140625, - "y": 1052.59521484375, + "x": -2473.72265625, + "y": -3565.0888671875, "action": "", "move_mode": "dash", "action_params": "", @@ -55,29 +55,28 @@ }, { "id": 6, - "x": -695.9999604991699, - "y": 1063.8754244229767, + "x": -2450.10546875, + "y": -3571.0537109375, "action": "", - "move_mode": "fly", + "move_mode": "run", "action_params": "", "type": "path" }, { "id": 7, - "x": -701.0537109375, - "y": 1086.64501953125, + "x": -2426.373046875, + "y": -3588.775390625, "action": "fight", - "move_mode": "run", + "move_mode": "dash", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { "id": 8, - "x": -701.0537109375, - "y": 1086.64501953125, + "x": -2426.373046875, + "y": -3588.775390625, "action": "combat_script", - "move_mode": "run", + "move_mode": "walk", "action_params": "wait(1)", "type": "orientation" } diff --git a/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3301稻妻绯木村神像.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3301稻妻绯木村神像.json new file mode 100644 index 00000000..2813486c --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3301稻妻绯木村神像.json @@ -0,0 +1,363 @@ +{ + "info": { + "name": "3301稻妻绯木村神像", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..49c4797b --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3302稻妻蛇骨矿洞南.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "3302稻妻蛇骨矿洞南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..825027f8 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3303稻妻剑鬼东2.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "3303稻妻剑鬼东2", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..b6a8119d --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3304稻妻剑鬼东3.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "3304稻妻剑鬼东3", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..1e48485d --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3305稻妻剑鬼东1.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "3305稻妻剑鬼东1", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..96f18a6c --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3306稻妻藤兜砦西.json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "3306稻妻藤兜砦西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..47bf11d3 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3401稻妻海祇岛东.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "3401稻妻海祇岛东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..d21e1796 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_3_稻妻/3403稻妻海祇岛南.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "3403稻妻海祇岛南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..e6859cf1 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_4_须弥/4101须弥二净甸.json @@ -0,0 +1,525 @@ +{ + "info": { + "name": "4101须弥二净甸", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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_枫丹/5101枫丹廷东北.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5101枫丹廷东北.json new file mode 100644 index 00000000..b25efe50 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5101枫丹廷东北.json @@ -0,0 +1,184 @@ +{ + "info": { + "name": "5101枫丹廷东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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", + "locked": false + }, + { + "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杀/1_5_枫丹/5102枫丹廷北.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5102枫丹廷北.json new file mode 100644 index 00000000..3592bb76 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5102枫丹廷北.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "5102枫丹廷北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 4597.1926171875, + "y": 3943.937724609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 4599.654296875, + "y": 3894.140625, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 4586.2099609375, + "y": 3897.312255859375, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 4586.2099609375, + "y": 3897.312255859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 4492.29248046875, + "y": 3883.56201171875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 4498.86083984375, + "y": 3887.252197265625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 4481.8837890625, + "y": 3876.139404296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 4462.7537890625, + "y": 3830.139404296875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 4441.48486328125, + "y": 3837.131103515625, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "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 new file mode 100644 index 00000000..e5fae35a --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5201枫丹优兰湖西.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "5201枫丹优兰湖西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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_枫丹/5202枫丹垂柳西北.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5202枫丹垂柳西北.json new file mode 100644 index 00000000..1448bd8a --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5202枫丹垂柳西北.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "5202枫丹垂柳西北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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杀/1_5_枫丹/5203枫丹垂柳东南.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5203枫丹垂柳东南.json new file mode 100644 index 00000000..0a024bd0 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5203枫丹垂柳东南.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "5203枫丹垂柳东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..02b4260b --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5204枫丹垂柳东南.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "5204枫丹垂柳东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..f72bccc0 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5205枫丹垂柳东南.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "5205枫丹垂柳东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..fbe379ee --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5206枫丹垂柳东南.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "5206枫丹垂柳东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..000d3284 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5207枫丹柔灯港北.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "5207枫丹柔灯港北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..95181ebc --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5208枫丹幽林东北.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "5208枫丹幽林东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..721bc358 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5209枫丹露景泉东.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "5209枫丹露景泉东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..ea4191b9 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5210枫丹幽林东北.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "5210枫丹幽林东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..2c693058 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5301枫丹卡布堡南.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "5301枫丹卡布堡南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..9aab5bf2 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5303枫丹卡布堡北.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "5303枫丹卡布堡北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..f7edb79d --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5401枫丹秋分东南.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "5401枫丹秋分东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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_枫丹/5402枫丹秋分山东.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5402枫丹秋分山东.json new file mode 100644 index 00000000..b3df26cf --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5402枫丹秋分山东.json @@ -0,0 +1,264 @@ +{ + "info": { + "name": "5402枫丹秋分山东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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杀/1_5_枫丹/5403枫丹螃蟹北.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5403枫丹螃蟹北.json new file mode 100644 index 00000000..ccac1039 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5403枫丹螃蟹北.json @@ -0,0 +1,255 @@ +{ + "info": { + "name": "5403枫丹螃蟹北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 4287.8701171875, + "y": 2453.374755859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 4336.7236328125, + "y": 2411.212158203125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 4368.9482421875, + "y": 2420.17041015625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 4401.8447265625, + "y": 2397.64208984375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 4389.20263671875, + "y": 2365.114990234375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 4387.50263671875, + "y": 2356.514990234375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "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 new file mode 100644 index 00000000..5636e2f2 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5501枫丹螃蟹西.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "5501枫丹螃蟹西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..de9359b4 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5502枫丹苍晶南山峰西.json @@ -0,0 +1,246 @@ +{ + "info": { + "name": "5502枫丹苍晶南山峰西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..44565040 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5503枫丹厄里东北.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "5503枫丹厄里东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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_枫丹/5603枫丹场力北.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5603枫丹场力北.json new file mode 100644 index 00000000..49ea5977 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5603枫丹场力北.json @@ -0,0 +1,390 @@ +{ + "info": { + "name": "5603枫丹场力北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..03392143 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5604枫丹中央遗址北.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "5604枫丹中央遗址北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..79a7a9a0 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5605枫丹中央遗址北.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "5605枫丹中央遗址北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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_枫丹/5607枫丹新科学院.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5607枫丹新科学院.json new file mode 100644 index 00000000..ec008ca4 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5607枫丹新科学院.json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "5607枫丹新科学院", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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杀/1_5_枫丹/5608枫丹新科学院.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5608枫丹新科学院.json new file mode 100644 index 00000000..3b9443a8 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5608枫丹新科学院.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "5608枫丹新科学院", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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 new file mode 100644 index 00000000..cf8e86aa --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/1_5_枫丹/5609枫丹千年骏麟.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "5609枫丹千年骏麟", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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杀/README.md b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/README.md new file mode 100644 index 00000000..8ed93517 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/README.md @@ -0,0 +1,3 @@ +提醒:尚处于测试阶段,可能出现各种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 new file mode 100644 index 00000000..69138c92 Binary files /dev/null and b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/上限集分析.xlsx differ diff --git a/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/更新日志.txt b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/更新日志.txt new file mode 100644 index 00000000..2fc90dc6 --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特2000杀/更新日志.txt @@ -0,0 +1,13 @@ +0424 +将拆分后的路线用不同的配队运行取得均值最终筛选出低效路线,并将对应路线合并回去 +优化了部分路线 +加入了用于报错的路线000,避免用户运行错误的文件夹 +0422 +该版本仅用于查找低效路线,不做实际使用 +将现有路线尽可能进行拆分,有利于分析和剔除低效路线 +纳塔路线末尾加入等待一秒,提高摩拉收集率 +0419 +试运行了所有路线,将部分效率较低的路线(小于等于3.0)移入低效文件夹 +开始进行标注每条路线怪物数量的工作 +给出运行结果的参考表格,帮助查看是否存在漏怪,数据仅供参考 +附日志分析使用方法:打开对应配置组,依次选择更多功能、日志分析,按教程填写cookie后获取日志分析 \ No newline at end of file diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/000传奇,不刷/001璃月沉玉谷南陵 传奇.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/000传奇,不刷/001璃月沉玉谷南陵 传奇.json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/000传奇,不刷/001璃月沉玉谷南陵 传奇.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/000传奇,不刷/001璃月沉玉谷南陵 传奇.json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/101蒙德雪山(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/101蒙德雪山(600_1,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/101蒙德雪山(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/101蒙德雪山(600_1,200_2).json diff --git a/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/102蒙得雪山(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/102蒙得雪山(600_1).json new file mode 100644 index 00000000..fa400f1d --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/102蒙得雪山(600_1).json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "102蒙得雪山(600_1)", + "type": "collect", + "author": "汐", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -796.318359375, + "y": 1037.22119140625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -774.7978515625, + "y": 1033.025390625, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -718.1435546875, + "y": 1067.744140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 4, + "x": -701.0537109375, + "y": 1086.64501953125, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -701.0537109375, + "y": 1086.64501953125, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/103蒙德雪山(600_2,200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/103蒙德雪山(600_2,200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/103蒙德雪山(600_2,200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/103蒙德雪山(600_2,200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/104蒙德奔狼领(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/104蒙德奔狼领(200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/104蒙德奔狼领(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/104蒙德奔狼领(200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/105蒙德望风山地(200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/105蒙德望风山地(200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/105蒙德望风山地(200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/105蒙德望风山地(200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/107蒙德风龙废墟南(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/107蒙德风龙废墟南(600_1,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/107蒙德风龙废墟南(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/107蒙德风龙废墟南(600_1,200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/201璃月离沙郊(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/201璃月离沙郊(600_1,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/201璃月离沙郊(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/201璃月离沙郊(600_1,200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/203璃月遁玉陵f4(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/203璃月遁玉陵f4(200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/203璃月遁玉陵f4(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/203璃月遁玉陵f4(200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/204璃月天衡山(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/204璃月天衡山(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/204璃月天衡山(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/204璃月天衡山(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/205璃月孤云阁f4(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/205【高危】璃月孤云阁f4(200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/205璃月孤云阁f4(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/205【高危】璃月孤云阁f4(200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/206璃月孤云阁北(200_5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/206璃月孤云阁北(200_5).json similarity index 90% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/206璃月孤云阁北(200_5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/206璃月孤云阁北(200_5).json index ee5e5d20..dd0b32cd 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/206璃月孤云阁北(200_5).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/206璃月孤云阁北(200_5).json @@ -39,29 +39,28 @@ "id": 4, "x": -1002.3720703125, "y": -206.2646484375, - "type": "path", - "move_mode": "run", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 5, "x": -991.728515625, "y": -185.9599609375, - "type": "path", - "move_mode": "dash", "action": "fight", + "move_mode": "dash", "action_params": "", - "locked": false + "type": "path" }, { "id": 6, "x": -991.728515625, "y": -185.9599609375, - "type": "path", - "move_mode": "dash", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 7, @@ -74,24 +73,15 @@ }, { "id": 8, - "x": -916.7607421875, - "y": -142.5234375, - "action": "", + "x": -887.1875158003313, + "y": -158.18789410704994, + "type": "path", "move_mode": "dash", - "action_params": "", - "type": "path" + "action": "fight", + "action_params": "" }, { "id": 9, - "x": -891.71875, - "y": -144.8126667375982, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 10, "x": -906.0263671875, "y": -123.974609375, "action": "", @@ -100,13 +90,22 @@ "type": "path" }, { - "id": 11, - "x": -907.2890625, - "y": -87.892578125, - "action": "fight", + "id": 10, + "x": -908.626953125, + "y": -102.06591796875, + "type": "path", "move_mode": "run", - "action_params": "", - "type": "path" + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -895.013671875, + "y": -81.2919921875, + "type": "path", + "move_mode": "run", + "action": "fight", + "action_params": "" } ] } \ No newline at end of file diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/208璃月渌华池(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/208璃月渌华池(200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/208璃月渌华池(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/208璃月渌华池(200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/209璃月天遒谷(600_1,200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/209璃月天遒谷(600_1,200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/209璃月天遒谷(600_1,200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/209璃月天遒谷(600_1,200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/210璃月南天门(600_2,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/210璃月南天门(600_2,200_2).json similarity index 94% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/210璃月南天门(600_2,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/210璃月南天门(600_2,200_2).json index 4694ad23..dc7df26e 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/210璃月南天门(600_2,200_2).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/210璃月南天门(600_2,200_2).json @@ -69,8 +69,7 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { "id": 8, @@ -103,7 +102,7 @@ "id": 11, "x": 1641.5546875, "y": 365.1279296875, - "action": "combat_script", + "action": "", "move_mode": "jump", "action_params": "", "type": "path" @@ -121,10 +120,10 @@ "id": 13, "x": 1596.4814453125, "y": 390.681640625, - "type": "path", - "move_mode": "dash", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 14, @@ -133,8 +132,7 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { "id": 15, diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/211璃月虎牢山(600_1,200_5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/211璃月虎牢山(600_1,200_5).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/211璃月虎牢山(600_1,200_5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/211璃月虎牢山(600_1,200_5).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/212璃月绝云间南(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/212璃月绝云间南(600_1,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/212璃月绝云间南(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/212璃月绝云间南(600_1,200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/213璃月庆云顶(600_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/213璃月庆云顶(600_3).json similarity index 58% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/213璃月庆云顶(600_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/213璃月庆云顶(600_3).json index af86ac0f..a87237b2 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/213璃月庆云顶(600_3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/213璃月庆云顶(600_3).json @@ -19,69 +19,94 @@ }, { "id": 2, - "x": 1403.99996049917, - "y": 927.9373635783286, + "x": 1438.4189453125, + "y": 895.97216796875, "type": "path", "move_mode": "fly", "action": "stop_flying", - "action_params": "2500" + "action_params": "2000" }, { "id": 3, - "x": 1407.7001953125, - "y": 931.34228515625, - "action": "combat_script", - "move_mode": "walk", - "action_params": "attack(0.5)", - "type": "path" + "x": 1448.12109375, + "y": 939.16943359375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" }, { "id": 4, - "x": 1431.044921875, - "y": 951.8544921875, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" + "x": 1446.5048828125, + "y": 966.154296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" }, { "id": 5, - "x": 1402.7216796875, - "y": 1033.9765625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "", - "type": "path" + "x": 1430.624956549087, + "y": 951.3127425274151, + "type": "path", + "move_mode": "climb" }, { "id": 6, - "x": 1413.9169921875, - "y": 1064.61572265625, - "action": "", - "move_mode": "dash", + "x": 1407.7001953125, + "y": 931.34228515625, + "action": "fight", + "move_mode": "walk", "action_params": "", "type": "path" }, { "id": 7, - "x": 1434.0087890625, - "y": 1083.759765625, + "x": 1410.2498656971802, + "y": 974.5003031592696, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1404.1875928269492, + "y": 1029.9697201096624, "action": "stop_flying", "move_mode": "fly", "action_params": "", "type": "path" }, { - "id": 8, - "x": 1430.4482421875, - "y": 1141.904296875, + "id": 9, + "x": 1414.1875177753736, + "y": 1067.9054542069189, "action": "", - "move_mode": "run", + "move_mode": "dash", "action_params": "", "type": "path" }, { - "id": 9, + "id": 10, + "x": 1421.0624644492527, + "y": 1090.1872423146215, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1437.041015625, + "y": 1143.5048828125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 12, "x": 1439.7587890625, "y": 1150.5302734375, "action": "fight", @@ -90,7 +115,7 @@ "type": "path" }, { - "id": 10, + "id": 13, "x": 1439.7587890625, "y": 1150.5302734375, "action": "combat_script", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/214璃月奥藏山北(600_3,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/214璃月奥藏山北(600_3,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/214璃月奥藏山北(600_3,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/214璃月奥藏山北(600_3,200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/215璃月奥藏山下(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/215璃月奥藏山下(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/215璃月奥藏山下(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/215璃月奥藏山下(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/216璃月珉林北(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/216璃月珉林北(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/216璃月珉林北(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/216璃月珉林北(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/217璃月珉林南(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/217璃月珉林南(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/217璃月珉林南(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/217璃月珉林南(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/218璃月碧水原(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/218璃月碧水原(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/218璃月碧水原(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/218璃月碧水原(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/219璃月轻策庄 浊水幻灵(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/219璃月轻策庄 浊水幻灵(200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/219璃月轻策庄 浊水幻灵(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/219璃月轻策庄 浊水幻灵(200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/220璃月地中之盐(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/220璃月地中之盐(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/220璃月地中之盐(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/220璃月地中之盐(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/221璃月震雷宫(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/221璃月震雷宫(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/221璃月震雷宫(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/221璃月震雷宫(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/222璃月层岩北(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/222璃月层岩北(600_1,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/222璃月层岩北(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/222璃月层岩北(600_1,200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/223璃月层岩南(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/223璃月层岩南(600_1,200_1).json similarity index 74% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/223璃月层岩南(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/223璃月层岩南(600_1,200_1).json index 157ea05e..4383096e 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/223璃月层岩南(600_1,200_1).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/223璃月层岩南(600_1,200_1).json @@ -19,25 +19,33 @@ }, { "id": 2, - "x": 1795.53515625, - "y": -884.2783203125, + "x": 1769.6259765625, + "y": -877.4306640625, + "type": "path", + "move_mode": "run", "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" + "action_params": "" }, { "id": 3, + "x": 1789.6416015625, + "y": -883.1923828125, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 4, "x": 1863.0712890625, "y": -892.28173828125, "action": "fight", "move_mode": "run", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { - "id": 4, + "id": 5, "x": 1863.0712890625, "y": -892.28173828125, "action": "combat_script", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/224璃月沉玉谷南陵浅滩(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/224璃月沉玉谷南陵浅滩(200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/224璃月沉玉谷南陵浅滩(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/224璃月沉玉谷南陵浅滩(200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/225璃月沉玉谷隐山猊兽南(200_6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/225璃月沉玉谷隐山猊兽南(200_6).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/225璃月沉玉谷隐山猊兽南(200_6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/225璃月沉玉谷隐山猊兽南(200_6).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/226璃月沉玉谷赤望台(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/226璃月沉玉谷赤望台(600_1,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/226璃月沉玉谷赤望台(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/226璃月沉玉谷赤望台(600_1,200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/227璃月沉玉谷宝决口南(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/227璃月沉玉谷宝决口南(200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/227璃月沉玉谷宝决口南(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/227璃月沉玉谷宝决口南(200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/228璃月沉玉谷神像(200_8).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/228璃月沉玉谷神像(200_8).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/228璃月沉玉谷神像(200_8).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/228璃月沉玉谷神像(200_8).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/229璃月沉玉谷宝决口东(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/229璃月沉玉谷宝决口东(600_1,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/229璃月沉玉谷宝决口东(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/229璃月沉玉谷宝决口东(600_1,200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/230璃月沉玉谷药蝶谷西(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/230璃月沉玉谷药蝶谷西(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/230璃月沉玉谷药蝶谷西(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/230璃月沉玉谷药蝶谷西(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/231璃月沉玉谷暝垣山(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/231璃月沉玉谷暝垣山(200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/231璃月沉玉谷暝垣山(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/231璃月沉玉谷暝垣山(200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/232璃月沉玉谷灵濛山南(600_1,200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/232璃月沉玉谷灵濛山南(600_1,200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/232璃月沉玉谷灵濛山南(600_1,200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/232璃月沉玉谷灵濛山南(600_1,200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/233璃月沉玉谷灵濛山东北(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/233璃月沉玉谷灵濛山东北(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/233璃月沉玉谷灵濛山东北(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/233璃月沉玉谷灵濛山东北(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/234璃月沉玉谷上灵濛山东(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/234璃月沉玉谷上灵濛山东(200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/234璃月沉玉谷上灵濛山东(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/234璃月沉玉谷上灵濛山东(200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/301稻妻镇守之森(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/301稻妻镇守之森(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/301稻妻镇守之森(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/301稻妻镇守之森(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/302稻妻荒海(600_1,200_5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/302稻妻荒海(600_1,200_5).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/302稻妻荒海(600_1,200_5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/302稻妻荒海(600_1,200_5).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/303稻妻砂流之庭(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/303稻妻砂流之庭(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/303稻妻砂流之庭(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/303稻妻砂流之庭(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/304稻妻九条海滩(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/304稻妻九条海滩(600_1,200_2).json similarity index 88% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/304稻妻九条海滩(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/304稻妻九条海滩(600_1,200_2).json index bed66929..03e57a5c 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/304稻妻九条海滩(600_1,200_2).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/304稻妻九条海滩(600_1,200_2).json @@ -21,10 +21,10 @@ "id": 2, "x": -3383.280993244609, "y": -3311.187386315274, - "type": "path", - "move_mode": "fly", "action": "stop_flying", - "action_params": "" + "move_mode": "fly", + "action_params": "", + "type": "path" }, { "id": 3, @@ -87,10 +87,20 @@ "action": "fight", "move_mode": "dash", "action_params": "", - "type": "path" + "type": "path", + "locked": false }, { "id": 10, + "x": -3382.971679687502, + "y": -3196.205078125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 11, "x": -3410.2060546875, "y": -3201.2734375, "action": "", @@ -99,16 +109,16 @@ "type": "path" }, { - "id": 11, + "id": 12, "x": -3420.8154296875, "y": -3190.974609375, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(2),wait(0.3),keypress(e),wait(2)", + "action": "fight", + "move_mode": "dash", + "action_params": "", "type": "path" }, { - "id": 12, + "id": 13, "x": -3437.8720703125, "y": -3173.3603515625, "action": "", @@ -117,7 +127,7 @@ "type": "path" }, { - "id": 13, + "id": 14, "x": -3456.69921875, "y": -3136.630859375, "action": "fight", @@ -126,7 +136,7 @@ "type": "path" }, { - "id": 14, + "id": 15, "x": -3477.1875, "y": -3156.24960589295, "action": "", @@ -135,13 +145,13 @@ "type": "path" }, { - "id": 15, + "id": 16, "x": -3524.15625, "y": -3163.03515625, - "type": "path", - "move_mode": "run", "action": "fight", - "action_params": "" + "move_mode": "run", + "action_params": "", + "type": "path" } ] } \ No newline at end of file diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/305稻妻相之火旁(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/305稻妻相之火旁(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/305稻妻相之火旁(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/305稻妻相之火旁(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/306稻妻踏鞴砂南(600_1,200_14).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/306稻妻踏鞴砂南(600_1,200_15).json similarity index 88% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/306稻妻踏鞴砂南(600_1,200_14).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/306稻妻踏鞴砂南(600_1,200_15).json index 8ff8d219..97da90af 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/306稻妻踏鞴砂南(600_1,200_14).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/306稻妻踏鞴砂南(600_1,200_15).json @@ -1,6 +1,6 @@ { "info": { - "name": "306稻妻踏鞴砂南(600_1,200_14)", + "name": "306稻妻踏鞴砂南(600_1,200_15)", "type": "collect", "author": "汐", "version": "1.0", @@ -42,20 +42,28 @@ "action": "", "move_mode": "dash", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { "id": 5, "x": -3125.28125, "y": -3873.6583858421563, - "action": "fight", - "move_mode": "dash", + "action": "", + "move_mode": "jump", "action_params": "", "type": "path" }, { "id": 6, + "x": -3121.19140625, + "y": -3876.810546875, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, "x": -3109.53125, "y": -3833.249845068445, "action": "fight", @@ -64,17 +72,16 @@ "type": "path" }, { - "id": 7, + "id": 8, "x": -3122.90625, "y": -3858.718274138795, "action": "", "move_mode": "dash", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { - "id": 8, + "id": 9, "x": -3102.0390625, "y": -3891.4677734375, "action": "", @@ -83,36 +90,27 @@ "type": "path" }, { - "id": 9, - "x": -3087.1875, - "y": -3923.9375221330793, + "id": 10, + "x": -3086.6874683993374, + "y": -3923.781287894908, "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, - { - "id": 10, - "x": -3090.482421875, - "y": -3924.298828125, - "action": "fight", - "move_mode": "walk", - "action_params": "", - "type": "path" - }, { "id": 11, - "x": -3085.6240234375, - "y": -3929.0732421875, - "action": "", - "move_mode": "walk", + "x": -3096.812900933419, + "y": -3918.563894532639, + "action": "fight", + "move_mode": "run", "action_params": "", "type": "path" }, { "id": 12, - "x": -3082.6240234375, - "y": -3963.3505859375, + "x": -3086.0312756755393, + "y": -3924.782288320497, "action": "", "move_mode": "dash", "action_params": "", @@ -120,8 +118,8 @@ }, { "id": 13, - "x": -3027.994140625, - "y": -3984.0546875, + "x": -3027.4374644492527, + "y": -3983.875045473891, "action": "fight", "move_mode": "dash", "action_params": "", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/307稻妻绝缘本后山洞(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/307稻妻绝缘本后山洞(200_3).json similarity index 69% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/307稻妻绝缘本后山洞(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/307稻妻绝缘本后山洞(200_3).json index 6eac828e..03e35521 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/307稻妻绝缘本后山洞(200_3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/307稻妻绝缘本后山洞(200_3).json @@ -22,7 +22,7 @@ "x": -2362.2412109375, "y": -3758.3193359375, "action": "", - "move_mode": "walk", + "move_mode": "run", "action_params": "", "type": "path" }, @@ -37,17 +37,17 @@ }, { "id": 4, - "x": -2386.5302734375, - "y": -3784.0244140625, + "x": -2384.96875, + "y": -3783.968765083886, "action": "", - "move_mode": "dash", + "move_mode": "run", "action_params": "", "type": "path" }, { "id": 5, - "x": -2387.50390625, - "y": -3789.3134765625, + "x": -2385.96875, + "y": -3789.0000754194352, "action": "", "move_mode": "fly", "action_params": "", @@ -55,33 +55,42 @@ }, { "id": 6, - "x": -2390.177734375, - "y": -3802.0595703125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": -2380.22265625, - "y": -3806.53125, - "action": "combat_script", - "move_mode": "fly", - "action_params": "click,keypress(x),wait(0.2),click,keypress(x)", - "type": "path" - }, - { - "id": 8, - "x": -2364.779296875, - "y": -3820.4248046875, + "x": -2389.28125, + "y": -3806.9050809987602, "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, + { + "id": 7, + "x": -2384.34375, + "y": -3807.093734916114, + "type": "path", + "move_mode": "climb", + "action": "combat_script", + "action_params": "attack(0.3),keypress(x),w(0.5)" + }, + { + "id": 8, + "x": -2381.6875, + "y": -3807.1873416191866, + "action": "combat_script", + "move_mode": "climb", + "action_params": "attack(0.3),keypress(x),w(0.4),attack(0.3),w(0.4),keypress(x)", + "type": "path" + }, { "id": 9, + "x": -2365.53125, + "y": -3819.3440139680224, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 10, "x": -2347.3779296875, "y": -3822.328125, "action": "fight", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/308稻妻水月池(200_8).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/308稻妻水月池(200_8).json similarity index 85% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/308稻妻水月池(200_8).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/308稻妻水月池(200_8).json index 94d358b1..d3cc2ba0 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/308稻妻水月池(200_8).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/308稻妻水月池(200_8).json @@ -23,8 +23,8 @@ "y": -3596.6162109375, "action": "combat_script", "move_mode": "walk", - "action_params": "keypress(f),wait(1),keypress(t),wait(0.5),keypress(t),wait(0.5),keypress(t),wait(0.5)", - "type": "path" + "action_params": "keypress(f),w(0.4),keypress(f),wait(1),keypress(t),wait(0.5),keypress(t),wait(0.5),keypress(t),wait(0.5)", + "type": "target" }, { "id": 3, @@ -55,34 +55,43 @@ }, { "id": 6, - "x": -1188.7498419966832, - "y": -3581.75, - "action": "fight", + "x": -1191.73828125, + "y": -3575.154296875, + "action": "combat_script", "move_mode": "dash", - "action_params": "", + "action_params": "wait(7)", "type": "path" }, { "id": 7, - "x": -1195.7498419966832, - "y": -3600.75, - "action": "fight", + "x": -1188.771484375, + "y": -3595.39453125, + "type": "path", "move_mode": "dash", + "action": "fight", "action_params": "", - "type": "path" + "locked": false }, { "id": 8, + "x": -1188.771484375, + "y": -3595.39453125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 9, "x": -1180.5625750515755, "y": -3573.063333687991, "action": "", "move_mode": "dash", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { - "id": 9, + "id": 10, "x": -1176.2499170482588, "y": -3568.8752880013053, "action": "", @@ -91,7 +100,7 @@ "type": "path" }, { - "id": 10, + "id": 11, "x": -1154.4060623710611, "y": -3556.7191213701044, "action": "", @@ -100,7 +109,7 @@ "type": "path" }, { - "id": 11, + "id": 12, "x": -1140.7119140625, "y": -3545.8935546875, "action": "fight", @@ -108,7 +117,7 @@ "type": "path" }, { - "id": 12, + "id": 13, "x": -1143.7119140625, "y": -3547.8935546875, "action": "", @@ -117,7 +126,7 @@ "type": "path" }, { - "id": 13, + "id": 14, "x": -1129.7501975041469, "y": -3530.6255456866857, "action": "", @@ -126,7 +135,7 @@ "type": "path" }, { - "id": 14, + "id": 15, "x": -1108.500557820731, "y": -3500.2486978371653, "action": "", @@ -135,7 +144,7 @@ "type": "path" }, { - "id": 15, + "id": 16, "x": -1106.5006136028042, "y": -3528.8740570544996, "action": "", @@ -144,41 +153,41 @@ "type": "path" }, { - "id": 16, - "x": -1101.4424646045136, - "y": -3510.8112202882476, + "id": 17, + "x": -1101.34375, + "y": -3520.6226318297486, "action": "fight", "move_mode": "run", "type": "path" }, - { - "id": 17, - "x": -1095.837890625, - "y": -3577.1279296875, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, { "id": 18, - "x": -1097.0001673462193, - "y": -3636.9987876415, - "action": "fight", - "move_mode": "run", - "type": "path" - }, - { - "id": 19, - "x": -1056.1237833744563, - "y": -3657.6280315926924, + "x": -1095.837890625, + "y": -3577.1279296875, "action": "", - "move_mode": "run", + "move_mode": "dash", "action_params": "", "type": "path" }, + { + "id": 19, + "x": -1097.0001673462193, + "y": -3636.9987876415, + "action": "fight", + "move_mode": "dash", + "type": "path" + }, { "id": 20, + "x": -1056.1237833744563, + "y": -3657.6280315926924, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 21, "x": -1011.4375, "y": -3662.687123737651, "action": "fight", @@ -186,7 +195,7 @@ "type": "path" }, { - "id": 21, + "id": 22, "x": -1314.3594291755944, "y": -3774.5396935153767, "action": "", @@ -195,7 +204,7 @@ "type": "teleport" }, { - "id": 22, + "id": 23, "x": -1340, "y": -3783.6259295893324, "action": "fight", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/309稻妻海祇岛北(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/309稻妻海祇岛北(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/309稻妻海祇岛北(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/309稻妻海祇岛北(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/310稻妻珊瑚宫(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/310稻妻珊瑚宫(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/310稻妻珊瑚宫(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/310稻妻珊瑚宫(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/311稻妻萌云神社(600_1,200_5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/311稻妻萌云神社(600_1,200_5).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/311稻妻萌云神社(600_1,200_5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/311稻妻萌云神社(600_1,200_5).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/312稻妻清赖丸(600_1,200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/312稻妻清赖丸(600_1,200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/312稻妻清赖丸(600_1,200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/312稻妻清赖丸(600_1,200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/313稻妻越石村(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/313稻妻越石村(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/313稻妻越石村(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/313稻妻越石村(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/314稻妻平海砦北(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/314稻妻平海砦北(200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/314稻妻平海砦北(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/314稻妻平海砦北(200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/315稻妻平海砦南(200_6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/315稻妻平海砦南(200_6).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/315稻妻平海砦南(200_6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/315稻妻平海砦南(200_6).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/316稻妻天云峠(200_20).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/316稻妻天云峠(200_20).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/316稻妻天云峠(200_20).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/316稻妻天云峠(200_20).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/317稻妻鹤观千来神祠(200_12~16).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/317稻妻鹤观千来神祠(200_12~16).json similarity index 96% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/317稻妻鹤观千来神祠(200_12~16).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/317稻妻鹤观千来神祠(200_12~16).json index 1971a626..ab280552 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/317稻妻鹤观千来神祠(200_12~16).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/317稻妻鹤观千来神祠(200_12~16).json @@ -192,15 +192,15 @@ "id": 21, "x": -2555.3837890625, "y": -6078.7705078125, - "type": "path", - "move_mode": "dash", "action": "combat_script", - "action_params": "attack(0.2)" + "move_mode": "dash", + "action_params": "attack(0.2)", + "type": "path" }, { "id": 22, - "x": -2581.749917048259, - "y": -6056.56525874935, + "x": -2578.687306445936, + "y": -6054.93789410705, "action": "fight", "move_mode": "dash", "action_params": "", @@ -208,12 +208,12 @@ }, { "id": 23, - "x": -2623.1630859375, - "y": -6036.6552734375, - "action": "", + "x": -2603.9482421875, + "y": -6052.1474609375, + "type": "path", "move_mode": "dash", - "action_params": "", - "type": "path" + "action": "", + "action_params": "" }, { "id": 24, diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/318稻妻鹤观知比山(200_5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/318稻妻鹤观知比山(200_5).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/318稻妻鹤观知比山(200_5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/318稻妻鹤观知比山(200_5).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/319稻妻鹤观茂知祭场(200_9).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/319稻妻鹤观茂知祭场(200_9).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/319稻妻鹤观茂知祭场(200_9).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/319稻妻鹤观茂知祭场(200_9).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/320稻妻鹤馆惑饲滩(600_1,200_6~13).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/320稻妻鹤馆惑饲滩(600_1,200_6~13).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/320稻妻鹤馆惑饲滩(600_1,200_6~13).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/320稻妻鹤馆惑饲滩(600_1,200_6~13).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/321稻妻鹤馆(400_3,200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/321稻妻鹤馆(400_3,200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/321稻妻鹤馆(400_3,200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/321稻妻鹤馆(400_3,200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/401须弥降诸魔山神像(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/401须弥降诸魔山神像(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/401须弥降诸魔山神像(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/401须弥降诸魔山神像(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/403须弥茸蕈窟(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/403须弥茸蕈窟(200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/403须弥茸蕈窟(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/403须弥茸蕈窟(200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/406须弥往昔的桓那兰那(400_2,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/406须弥往昔的桓那兰那(400_2,200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/406须弥往昔的桓那兰那(400_2,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/406须弥往昔的桓那兰那(400_2,200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/407须弥善见地(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/407须弥善见地(600_1,200_1).json similarity index 80% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/407须弥善见地(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/407须弥善见地(600_1,200_1).json index bd427bb5..6a951c2f 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/407须弥善见地(600_1,200_1).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/407须弥善见地(600_1,200_1).json @@ -30,9 +30,9 @@ "id": 3, "x": 3897.7216796875, "y": -1006.822265625, - "action": "combat_script", + "action": "stop_flying", "move_mode": "fly", - "action_params": "keypress(VK_SPACE),wait(2),click", + "action_params": "2000", "type": "path" }, { @@ -46,8 +46,8 @@ }, { "id": 5, - "x": 3859.3935546875, - "y": -1004.44677734375, + "x": 3866.562954259538, + "y": -1011.1858629399458, "action": "", "move_mode": "run", "action_params": "", @@ -55,8 +55,8 @@ }, { "id": 6, - "x": 3842.6877686056396, - "y": -1003.1249393681464, + "x": 3844.812756755391, + "y": -1006.4990905221921, "action": "", "move_mode": "run", "action_params": "", @@ -64,8 +64,8 @@ }, { "id": 7, - "x": 3880.33203125, - "y": -1009.8359375, + "x": 3880.78127765058, + "y": -1007.5318108446481, "action": "fight", "move_mode": "dash", "action_params": "", @@ -82,8 +82,8 @@ }, { "id": 9, - "x": 3811.0810546875, - "y": -1059.8408203125, + "x": 3817.3154296875, + "y": -1055.5751953125, "action": "stop_flying", "move_mode": "fly", "action_params": "", @@ -91,8 +91,8 @@ }, { "id": 10, - "x": 3811.0810546875, - "y": -1059.8408203125, + "x": 3815.3154296875, + "y": -1056.5751953125, "action": "fight", "move_mode": "walk", "action_params": "", @@ -100,8 +100,8 @@ }, { "id": 11, - "x": 3811.0810546875, - "y": -1059.8408203125, + "x": 3815.3154296875, + "y": -1056.5751953125, "action": "combat_script", "move_mode": "walk", "action_params": "wait(1)", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/408须弥茶诃之座2丘丘王(600_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/408须弥茶诃之座2丘丘王(600_2).json similarity index 79% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/408须弥茶诃之座2丘丘王(600_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/408须弥茶诃之座2丘丘王(600_2).json index c98b7cec..63f4483d 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/408须弥茶诃之座2丘丘王(600_2).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/408须弥茶诃之座2丘丘王(600_2).json @@ -19,21 +19,21 @@ }, { "id": 2, - "x": 3560.877287065001, - "y": -1995.626369516085, + "x": 3580.6357421875, + "y": -1996.17724609375, + "type": "path", + "move_mode": "run", "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" + "action_params": "" }, { "id": 3, - "x": 3584.849609375, - "y": -1994.77490234375, + "x": 3583.1923828125, + "y": -1996.24560546875, + "type": "path", + "move_mode": "walk", "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" + "action_params": "" }, { "id": 4, @@ -42,8 +42,7 @@ "action": "fight", "move_mode": "run", "action_params": "", - "type": "path", - "locked": false + "type": "path" }, { "id": 5, diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/409须弥茶诃之座(200_10).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/409须弥茶诃之座(200_9).json similarity index 77% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/409须弥茶诃之座(200_10).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/409须弥茶诃之座(200_9).json index a8c17ca9..006caa99 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/409须弥茶诃之座(200_10).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/409须弥茶诃之座(200_9).json @@ -1,6 +1,6 @@ { "info": { - "name": "409须弥茶诃之座(200_10)", + "name": "409须弥茶诃之座(200_9)", "type": "collect", "author": "汐", "version": "1.0", @@ -46,33 +46,15 @@ }, { "id": 5, - "x": 3627.5, - "y": -1904.0020362432988, - "action": "fight", - "move_mode": "run", + "x": 3607.312717254561, + "y": -1869.1247877885116, + "action": "stop_flying", + "move_mode": "fly", "action_params": "", "type": "path" }, { "id": 6, - "x": 3634.5, - "y": -1904.0020362432988, - "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 7, - "x": 3635, - "y": -1900.0020362432988, - "action": "combat_script", - "move_mode": "walk", - "action_params": "keypress(t),wait(1.5),keydown(d),wait(2),keyup(d)", - "type": "path" - }, - { - "id": 8, "x": 3612.875, "y": -1826.2285751792015, "action": "", @@ -81,25 +63,25 @@ "type": "path" }, { - "id": 9, + "id": 7, "x": 3619.75, "y": -1777.876150920125, "action": "", - "move_mode": "run", + "move_mode": "dash", "action_params": "", "type": "path" }, { - "id": 10, + "id": 8, "x": 3621.625, "y": -1746.3635793310623, - "action": "", + "action": "combat_script", "move_mode": "walk", - "action_params": "", + "action_params": "wait(2)", "type": "path" }, { - "id": 11, + "id": 9, "x": 3631.125, "y": -1725.2421648899144, "action": "fight", @@ -108,7 +90,7 @@ "type": "path" }, { - "id": 12, + "id": 10, "x": 3629.125, "y": -1692.2421648899144, "action": "", @@ -117,7 +99,7 @@ "type": "path" }, { - "id": 13, + "id": 11, "x": 3661.625, "y": -1671.6260181216494, "action": "stop_flying", @@ -126,40 +108,59 @@ "type": "path" }, { - "id": 14, + "id": 12, "x": 3661.625, "y": -1671.6260181216494, - "action": "fight", + "action": "combat_script", "move_mode": "walk", + "action_params": "attack(0.5)", + "type": "path" + }, + { + "id": 13, + "x": 3663.874956549087, + "y": -1687.624727156658, + "action": "fight", + "move_mode": "dash", "action_params": "", "type": "path" }, { - "id": 15, - "x": 3665.625, - "y": -1691.6260181216503, - "action": "fight", + "id": 14, + "x": 3652.1298828125, + "y": -1719.76611328125, + "type": "path", "move_mode": "dash", - "action_params": "", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3666.375948019904, + "y": -1760.5000151579634, + "action": "combat_script", + "move_mode": "dash", + "action_params": "attack(0.3)", "type": "path" }, { "id": 16, - "x": 3651.3955078125, - "y": -1760.53466796875, + "x": 3656.1884765625, + "y": -1772.59130859375, + "type": "path", + "move_mode": "fly", "action": "fight", - "move_mode": "dash", "action_params": "", - "type": "path" + "locked": false }, { "id": 17, - "x": 3646.5, - "y": -1761.7741250564775, + "x": 3656.1884765625, + "y": -1772.59130859375, + "type": "path", + "move_mode": "fly", "action": "", - "move_mode": "dash", - "action_params": "", - "type": "path" + "action_params": "" }, { "id": 18, diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/410须弥沙漠丰饶绿洲(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/410须弥沙漠丰饶绿洲(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/410须弥沙漠丰饶绿洲(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/410须弥沙漠丰饶绿洲(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/411须弥沙漠饱饮之丘东(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/411须弥沙漠饱饮之丘东(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/411须弥沙漠饱饮之丘东(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/411须弥沙漠饱饮之丘东(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/412须弥沙漠圣显厅北(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/412须弥沙漠圣显厅北(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/412须弥沙漠圣显厅北(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/412须弥沙漠圣显厅北(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/413须弥沙漠圣显厅门口(200_7) .json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/413须弥沙漠圣显厅门口(200_7) .json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/413须弥沙漠圣显厅门口(200_7) .json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/413须弥沙漠圣显厅门口(200_7) .json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/414须弥沙漠沙虫隧道(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/414须弥沙漠沙虫隧道(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/414须弥沙漠沙虫隧道(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/414须弥沙漠沙虫隧道(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/415须弥沙漠避让之丘(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/415须弥沙漠避让之丘(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/415须弥沙漠避让之丘(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/415须弥沙漠避让之丘(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/416须弥沙漠五绿洲的子遗地下(600_1,200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/416须弥沙漠五绿洲的子遗地下(600_1,200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/416须弥沙漠五绿洲的子遗地下(600_1,200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/416须弥沙漠五绿洲的子遗地下(600_1,200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/417须弥沙漠三运河之地北(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/417须弥沙漠三运河之地北(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/417须弥沙漠三运河之地北(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/417须弥沙漠三运河之地北(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/501枫丹城 浊水幻灵(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/501枫丹城 浊水幻灵(200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/501枫丹城 浊水幻灵(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/501枫丹城 浊水幻灵(200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/503枫丹实验室遗址东(600_1,200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/503枫丹实验室遗址东(600_1,200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/503枫丹实验室遗址东(600_1,200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/503枫丹实验室遗址东(600_1,200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/504枫丹茉洁站(200_7).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/504枫丹茉洁站(200_7).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/504枫丹茉洁站(200_7).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/504枫丹茉洁站(200_7).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/505枫丹茉洁站北 浊水幻灵(200_6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/505枫丹茉洁站北 浊水幻灵(200_6).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/505枫丹茉洁站北 浊水幻灵(200_6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/505枫丹茉洁站北 浊水幻灵(200_6).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/506枫丹湖中垂柳 浊水幻灵(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/506枫丹湖中垂柳 浊水幻灵(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/506枫丹湖中垂柳 浊水幻灵(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/506枫丹湖中垂柳 浊水幻灵(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/507枫丹幽林雾道(600_1,200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/507枫丹幽林雾道(600_1,200_2).json similarity index 73% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/507枫丹幽林雾道(600_1,200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/507枫丹幽林雾道(600_1,200_2).json index 582f0bd7..f8e95d09 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/507枫丹幽林雾道(600_1,200_2).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/507枫丹幽林雾道(600_1,200_2).json @@ -30,24 +30,24 @@ "id": 3, "x": 3518.8154296875, "y": 3307.571533203125, - "type": "path", - "move_mode": "dash", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 4, "x": 3474.3916015625, "y": 3248.631103515625, - "type": "path", - "move_mode": "run", "action": "", - "action_params": "" + "move_mode": "run", + "action_params": "", + "type": "path" }, { "id": 5, - "x": 3453.849609375, - "y": 3195.052734375, + "x": 3459.5625, + "y": 3204.628386361139, "action": "", "move_mode": "dash", "action_params": "", @@ -55,6 +55,15 @@ }, { "id": 6, + "x": 3455.3466796875, + "y": 3177.931396484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, "x": 3460.849609375, "y": 3165.052734375, "action": "", @@ -63,36 +72,36 @@ "type": "path" }, { - "id": 7, - "x": 3458.7998046875, - "y": 3171.400424241998, + "id": 8, + "x": 3458.125, + "y": 3171.4687721330793, "action": "", "move_mode": "walk", "action_params": "", "type": "path" }, - { - "id": 8, - "x": 3453.75, - "y": 3183.748114108997, - "action": "combat_script", - "move_mode": "dash", - "action_params": "keypress(q)", - "type": "path" - }, { "id": 9, - "x": 3446.6259765625, - "y": 3188.54345703125, - "action": "fight", + "x": 3455.3466796875, + "y": 3177.931396484375, + "action": "", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 10, - "x": 3446.6259765625, - "y": 3188.54345703125, + "x": 3457.84375, + "y": 3193.7497786692074, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 3457.84375, + "y": 3193.7497786692074, "action": "combat_script", "move_mode": "dash", "action_params": "wait(1)", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/508枫丹厄里那斯北(600_2,400_4,200_7).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/508枫丹厄里那斯北(600_2,400_4,200_7).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/508枫丹厄里那斯北(600_2,400_4,200_7).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/508枫丹厄里那斯北(600_2,400_4,200_7).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/509枫丹厄里那斯西(600_1,400_1,200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/509枫丹厄里那斯西(600_1,400_1,200_4).json similarity index 81% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/509枫丹厄里那斯西(600_1,400_1,200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/509枫丹厄里那斯西(600_1,400_1,200_4).json index 1e7d2c55..6b6ee8ba 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/509枫丹厄里那斯西(600_1,400_1,200_4).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/509枫丹厄里那斯西(600_1,400_1,200_4).json @@ -19,8 +19,8 @@ }, { "id": 2, - "x": 5037.052734375, - "y": 2783.155029296875, + "x": 5038.625, + "y": 2781.6566120132866, "action": "combat_script", "move_mode": "fly", "action_params": "keypress(VK_SPACE),wait(2.6),click", @@ -28,17 +28,17 @@ }, { "id": 3, - "x": 5036.052734374999, - "y": 2786.155029296875, - "action": "combat_script", - "move_mode": "walk", - "action_params": "wait(1.5)", + "x": 5048.8125, + "y": 2784.437914806891, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", "type": "path" }, { "id": 4, - "x": 5043.388671875, - "y": 2794.2177734375, + "x": 5051.78125, + "y": 2781.628039403222, "action": "fight", "move_mode": "walk", "action_params": "", @@ -49,7 +49,7 @@ "x": 5064.8115234375, "y": 2806.1845703125, "action": "", - "move_mode": "run", + "move_mode": "dash", "action_params": "", "type": "path" }, @@ -76,7 +76,7 @@ "x": 5109.180175781249, "y": 2726.35205078125, "action": "fight", - "move_mode": "run", + "move_mode": "dash", "action_params": "", "type": "path" }, @@ -84,19 +84,19 @@ "id": 9, "x": 5067.8681640625, "y": 2808.968505859375, - "type": "path", - "move_mode": "dash", "action": "", - "action_params": "" + "move_mode": "dash", + "action_params": "", + "type": "path" }, { "id": 10, "x": 5071.12841796875, "y": 2841.29443359375, - "type": "path", - "move_mode": "dash", "action": "combat_script", - "action_params": "keypress(x)" + "move_mode": "dash", + "action_params": "keypress(x)", + "type": "path" }, { "id": 11, diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/510枫丹厄里那斯南(400_2,200_5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/510枫丹厄里那斯南(400_2,200_5).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/510枫丹厄里那斯南(400_2,200_5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/510枫丹厄里那斯南(400_2,200_5).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/511枫丹苍晶区f6(600_1,200_11).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/511枫丹苍晶区f6(600_1,200_11).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/511枫丹苍晶区f6(600_1,200_11).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/511枫丹苍晶区f6(600_1,200_11).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/512枫丹苍晶区神像(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/512枫丹苍晶区神像(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/512枫丹苍晶区神像(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/512枫丹苍晶区神像(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/513枫丹厄里那斯东 浊水幻灵(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/513枫丹厄里那斯东 浊水幻灵(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/513枫丹厄里那斯东 浊水幻灵(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/513枫丹厄里那斯东 浊水幻灵(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/514枫丹秋分山西侧 浊水幻灵(200_6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/514枫丹秋分山西侧 浊水幻灵(200_6).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/514枫丹秋分山西侧 浊水幻灵(200_6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/514枫丹秋分山西侧 浊水幻灵(200_6).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/515枫丹秋分山东 浊水幻灵(200_6).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/515枫丹秋分山东 浊水幻灵(200_6).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/515枫丹秋分山东 浊水幻灵(200_6).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/515枫丹秋分山东 浊水幻灵(200_6).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/516枫丹卡布狄斯堡 浊水幻灵(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/517枫丹莫尔泰区 浊水幻灵(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/517枫丹莫尔泰区 浊水幻灵(200_4).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/517枫丹莫尔泰区 浊水幻灵(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/517枫丹莫尔泰区 浊水幻灵(200_4).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/518枫丹佩特莉可镇 浊水幻灵(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/518枫丹佩特莉可镇 浊水幻灵(200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/518枫丹佩特莉可镇 浊水幻灵(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/518枫丹佩特莉可镇 浊水幻灵(200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/601纳塔奥奇(600_1,400_1)次数盾.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/601纳塔奥奇(600_1,400_1)次数盾.json similarity index 97% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/601纳塔奥奇(600_1,400_1)次数盾.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/601纳塔奥奇(600_1,400_1)次数盾.json index e0cdfd9f..8e923484 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/601纳塔奥奇(600_1,400_1)次数盾.json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/601纳塔奥奇(600_1,400_1)次数盾.json @@ -1,6 +1,6 @@ { "info": { - "name": "601纳塔奥奇(600_1,200_1)次数盾", + "name": "601纳塔奥奇(600_1,400_1)次数盾", "type": "collect", "author": "汐", "version": "1.0", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/602纳塔奥奇(600_3)次数盾.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/602纳塔奥奇(600_3)次数盾.json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/602纳塔奥奇(600_3)次数盾.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/602纳塔奥奇(600_3)次数盾.json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/603纳塔奥奇(600_4)次数盾.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/603纳塔奥奇(600_4)次数盾.json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/603纳塔奥奇(600_4)次数盾.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/603纳塔奥奇(600_4)次数盾.json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/604纳塔奥奇(400_3,200_9)次数盾.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/604纳塔奥奇(400_3,200_9)次数盾.json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/604纳塔奥奇(400_3,200_9)次数盾.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/604纳塔奥奇(400_3,200_9)次数盾.json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/605纳塔奥奇(600_1)次数盾.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/605纳塔奥奇(600_1)次数盾.json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/605纳塔奥奇(600_1)次数盾.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/605纳塔奥奇(600_1)次数盾.json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/606纳塔奥奇(400_2,200_2)次数盾.json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/606纳塔奥奇(400_2,200_2)次数盾.json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/606纳塔奥奇(400_2,200_2)次数盾.json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/606纳塔奥奇(400_2,200_2)次数盾.json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/607纳塔奥奇东南岛(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/607纳塔奥奇东南岛(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/607纳塔奥奇东南岛(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/607纳塔奥奇东南岛(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/608纳塔城(200_5).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/608纳塔城(200_5).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/608纳塔城(200_5).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/608纳塔城(200_5).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/610硫晶支脉(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/610硫晶支脉(200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/610硫晶支脉(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/610硫晶支脉(200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/611纳塔火山安饶之野东北边缘(200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/611纳塔火山安饶之野东北边缘(200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/611纳塔火山安饶之野东北边缘(200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/611纳塔火山安饶之野东北边缘(200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/612纳塔火山安饶之野入口(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/612纳塔火山安饶之野入口(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/612纳塔火山安饶之野入口(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/612纳塔火山安饶之野入口(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/README.md b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/README.md new file mode 100644 index 00000000..e11b8f6e --- /dev/null +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/README.md @@ -0,0 +1,42 @@ +000-传奇 +100-蒙德,雪山 +200-璃月 +300-稻妻 +400-须弥 +500-枫丹 +600-纳塔 +700-至冬 +800-无归属地 + +更新至4月20日: +路线115条: 传奇1条线,精英怪114条线 +600摩拉:68只 +400摩拉:18只 +200摩拉:363只 +总计:449只 (不包括稻妻惑饲滩随机刷新7只遗迹守卫+流血狗组合) +常规路径:420~427只(随机 稻妻惑饲滩随机7只) +低效率路线:29只(600摩3只,200摩26只) + +路径详情: +https://www.kdocs.cn/wo/sl/v11s2cO5 +___________________________________________________________________________________________________ +特殊怪物: +次数盾-21只,所在路线(601/602/603/604/605/606,路线内总计26只精英) +浊水幻灵-28只,所在路线(219/501/505/506/513/514/515/516/517/518,路线内总计38只精英) +炉壳山鼬-3只,所在路线(613/614/615,路线内总计3只精英) +玄文兽-26只,所在路线(224/225/226/228/229/231/232,路线内总计32只精英) +役人-7只,所在路线(502低效/514/515,路线内总计15只精英) +___________________________________________________________________________________________________ +预备低效: 60只 +203离月遁玉陵f4(200_4)4遗迹守卫 +205璃月孤云阁f4(200_4)4遗迹守卫 +219璃月轻策庄(200_4)4浊水幻灵 +308稻妻水月池(200_8)7遗迹机兵 1藏镜仕女 +403须弥茸蕈窟(200_4)1遗迹龙兽 1藏镜仕女 1萤术士 1遗迹守卫 +409须弥茶诃之座(200_10)3丘丘暴徒 7遗迹守卫 +505枫丹茉洁站北(200_6)5浊水幻灵 1丘丘暴徒 +506枫丹湖中垂柳(200_2)2浊水幻灵 +514枫丹秋分山西侧(200_6)3浊水幻灵 1丘丘暴徒 2风役人 +606纳塔奥奇(400_2,200_2)4次数盾 +608纳塔城(200_5)5秘源机兵 +610硫晶支脉(200_3)3秘源机兵 diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/106蒙德风龙废墟北(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/106蒙德风龙废墟北(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/106蒙德风龙废墟北(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/106蒙德风龙废墟北(200_2).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/202璃月灵矩关(200_4).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/202【高危】璃月灵矩关(200_4).json similarity index 95% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/202璃月灵矩关(200_4).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/202【高危】璃月灵矩关(200_4).json index 28dfa913..6ba49d59 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/202璃月灵矩关(200_4).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/202【高危】璃月灵矩关(200_4).json @@ -1,6 +1,6 @@ { "info": { - "name": "202璃月灵矩关(200_4)", + "name": "202【高危】璃月灵矩关(200_4)", "type": "collect", "author": "汐", "version": "1.0", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/207璃月孤云阁山顶(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/207【高危】璃月孤云阁山顶(200_3).json similarity index 96% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/207璃月孤云阁山顶(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/207【高危】璃月孤云阁山顶(200_3).json index d13d0815..86f966a5 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/207璃月孤云阁山顶(200_3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/207【高危】璃月孤云阁山顶(200_3).json @@ -1,6 +1,6 @@ { "info": { - "name": "207璃月孤云阁山顶(200_3)", + "name": "207【高危】璃月孤云阁山顶(200_3)", "type": "collect", "author": "汐", "version": "1.0", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/235璃月层岩南山顶丘丘王(600_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/235璃月层岩南山顶丘丘王(600_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/235璃月层岩南山顶丘丘王(600_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/235璃月层岩南山顶丘丘王(600_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/402须弥香醉坡(200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/402须弥香醉坡(200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/402须弥香醉坡(200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/402须弥香醉坡(200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/404须弥二净甸(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/404须弥二净甸(200_3).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/404须弥二净甸(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/404须弥二净甸(200_3).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/405须弥觉王之殿南(600_1,200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/405须弥觉王之殿南(600_1,200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/405须弥觉王之殿南(600_1,200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/405须弥觉王之殿南(600_1,200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/502枫丹芒索斯山东麓(200_3).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/502【高危】枫丹芒索斯山东麓(200_3).json similarity index 95% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/502枫丹芒索斯山东麓(200_3).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/502【高危】枫丹芒索斯山东麓(200_3).json index f6bbd2d3..b26a3488 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/502枫丹芒索斯山东麓(200_3).json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/502【高危】枫丹芒索斯山东麓(200_3).json @@ -1,6 +1,6 @@ { "info": { - "name": "502枫丹芒索斯山东麓(200_3)", + "name": "502【高危】枫丹芒索斯山东麓(200_3)", "type": "collect", "author": "汐", "version": "1.0", diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/609纳塔溶水域南(200_3) .json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/609纳塔溶水域南(200_3).json similarity index 71% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/609纳塔溶水域南(200_3) .json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/609纳塔溶水域南(200_3).json index eceffc13..121e01a2 100644 --- a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/609纳塔溶水域南(200_3) .json +++ b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/609纳塔溶水域南(200_3).json @@ -4,7 +4,7 @@ "type": "collect", "author": "汐", "version": "1.0", - "description": "3秘源机兵", + "description": "", "bgiVersion": "0.42.3" }, "positions": [ @@ -19,8 +19,8 @@ }, { "id": 2, - "x": 8714.43359375, - "y": -3026.36328125, + "x": 8624.1484375, + "y": -3015.5439453125, "action": "", "move_mode": "dash", "action_params": "", @@ -28,33 +28,15 @@ }, { "id": 3, - "x": 8668.2021484375, - "y": -3024.033203125, - "action": "", - "move_mode": "swim", + "x": 8569.328125, + "y": -3035.845703125, + "action": "fight", + "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 4, - "x": 8624.1484375, - "y": -3015.5439453125, - "action": "", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 5, - "x": 8569.328125, - "y": -3035.845703125, - "action": "fight", - "move_mode": "run", - "action_params": "", - "type": "path" - }, - { - "id": 6, "x": 8538.4931640625, "y": -3014.6083984375, "action": "fight", @@ -63,13 +45,13 @@ "type": "path" }, { - "id": 7, + "id": 5, "x": 8479.556640625, "y": -3048.931640625, - "type": "path", - "move_mode": "run", "action": "fight", - "action_params": "" + "move_mode": "run", + "action_params": "", + "type": "path" } ] } \ No newline at end of file diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/613纳塔火山孑遗的留迹 炉壳山鼬(200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/614纳塔火山安饶之野南 炉壳山鼬(200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/614纳塔火山安饶之野南 炉壳山鼬(200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/614纳塔火山安饶之野南 炉壳山鼬(200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/614纳塔火山安饶之野南 炉壳山鼬(200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/615纳塔火山安饶之野西 炉壳山鼬(200_1).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/615纳塔火山安饶之野西 炉壳山鼬(200_1).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/615纳塔火山安饶之野西 炉壳山鼬(200_1).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/615纳塔火山安饶之野西 炉壳山鼬(200_1).json diff --git a/repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/616纳塔火山安饶之野西北海滩(200_2).json b/repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/616纳塔火山安饶之野西北海滩(200_2).json similarity index 100% rename from repo/pathing/《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》/效率低,不刷/616纳塔火山安饶之野西北海滩(200_2).json rename to repo/pathing/《死亡笔记——从零开始的提瓦特2400杀,真的手酸,虽然BGI没有手啦》/从零开始的提瓦特400杀/效率低,不刷/616纳塔火山安饶之野西北海滩(200_2).json diff --git a/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/01-嘟嘟莲-蒙德-清泉镇-x11-无草神.json b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/01-嘟嘟莲-蒙德-清泉镇-x11-无草神.json new file mode 100644 index 00000000..0d55ba74 --- /dev/null +++ b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/01-嘟嘟莲-蒙德-清泉镇-x11-无草神.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "01-嘟嘟莲-蒙德-清泉镇-x11-晴雪徒步版无草神-V1.4", + "type": "collect", + "author": "忆雪晴-828632080", + "version": "1.4", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -914.8486328125, + "y": 1795.51953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -912.803515625, + "y": 1787.65478515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 3, + "x": -896.9462890625, + "y": 1785.82568359375, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -895.87, + "y": 1782.64658203125, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -895.90820311, + "y": 1786.2939453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -883.1513671875, + "y": 1780.2255859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -875.9453125, + "y": 1797.48486328125, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -881.5244140625, + "y": 1820.1015625, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -890.08203125, + "y": 1822.73828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -894.154296875, + "y": 1819.57373046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -894.0205078125, + "y": 1819.89697265625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -895.5947265625, + "y": 1821.873046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -899.8740234375, + "y": 1828.45556640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -903.5986328125, + "y": 1836.18505859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -910.08203125, + "y": 1836.66455078125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -930.4970703125, + "y": 1824.5576171875, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -926.0341796875, + "y": 1815.15576171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -914.8447265625, + "y": 1795.50537109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 19, + "x": -913.78515625, + "y": 1786.80615234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -915.51171875, + "y": 1771.18359375, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -917.1162109375, + "y": 1760.134765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -915.896484375, + "y": 1756.9560546875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -924.8291015625, + "y": 1765.76123046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -932.357421875, + "y": 1766.86328125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/02-嘟嘟莲-蒙德-苍风高地-x2-无草神.json b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/02-嘟嘟莲-蒙德-苍风高地-x2-无草神.json new file mode 100644 index 00000000..f926d9e7 --- /dev/null +++ b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/02-嘟嘟莲-蒙德-苍风高地-x2-无草神.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "02-嘟嘟莲-蒙德-苍风高地-x2-晴雪徒步版无草神", + "type": "collect", + "author": "忆雪晴-828632080", + "version": "1.3", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -201.037109375, + "y": 1861.9091796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -198.294921875, + "y": 1843.08642578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/03-嘟嘟莲-蒙德-摘星崖-x3-无草神.json b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/03-嘟嘟莲-蒙德-摘星崖-x3-无草神.json new file mode 100644 index 00000000..bfb23686 --- /dev/null +++ b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/03-嘟嘟莲-蒙德-摘星崖-x3-无草神.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "03-嘟嘟莲-蒙德-摘星崖-x3-晴雪徒步版无草神", + "type": "collect", + "author": "忆雪晴-828632080", + "version": "1.3", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1505.861328125, + "y": 2296.222900390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1493.13671875, + "y": 2291.625732421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1463.8427734375, + "y": 2291.552734375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1456.884765625, + "y": 2282.208251953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/04-嘟嘟莲-蒙德-星落湖神像-x4-无草神.json b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/04-嘟嘟莲-蒙德-星落湖神像-x4-无草神.json new file mode 100644 index 00000000..1305b933 --- /dev/null +++ b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/04-嘟嘟莲-蒙德-星落湖神像-x4-无草神.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "04-嘟嘟莲-蒙德-星落湖神像-x4-晴雪徒步版无草神", + "type": "collect", + "author": "忆雪晴-828632080", + "version": "1.3", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1330.0791015625, + "y": 2563.881103515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1324.0859375, + "y": 2554.211669921875, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1316.30859375, + "y": 2539.341064453125, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1315.111328125, + "y": 2535.775146484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1314.5009765625, + "y": 2526.124755859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1370.244140625, + "y": 2489.551513671875, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1385.2353515625, + "y": 2459.05126953125, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1395.89453125, + "y": 2461.586669921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/05-嘟嘟莲-蒙德-奔狼领-x4-无草神.json b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/05-嘟嘟莲-蒙德-奔狼领-x4-无草神.json new file mode 100644 index 00000000..10d61e8f --- /dev/null +++ b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/05-嘟嘟莲-蒙德-奔狼领-x4-无草神.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "05-嘟嘟莲-蒙德-奔狼领-x4-晴雪徒步版无草神", + "type": "collect", + "author": "忆雪晴-828632080", + "version": "1.3", + "description": "给萌新初始号的徒步采集,没有草神纳西妲,少女体型芭芭拉走路采集高效路线,别带双风或任何加速角色,如嘉明、迪希雅、罗莎莉亚。", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -521.5830078125, + "y": 2181.343994140625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -496.158203125, + "y": 2172.5947265625, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -475.2333984375, + "y": 2160.4296875, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -474.1240234375, + "y": 2153.710693359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -481.83984375, + "y": 2155.39892578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/desktop.ini b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/icon.ico b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/icon.ico new file mode 100644 index 00000000..bc5c4d43 Binary files /dev/null and b/repo/pathing/嘟嘟莲/嘟嘟莲-无草神@忆雪晴/icon.ico differ diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json index a1da6ba6..a3965ba6 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f.json @@ -1,201 +1,218 @@ { - "info": { - "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3288.21, - "y": -3652.5, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3273.28, - "y": -3650.59, - "type": "path", - "move_mode": "dash" - }, - { - "x": -3259.15, - "y": -3639.42, - "type": "path", - "move_mode": "dash" - }, - { - "x": -3261.38, - "y": -3644.66, - "type": "orientation", - "move_mode": "dash" - }, - { - "x": -3261.38, - "y": -3644.66, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": -3261.38, - "y": -3644.66, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": -3253.99, - "y": -3647.38, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3243.96, - "y": -3651.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3240.22, - "y": -3647.79, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": -3214.16, - "y": -3611.91, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": -3209.82, - "y": -3604.49, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": -3215.06, - "y": -3612.54, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3216.46, - "y": -3627.32, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3206.44, - "y": -3614.49, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": -3206.25, - "y": -3614.37, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": -3208.11, - "y": -3614.81, - "type": "orientation" - }, - { - "x": -3208.11, - "y": -3614.81, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": -3205.68, - "y": -3616.77, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": -3204.03, - "y": -3615.55, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": -3156.58, - "y": -3886.1, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": -3170.41, - "y": -3850.84, - "type": "path", - "move_mode": "run" - }, - { - "x": -3168.65, - "y": -3839.99, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "wait(1),keypress(VK_SPACE),wait(3),click", - "//": "stop_flying" - }, - { - "x": -3151.07, - "y": -3842.67, - "type": "path", - "move_mode": "run" - }, - { - "x": -3149.36, - "y": -3837.02, - "type": "path", - "move_mode": "run" - }, - { - "x": -3152.97, - "y": -3831.78, - "type": "target", - "move_mode": "walk", - "#": "5" - }, - { - "x": -3152.97, - "y": -3831.78, - "type": "target", - "move_mode": "walk", - "#": "5" - }, - { - "x": -3147.28, - "y": -3831.76, - "type": "target", - "move_mode": "walk" - }, - { - "x": -3144.08, - "y": -3831.7, - "type": "target", - "move_mode": "fly", - "#": "6" - }, - { - "x": -3144.59, - "y": -3831.45, - "type": "target", - "move_mode": "walk", - "#": "6" - } - ] + + "positions": [ + { + "x": -3288.212890625, + "y": -3652.501953125, + "type": "teleport" + }, + { + "x": -3273.2841796875, + "y": -3650.5908203125, + "type": "path", + "move_mode": "dash" + }, + { + "x": -3259.146484375, + "y": -3639.4150390625, + "type": "path", + "move_mode": "dash" + }, + + { + "x": -3261.376953125, + "y": -3644.6572265625, + "type": "orientation", + "move_mode": "dash" + }, + { + "x": -3261.376953125, + "y": -3644.6572265625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": -3261.376953125, + "y": -3644.6572265625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": -3253.990234375, + "y": -3647.380859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3243.9580078125, + "y": -3651.015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3240.224609375, + "y": -3647.794921875, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": -3214.158203125, + "y": -3611.9052734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": -3209.8212890625, + "y": -3604.4921875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + { + "x": -3215.0595703125, + "y": -3612.5361328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3216.4609375, + "y": -3627.3212890625, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3206.4365234375, + "y": -3614.490234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": -3206.25, + "y": -3614.3671875, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": -3208.1083984375, + "y": -3614.806640625, + "type": "orientation" + }, + { + "x": -3208.1083984375, + "y": -3614.806640625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": -3205.6845703125, + "y": -3616.7685546875, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": -3204.03125, + "y": -3615.5517578125, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + + + { + "x": -3156.5830078125, + "y": -3886.0986328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3170.4130859375, + "y": -3850.8359375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3168.654296875, + "y": -3839.994140625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_SPACE),wait(3),click", + "//": "stop_flying" + }, + { + "x": -3151.0654296875, + "y": -3842.669921875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3149.3564453125, + "y": -3837.0224609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3152.970703125, + "y": -3831.783203125, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + { + "x": -3152.970703125, + "y": -3831.783203125, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + + { + "x": -3147.2763671875, + "y": -3831.7646484375, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -3144.0830078125, + "y": -3831.6953125, + "type": "target", + "move_mode": "fly", + "#": "6" + }, + { + "x": -3144.5859375, + "y": -3831.451171875, + "type": "target", + "move_mode": "walk", + "#": "6" + } + + + ] + } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json index f11feafc..a31fe166 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f.json @@ -1,242 +1,262 @@ { - "info": { - "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3156.54, - "y": -3886.15, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3156.63, - "y": -3870.74, - "type": "path", - "move_mode": "run" - }, - { - "x": -3154.05, - "y": -3835.51, - "type": "path", - "move_mode": "run" - }, - { - "x": -3152.75, - "y": -3733.9, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying" - }, - { - "x": -3152.75, - "y": -3733.9, - "type": "path", - "move_mode": "walk" - }, - { - "_x": -3149.0771484375, - "_y": -3739.6552734375, - "x": -3149.09, - "y": -3739.77, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": -3157.02, - "y": -3727.55, - "type": "orientation" - }, - { - "x": -3157.02, - "y": -3727.55, - "type": "target", - "move_mode": "walk", - "#": "8" - }, - { - "x": -3157.02, - "y": -3727.55, - "type": "target", - "move_mode": "walk", - "#": "8" - }, - { - "x": -3159.23, - "y": -3724.66, - "x_": -3159.232421875, - "y_": -3724.658203125, - "type": "target", - "move_mode": "walk", - "#": "9" - }, - { - "x": -3158.18, - "y": -3721.94, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3156.8, - "y": -3716.94, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3160.03, - "y": -3715.05, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3161.41, - "y": -3712.81, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3164.58, - "y": -3702.02, - "type": "path", - "move_mode": "walk", - "//": "jump down" - }, - { - "x": -3166.85, - "y": -3704.4, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3164.2, - "y": -3706.43, - "type": "target", - "move_mode": "walk", - "#": "10" - }, - { - "x": -3164.15, - "y": -3706.45, - "type": "target", - "move_mode": "walk", - "#": "10" - }, - { - "x": -3164.6, - "y": -3701.84, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3160.46, - "y": -3701.8, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3148.01, - "y": -3693.46, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3108.44, - "y": -3655.2, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3103.36, - "y": -3647.6, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3098.0, - "y": -3639.7, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3092.35, - "y": -3637.27, - "type": "target", - "move_mode": "walk", - "#": "11" - }, - { - "x": -3113.5, - "y": -3625.01, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying" - }, - { - "x": -3118.92, - "y": -3622.11, - "type": "target", - "move_mode": "walk", - "#": "12" - }, - { - "x": -3118.92, - "y": -3622.11, - "type": "target", - "move_mode": "walk", - "#": "12" - }, - { - "x": -3127.11, - "y": -3602.75, - "type": "path", - "move_mode": "run" - }, - { - "x": -3149.32, - "y": -3568.75, - "type": "path", - "move_mode": "run" - }, - { - "x": -3142.01, - "y": -3566.93, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3136.41, - "y": -3568.05, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3139.02, - "y": -3571.0, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": -3139.02, - "y": -3571.0, - "type": "target", - "move_mode": "walk", - "#": "13" - }, - { - "x": -3138.31, - "y": -3570.96, - "type": "target", - "move_mode": "walk", - "#": "13" - } - ] + + "positions": [ + + { + "x": -3156.5380859375, + "y": -3886.1474609375, + "type": "teleport" + }, + { + "x": -3156.634765625, + "y": -3870.7353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3154.0478515625, + "y": -3835.5107421875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3152.74609375, + "y": -3733.8955078125, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "stop_flying" + }, + { + "x": -3152.74609375, + "y": -3733.8955078125, + "type": "path", + "move_mode": "walk" + }, + + { + "_x": -3149.0771484375, + "_y": -3739.6552734375, + + "x": -3149.0908203125, + "y": -3739.7705078125, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + + { + "x": -3157.0185546875, + "y": -3727.5537109375, + "type": "orientation" + }, + + { + "x": -3157.0185546875, + "y": -3727.5537109375, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + { + "x": -3157.0185546875, + "y": -3727.5537109375, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + + { + "x": -3159.232421875, + "y": -3724.658203125, + + "x_": -3159.232421875, + "y_": -3724.658203125, + + "type": "target", + "move_mode": "walk", + "#": "9" + }, + + { + "x": -3158.181640625, + "y": -3721.9384765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3156.8017578125, + "y": -3716.939453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3160.03125, + "y": -3715.052734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3161.41015625, + "y": -3712.8056640625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3164.5810546875, + "y": -3702.015625, + "type": "path", + "move_mode": "walk", + "//": "jump down" + }, + { + "x": -3166.8525390625, + "y": -3704.3955078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3164.1953125, + "y": -3706.4267578125, + "type": "target", + "move_mode": "walk", + "#": "10" + }, + { + "x": -3164.146484375, + "y": -3706.44921875, + "type": "target", + "move_mode": "walk", + "#": "10" + }, + + { + "x": -3164.6044921875, + "y": -3701.8447265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3160.455078125, + "y": -3701.7998046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3148.009765625, + "y": -3693.4609375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3108.439453125, + "y": -3655.1953125, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3103.35546875, + "y": -3647.599609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3098, + "y": -3639.703125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3092.3525390625, + "y": -3637.2685546875, + "type": "target", + "move_mode": "walk", + "#": "11" + }, + + { + "x": -3113.5029296875, + "y": -3625.0078125, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "stop_flying" + }, + + { + "x": -3118.9189453125, + "y": -3622.10546875, + "type": "target", + "move_mode": "walk", + "#": "12" + }, + { + "x": -3118.9189453125, + "y": -3622.10546875, + "type": "target", + "move_mode": "walk", + "#": "12" + }, + + { + "x": -3127.1142578125, + "y": -3602.75390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3149.3203125, + "y": -3568.7509765625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3142.0068359375, + "y": -3566.9287109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3136.4072265625, + "y": -3568.052734375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3139.2958984375, + "y": -3571.2080078125, + "type": "orientation", + "move_mode": "walk" + }, + + { + "x": -3139.2958984375, + "y": -3571.2080078125, + "type": "target", + "move_mode": "walk", + "#": "13" + }, + { + "x": -3138.3134765625, + "y": -3570.9609375, + "type": "target", + "move_mode": "walk", + "#": "13" + } + + ] + } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json index 03deb495..fd8d6f2a 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f.json @@ -1,315 +1,334 @@ { - "info": { - "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3156.58, - "y": -3886.07, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3139.64, - "y": -3873.57, - "type": "path", - "move_mode": "run" - }, - { - "x": -3118.48, - "y": -3801.27, - "type": "path", - "move_mode": "run" - }, - { - "x": -3128.73, - "y": -3755.46, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3156.39, - "y": -3754.89, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3124.98, - "y": -3742.82, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying" - }, - { - "x": -3121.38, - "y": -3730.67, - "type": "target", - "move_mode": "walk", - "#": "14" - }, - { - "x": -3121.34, - "y": -3730.53, - "type": "target", - "move_mode": "walk", - "#": "14" - }, - { - "x": -3119.44, - "y": -3733.86, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3114.61, - "y": -3727.24, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3115.05, - "y": -3724.45, - "type": "orientation" - }, - { - "x": -3115.05, - "y": -3724.45, - "type": "target", - "move_mode": "walk", - "#": "15" - }, - { - "x": -3115.05, - "y": -3724.45, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(x)", - "//": "stop_climbing", - "#": "15" - }, - { - "x": -3112.48, - "y": -3723.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3118.35, - "y": -3718.11, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3121.85, - "y": -3714.31, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3130.27, - "y": -3716.89, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3153.7, - "y": -3718.92, - "type": "path", - "move_mode": "fly", - "//": "stop_flying" - }, - { - "x": -3162.36, - "y": -3716.52, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3161.14, - "y": -3710.42, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3160.29, - "y": -3704.84, - "type": "target", - "move_mode": "walk", - "#": "16" - }, - { - "x": -3160.29, - "y": -3704.85, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(x)", - "//": "stop_climbing", - "#": "16" - }, - { - "x": -3164.52, - "y": -3704.95, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3161.35, - "y": -3699.85, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": -3161.35, - "y": -3699.85, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3158.0, - "y": -3695.93, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3154.55, - "y": -3688.93, - "type": "target", - "move_mode": "walk", - "#": "17" - }, - { - "x": -3154.22, - "y": -3689.68, - "type": "target", - "move_mode": "walk", - "#": "17" - }, - { - "x": -3152.82, - "y": -3697.58, - "type": "target", - "move_mode": "walk", - "#": "18" - }, - { - "x": -3152.81, - "y": -3697.34, - "type": "target", - "move_mode": "walk", - "#": "18" - }, - { - "x": -3149.77, - "y": -3692.77, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3145.08, - "y": -3696.59, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3140.24, - "y": -3700.95, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3144.29, - "y": -3704.29, - "type": "target", - "move_mode": "walk", - "#": "19" - }, - { - "x": -3144.32, - "y": -3704.04, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(x)", - "//": "stop_climbing", - "#": "19" - }, - { - "x": -3144.99, - "y": -3708.25, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3147.83, - "y": -3715.26, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3154.45, - "y": -3727.39, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3156.31, - "y": -3734.56, - "type": "path", - "move_mode": "walk", - "//": "jump down" - }, - { - "x": -3148.0, - "y": -3741.47, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3140.58, - "y": -3742.36, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3133.26, - "y": -3738.75, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3135.3, - "y": -3733.8, - "type": "target", - "move_mode": "walk", - "#": "20" - }, - { - "x": -3016.84, - "y": -3623.63, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": -3031.84, - "y": -3640.06, - "type": "target", - "move_mode": "run", - "#": "21" - }, - { - "x": -3031.57, - "y": -3640.25, - "type": "target", - "move_mode": "walk", - "#": "21" - } - ] + + "positions": [ + + { + "x": -3156.5849609375, + "y": -3886.06640625, + "type": "teleport" + }, + { + "x": -3139.6357421875, + "y": -3873.5673828125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3118.478515625, + "y": -3801.2685546875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3128.7255859375, + "y": -3755.45703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3156.3916015625, + "y": -3754.88671875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3124.9794921875, + "y": -3742.8154296875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "stop_flying" + }, + + { + "x": -3121.3837890625, + "y": -3730.6650390625, + "type": "target", + "move_mode": "walk", + "#": "14" + }, + { + "x": -3121.3369140625, + "y": -3730.5302734375, + "type": "target", + "move_mode": "walk", + "#": "14" + }, + + { + "x": -3119.4423828125, + "y": -3733.85546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3114.6142578125, + "y": -3727.2353515625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "orientation" + }, + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "target", + "move_mode": "walk", + "#": "15" + }, + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(x)", + "//": "stop_climbing", + "#": "15" + }, + + { + "x": -3112.478515625, + "y": -3723.0224609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3118.3515625, + "y": -3718.111328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3121.8466796875, + "y": -3714.3076171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3130.271484375, + "y": -3716.8935546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3153.703125, + "y": -3718.9189453125, + "type": "path", + "move_mode": "fly", + "//": "stop_flying" + }, + { + "x": -3162.361328125, + "y": -3716.51953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3161.1396484375, + "y": -3710.4248046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3160.287109375, + "y": -3704.8359375, + "type": "target", + "move_mode": "walk", + "#": "16" + }, + { + "x": -3160.28515625, + "y": -3704.8525390625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(x)", + "//": "stop_climbing", + "#": "16" + }, + + { + "x": -3164.5205078125, + "y": -3704.9482421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3161.3525390625, + "y": -3699.8525390625, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": -3161.3525390625, + "y": -3699.8525390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3158.00390625, + "y": -3695.9306640625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3154.5517578125, + "y": -3688.9306640625, + "type": "target", + "move_mode": "walk", + "#": "17" + }, + { + "x": -3154.22265625, + "y": -3689.6806640625, + "type": "target", + "move_mode": "walk", + "#": "17" + }, + + { + "x": -3152.8251953125, + "y": -3697.9912109375, + "type": "target", + "move_mode": "walk", + "#": "18" + }, + { + "x": -3152.80859375, + "y": -3697.337890625, + "type": "target", + "move_mode": "walk", + "#": "18" + }, + + { + "x": -3149.767578125, + "y": -3692.767578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3145.0810546875, + "y": -3696.58984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3140.2431640625, + "y": -3700.9541015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3144.2890625, + "y": -3704.287109375, + "type": "target", + "move_mode": "walk", + "#": "19" + }, + { + "x": -3144.3173828125, + "y": -3704.04296875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(x)", + "//": "stop_climbing", + "#": "19" + }, + + { + "x": -3144.9931640625, + "y": -3708.2490234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3147.828125, + "y": -3715.26171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3154.451171875, + "y": -3727.388671875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3156.3095703125, + "y": -3734.564453125, + "type": "path", + "move_mode": "walk", + "//": "jump down" + }, + { + "x": -3147.9990234375, + "y": -3741.4736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3140.5830078125, + "y": -3742.3642578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3133.2568359375, + "y": -3738.74609375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3135.3, + "y": -3733.8, + "type": "target", + "move_mode": "walk", + "#": "20" + }, + + + + { + "x": -3016.837890625, + "y": -3623.62890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3031.8408203125, + "y": -3640.0625, + "type": "target", + "move_mode": "run", + "#": "21" + }, + { + "x": -3031.5654296875, + "y": -3640.2451171875, + "type": "target", + "move_mode": "walk", + "#": "21" + } + ] + } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json index eac01593..32d4640d 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json @@ -1,50 +1,50 @@ { - "info": { - "name": "(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 5945.38, - "y": -2056.47, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 5945.38, - "y": -2056.47, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 5926.43, - "y": -2056.33, - "type": "path", - "move_mode": "run" - }, - { - "x": 5921.24, - "y": -2055.96, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 5936.27, - "y": -2045.4, - "type": "path", - "move_mode": "run" - }, - { - "x": 5932.73, - "y": -2038.0, - "type": "target", - "move_mode": "walk", - "action": "" - } - ] + "positions": [ + { + "x": 5945.380859375, + "y": -2056.46875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5945.380859375, + "y": -2056.46875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5926.42919921875, + "y": -2056.33203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5921.23681640625, + "y": -2055.9638671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 5936.27490234375, + "y": -2045.39794921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5932.73291015625, + "y": -2038.00048828125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json index bc3318ec..e1b74171 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json @@ -1,50 +1,53 @@ { - "info": { - "name": "(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9202.54, - "y": -573.33, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9197.33, - "y": -570.92, - "type": "path", - "move_mode": "run" - }, - { - "x": 9158.75, - "y": -588.66, - "type": "path", - "move_mode": "run" - }, - { - "x": 9155.86, - "y": -599.92, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9151.54, - "y": -586.27, - "type": "path", - "move_mode": "run" - }, - { - "x": 9148.8, - "y": -582.22, - "type": "target", - "move_mode": "walk", - "#": "2" - } - ] + "positions": [ + + { + "x": 9202.53515625, + "y": -573.32763671875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9197.33203125, + "y": -570.9189453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9158.7529296875, + "y": -588.65966796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9155.861328125, + "y": -599.9189453125, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 9151.537109375, + "y": -586.271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9148.798828125, + "y": -582.21533203125, + "type": "target", + "move_mode": "walk", + "#": "2" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json index a9e03310..f7ec11c5 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json @@ -1,127 +1,139 @@ { - "info": { - "name": "狗粮-璃月-层岩巨渊-采樵谷-4个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1656.69, - "y": -284.22, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-层岩巨渊-采樵谷-4个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1628.44, - "y": -295.17, - "type": "path", - "move_mode": "run" - }, - { - "x": 1603.6, - "y": -311.87, - "type": "path", - "move_mode": "run" - }, - { - "x": 1560.13, - "y": -292.55, - "type": "path", - "move_mode": "run" - }, - { - "x": 1517.5, - "y": -289.9, - "type": "path", - "move_mode": "run" - }, - { - "x": 1512.93, - "y": -293.66, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1505.96, - "y": -299.52, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1506.13, - "y": -293.79, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1507.13, - "y": -293.05, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 1 - }, - { - "x": 1499.46, - "y": -287.93, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1492.3, - "y": -282.97, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1487.87, - "y": -281.07, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 1479.35, - "y": -277.63, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1477.3, - "y": -277.96, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1474.6, - "y": -279.32, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 3 - }, - { - "x": 1475.53, - "y": -276.35, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1473.9, - "y": -274.46, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 4 - }, - { - "x": 1474.97, - "y": -275.6, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 1656.6884765625, + "y": -284.2236328125, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 1628.435546875, + "y": -295.173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1603.6015625, + "y": -311.865234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1560.12890625, + "y": -292.5458984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1517.5009765625, + "y": -289.90234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1512.9345703125, + "y": -293.65673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1505.9580078125, + "y": -299.51806640625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1506.1337890625, + "y": -293.78955078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1507.1328125, + "y": -293.04638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 1499.4580078125, + "y": -287.93017578125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1492.2998046875, + "y": -282.9697265625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1487.865234375, + "y": -281.0732421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 1479.3544921875, + "y": -277.6318359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1477.30078125, + "y": -277.9560546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1474.595703125, + "y": -279.31689453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + + { + "x": 1475.52734375, + "y": -276.34521484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1473.896484375, + "y": -274.4580078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + + + { + "x": 1474.966796875, + "y": -275.6015625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json index a2badc76..1e60827b 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json @@ -1,56 +1,56 @@ { - "info": { - "name": "狗粮-璃月-沉玉谷-上谷-翘英庄西-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1746.67, - "y": 2325.15, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-沉玉谷-上谷-翘英庄西-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1778.91, - "y": 2340.89, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 1809.67, - "y": 2348.93, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1861.44, - "y": 2364.15, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 1870.09, - "y": 2364.95, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1875.69, - "y": 2365.52, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 1876.61, - "y": 2360.03, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 1746.669921875, + "y": 2325.153076171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1778.9130859375, + "y": 2340.885498046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1809.6708984375, + "y": 2348.93115234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1861.439453125, + "y": 2364.15380859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1870.0947265625, + "y": 2364.95458984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1875.6875, + "y": 2365.521728515625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 1876.607421875, + "y": 2360.030029296875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-东-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-东-2个.json index 73196ac6..efd3f048 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-东-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-东-2个.json @@ -1,75 +1,77 @@ { - "info": { - "name": "狗粮-璃月-沉玉谷上谷-东-2个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1114.81, - "y": 1948.04, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-沉玉谷上谷-东-2个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1148.21, - "y": 1934.61, - "type": "path", - "move_mode": "run" - }, - { - "x": 1152.2, - "y": 1940.53, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 1151.99, - "y": 1941.7, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 1152.41, - "y": 1942.05, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 1114.78, - "y": 1948.06, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 1091.12, - "y": 1987.33, - "type": "path", - "move_mode": "run" - }, - { - "x": 1080.49, - "y": 1984.51, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 1079.2, - "y": 1984.35, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - } - ] + "positions": [ + { + "x": 1114.80859375, + "y": 1948.03759765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1148.2060546875, + "y": 1934.60595703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1152.201171875, + "y": 1940.529296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1151.986328125, + "y": 1941.70361328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1152.4111328125, + "y": 1942.046875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 1114.783203125, + "y": 1948.05615234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1091.1240234375, + "y": 1987.32958984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1080.4931640625, + "y": 1984.5078125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1079.203125, + "y": 1984.3525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个.json index ef65c575..b43f4cfd 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个.json @@ -1,94 +1,96 @@ { - "info": { - "name": "狗粮-璃月-沉玉谷上谷-遗珑埠-3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2466.82, - "y": 2546.79, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-沉玉谷上谷-遗珑埠-3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2411.56, - "y": 2508.79, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 2404.83, - "y": 2509.77, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2400.73, - "y": 2510.04, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 2396.05, - "y": 2514.48, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2372.88, - "y": 2522.72, - "type": "path", - "move_mode": "run" - }, - { - "x": 2368.8, - "y": 2526.01, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 2358.5, - "y": 2414.6, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 2355.98, - "y": 2404.45, - "type": "path", - "move_mode": "run" - }, - { - "x": 2334.18, - "y": 2345.45, - "type": "path", - "move_mode": "fly" - }, - { - "x": 2343.06, - "y": 2307.51, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 2343.04, - "y": 2307.8, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 2344.39, - "y": 2302.42, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 2466.81689453125, + "y": 2546.794189453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2411.5634765625, + "y": 2508.787353515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2404.830078125, + "y": 2509.77099609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2400.72998046875, + "y": 2510.041259765625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 2396.04541015625, + "y": 2514.475830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2372.88037109375, + "y": 2522.71533203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2368.80078125, + "y": 2526.01318359375, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + + { + "x": 2358.49609375, + "y": 2414.603271484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2355.97900390625, + "y": 2404.451171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2334.1796875, + "y": 2345.4501953125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 2343.06103515625, + "y": 2307.510986328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2343.04296875, + "y": 2307.798095703125, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 2344.3916015625, + "y": 2302.41845703125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个/5个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个/5个.json index 6c913784..b86cf3e5 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个/5个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个/5个.json @@ -1,148 +1,159 @@ { - "info": { - "name": "狗粮-璃月-沉玉谷上谷-遗珑埠东-4个/5个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2145.68, - "y": 2412.93, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-沉玉谷上谷-遗珑埠东-4个/5个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2115.25, - "y": 2465.61, - "type": "path", - "move_mode": "fly" - }, - { - "x": 2118.13, - "y": 2493.56, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2129.9, - "y": 2524.28, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2127.03, - "y": 2538.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2124.63, - "y": 2544.01, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2129.96, - "y": 2544.91, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2137.32, - "y": 2545.77, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2257.11, - "y": 2607.51, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 2257.0, - "y": 2607.55, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2254.89, - "y": 2605.41, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2254.2, - "y": 2611.33, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2145.68, - "y": 2412.93, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 2136.26, - "y": 2412.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2132.64, - "y": 2381.97, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 2133.71, - "y": 2390.48, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2132.98, - "y": 2393.67, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2129.91, - "y": 2392.85, - "type": "path", - "move_mode": "walk" - } - ], - "positions_not_actived": [ - { - "x": 2145.6953125, - "y": 2412.94921875, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 2075.10546875, - "y": 2321.042724609375, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 2075.07275390625, - "y": 2321.010986328125, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "有干扰" - } - ] + "positions": [ + { + "x": 2145.67529296875, + "y": 2412.928466796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2115.2490234375, + "y": 2465.607666015625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 2118.1279296875, + "y": 2493.559326171875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 2129.89892578125, + "y": 2524.280517578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2127.02734375, + "y": 2538.019287109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 2124.62841796875, + "y": 2544.005126953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2129.9580078125, + "y": 2544.913818359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + + { + "x": 2137.32177734375, + "y": 2545.76513671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2257.10791015625, + "y": 2607.5146484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2257.00439453125, + "y": 2607.547119140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2254.89453125, + "y": 2605.405029296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2254.19580078125, + "y": 2611.32763671875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 2145.6796875, + "y": 2412.926025390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2136.259765625, + "y": 2412.0244140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2132.64208984375, + "y": 2381.97314453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 2133.70556640625, + "y": 2390.48046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2132.97509765625, + "y": 2393.666748046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2129.9111328125, + "y": 2392.8486328125, + "type": "path", + "move_mode": "walk" + } + + ], + + + + "positions_not_actived": [ + { + "x": 2145.6953125, + "y": 2412.94921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2075.10546875, + "y": 2321.042724609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2075.07275390625, + "y": 2321.010986328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "有干扰" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷南陵-3个/4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷南陵-3个/4个.json index a7cca874..a3c5d966 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷南陵-3个/4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷南陵-3个/4个.json @@ -1,180 +1,189 @@ { - "info": { - "name": "狗粮-璃月-沉玉谷南陵-3个/4个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2323.89, - "y": 1605.0, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-沉玉谷南陵-3个/4个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2267.73, - "y": 1596.67, - "type": "path", - "move_mode": "run" - }, - { - "x": 2263.45, - "y": 1592.5, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2262.46, - "y": 1588.76, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2267.08, - "y": 1590.25, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2066.17, - "y": 1484.47, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 2071.67, - "y": 1460.0, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 2072.36, - "y": 1459.19, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2072.04, - "y": 1460.07, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2070.26, - "y": 1461.36, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2072.93, - "y": 1461.66, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2076.08, - "y": 1459.41, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1863.61, - "y": 1590.98, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 1773.64, - "y": 1678.48, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 1781.89, - "y": 1690.83, - "type": "path", - "move_mode": "run" - }, - { - "x": 1787.73, - "y": 1690.95, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1789.41, - "y": 1687.6, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 1787.89, - "y": 1684.32, - "type": "path", - "move_mode": "walk" - } - ], - "position_not_actived": [ - { - "#": "太远" - }, - { - "x": 1863.61328125, - "y": 1590.99853515625, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 1883.6064453125, - "y": 1565.44677734375, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1857.6552734375, - "y": 1546.0576171875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1827.8681640625, - "y": 1529.21630859375, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1802.58984375, - "y": 1504.70751953125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1741.5927734375, - "y": 1456.94775390625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1734.97265625, - "y": 1454.08447265625, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 1730.9130859375, - "y": 1455.25537109375, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 2323.88818359375, + "y": 1604.99609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2267.73388671875, + "y": 1596.66650390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2263.44873046875, + "y": 1592.49951171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2262.45751953125, + "y": 1588.75732421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2267.0810546875, + "y": 1590.2548828125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 2066.17431640625, + "y": 1484.46533203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2071.67431640625, + "y": 1459.99951171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 2072.35888671875, + "y": 1459.1875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2072.04248046875, + "y": 1460.07421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2070.2568359375, + "y": 1461.359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2072.93115234375, + "y": 1461.66455078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2076.0849609375, + "y": 1459.40625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1863.6064453125, + "y": 1590.98193359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1773.6396484375, + "y": 1678.48388671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1781.892578125, + "y": 1690.83056640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 1787.728515625, + "y": 1690.94775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1789.4140625, + "y": 1687.59521484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1787.8935546875, + "y": 1684.31689453125, + "type": "path", + "move_mode": "walk" + } + + + ], + + + + "position_not_actived": [ + {"#": "太远"}, + + { + "x": 1863.61328125, + "y": 1590.99853515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1883.6064453125, + "y": 1565.44677734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1857.6552734375, + "y": 1546.0576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1827.8681640625, + "y": 1529.21630859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1802.58984375, + "y": 1504.70751953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1741.5927734375, + "y": 1456.94775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1734.97265625, + "y": 1454.08447265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1730.9130859375, + "y": 1455.25537109375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个.json index d3084d6e..b3647d5c 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个.json @@ -1,38 +1,38 @@ { - "info": { - "name": "狗粮-璃月-珉林-华光林-2个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1604.5, - "y": 1039.68, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-珉林-华光林-2个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1638.37, - "y": 941.91, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 1638.47, - "y": 941.61, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 1647.98, - "y": 939.19, - "type": "target", - "move_mode": "walk", - "#": "2" - } - ] + "positions": [ + { + "x": 1604.50390625, + "y": 1039.6787109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1638.3671875, + "y": 941.90771484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1638.466796875, + "y": 941.6064453125, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 1647.9794921875, + "y": 939.19091796875, + "type": "target", + "move_mode": "walk", + "#": "2" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-天道谷-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-天道谷-3个.json index 77723667..b1573b5a 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-天道谷-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-天道谷-3个.json @@ -1,111 +1,122 @@ { - "info": { - "name": "狗粮-璃月-珉林-天道谷-3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1145.54, - "y": 174.66, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-珉林-天道谷-3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1120.26, - "y": 233.72, - "type": "path", - "move_mode": "run" - }, - { - "x": 1100.55, - "y": 260.28, - "type": "path", - "move_mode": "run" - }, - { - "x": 1071.41, - "y": 297.13, - "type": "path", - "move_mode": "run" - }, - { - "x": 1078.49, - "y": 303.59, - "type": "path", - "move_mode": "run" - }, - { - "x": 1085.67, - "y": 302.48, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 1 - }, - { - "x": 1091.98, - "y": 301.7, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1089.27, - "y": 306.51, - "type": "path", - "move_mode": "run" - }, - { - "x": 1053.95, - "y": 321.85, - "type": "path", - "move_mode": "run" - }, - { - "x": 1045.93, - "y": 319.76, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 1041.3, - "y": 327.16, - "type": "path", - "move_mode": "run" - }, - { - "x": 1066.48, - "y": 350.84, - "type": "path", - "move_mode": "run" - }, - { - "x": 1068.85, - "y": 354.82, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 3 - }, - { - "x": 1069.12, - "y": 354.87, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 3 - }, - { - "x": 1069.27, - "y": 355.45, - "type": "path", - "move_mode": "walk", - "action": "", - "#": 3 - } - ] + "positions": [ + { + "x": 1145.5419921875, + "y": 174.658203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1120.2646484375, + "y": 233.7236328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1100.5517578125, + "y": 260.28466796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1071.4072265625, + "y": 297.130859375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1078.4931640625, + "y": 303.58642578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1085.669921875, + "y": 302.48291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 1091.9775390625, + "y": 301.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1089.2724609375, + "y": 306.5068359375, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": 1053.951171875, + "y": 321.84619140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 1045.9287109375, + "y": 319.76123046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 1041.296875, + "y": 327.16015625, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": 1066.4765625, + "y": 350.84326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1068.8486328125, + "y": 354.8173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 1069.1162109375, + "y": 354.8681640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 1069.2744140625, + "y": 355.451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "#": 3 + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-望舒客栈-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-望舒客栈-1个.json index b5f7f99b..eaf22a35 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-望舒客栈-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-望舒客栈-1个.json @@ -1,31 +1,31 @@ { - "info": { - "name": "狗粮-璃月-碧水源-望舒客栈-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 328.94, - "y": 873.6, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-碧水源-望舒客栈-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 293.69, - "y": 903.02, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 294.05, - "y": 900.1, - "type": "target", - "move_mode": "walk", - "action": "" - } - ] + "positions": [ + { + "x": 328.943359375, + "y": 873.60302734375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 293.6943359375, + "y": 903.01806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 294.0498046875, + "y": 900.10302734375, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个.json index 991e1b30..b446caab 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个.json @@ -1,36 +1,38 @@ { - "info": { - "name": "狗粮-璃月-碧水源-石门-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 207.45, - "y": 1573.01, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-碧水源-石门-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 247.99, - "y": 1569.02, - "type": "path", - "move_mode": "fly" - }, - { - "x": 255.89, - "y": 1566.63, - "type": "path", - "move_mode": "walk" - }, - { - "x": 257.75, - "y": 1568.83, - "type": "target", - "move_mode": "walk", - "#": "1" - } - ] + "positions": [ + { + "x": 207.451171875, + "y": 1573.0126953125, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 247.9873046875, + "y": 1569.02294921875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 255.888671875, + "y": 1566.6259765625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 257.748046875, + "y": 1568.83154296875, + "type": "target", + "move_mode": "walk", + "#": "1" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-轻策庄-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-轻策庄-3个.json index 091d8685..92558757 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-轻策庄-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-轻策庄-3个.json @@ -1,115 +1,117 @@ { - "info": { - "name": "狗粮-璃月-碧水源-轻策庄-3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 547.75, - "y": 1766.81, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-碧水源-轻策庄-3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 541.02, - "y": 1764.21, - "type": "path", - "move_mode": "run" - }, - { - "x": 508.18, - "y": 1772.29, - "type": "path", - "move_mode": "run" - }, - { - "x": 500.24, - "y": 1756.26, - "type": "path", - "move_mode": "run" - }, - { - "x": 513.43, - "y": 1743.67, - "type": "path", - "move_mode": "run" - }, - { - "x": 516.45, - "y": 1740.48, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 1 - }, - { - "x": 516.74, - "y": 1739.91, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 1 - }, - { - "x": 533.54, - "y": 1729.45, - "type": "path", - "move_mode": "walk" - }, - { - "x": 560.25, - "y": 1729.83, - "type": "path", - "move_mode": "fly" - }, - { - "x": 581.35, - "y": 1726.26, - "type": "path", - "move_mode": "run" - }, - { - "x": 614.85, - "y": 1708.73, - "type": "path", - "move_mode": "run" - }, - { - "x": 621.16, - "y": 1706.73, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 624.71, - "y": 1715.44, - "type": "path", - "move_mode": "fly" - }, - { - "x": 631.52, - "y": 1716.61, - "type": "path", - "move_mode": "run" - }, - { - "x": 662.25, - "y": 1719.79, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 3 - }, - { - "x": 666.24, - "y": 1722.14, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 547.7548828125, + "y": 1766.8134765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 541.0166015625, + "y": 1764.2119140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 508.18359375, + "y": 1772.28662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 500.2392578125, + "y": 1756.2626953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 513.4267578125, + "y": 1743.66748046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 516.4453125, + "y": 1740.47509765625, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + { + "x": 516.7373046875, + "y": 1739.90576171875, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + + { + "x": 533.5380859375, + "y": 1729.44580078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 560.2451171875, + "y": 1729.82861328125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 581.3544921875, + "y": 1726.26123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 614.8515625, + "y": 1708.7294921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 621.1572265625, + "y": 1706.734375, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 2 + }, + { + "x": 624.7138671875, + "y": 1715.44189453125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 631.5205078125, + "y": 1716.6064453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 662.2451171875, + "y": 1719.79443359375, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 3 + }, + { + "x": 666.2421875, + "y": 1722.142578125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点过近).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点过近).json index a4ff713f..8253e782 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点过近).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点过近).json @@ -1,56 +1,59 @@ { - "info": { - "name": "狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点过近)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 8706.51, - "y": -1574.95, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点过近)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 8810.66, - "y": -1576.58, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8814.9, - "y": -1561.26, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8808.05, - "y": -1562.46, - "type": "target", - "move_mode": "walk", - "action": "pick_around", - "text": "旁边有个干扰点" - }, - { - "x": 8805.09, - "y": -1562.44, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8810.46, - "y": -1559.59, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8831.1, - "y": -1566.24, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - } - ] + "positions": [ + { + "x": 8706.505859375, + "y": -1574.953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8810.6611328125, + "y": -1576.576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8814.896484375, + "y": -1561.26025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8808.0517578125, + "y": -1562.4619140625, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "text": "旁边有个干扰点" + }, + { + "x": 8805.087890625, + "y": -1562.43603515625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8810.458984375, + "y": -1559.58984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8831.1044921875, + "y": -1566.23974609375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json index 0d4f81a9..19265f0c 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json @@ -1,36 +1,36 @@ { - "info": { - "name": "狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9033.3, - "y": -1373.09, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9040.6, - "y": -1400.38, - "type": "path", - "move_mode": "run" - }, - { - "x": 9070.18, - "y": -1411.1, - "type": "path", - "move_mode": "run" - }, - { - "x": 9073.79, - "y": -1415.95, - "type": "target", - "move_mode": "walk", - "action": "" - } - ] + "positions": [ + { + "x": 9033.2998046875, + "y": -1373.08544921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 9040.5986328125, + "y": -1400.38134765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9070.1806640625, + "y": -1411.09912109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9073.78515625, + "y": -1415.9521484375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个 .json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个 .json deleted file mode 100644 index d0fbd58c..00000000 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个 .json +++ /dev/null @@ -1,343 +0,0 @@ -{ - "info": { - "name": "狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个 ", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 7633.83, - "y": -1646.67, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 7637.59, - "y": -1630.18, - "type": "path", - "move_mode": "run" - }, - { - "x": 7708.34, - "y": -1527.46, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 7702.97, - "y": -1523.55, - "type": "path", - "move_mode": "walk" - }, - { - "x": 7701.4, - "y": -1522.22, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 7701.4, - "y": -1522.22, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 7701.4, - "y": -1522.22, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 7703.78, - "y": -1528.45, - "type": "path", - "move_mode": "walk" - }, - { - "x": 7703.19, - "y": -1536.94, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 7703.37, - "y": -1537.9, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 7703.37, - "y": -1537.9, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 7706.06, - "y": -1536.01, - "type": "path", - "move_mode": "walk" - }, - { - "x": 7700.88, - "y": -1536.58, - "type": "path", - "move_mode": "walk" - }, - { - "x": 7727.37, - "y": -1545.81, - "type": "path", - "move_mode": "run" - }, - { - "x": 7732.89, - "y": -1542.59, - "type": "path", - "move_mode": "run" - }, - { - "x": 7737.71, - "y": -1541.71, - "type": "path", - "move_mode": "walk" - }, - { - "x": 7739.06, - "y": -1538.35, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "3" - }, - { - "x": 7738.99, - "y": -1539.18, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "3" - }, - { - "x": 7739.43, - "y": -1539.64, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "3" - }, - { - "x": 7735.01, - "y": -1541.71, - "type": "path", - "move_mode": "walk" - }, - { - "x": 7731.55, - "y": -1543.61, - "type": "path", - "move_mode": "walk" - }, - { - "x": 7731.46, - "y": -1527.24, - "type": "path", - "move_mode": "fly" - }, - { - "x": 7781.77, - "y": -1498.66, - "type": "path", - "move_mode": "run" - }, - { - "x": 7784.13, - "y": -1479.99, - "type": "path", - "move_mode": "run" - }, - { - "x": 7776.47, - "y": -1457.96, - "type": "path", - "move_mode": "run" - }, - { - "x": 7771.85, - "y": -1451.56, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "4" - }, - { - "x": 7772.36, - "y": -1450.9, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "4" - }, - { - "x": 7771.85, - "y": -1451.56, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "4" - } - ], - "positions_not_actived": [ - { - "#": "也有点远,且零散" - }, - { - "x": 7633.7626953125, - "y": -1646.72509765625, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 7609.90234375, - "y": -1627.96533203125, - "type": "path", - "move_mode": "run" - }, - { - "x": 7531.28125, - "y": -1560.5849609375, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 7531.33935546875, - "y": -1560.20458984375, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "5" - }, - { - "x": 7532.33984375, - "y": -1559.291015625, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "5" - }, - { - "x": 7532.33984375, - "y": -1559.291015625, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "5" - }, - { - "x": 7633.8095703125, - "y": -1646.69482421875, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 7643.09619140625, - "y": -1656.97509765625, - "type": "path", - "move_mode": "run" - }, - { - "x": 7741.162109375, - "y": -1743.72314453125, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 7741.15625, - "y": -1743.75146484375, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "6" - }, - { - "x": 7741.15625, - "y": -1743.75146484375, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "6" - }, - { - "x": 7741.15625, - "y": -1743.75146484375, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "6" - }, - { - "x": 7633.8603515625, - "y": -1646.7119140625, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 7642.7734375, - "y": -1768.53564453125, - "type": "path", - "move_mode": "run" - }, - { - "x": 7616.7890625, - "y": -1802.326171875, - "type": "path", - "move_mode": "run" - }, - { - "x": 7558.35693359375, - "y": -1870.9873046875, - "type": "path", - "move_mode": "run" - }, - { - "x": 7557.3818359375, - "y": -1882.10546875, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "7" - }, - { - "x": 7557.34375, - "y": -1882.05615234375, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "7" - }, - { - "x": 7557.34375, - "y": -1882.05615234375, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "7" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个.json new file mode 100644 index 00000000..3ca18911 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个.json @@ -0,0 +1,361 @@ +{ + "info": { + "name": "狗粮-纳塔-坚岩隘谷-回声之子南-4个/7个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "x": 7633.83349609375, + "y": -1646.67431640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7637.58642578125, + "y": -1630.18017578125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 7708.3408203125, + "y": -1527.4580078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7702.9697265625, + "y": -1523.55126953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 7703.7802734375, + "y": -1528.4541015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7703.18701171875, + "y": -1536.9375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7703.3671875, + "y": -1537.8984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7703.3671875, + "y": -1537.8984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7706.0556640625, + "y": -1536.0087890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7700.876953125, + "y": -1536.57666015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 7727.3740234375, + "y": -1545.806640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7732.88671875, + "y": -1542.5927734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 7737.70751953125, + "y": -1541.71484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 7739.0556640625, + "y": -1538.3515625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 7738.9873046875, + "y": -1539.18212890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 7739.42822265625, + "y": -1539.6357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 7735.0078125, + "y": -1541.712890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7731.54833984375, + "y": -1543.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7731.4609375, + "y": -1527.24267578125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 7781.7685546875, + "y": -1498.65966796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 7784.13427734375, + "y": -1479.99072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7776.4736328125, + "y": -1457.95556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7771.8525390625, + "y": -1451.56494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 7772.35595703125, + "y": -1450.89892578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 7771.8525390625, + "y": -1451.56494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + } + + ], + + + + "positions_not_actived": [ + { "#": "也有点远,且零散" }, + + { + "x": 7633.7626953125, + "y": -1646.72509765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7609.90234375, + "y": -1627.96533203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 7531.28125, + "y": -1560.5849609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7531.33935546875, + "y": -1560.20458984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 7532.33984375, + "y": -1559.291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 7532.33984375, + "y": -1559.291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + + + + { + "x": 7633.8095703125, + "y": -1646.69482421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7643.09619140625, + "y": -1656.97509765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7741.162109375, + "y": -1743.72314453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + + + + { + "x": 7633.8603515625, + "y": -1646.7119140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7642.7734375, + "y": -1768.53564453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 7616.7890625, + "y": -1802.326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 7558.35693359375, + "y": -1870.9873046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 7557.3818359375, + "y": -1882.10546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + } + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,未测试).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,未测试).json index 851bbcff..59b6b840 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,未测试).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,未测试).json @@ -1,84 +1,89 @@ { - "info": { - "name": "狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,未测试)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 10030.4, - "y": -643.4, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,未测试)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 10023.73, - "y": -593.17, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 10021.34, - "y": -586.47, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 10025.78, - "y": -581.22, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 10026.53, - "y": -577.27, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 10011.24, - "y": -595.53, - "type": "path", - "move_mode": "run" - }, - { - "x": 9978.56, - "y": -565.25, - "type": "path", - "move_mode": "run" - }, - { - "x": 9980.94, - "y": -509.33, - "type": "path", - "move_mode": "run" - }, - { - "x": 9993.75, - "y": -506.85, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 10030.4, - "y": -643.4, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 10030.11, - "y": -793.73, - "type": "target", - "move_mode": "fly", - "#": "5" - } - ] + "positions": [ + { + "x": 10030.400390625, + "y": -643.39599609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 10023.7294921875, + "y": -593.17431640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 10021.3388671875, + "y": -586.47119140625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 10025.775390625, + "y": -581.22021484375, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 10026.533203125, + "y": -577.2685546875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + + { + "x": 10011.244140625, + "y": -595.53173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9978.5556640625, + "y": -565.25, + "type": "path", + "move_mode": "run" + }, + { + "x": 9980.9423828125, + "y": -509.32763671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9993.7470703125, + "y": -506.8466796875, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + + + { + "x": 10030.400390625, + "y": -643.39599609375, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 10030.107421875, + "y": -793.728515625, + "type": "target", + "move_mode": "fly", + "#": "5" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个/3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个/3个.json index 71e09802..7756df29 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个/3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个/3个.json @@ -1,97 +1,105 @@ { - "info": { - "name": "狗粮-纳塔-涌流地-副本周边-2个/3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9038.7, - "y": -2429.33, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-涌流地-副本周边-2个/3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 8992.79, - "y": -2437.38, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8995.99, - "y": -2443.62, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8996.5, - "y": -2449.58, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 8988.03, - "y": -2444.36, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8980.43, - "y": -2457.68, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8989.3, - "y": -2475.47, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9030.37, - "y": -2474.46, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9078.77, - "y": -2466.06, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9081.55, - "y": -2470.56, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - } - ], - "positions_not_actived": [ - { - "x": 9009.0859375, - "y": -2407.1640625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9013.94921875, - "y": -2402.1162109375, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "重兵把守,且镜头摇晃" - }, - { - "x": 8996.421875, - "y": -2403.314453125, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 9038.7001953125, + "y": -2429.3349609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8992.79296875, + "y": -2437.3828125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 8995.9912109375, + "y": -2443.6220703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8996.5029296875, + "y": -2449.580078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": 8988.033203125, + "y": -2444.35546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8980.4296875, + "y": -2457.68359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8989.3017578125, + "y": -2475.466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9030.365234375, + "y": -2474.458984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9078.7666015625, + "y": -2466.0625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9081.55078125, + "y": -2470.5576171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + } + + ], + + + + "positions_not_actived": [ + { + "x": 9009.0859375, + "y": -2407.1640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9013.94921875, + "y": -2402.1162109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "重兵把守,且镜头摇晃" + }, + + { + "x": 8996.421875, + "y": -2403.314453125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json index e8c8a574..483a4102 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json @@ -1,36 +1,36 @@ { - "info": { - "name": "狗粮-纳塔-涌流地-北部山洞-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 8940.28, - "y": -2306.31, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-涌流地-北部山洞-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 8944.49, - "y": -2295.7, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8948.71, - "y": -2285.41, - "type": "path", - "move_mode": "run" - }, - { - "x": 8941.63, - "y": -2265.15, - "type": "target", - "move_mode": "run", - "action": "" - } - ] + "positions": [ + { + "x": 8940.2763671875, + "y": -2306.306640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8944.4853515625, + "y": -2295.7021484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8948.71484375, + "y": -2285.4072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8941.634765625, + "y": -2265.154296875, + "type": "target", + "move_mode": "run", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-翘枝崖-花羽会北-4个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-翘枝崖-花羽会北-4个-f.json index 3d6b33c0..34edaa4c 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-翘枝崖-花羽会北-4个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-翘枝崖-花羽会北-4个-f.json @@ -1,86 +1,92 @@ { - "info": { - "name": "狗粮-纳塔-翘枝崖-花羽会北-4个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9548.27, - "y": -1116.56, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "狗粮-纳塔-翘枝崖-花羽会北-4个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9594.65, - "y": -1062.69, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(1.5),click", - "//": "无伤下落" - }, - { - "x": 9594.65, - "y": -1062.69, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9548.27, - "y": -1116.56, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9491.32, - "y": -1004.78, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "无伤下落" - }, - { - "x": 9491.32, - "y": -1004.78, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 9535.15, - "y": -996.33, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(1.5),click", - "//": "无伤下落" - }, - { - "x": 9535.15, - "y": -996.33, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 9536.79, - "y": -993.87, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 9539.59, - "y": -990.89, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 9548.2724609375, + "y": -1116.5625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9594.6513671875, + "y": -1062.68896484375, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(1.5),click", + "//": "无伤下落" + }, + { + "x": 9594.6513671875, + "y": -1062.68896484375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + + { + "x": 9548.2724609375, + "y": -1116.5625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9491.322265625, + "y": -1004.78271484375, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "无伤下落" + }, + { + "x": 9491.322265625, + "y": -1004.78271484375, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": 9535.1474609375, + "y": -996.32763671875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(1.5),click", + "//": "无伤下落" + }, + { + "x": 9535.1474609375, + "y": -996.32763671875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9536.7880859375, + "y": -993.86572265625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9539.587890625, + "y": -990.88818359375, + "type": "path", + "move_mode": "walk" + } + + + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json index 43b18740..663d0041 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json @@ -1,31 +1,31 @@ { - "info": { - "name": "狗粮-纳塔-踞石山-东-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 7746.42, - "y": -2250.61, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-踞石山-东-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 7694.32, - "y": -2251.82, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 7681.84, - "y": -2253.39, - "type": "target", - "move_mode": "walk", - "action": "" - } - ] + "positions": [ + { + "x": 7746.41650390625, + "y": -2250.6083984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7694.318359375, + "y": -2251.8212890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7681.8447265625, + "y": -2253.39453125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个.json index f9775f3a..a6747151 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个.json @@ -1,43 +1,43 @@ { - "info": { - "name": "狗粮-纳塔-踞石山-悬木人-2个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 8439.61, - "y": -2107.01, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-踞石山-悬木人-2个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 8450.99, - "y": -2090.32, - "type": "target", - "move_mode": "run", - "#": "1" - }, - { - "x": 8422.84, - "y": -2110.38, - "type": "path", - "move_mode": "run" - }, - { - "x": 8437.63, - "y": -2109.39, - "type": "path", - "move_mode": "run" - }, - { - "x": 8437.14, - "y": -2112.13, - "type": "target", - "move_mode": "walk", - "#": "2" - } - ] + "positions": [ + { + "x": 8439.60546875, + "y": -2107.0107421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8450.9892578125, + "y": -2090.3232421875, + "type": "target", + "move_mode": "run", + "#": "1" + }, + { + "x": 8422.841796875, + "y": -2110.37890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8437.62890625, + "y": -2109.3857421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8437.142578125, + "y": -2112.12890625, + "type": "target", + "move_mode": "walk", + "#": "2" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-蒙德-龙脊雪山-南-4个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-蒙德-龙脊雪山-南-4个-f.json index adc41d08..0e293e23 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-蒙德-龙脊雪山-南-4个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-蒙德-龙脊雪山-南-4个-f.json @@ -1,98 +1,102 @@ { - "info": { - "name": "狗粮-蒙德-龙脊雪山-南-4个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -705.48, - "y": 925.71, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-蒙德-龙脊雪山-南-4个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -708.37, - "y": 926.78, - "type": "path", - "move_mode": "run" - }, - { - "x": -736.34, - "y": 935.13, - "type": "path", - "move_mode": "run" - }, - { - "x": -751.37, - "y": 930.71, - "type": "path", - "move_mode": "run", - "//": "drump down" - }, - { - "x": -790.17, - "y": 919.02, - "type": "path", - "move_mode": "run" - }, - { - "x": -785.48, - "y": 890.25, - "type": "path", - "move_mode": "walk" - }, - { - "x": -784.77, - "y": 881.96, - "type": "path", - "move_mode": "walk" - }, - { - "x": -782.64, - "y": 877.59, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": -783.3, - "y": 875.15, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": -783.51, - "y": 875.98, - "type": "path", - "move_mode": "walk", - "action": "pick_around", - "#": "1 2" - }, - { - "x": -790.45, - "y": 876.91, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": -791.28, - "y": 876.31, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": -791.23, - "y": 875.82, - "type": "path", - "move_mode": "walk", - "action": "pick_around", - "#": "3 4" - } - ] + "positions": [ + { + "x": -705.4814453125, + "y": 925.70703125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -708.37109375, + "y": 926.7841796875, + "type": "path", + "move_mode": "run" + }, + { + "x": -736.3388671875, + "y": 935.12744140625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -751.365234375, + "y": 930.7138671875, + "type": "path", + "move_mode": "run", + "//": "drump down" + }, + + { + "x": -790.1748046875, + "y": 919.01904296875, + "type": "path", + "move_mode": "run" + }, + { + "x": -785.4814453125, + "y": 890.2529296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -784.7685546875, + "y": 881.95654296875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -782.638671875, + "y": 877.58935546875, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": -783.2958984375, + "y": 875.14697265625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": -783.5126953125, + "y": 875.98046875, + "type": "path", + "move_mode": "walk", + "action": "pick_around", + "#": "1 2" + }, + + { + "x": -790.4453125, + "y": 876.91455078125, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": -791.279296875, + "y": 876.30517578125, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": -791.228515625, + "y": 875.82080078125, + "type": "path", + "move_mode": "walk", + "action": "pick_around", + "#": "3 4" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-上风蚀地-东北营地-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-上风蚀地-东北营地-2个.json index 005dd84b..2b653d0f 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-上风蚀地-东北营地-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-上风蚀地-东北营地-2个.json @@ -1,81 +1,82 @@ { - "info": { - "name": "狗粮-须弥-上风蚀地-东北营地-2个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4209.84, - "y": -2712.04, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-上风蚀地-东北营地-2个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4176.16, - "y": -2726.15, - "type": "path", - "move_mode": "run" - }, - { - "x": 4166.14, - "y": -2730.45, - "type": "path", - "move_mode": "run" - }, - { - "x": 4140.99, - "y": -2729.94, - "type": "path", - "move_mode": "run" - }, - { - "x": 4135.52, - "y": -2738.94, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4135.29, - "y": -2743.04, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4135.99, - "y": -2744.67, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4131.21, - "y": -2734.07, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4120.27, - "y": -2707.25, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4119.09, - "y": -2703.15, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4117.6, - "y": -2700.87, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4209.83935546875, + "y": -2712.0439453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4176.16455078125, + "y": -2726.15234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4166.1396484375, + "y": -2730.453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4140.98681640625, + "y": -2729.94140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4135.51513671875, + "y": -2738.9423828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4135.29443359375, + "y": -2743.03515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4135.99365234375, + "y": -2744.66796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4131.20654296875, + "y": -2734.072265625, + "type": "fly", + "move_mode": "fly" + }, + { + "x": 4120.2685546875, + "y": -2707.25390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4119.091796875, + "y": -2703.1494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4117.6025390625, + "y": -2700.8681640625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-4个.json index 16eb6dd7..ef0bf94d 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-4个.json @@ -1,147 +1,157 @@ { - "info": { - "name": "狗粮-须弥-下风蚀地-阿如村-4个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4096.02, - "y": -2025.94, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-下风蚀地-阿如村-4个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4098.26, - "y": -2008.1, - "type": "path", - "move_mode": "run" - }, - { - "x": 4093.42, - "y": -1986.21, - "type": "path", - "move_mode": "run" - }, - { - "x": 4092.92, - "y": -1983.71, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4093.37, - "y": -1981.9, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4094.8, - "y": -1983.18, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4091.06, - "y": -1985.25, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4096.03, - "y": -2025.91, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4053.38, - "y": -2037.42, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4056.75, - "y": -2034.91, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4056.78, - "y": -2034.95, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4096.02, - "y": -2025.94, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4121.6, - "y": -2046.7, - "type": "path", - "move_mode": "run" - }, - { - "x": 4201.29, - "y": -2050.66, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4200.23, - "y": -2047.05, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 4200.05, - "y": -2046.39, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 4212.25, - "y": -2026.87, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4215.07, - "y": -2024.91, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "4" - }, - { - "x": 4215.03, - "y": -2024.92, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "4" - } - ] + "positions": [ + { + "x": 4096.0234375, + "y": -2025.943359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4098.26416015625, + "y": -2008.10498046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4093.42138671875, + "y": -1986.2099609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4092.91748046875, + "y": -1983.70556640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4093.37158203125, + "y": -1981.90478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4094.7978515625, + "y": -1983.18310546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4091.06103515625, + "y": -1985.2490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": 4096.03369140625, + "y": -2025.90576171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4053.384765625, + "y": -2037.41748046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4056.751953125, + "y": -2034.9052734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.7841796875, + "y": -2034.953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + + { + "x": 4096.01708984375, + "y": -2025.9365234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4121.60498046875, + "y": -2046.70361328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4201.2890625, + "y": -2050.662109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4200.22802734375, + "y": -2047.04541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4200.05126953125, + "y": -2046.39306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 4212.25146484375, + "y": -2026.8671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4215.06982421875, + "y": -2024.91357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4215.0322265625, + "y": -2024.9189453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-北-1个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-北-1个-f.json index 4740c26e..25d990bc 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-北-1个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-北-1个-f.json @@ -1,36 +1,36 @@ { - "info": { - "name": "狗粮-须弥-下风蚀地-阿如村-北-1个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4271.57, - "y": -1666.74, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-下风蚀地-阿如村-北-1个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4283.02, - "y": -1671.54, - "type": "path", - "move_mode": "run" - }, - { - "x": 4286.06, - "y": -1672.96, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 4287.43, - "y": -1670.16, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4271.57421875, + "y": -1666.736328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4283.01953125, + "y": -1671.53515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4286.05810546875, + "y": -1672.95751953125, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 4287.4296875, + "y": -1670.16015625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json index 7577f3b3..3deafc20 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json @@ -1,70 +1,71 @@ { - "info": { - "name": "狗粮-须弥-下风蚀地-阿如村-西北-2个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4409.72, - "y": -1874.57, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-下风蚀地-阿如村-西北-2个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4373.35, - "y": -1893.97, - "type": "path", - "move_mode": "run" - }, - { - "x": 4363.15, - "y": -1915.46, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4361.56, - "y": -1909.12, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4358.82, - "y": -1909.56, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 1 - }, - { - "x": 4362.74, - "y": -1932.55, - "type": "path", - "move_mode": "run" - }, - { - "x": 4341.41, - "y": -1960.34, - "type": "path", - "move_mode": "run" - }, - { - "x": 4338.87, - "y": -1956.06, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 4334.5, - "y": -1958.5, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4409.71923828125, + "y": -1874.5693359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4373.34716796875, + "y": -1893.97265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4363.154296875, + "y": -1915.46044921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4361.55615234375, + "y": -1909.1201171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4358.82275390625, + "y": -1909.55712890625, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + + { + "x": 4362.74169921875, + "y": -1932.55029296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4341.41357421875, + "y": -1960.34033203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4338.86572265625, + "y": -1956.05712890625, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 2 + }, + { + "x": 4334.5, + "y": -1958.50048828125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json index c7de9722..6b3e83c0 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json @@ -1,168 +1,187 @@ { - "info": { - "name": "狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4592.2, - "y": -647.7, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4567.78, - "y": -719.37, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4535.9, - "y": -785.62, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4517.23, - "y": -780.35, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4515.07, - "y": -779.16, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4513.37, - "y": -781.27, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4505.1, - "y": -793.54, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4518.58, - "y": -786.14, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4519.57, - "y": -784.47, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4592.18, - "y": -647.52, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4444.19, - "y": -667.16, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4306.77, - "y": -684.88, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4303.3, - "y": -675.77, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4304.41, - "y": -662.54, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4306.87, - "y": -697.21, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4267.66, - "y": -751.38, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4267.07, - "y": -804.91, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4262.04, - "y": -810.85, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4260.43, - "y": -810.04, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4261.88, - "y": -811.85, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4273.14, - "y": -811.98, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4265.38, - "y": -831.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4276.58, - "y": -881.87, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4279.2, - "y": -888.08, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4279.69, - "y": -890.29, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4592.19921875, + "y": -647.70263671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4567.77783203125, + "y": -719.373046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4535.90087890625, + "y": -785.623046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4517.232421875, + "y": -780.34912109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4515.06689453125, + "y": -779.15966796875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + + { + "x": 4513.36767578125, + "y": -781.26904296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4505.10107421875, + "y": -793.541015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4518.576171875, + "y": -786.13818359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4519.5732421875, + "y": -784.46630859375, + "type": "path", + "move_mode": "walk" + }, + + + + + + + { + "x": 4592.17822265625, + "y": -647.51611328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4444.19384765625, + "y": -667.16064453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4306.77294921875, + "y": -684.884765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4303.3037109375, + "y": -675.76953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4304.4130859375, + "y": -662.53515625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4306.87109375, + "y": -697.2109375, + "type": "path", + "move_mode": "fly" + }, + + + + { + "x": 4267.6591796875, + "y": -751.380859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4267.06689453125, + "y": -804.9140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4262.0390625, + "y": -810.849609375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4260.43115234375, + "y": -810.03857421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4261.87646484375, + "y": -811.853515625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4273.13818359375, + "y": -811.97998046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4265.3798828125, + "y": -831.021484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4276.578125, + "y": -881.87353515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4279.19921875, + "y": -888.078125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4279.685546875, + "y": -890.28564453125, + "type": "path", + "move_mode": "walk" + } + + + + + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-圣显厅西-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-圣显厅西-3个.json index 451d8a92..89ae6a1c 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-圣显厅西-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-圣显厅西-3个.json @@ -1,210 +1,220 @@ { - "info": { - "name": "狗粮-须弥-千壑沙地-圣显厅西-3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4777.31, - "y": -1434.55, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-千壑沙地-圣显厅西-3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4840.98, - "y": -1410.38, - "type": "path", - "move_mode": "run" - }, - { - "x": 4843.5, - "y": -1402.58, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4837.75, - "y": -1402.74, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4834.5, - "y": -1400.3, - "type": "path", - "move_mode": "run" - }, - { - "x": 4815.84, - "y": -1286.49, - "type": "path", - "move_mode": "run" - }, - { - "x": 4794.83, - "y": -1291.4, - "type": "path", - "move_mode": "run" - }, - { - "x": 4794.83, - "y": -1291.4, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4794.21, - "y": -1292.21, - "type": "path", - "move_mode": "run" - }, - { - "x": 4803.33, - "y": -1269.16, - "type": "path", - "move_mode": "run" - }, - { - "x": 4782.04, - "y": -1268.5, - "type": "path", - "move_mode": "run" - }, - { - "x": 4773.73, - "y": -1268.28, - "type": "path", - "move_mode": "run" - }, - { - "x": 4770.61, - "y": -1276.41, - "type": "path", - "move_mode": "run" - }, - { - "x": 4757.5, - "y": -1276.82, - "type": "path", - "move_mode": "run" - }, - { - "x": 4752.57, - "y": -1269.23, - "type": "path", - "move_mode": "run" - }, - { - "x": 4743.07, - "y": -1265.86, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4743.07, - "y": -1265.86, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 4742.53, - "y": -1267.22, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 4741.55, - "y": -1266.9, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 4740.52, - "y": -1264.25, - "type": "path", - "move_mode": "fly" - } - ], - "positions0": [ - { - "x": 4773.03271484375, - "y": -1432.97216796875, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4821.62890625, - "y": -1436.17529296875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4807.806640625, - "y": -1401.18603515625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4812.33447265625, - "y": -1370.73486328125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4797.80810546875, - "y": -1313.27294921875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4732.00048828125, - "y": -1193.6533203125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4725.24658203125, - "y": -1198.544921875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4724.17578125, - "y": -1198.8515625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4722.3232421875, - "y": -1199.953125, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4741.50537109375, - "y": -1267.5439453125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4717.30224609375, - "y": -1201.232421875, - "type": "path", - "move_mode": "fly" - } - ] + "positions": [ + + + + + { + "x": 4777.30859375, + "y": -1434.5498046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4840.98388671875, + "y": -1410.3779296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4843.49609375, + "y": -1402.5771484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4837.75244140625, + "y": -1402.7421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4834.49658203125, + "y": -1400.30078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4815.84423828125, + "y": -1286.494140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4794.83203125, + "y": -1291.39697265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4794.83203125, + "y": -1291.39697265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4794.212890625, + "y": -1292.20751953125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4803.328125, + "y": -1269.1611328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4782.0380859375, + "y": -1268.50390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4773.7275390625, + "y": -1268.28466796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4770.61279296875, + "y": -1276.41064453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4757.501953125, + "y": -1276.81787109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4752.56689453125, + "y": -1269.2265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4743.0732421875, + "y": -1265.8564453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4743.0732421875, + "y": -1265.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4742.533203125, + "y": -1267.22021484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4741.55419921875, + "y": -1266.90478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4740.51708984375, + "y": -1264.25244140625, + "type": "path", + "move_mode": "fly" + } + + + + ], + + "positions0": [ + { + "x": 4773.03271484375, + "y": -1432.97216796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4821.62890625, + "y": -1436.17529296875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4807.806640625, + "y": -1401.18603515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4812.33447265625, + "y": -1370.73486328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4797.80810546875, + "y": -1313.27294921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4732.00048828125, + "y": -1193.6533203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4725.24658203125, + "y": -1198.544921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4724.17578125, + "y": -1198.8515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4722.3232421875, + "y": -1199.953125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4741.50537109375, + "y": -1267.5439453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4717.30224609375, + "y": -1201.232421875, + "type": "path", + "move_mode": "fly" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-塔尼特露营地-4个/6个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-塔尼特露营地-4个/6个.json index 9c86c850..1270876a 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-塔尼特露营地-4个/6个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-塔尼特露营地-4个/6个.json @@ -1,157 +1,165 @@ { - "info": { - "name": "狗粮-须弥-千壑沙地-塔尼特露营地-4个/6个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 5063.79, - "y": -1587.71, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-千壑沙地-塔尼特露营地-4个/6个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 5093.36, - "y": -1546.27, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 5097.89, - "y": -1541.69, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 5082.4, - "y": -1556.52, - "type": "path", - "move_mode": "run" - }, - { - "x": 5064.3, - "y": -1580.2, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 5064.3, - "y": -1580.2, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 5070.91, - "y": -1575.8, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5114.79, - "y": -1569.86, - "type": "path", - "move_mode": "run" - }, - { - "x": 5119.69, - "y": -1569.56, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 5125.97, - "y": -1570.0, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5163.47, - "y": -1561.75, - "type": "path", - "move_mode": "run" - }, - { - "x": 5170.15, - "y": -1559.32, - "type": "target", - "move_mode": "walk", - "#": "4" - } - ], - "positions_not_actived": [ - { - "#": "偏远" - }, - { - "x": 5063.38623046875, - "y": -1587.76904296875, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 5047.763671875, - "y": -1587.5712890625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4944.57958984375, - "y": -1534.50390625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4955.68017578125, - "y": -1491.10595703125, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4958.37353515625, - "y": -1493.20166015625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4960.90771484375, - "y": -1494.58642578125, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 4966.5419921875, - "y": -1489.2705078125, - "type": "path", - "move_mode": "fly" - }, - { - "x": 5005.3583984375, - "y": -1391.74658203125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5023.9091796875, - "y": -1408.6962890625, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 5026.16552734375, - "y": -1411.1865234375, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + + { + "x": 5063.78662109375, + "y": -1587.7099609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5093.35791015625, + "y": -1546.265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5097.888671875, + "y": -1541.68798828125, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 5082.39697265625, + "y": -1556.51611328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5064.29833984375, + "y": -1580.19775390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5064.29833984375, + "y": -1580.19775390625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": 5070.91015625, + "y": -1575.80419921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5114.79345703125, + "y": -1569.8623046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5119.69091796875, + "y": -1569.5595703125, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + { + "x": 5125.9716796875, + "y": -1570, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5163.4697265625, + "y": -1561.7490234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 5170.14501953125, + "y": -1559.32421875, + "type": "target", + "move_mode": "walk", + "#": "4" + } + + ], + + + + "positions_not_actived": [ + { "#": "偏远" }, + + { + "x": 5063.38623046875, + "y": -1587.76904296875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5047.763671875, + "y": -1587.5712890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4944.57958984375, + "y": -1534.50390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4955.68017578125, + "y": -1491.10595703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4958.37353515625, + "y": -1493.20166015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4960.90771484375, + "y": -1494.58642578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 4966.5419921875, + "y": -1489.2705078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5005.3583984375, + "y": -1391.74658203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5023.9091796875, + "y": -1408.6962890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 5026.16552734375, + "y": -1411.1865234375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-神的棋盘-1个/3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-神的棋盘-1个/3个.json index abe55b25..d28920b5 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-神的棋盘-1个/3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-神的棋盘-1个/3个.json @@ -1,114 +1,119 @@ { - "info": { - "name": "狗粮-须弥-千壑沙地-神的棋盘-1个/3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 5759.45, - "y": -1307.62, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-千壑沙地-神的棋盘-1个/3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 5763.58, - "y": -1304.89, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5761.02, - "y": -1303.57, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 5760.51, - "y": -1302.27, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 5760.51, - "y": -1302.27, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - } - ], - "positions_not_actived": [ - { - "#": "重兵把守+交互干扰" - }, - { - "x": 5766, - "y": -1289.69482421875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5767.05615234375, - "y": -1284.27783203125, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 5767.15869140625, - "y": -1282.28173828125, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 5767.859375, - "y": -1282.056640625, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 5768.44140625, - "y": -1281.2861328125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5763.10791015625, - "y": -1282.4404296875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5760.3447265625, - "y": -1271.13818359375, - "type": "target", - "move_mode": "walk", - "action": "pick_around", - "No.": "3" - }, - { - "x": 5762.13671875, - "y": -1268.00830078125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5760.24267578125, - "y": -1271.06005859375, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 5759.4482421875, + "y": -1307.61572265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5763.57861328125, + "y": -1304.89208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5761.02490234375, + "y": -1303.5673828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 5760.51416015625, + "y": -1302.2685546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 5760.51416015625, + "y": -1302.2685546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + } + + ], + + + + "positions_not_actived": [ + {"#": "重兵把守+交互干扰"}, + + { + "x": 5766, + "y": -1289.69482421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5767.05615234375, + "y": -1284.27783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5767.15869140625, + "y": -1282.28173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5767.859375, + "y": -1282.056640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5768.44140625, + "y": -1281.2861328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5763.10791015625, + "y": -1282.4404296875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5760.3447265625, + "y": -1271.13818359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "No.": "3" + }, + { + "x": 5762.13671875, + "y": -1268.00830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5760.24267578125, + "y": -1271.06005859375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json index 205ca89c..16d27288 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json @@ -1,49 +1,49 @@ { - "info": { - "name": "狗粮-须弥-千壑沙地-镔铁沙丘-北-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4272.94, - "y": -520.68, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-千壑沙地-镔铁沙丘-北-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4268.96, - "y": -501.09, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4294.59, - "y": -436.29, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4352.73, - "y": -407.06, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4352.74, - "y": -407.06, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4355.04, - "y": -407.07, - "type": "path", - "move_mode": "fly" - } - ] + "positions": [ + { + "x": 4272.93505859375, + "y": -520.68310546875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4268.95654296875, + "y": -501.08984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4294.5927734375, + "y": -436.28564453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4352.73486328125, + "y": -407.056640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4352.744140625, + "y": -407.0634765625, + "type": "target", + "move_mode": "walk", + "action":"pick_around" + }, + { + "x": 4355.04443359375, + "y": -407.06640625, + "type": "path", + "move_mode": "fly" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json index 4a4d5ef0..848f6e01 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json @@ -1,100 +1,105 @@ { - "info": { - "name": "狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3993.72, - "y": -989.32, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4009.53, - "y": -758.58, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4010.82, - "y": -758.7, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4014.82, - "y": -756.42, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4017.33, - "y": -754.85, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4018.39, - "y": -760.49, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4019.96, - "y": -761.73, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4020.33, - "y": -767.5, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4017.32, - "y": -771.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4015.41, - "y": -772.02, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4012.55, - "y": -772.75, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4008.64, - "y": -771.82, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4012.79, - "y": -774.99, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4014.16, - "y": -771.82, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3993.71533203125, + "y": -989.3232421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4009.52734375, + "y": -758.580078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + + { + "x": 4010.82275390625, + "y": -758.70361328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4014.82177734375, + "y": -756.4248046875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4017.3349609375, + "y": -754.85498046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4018.39013671875, + "y": -760.48876953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4019.95849609375, + "y": -761.73486328125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4020.333984375, + "y": -767.498046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4017.3203125, + "y": -771.0205078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4015.41357421875, + "y": -772.01953125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4012.546875, + "y": -772.7451171875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4008.64013671875, + "y": -771.82275390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4012.78955078125, + "y": -774.98583984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4014.15966796875, + "y": -771.81787109375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json index 554735ab..31971c6c 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json @@ -1,124 +1,136 @@ { - "info": { - "name": "狗粮-须弥-护世森-卡萨扎莱宫南-2个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2532.0, - "y": -144.72, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-护世森-卡萨扎莱宫南-2个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2587.13, - "y": -124.62, - "type": "path", - "move_mode": "run" - }, - { - "x": 2594.73, - "y": -119.92, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2595.19, - "y": -119.69, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2593.3, - "y": -116.98, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2596.21, - "y": -115.72, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2597.29, - "y": -116.53, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2598.08, - "y": -121.07, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2596.22, - "y": -121.92, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2599.23, - "y": -118.88, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2617.57, - "y": -122.34, - "type": "path", - "move_mode": "run" - }, - { - "x": 2639.77, - "y": -135.44, - "type": "path", - "move_mode": "run", - "?": "swin" - }, - { - "x": 2652.16, - "y": -146.67, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2653.01, - "y": -147.19, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2650.61, - "y": -146.19, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2654.81, - "y": -144.01, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2656.55, - "y": -148.0, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2651.72, - "y": -150.64, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 2531.99609375, + "y": -144.71728515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2587.1318359375, + "y": -124.6181640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2594.72607421875, + "y": -119.916015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2595.1875, + "y": -119.6875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2593.3017578125, + "y": -116.9755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.21142578125, + "y": -115.7158203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2597.29296875, + "y": -116.5322265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2598.080078125, + "y": -121.06884765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.21533203125, + "y": -121.9150390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2599.23388671875, + "y": -118.87890625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 2617.57177734375, + "y": -122.33984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 2639.771484375, + "y": -135.43994140625, + "type": "path", + "move_mode": "run", + "?": "swin" + }, + + + + + + + { + "x": 2652.158203125, + "y": -146.6689453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2653.005859375, + "y": -147.19140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2650.6064453125, + "y": -146.19384765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2654.810546875, + "y": -144.01318359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2656.55078125, + "y": -148.0029296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2651.720703125, + "y": -150.6376953125, + "type": "path", + "move_mode": "walk" + } + + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个/3个(重兵把守+交互干扰).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个/3个(重兵把守+交互干扰).json index 7972c04b..46644b78 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个/3个(重兵把守+交互干扰).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个/3个(重兵把守+交互干扰).json @@ -1,56 +1,61 @@ { - "info": { - "name": "狗粮-须弥-护世森-无郁稠林南-2个/3个(重兵把守+交互干扰)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2399.96, - "y": 143.54, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-护世森-无郁稠林南-2个/3个(重兵把守+交互干扰)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2349.4, - "y": 116.19, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 2346.43, - "y": 107.6, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2346.83, - "y": 105.7, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2347.23, - "y": 106.94, - "type": "target", - "move_mode": "walk", - "action": "" - } - ], - "positions_not_actived": [ - { - "#": "重兵把守+交互干扰,只拿前两个" - }, - { - "x": 2349.12744140625, - "y": 102.51708984375, - "type": "target", - "move_mode": "walk", - "action": "" - } - ] + "positions": [ + { + "x": 2399.96240234375, + "y": 143.5400390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2349.39794921875, + "y": 116.18505859375, + "type": "path", + "move_mode": "fly", + "action":"stop_flying" + }, + + { + "x": 2346.42626953125, + "y": 107.6015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2346.830078125, + "y": 105.70263671875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + + { + "x": 2347.23046875, + "y": 106.94287109375, + "type": "target", + "move_mode": "walk", + "action":"" + } + + ], + + + + "positions_not_actived": [ + {"#": "重兵把守+交互干扰,只拿前两个"}, + + { + "x": 2349.12744140625, + "y": 102.51708984375, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-甘露花海北-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-甘露花海北-4个.json index adc38d04..df9eb285 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-甘露花海北-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-甘露花海北-4个.json @@ -1,133 +1,140 @@ { - "info": { - "name": "狗粮-须弥-浮罗囿-甘露花海北-4个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 5789.86, - "y": 797.71, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-浮罗囿-甘露花海北-4个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 5720.46, - "y": 785.21, - "type": "path", - "move_mode": "run" - }, - { - "x": 5625.76, - "y": 820.83, - "type": "path", - "move_mode": "run" - }, - { - "x": 5607.32, - "y": 835.75, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 5608.39, - "y": 822.25, - "type": "target", - "move_mode": "run", - "action": "", - "#": 1 - }, - { - "x": 5605.56, - "y": 827.44, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5591.19, - "y": 825.44, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 5590.43, - "y": 825.49, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 5616.74, - "y": 871.4, - "type": "path", - "move_mode": "run" - }, - { - "x": 5627.05, - "y": 895.59, - "type": "path", - "move_mode": "run" - }, - { - "x": 5633.64, - "y": 892.65, - "type": "path", - "move_mode": "fly" - }, - { - "x": 5639.48, - "y": 893.8, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 3 - }, - { - "x": 5639.46, - "y": 893.81, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 3 - }, - { - "x": 5603.15, - "y": 890.65, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 5546.05, - "y": 938.89, - "type": "path", - "move_mode": "run" - }, - { - "x": 5535.75, - "y": 932.05, - "type": "path", - "move_mode": "run" - }, - { - "x": 5531.74, - "y": 927.46, - "type": "path", - "move_mode": "fly" - }, - { - "x": 5529.6, - "y": 913.49, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 4 - } - ] + "positions": [ + { + "x": 5789.85888671875, + "y": 797.70654296875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5720.45654296875, + "y": 785.21142578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5625.75732421875, + "y": 820.8271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 5607.32177734375, + "y": 835.74560546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 5608.39453125, + "y": 822.24951171875, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + + { + "x": 5605.56103515625, + "y": 827.435546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5591.1875, + "y": 825.44140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5590.427734375, + "y": 825.49169921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 5616.744140625, + "y": 871.39794921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5627.0537109375, + "y": 895.58935546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5633.63671875, + "y": 892.6474609375, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 5639.48388671875, + "y": 893.79638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 5639.455078125, + "y": 893.81201171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + { + "x": 5603.14794921875, + "y": 890.646484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 5546.05126953125, + "y": 938.8857421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5535.748046875, + "y": 932.04736328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5531.740234375, + "y": 927.4580078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5529.603515625, + "y": 913.49169921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json index 9874269f..ab2b0a17 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json @@ -1,148 +1,150 @@ { - "info": { - "name": "狗粮-须弥-浮罗囿-聚香海岸东-3个(远)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 6060.09, - "y": 855.37, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-浮罗囿-聚香海岸东-3个(远)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 6080.68, - "y": 861.54, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6116.58, - "y": 878.51, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6129.6, - "y": 866.37, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6139.06, - "y": 847.16, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6173.34, - "y": 847.25, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6216.49, - "y": 863.68, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6286.59, - "y": 898.7, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6302.72, - "y": 917.26, - "type": "path", - "move_mode": "fly" - }, - { - "x": 6316.61, - "y": 953.63, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 6412.57, - "y": 1075.22, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 6372.32, - "y": 1050.52, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6364.17, - "y": 1046.11, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 6353.17, - "y": 1039.96, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 6409.4, - "y": 1076.87, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6404.1, - "y": 1106.77, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6472.88, - "y": 1184.5, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6540.89, - "y": 1208.31, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6543.61, - "y": 1209.18, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 6547.86, - "y": 1209.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6545.0, - "y": 1212.69, - "type": "path", - "move_mode": "walk" - }, - { - "x": 6543.0, - "y": 1210.6, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 6060.0869140625, + "y": 855.3701171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 6080.6767578125, + "y": 861.541015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6116.5810546875, + "y": 878.50830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6129.6025390625, + "y": 866.369140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6139.064453125, + "y": 847.1640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6173.337890625, + "y": 847.2509765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6216.4912109375, + "y": 863.681640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6286.59326171875, + "y": 898.69775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6302.72265625, + "y": 917.25634765625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 6316.61474609375, + "y": 953.634765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 6412.5732421875, + "y": 1075.21630859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 6372.3212890625, + "y": 1050.51904296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6364.16943359375, + "y": 1046.1083984375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 6353.166015625, + "y": 1039.9638671875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 6409.39599609375, + "y": 1076.8681640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6404.09716796875, + "y": 1106.7744140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6472.8818359375, + "y": 1184.50390625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 6540.89453125, + "y": 1208.30517578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6543.60546875, + "y": 1209.1767578125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 6547.85546875, + "y": 1209.0244140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6544.9951171875, + "y": 1212.6943359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6542.99609375, + "y": 1210.60302734375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-道成林-化城郭-西-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-道成林-化城郭-西-3个.json index 682528d5..cde9638e 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-道成林-化城郭-西-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-道成林-化城郭-西-3个.json @@ -1,80 +1,83 @@ { - "info": { - "name": "狗粮-须弥-道成林-化城郭-西-3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2701.49, - "y": -761.83, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-道成林-化城郭-西-3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2706.15, - "y": -791.95, - "type": "path", - "move_mode": "run" - }, - { - "x": 2706.26, - "y": -789.11, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2685.17, - "y": -834.32, - "type": "path", - "move_mode": "run" - }, - { - "x": 2683.97, - "y": -840.44, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2681.02, - "y": -828.74, - "type": "path", - "move_mode": "run" - }, - { - "x": 2647.1, - "y": -839.25, - "type": "path", - "move_mode": "run" - }, - { - "x": 2593.43, - "y": -853.74, - "type": "path", - "move_mode": "run" - }, - { - "x": 2593.67, - "y": -856.55, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2596.07, - "y": -860.89, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 2596.41, - "y": -861.83, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 2701.490234375, + "y": -761.826171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2706.1455078125, + "y": -791.9501953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2706.263671875, + "y": -789.10791015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2685.17236328125, + "y": -834.3212890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2683.966796875, + "y": -840.43798828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + + { + "x": 2681.02490234375, + "y": -828.7421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2647.09765625, + "y": -839.2470703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2593.4287109375, + "y": -853.74169921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2593.67236328125, + "y": -856.54736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.0654296875, + "y": -860.89111328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2596.41259765625, + "y": -861.82568359375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个.json index dce036ec..d01b2d57 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个.json @@ -1,87 +1,88 @@ { - "info": { - "name": "狗粮-须弥-阿陀河谷-维摩庄-3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2794.06, - "y": -1216.49, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-阿陀河谷-维摩庄-3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2777.76, - "y": -1199.96, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2702.06, - "y": -1143.78, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 2702.39, - "y": -1138.82, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 2701.74, - "y": -1146.61, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2697.56, - "y": -1146.88, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 2700.71, - "y": -1147.53, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2710.01, - "y": -1129.46, - "type": "path", - "move_mode": "run" - }, - { - "x": 2729.09, - "y": -1091.62, - "type": "path", - "move_mode": "run" - }, - { - "x": 2725.5, - "y": -1086.32, - "type": "path", - "move_mode": "run" - }, - { - "x": 2724.63, - "y": -1084.24, - "type": "path", - "move_mode": "walk" - }, - { - "x": 2724.31, - "y": -1081.69, - "type": "target", - "move_mode": "walk", - "#": "3" - } - ] + "positions": [ + { + "x": 2794.05810546875, + "y": -1216.48876953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2777.759765625, + "y": -1199.96337890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2702.05859375, + "y": -1143.779296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2702.3896484375, + "y": -1138.818359375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 2701.74365234375, + "y": -1146.6142578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2697.5576171875, + "y": -1146.880859375, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": 2700.71142578125, + "y": -1147.53466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2710.01123046875, + "y": -1129.4599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 2729.0908203125, + "y": -1091.6220703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2725.5048828125, + "y": -1086.3173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2724.63134765625, + "y": -1084.23974609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2724.3125, + "y": -1081.69482421875, + "type": "target", + "move_mode": "walk", + "#": "3" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json index d27da8a6..6514fc8e 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json @@ -1,116 +1,122 @@ { - "info": { - "name": "狗粮-须弥-须弥城西-4个(重兵把守)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3097.24, - "y": -355.95, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-须弥城西-4个(重兵把守)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3096.47, - "y": -434.37, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 3095.85, - "y": -456.79, - "type": "path", - "move_mode": "run" - }, - { - "x": 3089.32, - "y": -472.28, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3089.36, - "y": -472.52, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 3089.54, - "y": -472.74, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 3109.11, - "y": -478.52, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3110.13, - "y": -479.48, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 3110.39, - "y": -479.85, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 3112.53, - "y": -480.54, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 3113.61, - "y": -480.69, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 3108.84, - "y": -469.31, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3126.76, - "y": -470.35, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "4" - }, - { - "x": 3129.45, - "y": -471.53, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3125.48, - "y": -470.1, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3097.24072265625, + "y": -355.9541015625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3096.4658203125, + "y": -434.3720703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3095.845703125, + "y": -456.79443359375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3089.3154296875, + "y": -472.279296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3089.36474609375, + "y": -472.52294921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 3089.53857421875, + "y": -472.744140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": 3109.1142578125, + "y": -478.51953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3110.1318359375, + "y": -479.47607421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 3110.39404296875, + "y": -479.8505859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": 3112.53466796875, + "y": -480.541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 3113.61279296875, + "y": -480.69091796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 3108.84423828125, + "y": -469.31396484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3126.76123046875, + "y": -470.34765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 3129.453125, + "y": -471.52734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3125.482421875, + "y": -470.10205078125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-沉玉谷南陵.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-沉玉谷南陵.json index 39f59375..03efdf80 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-沉玉谷南陵.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-沉玉谷南陵.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-璃月-沉玉谷南陵", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2323.93, - "y": 1605.06, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-璃月-沉玉谷南陵", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2325.4, - "y": 1600.66, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 2325.27, - "y": 1599.68, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 2321.5, - "y": 1590.83, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 2323.931640625, + "y": 1605.0556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2325.3984375, + "y": 1600.65771484375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 2325.2724609375, + "y": 1599.67529296875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 2321.501953125, + "y": 1590.82666015625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-珉林.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-珉林.json index be6f5691..0f8888c1 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-珉林.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-珉林.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-璃月-珉林", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1474.55, - "y": 763.64, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-璃月-珉林", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1473.33, - "y": 762.03, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 1472.42, - "y": 762.22, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 1471.82, - "y": 765.34, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 1474.5517578125, + "y": 763.64013671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1473.3310546875, + "y": 762.0322265625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 1472.4150390625, + "y": 762.224609375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 1471.81640625, + "y": 765.3427734375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-纳塔-镜璧山.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-纳塔-镜璧山.json index 4c9a19ee..83e6cee6 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-纳塔-镜璧山.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-纳塔-镜璧山.json @@ -1,40 +1,40 @@ { - "info": { - "name": "(恢复)狗粮-纳塔-镜璧山", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9540.58, - "y": -1784.55, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "(恢复)狗粮-纳塔-镜璧山", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9521.28, - "y": -1780.17, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 9519.67, - "y": -1779.11, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 9516.99, - "y": -1781.74, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 9540.5810546875, + "y": -1784.55322265625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9521.27734375, + "y": -1780.1748046875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 9519.666015625, + "y": -1779.1064453125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 9516.986328125, + "y": -1781.73828125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-二净甸.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-二净甸.json index 13eaba0b..ccf626ce 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-二净甸.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-二净甸.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-须弥-二净甸", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3252.83, - "y": -591.27, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-须弥-二净甸", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3249.72, - "y": -599.48, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 3249.63, - "y": -600.49, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 3243.48, - "y": -594.58, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3252.8330078125, + "y": -591.27392578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3249.7216796875, + "y": -599.48291015625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 3249.634765625, + "y": -600.48779296875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 3243.4775390625, + "y": -594.57666015625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-千壑沙地.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-千壑沙地.json index d2210491..d60b0480 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-千壑沙地.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-千壑沙地.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-须弥-千壑沙地", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 5062.17, - "y": -1587.07, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-须弥-千壑沙地", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 5072.09, - "y": -1584.89, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 5072.02, - "y": -1586.23, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 5078.83, - "y": -1587.15, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 5062.171875, + "y": -1587.07373046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5072.08837890625, + "y": -1584.8896484375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 5072.0224609375, + "y": -1586.234375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 5078.83154296875, + "y": -1587.1474609375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个-f.json index cbce4314..1f179a60 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个-f.json @@ -1,259 +1,277 @@ { - "info": { - "name": "狗粮-璃月-珉林-东北-9个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 730.26, - "y": 1062.23, - "type": "teleport" + "info": { + "name": "狗粮-璃月-珉林-北-5个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 739.32, - "y": 1069.82, - "type": "path", - "move_mode": "run" - }, - { - "x": 765.67, - "y": 1069.66, - "type": "path", - "move_mode": "run" - }, - { - "x": 772.72, - "y": 1065.35, - "type": "target", - "move_mode": "walk" - }, - { - "x": 772.85, - "y": 1063.84, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 772.85, - "y": 1063.84, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 771.27, - "y": 1061.22, - "type": "path", - "move_mode": "walk" - }, - { - "x": 730.48, - "y": 1062.41, - "type": "teleport" - }, - { - "x": 718.5, - "y": 1042.65, - "type": "path", - "move_mode": "dash" - }, - { - "x": 667.04, - "y": 1010.58, - "type": "path", - "move_mode": "dash" - }, - { - "x": 634.75, - "y": 947.46, - "type": "path", - "move_mode": "dash" - }, - { - "x": 642.17, - "y": 941.58, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 642.05, - "y": 941.73, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 625.19, - "y": 927.06, - "type": "path", - "move_mode": "run" - }, - { - "x": 582.59, - "y": 908.26, - "type": "path", - "move_mode": "run" - }, - { - "x": 578.03, - "y": 907.79, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "3" - }, - { - "x": 579.17, - "y": 915.2, - "type": "path", - "move_mode": "run" - }, - { - "x": 557.49, - "y": 907.42, - "type": "path", - "move_mode": "run" - }, - { - "x": 545.7, - "y": 894.29, - "type": "path", - "move_mode": "walk" - }, - { - "x": 541.26, - "y": 893.35, - "type": "path", - "move_mode": "walk" - }, - { - "x": 529.91, - "y": 901.83, - "type": "path", - "move_mode": "walk" - }, - { - "x": 524.13, - "y": 907.5, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "4" - }, - { - "x": 534.44, - "y": 897.14, - "type": "orientation" - }, - { - "x": 534.44, - "y": 897.14, - "type": "path", - "move_mode": "walk" - }, - { - "x": 567.01, - "y": 883.57, - "type": "path", - "move_mode": "run" - }, - { - "x": 578.78, - "y": 894.57, - "type": "path", - "move_mode": "run" - }, - { - "x": 629.0, - "y": 848.58, - "type": "path", - "move_mode": "run" - }, - { - "x": 631.08, - "y": 845.23, - "type": "path", - "move_mode": "walk" - }, - { - "x": 643.99, - "y": 841.01, - "type": "path", - "move_mode": "walk" - }, - { - "x": 648.85, - "y": 839.12, - "type": "path", - "move_mode": "walk", - "#": "dump down" - }, - { - "x": 649.1, - "y": 831.15, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "5 6" - }, - { - "x": 649.0, - "y": 831.38, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "5 6" - }, - { - "x": 649.85, - "y": 833.25, - "type": "path", - "move_mode": "walk" - }, - { - "x": 645.45, - "y": 835.64, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "7" - }, - { - "x": 645.79, - "y": 832.71, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "8" - }, - { - "x": 645.79, - "y": 832.71, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(x)", - "//": "stop_climbing", - "No.": "8" - }, - { - "x": 645.35, - "y": 834.47, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "9", - "x_": 645.1220703125, - "y_": 833.75927734375 - } - ] + "positions": [ + + { + "x": 730.2568359375, + "y": 1062.2294921875, + "type": "teleport" + }, + { + "x": 739.3203125, + "y": 1069.82421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 765.673828125, + "y": 1069.6572265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 772.7236328125, + "y": 1065.3486328125, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 772.849609375, + "y": 1063.83837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 772.849609375, + "y": 1063.83837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 771.2724609375, + "y": 1061.22412109375, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 730.482421875, + "y": 1062.408203125, + "type": "teleport" + }, + { + "x": 718.5, + "y": 1042.6474609375, + "type": "path", + "move_mode": "dash" + }, + { + "x": 667.0361328125, + "y": 1010.57568359375, + "type": "path", + "move_mode": "dash" + }, + { + "x": 634.7490234375, + "y": 947.455078125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 642.1728515625, + "y": 941.576171875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 642.0498046875, + "y": 941.73486328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + + { + "x": 625.1875, + "y": 927.0615234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 582.587890625, + "y": 908.26318359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 578.025390625, + "y": 907.7900390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 579.1728515625, + "y": 915.19921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 557.4853515625, + "y": 907.4248046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 545.697265625, + "y": 894.28857421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 541.2587890625, + "y": 893.3466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 529.9072265625, + "y": 901.82958984375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 524.1337890625, + "y": 907.4951171875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + + { + "x": 534.4443359375, + "y": 897.138671875, + "type": "orientation" + }, + { + "x": 534.4443359375, + "y": 897.138671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 567.0146484375, + "y": 883.5654296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 578.77734375, + "y": 894.572265625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 629.001953125, + "y": 848.5849609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 631.0849609375, + "y": 845.2314453125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 643.9921875, + "y": 841.00927734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 648.8515625, + "y": 839.12109375, + "type": "path", + "move_mode": "walk", + "#": "dump down" + }, + + { + "x": 649.0966796875, + "y": 831.14892578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5 6" + }, + { + "x": 649.0009765625, + "y": 831.3779296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5 6" + }, + + { + "x": 649.8515625, + "y": 833.2529296875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 645.453125, + "y": 835.6357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + + { + "x": 645.79296875, + "y": 832.70556640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "8" + }, + { + "x": 645.79296875, + "y": 832.70556640625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(x)", + "//": "stop_climbing", + "No.": "8" + }, + + { + "x": 645.3515625, + "y": 834.46533203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "9", + + "x_": 645.1220703125, + "y_": 833.75927734375 + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json index 75fd77d7..95457b1a 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json @@ -1,176 +1,185 @@ { - "info": { - "name": "狗粮-璃月-珉林-北-5个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1121.05, - "y": 1190.4, - "type": "teleport" + "info": { + "name": "狗粮-璃月-珉林-北-5个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1124.08, - "y": 1212.25, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 1127.5, - "y": 1252.49, - "type": "path", - "move_mode": "run" - }, - { - "x": 1130.96, - "y": 1263.82, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 1144.71, - "y": 1267.79, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1140.64, - "y": 1274.61, - "type": "orientation" - }, - { - "x": 1140.64, - "y": 1274.61, - "type": "path", - "move_mode": "walk", - "//": "不逼近,只等待。", - "action": "combat_script", - "action_params": "wait(0.8)", - "No.": "1" - }, - { - "x": 1141.68, - "y": 1277.07, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1136.03, - "y": 1284.34, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1123.68, - "y": 1288.21, - "type": "path", - "move_mode": "run" - }, - { - "x": 1120.19, - "y": 1284.4, - "type": "target", - "move_mode": "walk", - "No.": "2" - }, - { - "x": 1115.29, - "y": 1284.31, - "type": "orientation" - }, - { - "x": 1115.29, - "y": 1284.31, - "type": "target", - "move_mode": "walk", - "No.": "3" - }, - { - "x": 1118.22, - "y": 1286.32, - "type": "orientation" - }, - { - "x": 1118.22, - "y": 1286.32, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1113.81, - "y": 1289.39, - "type": "orientation" - }, - { - "x": 1113.81, - "y": 1289.39, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1112.01, - "y": 1283.39, - "type": "orientation" - }, - { - "x": 1112.01, - "y": 1283.39, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1037.07, - "y": 1255.54, - "type": "path", - "move_mode": "dash" - }, - { - "x": 1032.3, - "y": 1254.18, - "type": "target", - "move_mode": "walk" - }, - { - "x": 1030.21, - "y": 1257.52, - "type": "orientation" - }, - { - "x": 1030.21, - "y": 1257.52, - "type": "target", - "move_mode": "walk", - "No.": "4" - }, - { - "x": 1032.67, - "y": 1253.27, - "type": "orientation" - }, - { - "x": 1032.67, - "y": 1253.27, - "type": "target", - "move_mode": "walk" - }, - { - "x": 1031.31, - "y": 1252.08, - "type": "target", - "move_mode": "walk", - "No.": "5" - }, - { - "x": 1029.31, - "y": 1251.54, - "type": "target", - "move_mode": "walk", - "No.": "5" - } - ] + "positions": [ + { + "x": 1121.0517578125, + "y": 1190.40087890625, + "type": "teleport" + }, + { + "x": 1124.08203125, + "y": 1212.24755859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1127.49609375, + "y": 1252.48828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1130.9638671875, + "y": 1263.8232421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1144.708984375, + "y": 1267.79345703125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1140.642578125, + "y": 1274.60986328125, + "type": "orientation" + }, + { + "x": 1140.642578125, + "y": 1274.60986328125, + "type": "path", + "move_mode": "walk", + "//": "target逼近时有概率被击飞,从远处小碎步逼近,导致耗时过长,被怪打死。", + "action": "combat_script", + "action_params": "wait(0.8)", + "//": "不逼近,只等待。", + "No.": "1" + }, + + { + "x": 1141.677734375, + "y": 1277.07421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1136.025390625, + "y": 1284.3427734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1123.677734375, + "y": 1288.20703125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 1120.1875, + "y": 1284.3994140625, + "type": "target", + "move_mode": "walk", + "No.": "2" + }, + { + "x": 1115.29296875, + "y": 1284.30615234375, + "type": "orientation" + }, + { + "x": 1115.29296875, + "y": 1284.30615234375, + "type": "target", + "move_mode": "walk", + "No.": "3" + }, + + { + "x": 1118.2216796875, + "y": 1286.3212890625, + "type": "orientation" + }, + { + "x": 1118.2216796875, + "y": 1286.3212890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1113.8134765625, + "y": 1289.39453125, + "type": "orientation" + }, + { + "x": 1113.8134765625, + "y": 1289.39453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1112.013671875, + "y": 1283.3876953125, + "type": "orientation" + }, + { + "x": 1112.013671875, + "y": 1283.3876953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1037.0654296875, + "y": 1255.5361328125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 1032.3017578125, + "y": 1254.1806640625, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 1030.2060546875, + "y": 1257.51513671875, + "type": "orientation" + }, + { + "x": 1030.2060546875, + "y": 1257.51513671875, + "type": "target", + "move_mode": "walk", + "No.": "4" + }, + + { + "x": 1032.6728515625, + "y": 1253.2666015625, + "type": "orientation" + }, + { + "x": 1032.6728515625, + "y": 1253.2666015625, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 1031.3056640625, + "y": 1252.08203125, + "type": "target", + "move_mode": "walk", + "No.": "5" + }, + { + "x": 1029.3134765625, + "y": 1251.54443359375, + "type": "target", + "move_mode": "walk", + "No.": "5" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-2个/3个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-2个/3个-f.json index f6b6b916..37e0dc8b 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-2个/3个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-2个/3个-f.json @@ -1,91 +1,98 @@ { - "info": { - "name": "狗粮-璃月-珉林-奥藏山南-2个/3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1451.46, - "y": 1028.59, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-珉林-奥藏山南-2个/3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1488.13, - "y": 1045.87, - "type": "path", - "move_mode": "run" - }, - { - "x": 1495.37, - "y": 1048.62, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 1496.28, - "y": 1046.15, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1505.38, - "y": 1040.84, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1509.78, - "y": 1042.98, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 1509.88, - "y": 1043.1, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - } - ], - "positions_not_actived": [ - { - "x": 1451.478515625, - "y": 1028.56396484375, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 1427.0634765625, - "y": 1068.23193359375, - "type": "path", - "move_mode": "run" - }, - { - "x": 1397.4345703125, - "y": 1093.2255859375, - "type": "path", - "move_mode": "run" - }, - { - "x": 1378.041015625, - "y": 1112.5146484375, - "type": "path", - "move_mode": "run" - }, - { - "x": 1374.865234375, - "y": 1118.765625, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "3" - } - ] + "positions": [ + { + "x": 1451.4638671875, + "y": 1028.59423828125, + "type": "teleport" + }, + { + "x": 1488.1298828125, + "y": 1045.87060546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1495.365234375, + "y": 1048.619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + { + "x": 1496.275390625, + "y": 1046.14794921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1505.380859375, + "y": 1040.8408203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1509.775390625, + "y": 1042.98046875, + "type": "orientation", + "move_mode": "walk" + }, + + { + "x": 1509.87890625, + "y": 1043.0966796875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + } + + ], + + + + + "positions_not_actived": [ + { + "x": 1451.478515625, + "y": 1028.56396484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1427.0634765625, + "y": 1068.23193359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1397.4345703125, + "y": 1093.2255859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1378.041015625, + "y": 1112.5146484375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 1374.865234375, + "y": 1118.765625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个-m.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个-m.json index d1da1cb4..45432d30 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个-m.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个-m.json @@ -1,94 +1,98 @@ { - "info": { - "name": "狗粮-璃月-珉林-绝云间-3个-m", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 1182.69, - "y": 626.05, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-珉林-绝云间-3个-m", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 1189.33, - "y": 619.73, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1172.51, - "y": 576.35, - "type": "path", - "move_mode": "run" - }, - { - "x": 1170.02, - "y": 568.93, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 1163.61, - "y": 563.88, - "type": "path", - "move_mode": "fly" - }, - { - "x": 1159.97, - "y": 558.47, - "type": "orientation" - }, - { - "x": 1159.97, - "y": 558.47, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "2" - }, - { - "x": 1158.47, - "y": 555.63, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1153.23, - "y": 557.7, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1147.17, - "y": 561.39, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "3" - }, - { - "x": 1144.02, - "y": 562.14, - "type": "path", - "move_mode": "walk" - }, - { - "x": 1147.04, - "y": 563.32, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 1147.04, - "y": 563.32, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 1182.685546875, + "y": 626.04638671875, + "type": "teleport" + }, + { + "x": 1189.333984375, + "y": 619.7275390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1172.51171875, + "y": 576.34814453125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 1170.0234375, + "y": 568.9345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + { + "x": 1163.6103515625, + "y": 563.8779296875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 1159.9677734375, + "y": 558.46630859375, + "type": "orientation" + }, + + { + "x": 1159.9677734375, + "y": 558.46630859375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + + { + "x": 1158.4697265625, + "y": 555.63037109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1153.23046875, + "y": 557.69970703125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1147.169921875, + "y": 561.39208984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 1144.01953125, + "y": 562.1396484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1147.0361328125, + "y": 563.318359375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 1147.0361328125, + "y": 563.318359375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个-f.json index 4998b7db..37c06529 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个-f.json @@ -1,43 +1,42 @@ { - "info": { - "name": "狗粮-璃月-琼玑野-绿华池-3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 489.44, - "y": 222.12, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-琼玑野-绿华池-3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 432.4, - "y": 228.16, - "type": "path", - "move_mode": "fly" - }, - { - "x": 425.63, - "y": 231.41, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 424.29, - "y": 234.67, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 425.92, - "y": 232.67, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 489.443359375, + "y": 222.12353515625, + "type": "teleport" + }, + { + "x": 432.3994140625, + "y": 228.15869140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 425.634765625, + "y": 231.4072265625, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 424.2900390625, + "y": 234.669921875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 425.9228515625, + "y": 232.67333984375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个-f.json index c2963928..b4a8b23e 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个-f.json @@ -1,50 +1,49 @@ { - "info": { - "name": "狗粮-璃月-碧水源-盐中之地-3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -164.59, - "y": 1182.51, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-璃月-碧水源-盐中之地-3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -171.74, - "y": 1225.65, - "type": "path", - "move_mode": "dash" - }, - { - "x": -147.25, - "y": 1261.25, - "type": "path", - "move_mode": "dash" - }, - { - "x": -95.06, - "y": 1238.29, - "type": "target", - "move_mode": "dash", - "action": "" - }, - { - "x": -94.11, - "y": 1235.54, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": -90.93, - "y": 1235.23, - "type": "target", - "move_mode": "walk", - "action": "" - } - ] + "positions": [ + { + "x": -164.5927734375, + "y": 1182.50537109375, + "type": "teleport" + }, + { + "x": -171.73828125, + "y": 1225.6494140625, + "type": "path", + "move_mode": "dash" + }, + { + "x": -147.2490234375, + "y": 1261.24951171875, + "type": "path", + "move_mode": "dash" + }, + { + "x": -95.0634765625, + "y": 1238.294921875, + "type": "target", + "move_mode": "dash", + "action":"" + }, + { + "x": -94.11328125, + "y": 1235.544921875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": -90.9267578125, + "y": 1235.23193359375, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json index 18055b95..b4c2aa94 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f.json @@ -1,128 +1,136 @@ { - "info": { - "name": "狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 8738.2, - "y": -1857.46, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-万火之瓯-竞技场东-2个/4个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 8716.09, - "y": -1865.42, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.2),click", - "//": "stop_flying" - }, - { - "x": 8719.2, - "y": -1864.53, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8724.25, - "y": -1863.21, - "type": "target", - "move_mode": "walk", - "No.": "1 2" - }, - { - "x": 8724.25, - "y": -1863.21, - "type": "target", - "move_mode": "walk", - "No.": "1 2" - } - ], - "positions_not_actived": [ - { - "x": 8721.26953125, - "y": -1856.9326171875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8660.845703125, - "y": -1797.1259765625, - "type": "path", - "move_mode": "run" - }, - { - "x": 8651.423828125, - "y": -1785.03662109375, - "type": "path", - "move_mode": "fly" - }, - { - "x": 8667.1689453125, - "y": -1767.51904296875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8672.138671875, - "y": -1766.37451171875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8672.69921875, - "y": -1769.48388671875, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "3" - }, - { - "x": 8672.6572265625, - "y": -1769.791015625, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "3" - }, - { - "x": 8630.39453125, - "y": -1771.56494140625, - "type": "path", - "move_mode": "fly" - }, - { - "x": 8613.8095703125, - "y": -1766.69580078125, - "type": "path", - "move_mode": "fly" - }, - { - "x": 8596.5390625, - "y": -1763.8193359375, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8591.849609375, - "y": -1763.35888671875, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "4" - }, - { - "x": 8591.1875, - "y": -1763.3173828125, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "4" - } - ] + "positions": [ + { + "x": 8738.201171875, + "y": -1857.45947265625, + "type": "teleport" + }, + { + "x": 8716.09375, + "y": -1865.416015625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.2),click", + "//": "stop_flying" + }, + { + "x": 8719.2001953125, + "y": -1864.53466796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 8724.24609375, + "y": -1863.20947265625, + "type": "target", + "move_mode": "walk", + "No.": "1 2" + }, + { + "x": 8724.24609375, + "y": -1863.2099609375, + "type": "target", + "move_mode": "walk", + "No.": "1 2" + } + + ], + + + + "positions_not_actived": [ + { + "x": 8721.26953125, + "y": -1856.9326171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8660.845703125, + "y": -1797.1259765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8651.423828125, + "y": -1785.03662109375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8667.1689453125, + "y": -1767.51904296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8672.138671875, + "y": -1766.37451171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 8672.69921875, + "y": -1769.48388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 8672.6572265625, + "y": -1769.791015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 8630.39453125, + "y": -1771.56494140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8613.8095703125, + "y": -1766.69580078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8596.5390625, + "y": -1763.8193359375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 8591.849609375, + "y": -1763.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 8591.1875, + "y": -1763.3173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json index cf78726c..6b2790aa 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-14个.json @@ -1,252 +1,256 @@ { - "info": { - "name": "狗粮-纳塔-奥奇卡纳塔-七天神像-14个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9757.97, - "y": -613.6, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "狗粮-纳塔-奥奇卡纳塔-七天神像-14个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9759.36, - "y": -624.95, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 9759.36, - "y": -624.95, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9749.46, - "y": -622.74, - "type": "orientation" - }, - { - "x": 9749.46, - "y": -622.74, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 9749.73, - "y": -620.54, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9751.45, - "y": -617.32, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.8)", - "#": "3" - }, - { - "x": 9750.9, - "y": -609.0, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 9750.9, - "y": -609.0, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 9759.39, - "y": -611.44, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9767.21, - "y": -604.23, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9765.08, - "y": -613.05, - "type": "orientation" - }, - { - "x": 9765.08, - "y": -613.05, - "type": "path", - "move_mode": "fly" - }, - { - "x": 9765.77, - "y": -619.11, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9759.87, - "y": -625.81, - "type": "target", - "move_mode": "walk", - "#": "5 6" - }, - { - "x": 9760.01, - "y": -625.75, - "type": "target", - "move_mode": "walk" - }, - { - "x": 9756.54, - "y": -626.4, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9734.07, - "y": -670.01, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(2.5),click", - "//": "stop_flying" - }, - { - "x": 9727.59, - "y": -670.82, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": 9785.74, - "y": -669.69, - "type": "orientation" - }, - { - "x": 9785.74, - "y": -669.69, - "type": "path", - "move_mode": "run" - }, - { - "x": 9796.42, - "y": -669.04, - "type": "target", - "move_mode": "walk", - "#": "8" - }, - { - "x": 9794.92, - "y": -657.76, - "type": "path", - "move_mode": "run" - }, - { - "x": 9793.31, - "y": -650.71, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.8)", - "#": "9" - }, - { - "x": 9809.8, - "y": -629.44, - "type": "path", - "move_mode": "run" - }, - { - "x": 9811.68, - "y": -623.66, - "type": "target", - "move_mode": "walk", - "#": "10" - }, - { - "x": 9814.61, - "y": -592.0, - "type": "path", - "move_mode": "run" - }, - { - "x": 9814.49, - "y": -583.99, - "type": "target", - "move_mode": "walk", - "#": "11" - }, - { - "x": 9814.49, - "y": -583.99, - "type": "target", - "move_mode": "walk", - "#": "11" - }, - { - "x": 9826.32, - "y": -572.11, - "type": "path", - "move_mode": "run" - }, - { - "x": 9831.62, - "y": -566.94, - "type": "target", - "move_mode": "walk", - "#": "12" - }, - { - "x": 9798.21, - "y": -557.39, - "type": "orientation" - }, - { - "x": 9798.21, - "y": -557.39, - "type": "path", - "move_mode": "run" - }, - { - "x": 9793.74, - "y": -559.49, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9793.76, - "y": -559.51, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9795.77, - "y": -561.93, - "type": "target", - "move_mode": "walk", - "#": "13 14" - }, - { - "x": 9795.78, - "y": -561.93, - "type": "target", - "move_mode": "walk", - "#": "13 14" - } - ] + "positions": [ + { + "x": 9757.9697265625, + "y": -613.59716796875, + "type": "teleport", + "action": "force_tp" + }, + + { + "x": 9759.3642578125, + "y": -624.9482421875, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 9759.3642578125, + "y": -624.9482421875, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9749.4638671875, + "y": -622.73681640625, + "type": "orientation" + }, + { + "x": 9749.4638671875, + "y": -622.73681640625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9749.728515625, + "y": -620.53759765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9751.447265625, + "y": -617.3203125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", + "#": "3" + }, + { + "x": 9750.904296875, + "y": -609.0009765625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9750.904296875, + "y": -609.0009765625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + { + "x": 9759.390625, + "y": -611.439453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9767.208984375, + "y": -604.23486328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9765.08203125, + "y": -613.0517578125, + "type": "orientation" + }, + { + "x": 9765.08203125, + "y": -613.0517578125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9765.7685546875, + "y": -619.1064453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9759.865234375, + "y": -625.8095703125, + "type": "target", + "move_mode": "walk", + "#": "5 6" + }, + { + "x": 9760.0087890625, + "y": -625.75, + "type": "target", + "move_mode": "walk" + }, + { + "x": 9756.541015625, + "y": -626.3955078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9734.0712890625, + "y": -670.005859375, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(2.5),click", + "//": "stop_flying" + }, + { + "x": 9727.59375, + "y": -670.8193359375, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + { + "x": 9785.7392578125, + "y": -669.693359375, + "type": "orientation" + }, + { + "x": 9785.7392578125, + "y": -669.693359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9796.419921875, + "y": -669.0380859375, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + { + "x": 9794.921875, + "y": -657.755859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9793.3125, + "y": -650.712890625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", + "#": "9" + }, + { + "x": 9809.7958984375, + "y": -629.44189453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9811.6796875, + "y": -623.65625, + "type": "target", + "move_mode": "walk", + "#": "10" + }, + { + "x": 9814.60546875, + "y": -592.00244140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9814.48828125, + "y": -583.99462890625, + "type": "target", + "move_mode": "walk", + "#": "11" + }, + { + "x": 9814.48828125, + "y": -583.99462890625, + "type": "target", + "move_mode": "walk", + "#": "11" + }, + { + "x": 9826.3203125, + "y": -572.1123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9831.619140625, + "y": -566.93994140625, + "type": "target", + "move_mode": "walk", + "#": "12" + }, + { + "x": 9798.2060546875, + "y": -557.38671875, + "type": "orientation" + }, + { + "x": 9798.2060546875, + "y": -557.38671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9793.73828125, + "y": -559.4853515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9793.759765625, + "y": -559.50830078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9795.7744140625, + "y": -561.93408203125, + "type": "target", + "move_mode": "walk", + "#": "13 14" + }, + { + "x": 9795.7802734375, + "y": -561.93017578125, + "type": "target", + "move_mode": "walk", + "#": "13 14" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json index 8355e0f9..73946717 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f.json @@ -1,121 +1,132 @@ { - "info": { - "name": "狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9670.13, - "y": 171.32, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9663.59, - "y": 183.83, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9672.04, - "y": 189.12, - "type": "path", - "move_mode": "run" - }, - { - "x": 9675.88, - "y": 220.56, - "type": "path", - "move_mode": "run" - }, - { - "x": 9684.17, - "y": 230.55, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 9687.23, - "y": 230.72, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 9688.35, - "y": 230.91, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 9694.97, - "y": 220.94, - "type": "orientation" - }, - { - "x": 9694.97, - "y": 220.94, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 9672.39, - "y": 228.15, - "type": "path", - "move_mode": "run" - }, - { - "x": 9665.02, - "y": 230.79, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.5)", - "#": "5" - }, - { - "x": 9670.13, - "y": 171.32, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9627.87, - "y": 156.58, - "type": "path", - "move_mode": "fly" - }, - { - "x": 9595.69, - "y": 167.17, - "type": "target", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying" - }, - { - "x": 9587.71, - "y": 171.45, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": 9587.5, - "y": 171.46, - "type": "target", - "move_mode": "walk", - "#": "6" - } - ] + "positions": [ + { + "x": 9670.130859375, + "y": 171.31884765625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9663.5947265625, + "y": 183.833984375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 9672.03515625, + "y": 189.12353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9675.875, + "y": 220.560546875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 9684.16796875, + "y": 230.54736328125, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": 9687.234375, + "y": 230.724609375, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9688.345703125, + "y": 230.91455078125, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + { + "x": 9694.974609375, + "y": 220.93896484375, + "type": "orientation" + }, + { + "x": 9694.974609375, + "y": 220.93896484375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + { + "x": 9672.3916015625, + "y": 228.1494140625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 9665.0224609375, + "y": 230.787109375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5)", + "#": "5" + }, + + + + { + "x": 9670.130859375, + "y": 171.31884765625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9627.869140625, + "y": 156.5830078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9595.6904296875, + "y": 167.17333984375, + "type": "target", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "stop_flying" + }, + { + "x": 9586.58984375, + "y": 172.35888671875, + "type": "target", + "move_mode": "walk", + "#": "6" + }, + { + "x": 9587.501953125, + "y": 171.46044921875, + "type": "target", + "move_mode": "walk", + "#": "6" + } + + ] + } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json index d325433f..2a8f23fa 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f.json @@ -1,106 +1,110 @@ { - "info": { - "name": "狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9813.5, - "y": -372.21, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "狗粮-纳塔-奥奇卡纳塔-流灰之街-4个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9811.44, - "y": -372.49, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9800.3, - "y": -374.54, - "type": "path", - "move_mode": "run" - }, - { - "x": 9786.56, - "y": -378.78, - "type": "path", - "move_mode": "run" - }, - { - "x": 9796.99, - "y": -411.96, - "type": "path", - "move_mode": "run" - }, - { - "x": 9809.84, - "y": -422.87, - "type": "path", - "move_mode": "run" - }, - { - "x": 9816.07, - "y": -414.88, - "type": "path", - "move_mode": "run" - }, - { - "x": 9819.82, - "y": -409.87, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9822.67, - "y": -408.65, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 9810.32, - "y": -407.86, - "type": "path", - "move_mode": "run" - }, - { - "x": 9812.77, - "y": -387.46, - "type": "path", - "move_mode": "run" - }, - { - "x": 9827.39, - "y": -360.2, - "type": "path", - "move_mode": "run" - }, - { - "x": 9829.76, - "y": -353.84, - "type": "path", - "move_mode": "fly" - }, - { - "x": 9838.85, - "y": -334.54, - "type": "target", - "move_mode": "run", - "#": "3" - }, - { - "x": 9849.72, - "y": -331.42, - "type": "target", - "move_mode": "run", - "#": "4" - } - ] + "positions": [ + { + "x": 9813.4951171875, + "y": -372.21435546875, + "type": "teleport", + "action": "force_tp" + }, + { + "x": 9811.4365234375, + "y": -372.48583984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9800.30078125, + "y": -374.54345703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9786.5615234375, + "y": -378.7763671875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 9796.990234375, + "y": -411.9580078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9809.8359375, + "y": -422.86669921875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 9816.0703125, + "y": -414.88037109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9819.8232421875, + "y": -409.86962890625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9822.6708984375, + "y": -408.6533203125, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": 9810.3193359375, + "y": -407.8564453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9812.7724609375, + "y": -387.4599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9827.3876953125, + "y": -360.19580078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9829.763671875, + "y": -353.84423828125, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 9838.849609375, + "y": -334.5439453125, + "type": "target", + "move_mode": "run", + "#": "3" + }, + { + "x": 9849.7177734375, + "y": -331.419921875, + "type": "target", + "move_mode": "run", + "#": "4" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json index a1df9e2a..dfc7d14e 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json @@ -1,145 +1,150 @@ { - "info": { - "name": "狗粮-纳塔-涌流地-流泉之众-4个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 8918.94, - "y": -2679.1, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-纳塔-涌流地-流泉之众-4个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 8956.53, - "y": -2684.39, - "type": "target", - "move_mode": "run", - "#": 1 - }, - { - "x": 8956.56, - "y": -2684.48, - "type": "target", - "move_mode": "walk", - "#": 1 - }, - { - "x": 8985.65, - "y": -2691.57, - "type": "path", - "move_mode": "dash" - }, - { - "x": 8994.61, - "y": -2709.46, - "type": "path", - "move_mode": "dash" - }, - { - "x": 8985.96, - "y": -2733.55, - "type": "path", - "move_mode": "dash" - }, - { - "x": 8985.33, - "y": -2756.35, - "type": "path", - "move_mode": "dash" - }, - { - "x": 9029.78, - "y": -2792.57, - "type": "path", - "move_mode": "dash" - }, - { - "x": 9044.7, - "y": -2797.51, - "type": "path", - "move_mode": "dash" - }, - { - "x": 9050.96, - "y": -2799.94, - "type": "path", - "move_mode": "fly" - }, - { - "x": 9058.2, - "y": -2800.05, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9054.91, - "y": -2797.59, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 9054.91, - "y": -2797.59, - "type": "target", - "move_mode": "walk", - "#": 2 - }, - { - "x": 9054.91, - "y": -2797.59, - "type": "target", - "move_mode": "walk", - "#": 2 - }, - { - "x": 9057.55, - "y": -2795.9, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9060.99, - "y": -2791.96, - "type": "target", - "move_mode": "walk", - "#": 3 - }, - { - "x": 9060.99, - "y": -2791.96, - "type": "target", - "move_mode": "walk", - "#": 3 - }, - { - "x": 9060.99, - "y": -2791.96, - "type": "target", - "move_mode": "walk", - "#": 3 - }, - { - "x": 9068.6, - "y": -2798.83, - "type": "orientation" - }, - { - "x": 9068.6, - "y": -2798.83, - "type": "target", - "move_mode": "walk", - "#": 4 - }, - { - "x": 9068.58, - "y": -2798.85, - "type": "target", - "move_mode": "walk", - "#": 4 - } - ] + "positions": [ + { + "x": 8918.939453125, + "y": -2679.103515625, + "type": "teleport" + }, + + { + "x": 8956.52734375, + "y": -2684.38671875, + "type": "target", + "move_mode": "run", + "#": 1 + }, + { + "x": 8956.560546875, + "y": -2684.478515625, + "type": "target", + "move_mode": "walk", + "#": 1 + }, + + { + "x": 8985.650390625, + "y": -2691.57421875, + "type": "path", + "move_mode": "dash" + }, + { + "x": 8994.60546875, + "y": -2709.45703125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 8985.96484375, + "y": -2733.546875, + "type": "path", + "move_mode": "dash" + }, + { + "x": 8985.3251953125, + "y": -2756.3505859375, + "type": "path", + "move_mode": "dash" + }, + { + "x": 9029.7822265625, + "y": -2792.57421875, + "type": "path", + "move_mode": "dash" + }, + { + "x": 9044.7001953125, + "y": -2797.5087890625, + "type": "path", + "move_mode": "dash" + }, + { + "x": 9050.962890625, + "y": -2799.9375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9058.2021484375, + "y": -2800.046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9054.908203125, + "y": -2797.5869140625, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 9054.908203125, + "y": -2797.5869140625, + "type": "target", + "move_mode": "walk", + "#": 2 + }, + { + "x": 9054.908203125, + "y": -2797.5869140625, + "type": "target", + "move_mode": "walk", + "#": 2 + }, + + { + "x": 9057.548828125, + "y": -2795.896484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "#": 3 + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "#": 3 + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "#": 3 + }, + + { + "x": 9068.595703125, + "y": -2798.8251953125, + "type": "orientation" + }, + { + "x": 9068.595703125, + "y": -2798.8251953125, + "type": "target", + "move_mode": "walk", + "#": 4 + }, + { + "x": 9068.580078125, + "y": -2798.853515625, + "type": "target", + "move_mode": "walk", + "#": 4 + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个-f.json index 455c28f8..c71df3d7 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个-f.json @@ -1,154 +1,163 @@ { - "info": { - "name": "狗粮-纳塔-翘枝崖-北-6个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9719.17, - "y": -852.12, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "狗粮-纳塔-翘枝崖-北-6个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9760.36, - "y": -809.45, - "type": "path", - "move_mode": "run" - }, - { - "x": 9766.63, - "y": -805.09, - "type": "target", - "move_mode": "walk" - }, - { - "x": 9768.0, - "y": -806.71, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 9768.0, - "y": -806.71, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9768.2, - "y": -806.56, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9766.15, - "y": -800.49, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 9766.15, - "y": -800.49, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9777.77, - "y": -774.35, - "type": "path", - "move_mode": "dash" - }, - { - "x": 9776.8, - "y": -769.35, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 9776.8, - "y": -769.35, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 9776.8, - "y": -769.35, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 9782.13, - "y": -767.9, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9788.59, - "y": -755.54, - "type": "path", - "move_mode": "run" - }, - { - "x": 9792.29, - "y": -749.29, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 9719.2, - "y": -852.05, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9706.24, - "y": -863.09, - "type": "path", - "move_mode": "run" - }, - { - "x": 9701.87, - "y": -872.02, - "type": "target", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 9701.37, - "y": -872.41, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 9699.06, - "y": -870.73, - "type": "target", - "move_mode": "walk", - "#": "5" - }, - { - "x": 9643.57, - "y": -898.14, - "type": "path", - "move_mode": "run" - }, - { - "x": 9623.09, - "y": -894.71, - "type": "target", - "move_mode": "walk", - "#": "6" - } - ] + "positions": [ + { + "x": 9719.171875, + "y": -852.11669921875, + "type": "teleport", + "action": "force_tp" + }, + + { + "x": 9760.36328125, + "y": -809.44921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9766.6298828125, + "y": -805.0888671875, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 9768, + "y": -806.7119140625, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 9768, + "y": -806.7119140625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9768.197265625, + "y": -806.56494140625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 9766.150390625, + "y": -800.48583984375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 9766.150390625, + "y": -800.48583984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9777.76953125, + "y": -774.345703125, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 9776.802734375, + "y": -769.34521484375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 9776.802734375, + "y": -769.10, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9776.802734375, + "y": -769.34521484375, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": 9782.1328125, + "y": -767.8994140625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9788.591796875, + "y": -755.54150390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9792.294921875, + "y": -749.29248046875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + + + { + "x": 9719.1982421875, + "y": -852.04931640625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9706.2421875, + "y": -863.09375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9701.865234375, + "y": -872.02490234375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9701.3681640625, + "y": -872.40869140625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9699.0625, + "y": -870.73193359375, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + { + "x": 9643.5654296875, + "y": -898.142578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9623.0859375, + "y": -894.71435546875, + "type": "target", + "move_mode": "walk", + "#": "6" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-七天神像下-3个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-七天神像下-3个-f.json index 43ab94df..1146512b 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-七天神像下-3个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-七天神像下-3个-f.json @@ -1,78 +1,80 @@ { - "info": { - "name": "狗粮-纳塔-镜璧山-七天神像下-3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9520.56, - "y": -1779.6, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "狗粮-纳塔-镜璧山-七天神像下-3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9545.91, - "y": -1774.86, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9546.24, - "y": -1766.92, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying" - }, - { - "x": 9542.55, - "y": -1764.78, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9545.08, - "y": -1766.88, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9541.3, - "y": -1771.83, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9540.86, - "y": -1782.04, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 9539.15, - "y": -1781.53, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9535.14, - "y": -1777.71, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 9532.53, - "y": -1777.77, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 9520.5634765625, + "y": -1779.60302734375, + "type": "teleport", + "action": "force_tp" + }, + { + "x": 9545.9140625, + "y": -1774.8564453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9546.2421875, + "y": -1766.9150390625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "stop_flying" + }, + + { + "x": 9542.546875, + "y": -1764.77685546875, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 9545.076171875, + "y": -1766.88134765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9541.2958984375, + "y": -1771.8271484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9540.861328125, + "y": -1782.04150390625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9539.1494140625, + "y": -1781.53076171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9535.1435546875, + "y": -1777.7138671875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9532.529296875, + "y": -1777.7744140625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个-f.json index 3303f800..fc187711 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个-f.json @@ -1,320 +1,394 @@ { - "info": { - "name": "狗粮-纳塔-镜璧山-南-9个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9638.03, - "y": -1854.7, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "狗粮-纳塔-镜璧山-南-9个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9596.38, - "y": -1884.7, - "type": "path", - "move_mode": "run" - }, - { - "x": 9586.04, - "y": -1943.58, - "type": "path", - "move_mode": "run" - }, - { - "x": 9583.6, - "y": -1950.6, - "type": "path", - "move_mode": "run" - }, - { - "x": 9584.52, - "y": -1951.26, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9589.08, - "y": -1952.63, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 9588.05, - "y": -1952.26, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9585.08, - "y": -1951.65, - "type": "path", - "move_mode": "walk", - "//": "躲技能" - }, - { - "x": 9584.19, - "y": -1954.76, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 9586.88, - "y": -1959.71, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "_x": 9577.4677734375, - "_y": -1956.6142578125, - "x": 9577.24, - "y": -1957.72, - "x_": 9577.2119140625, - "y_": -1957.74169921875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9576.18, - "y": -1960.83, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 9576.18, - "y": -1960.83, - "type": "target", - "move_mode": "fly", - "#": "4 5 6" - }, - { - "_x": 9577.10546875, - "_y": -1957.60302734375, - "x": 9578.99, - "y": -1961.94, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9575.22, - "y": -1960.06, - "type": "orientation" - }, - { - "x": 9574.22, - "y": -1959.26, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(x),wait(1.0)", - "//": "stop_climbing" - }, - { - "x": 9638.09, - "y": -1854.67, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9615.96, - "y": -1852.85, - "type": "path", - "move_mode": "run" - }, - { - "x": 9615.46, - "y": -1847.71, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9617.7, - "y": -1843.16, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": 9616.65, - "y": -1838.33, - "type": "target", - "move_mode": "walk", - "#": "8" - }, - { - "x": 9607.53, - "y": -1804.24, - "type": "path", - "move_mode": "dash" - }, - { - "x": 9605.41, - "y": -1763.83, - "type": "path", - "move_mode": "run" - }, - { - "x": 9612.75, - "y": -1758.28, - "type": "path", - "move_mode": "run" - }, - { - "x": 9616.9, - "y": -1751.93, - "type": "target", - "move_mode": "walk", - "#": "9" - }, - { - "x": 9616.91, - "y": -1751.12, - "type": "target", - "move_mode": "walk", - "#": "9" - } - ], - "positions_alternative1": [ - { - "x": 9638.033203125, - "y": -1854.703125, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9596.3798828125, - "y": -1884.70263671875, - "type": "path", - "move_mode": "run" - }, - { - "x": 9586.04296875, - "y": -1943.57568359375, - "type": "path", - "move_mode": "run" - }, - { - "x": 9585.3466796875, - "y": -1947.681640625, - "type": "path", - "move_mode": "run" - }, - { - "x": 9586.607421875, - "y": -1956.96142578125, - "type": "path", - "move_mode": "run" - }, - { - "x": 9578.45703125, - "y": -1961.63427734375, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9578.455078125, - "y": -1961.599609375, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9576.5634765625, - "y": -1960.66455078125, - "type": "target", - "move_mode": "walk", - "#": "4 5 6" - }, - { - "x": 9586.5537109375, - "y": -1960.34375, - "type": "target", - "move_mode": "run", - "#": "3" - }, - { - "x": 9584.169921875, - "y": -1955.046875, - "type": "target", - "move_mode": "run", - "#": "2" - }, - { - "x": 9589.5517578125, - "y": -1953.1572265625, - "type": "target", - "move_mode": "run", - "#": "1" - } - ], - "positions_alternative2": [ - { - "x": 9638.033203125, - "y": -1854.703125, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9596.3798828125, - "y": -1884.70263671875, - "type": "path", - "move_mode": "run" - }, - { - "x": 9586.04296875, - "y": -1943.57568359375, - "type": "path", - "move_mode": "run" - }, - { - "x": 9584.064453125, - "y": -1954.55615234375, - "type": "target", - "move_mode": "run", - "#": "2" - }, - { - "x": 9581.8291015625, - "y": -1957.748046875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9577.751953125, - "y": -1957.89697265625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9576.388671875, - "y": -1960.0849609375, - "type": "target", - "move_mode": "walk", - "#": "4 5 6" - }, - { - "x": 9585.962890625, - "y": -1960.31201171875, - "type": "target", - "move_mode": "run", - "#": "3" - }, - { - "x": 9589.6787109375, - "y": -1953.1005859375, - "type": "target", - "move_mode": "run", - "#": "1" - } - ] + + "positions": [ + { + "x": 9638.033203125, + "y": -1854.703125, + "type": "teleport", + "action": "force_tp" + }, + { + "x": 9596.3798828125, + "y": -1884.70263671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9586.04296875, + "y": -1943.57568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9583.599609375, + "y": -1950.595703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9584.51953125, + "y": -1951.255859375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9589.08203125, + "y": -1952.6337890625, + "type": "target", + "move_mode": "walk", + "#" : "1" + }, + + { + "x": 9588.0478515625, + "y": -1952.26318359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9585.080078125, + "y": -1951.64697265625, + "type": "path", + "move_mode": "walk", + "//": "躲技能" + }, + + { + "x": 9584.1943359375, + "y": -1954.76025390625, + "type": "target", + "move_mode": "walk", + "#" : "2" + }, + { + "x": 9586.87890625, + "y": -1959.71240234375, + "type": "target", + "move_mode": "walk", + "#" : "3" + }, + + { + "_x": 9577.4677734375, + "_y": -1956.6142578125, + + "x": 9577.240234375, + "y": -1957.71923828125, + + "x_": 9577.2119140625, + "y_": -1957.74169921875, + + "type": "path", + "move_mode": "walk" + }, + { + "x": 9576.17578125, + "y": -1960.8349609375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 9576.17578125, + "y": -1960.8349609375, + "type": "target", + "move_mode": "jump", + "#" : "4 5 6" + }, + { + "_x": 9577.10546875, + "_y": -1957.60302734375, + + "x": 9578.9921875, + "y": -1961.9375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9575.287109375, + "y": -1960.943359375, + "type": "orientation" + }, + { + "x": 9575.287109375, + "y": -1960.943359375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keydown(w),wait(0.5),keyup(w),wait(0.2),keypress(x),wait(1.5)", + "//": "stop_climbing" + }, + + + + { + "x": 9638.0859375, + "y": -1854.6728515625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9615.9599609375, + "y": -1852.849609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9615.4560546875, + "y": -1847.71484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9617.69921875, + "y": -1843.1611328125, + "type": "target", + "move_mode": "walk", + "#" : "7" + }, + { + "x": 9616.6455078125, + "y": -1838.330078125, + "type": "target", + "move_mode": "walk", + "#" : "8" + }, + + { + "x": 9607.533203125, + "y": -1804.2431640625, + "type": "path", + "move_mode": "dash" + }, + { + "x": 9605.40625, + "y": -1763.8310546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9612.7529296875, + "y": -1758.2841796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9616.9033203125, + "y": -1751.93017578125, + "type": "target", + "move_mode": "walk", + "#" : "9" + }, + { + "x": 9616.90625, + "y": -1751.115234375, + "type": "target", + "move_mode": "walk", + "#" : "9" + } + ], + + "positions_alternative3": [ + { + "_x": 9577.4677734375, + "_y": -1956.6142578125, + + "x": 9577.240234375, + "y": -1957.71923828125, + + "x_": 9577.2119140625, + "y_": -1957.74169921875, + + "type": "path", + "move_mode": "walk" + }, + { + "x": 9576.17578125, + "y": -1960.8349609375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 9576.17578125, + "y": -1960.8349609375, + "type": "target", + "move_mode": "jump", + "#" : "4 5 6" + }, + { + "_x": 9577.10546875, + "_y": -1957.60302734375, + + "x": 9578.9921875, + "y": -1961.9375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9575.2265625, + "y": -1960.08740234375, + "type": "orientation" + }, + { + "x": 9575.2265625, + "y": -1960.08740234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keydown(w),wait(0.5),keyup(w),wait(0.2),keypress(x),wait(1.5)", + "//": "stop_climbing" + } + ], + + "positions_alternative2": [ + { + "x": 9638.033203125, + "y": -1854.703125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9596.3798828125, + "y": -1884.70263671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9586.04296875, + "y": -1943.57568359375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 9585.3466796875, + "y": -1947.681640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9586.607421875, + "y": -1956.96142578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9578.45703125, + "y": -1961.63427734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9578.455078125, + "y": -1961.599609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9576.5634765625, + "y": -1960.66455078125, + "type": "target", + "move_mode": "walk", + "#" : "4 5 6" + }, + { + "x": 9586.5537109375, + "y": -1960.34375, + "type": "target", + "move_mode": "run", + "#" : "3" + }, + { + "x": 9584.169921875, + "y": -1955.046875, + "type": "target", + "move_mode": "run", + "#" : "2" + }, + { + "x": 9589.5517578125, + "y": -1953.1572265625, + "type": "target", + "move_mode": "run", + "#" : "1" + } + ], + + + + "positions_alternative1": [ + { + "x": 9638.033203125, + "y": -1854.703125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9596.3798828125, + "y": -1884.70263671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9586.04296875, + "y": -1943.57568359375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 9584.064453125, + "y": -1954.55615234375, + "type": "target", + "move_mode": "run", + "#" : "2" + }, + + { + "x": 9581.8291015625, + "y": -1957.748046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9577.751953125, + "y": -1957.89697265625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9576.388671875, + "y": -1960.0849609375, + "type": "target", + "move_mode": "walk", + "#" : "4 5 6" + }, + + { + "x": 9585.962890625, + "y": -1960.31201171875, + "type": "target", + "move_mode": "run", + "#" : "3" + }, + { + "x": 9589.6787109375, + "y": -1953.1005859375, + "type": "target", + "move_mode": "run", + "#" : "1" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-蒙德-龙脊雪山-西-3个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-蒙德-龙脊雪山-西-3个-f.json index b2bed5cc..81d6bd6b 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-蒙德-龙脊雪山-西-3个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-蒙德-龙脊雪山-西-3个-f.json @@ -1,72 +1,72 @@ { - "info": { - "name": "狗粮-蒙德-龙脊雪山-西-3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -410.82, - "y": 1161.37, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-蒙德-龙脊雪山-西-3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -411.11, - "y": 1188.5, - "type": "path", - "move_mode": "dash" - }, - { - "x": -418.57, - "y": 1198.78, - "type": "path", - "move_mode": "dash" - }, - { - "x": -436.62, - "y": 1190.56, - "type": "path", - "move_mode": "dash" - }, - { - "x": -473.32, - "y": 1170.8, - "type": "path", - "move_mode": "run" - }, - { - "x": -496.4, - "y": 1148.89, - "type": "path", - "move_mode": "dash" - }, - { - "x": -508.44, - "y": 1149.64, - "type": "orientation" - }, - { - "x": -509.23, - "y": 1148.9, - "type": "target", - "move_mode": "walk", - "action": "1 2" - }, - { - "x": -510.08, - "y": 1146.16, - "type": "target", - "move_mode": "walk", - "action": "3" - }, - { - "x": -511.05, - "y": 1143.36, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -410.8212890625, + "y": 1161.36767578125, + "type": "teleport" + }, + { + "x": -411.111328125, + "y": 1188.4970703125, + "type": "path", + "move_mode": "dash" + }, + { + "x": -418.5693359375, + "y": 1198.78271484375, + "type": "path", + "move_mode": "dash" + }, + { + "x": -436.6220703125, + "y": 1190.56005859375, + "type": "path", + "move_mode": "dash" + }, + { + "x": -473.318359375, + "y": 1170.80029296875, + "type": "path", + "move_mode": "run" + }, + { + "x": -496.404296875, + "y": 1148.88818359375, + "type": "path", + "move_mode": "dash" + }, + { + "x": -508.4365234375, + "y": 1149.64013671875, + "type": "orientation" + }, + + { + "x": -509.2255859375, + "y": 1148.90234375, + "type": "target", + "move_mode": "walk", + "action":"1 2" + }, + { + "x": -510.0771484375, + "y": 1146.16015625, + "type": "target", + "move_mode": "walk", + "action":"3" + }, + { + "x": -511.048828125, + "y": 1143.35888671875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个/8个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个/8个.json index 7469a62b..cf78edb1 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个/8个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个/8个.json @@ -1,141 +1,149 @@ { - "info": { - "name": "狗粮-须弥-二净甸-七天神像-4个/8个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3252.85, - "y": -591.28, - "type": "teleport" + "info": { + "name": "狗粮-须弥-二净甸-七天神像-4个/8个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3243.54, - "y": -596.37, - "type": "orientation" - }, - { - "x": 3243.54, - "y": -596.37, - "type": "path", - "move_mode": "run" - }, - { - "x": 3236.78, - "y": -673.26, - "type": "path", - "move_mode": "run" - }, - { - "x": 3236.81, - "y": -673.27, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 3243.14, - "y": -669.97, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 3243.14, - "y": -669.97, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1.0)", - "#": "2" - }, - { - "x": 3223.59, - "y": -663.44, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3183.46, - "y": -668.15, - "type": "path", - "move_mode": "run" - }, - { - "x": 3177.51, - "y": -668.67, - "type": "target", - "move_mode": "walk", - "#": "5" - }, - { - "_x": 3167.27490234375, - "_y": -667.78662109375, - "x": 3166.37, - "y": -667.39, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1.0)", - "//": "只等待,不趋近,否则有可能被怪撞一下成了从远处小碎步逼近,很耗时,会被打死", - "#": "6" - } - ], - "positions_not_actived_1": [ - { - "x": 3247.1513671875, - "y": -677.9443359375, - "type": "path", - "move_mode": "fly" - }, - { - "x": 3249.44580078125, - "y": -667.3544921875, - "type": "path", - "move_mode": "fly" - }, - { - "x": 3249.44580078125, - "y": -667.3544921875, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 3249.572265625, - "y": -666.5732421875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3248.04931640625, - "y": -666.294921875, - "type": "path", - "move_mode": "walk" - } - ], - "positions_not_actived_2": [ - { - "x": 3166.2568359375, - "y": -663.19921875, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": 3169.171875, - "y": -663.6982421875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3171.65087890625, - "y": -661.556640625, - "type": "target", - "move_mode": "walk", - "#": "8" - } - ] + "positions": [ + { + "x": 3252.849609375, + "y": -591.28125, + "type": "teleport" + }, + { + "x": 3243.53515625, + "y": -596.373046875, + "type": "orientation" + }, + { + "x": 3243.53515625, + "y": -596.373046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3236.7802734375, + "y": -673.25830078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3236.8076171875, + "y": -673.2666015625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 3243.1435546875, + "y": -669.97021484375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 3243.1435546875, + "y": -669.97021484375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.0)", + "#": "2" + }, + + { + "x": 3223.59375, + "y": -663.43701171875, + "type": "path", + "move_mode": "dash" + }, + { + "x": 3183.4638671875, + "y": -668.1484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3177.5126953125, + "y": -668.67236328125, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + + { + "_x": 3167.27490234375, + "_y": -667.78662109375, + + "x": 3166.3701171875, + "y": -667.390625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.0)", + "//": "只等待,不趋近,否则有可能被怪撞一下成了从远处小碎步逼近,很耗时,会被打死", + "#": "6" + } + ], + + + "positions_not_actived_1":[ + { + "x": 3247.1513671875, + "y": -677.9443359375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3249.44580078125, + "y": -667.3544921875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3249.44580078125, + "y": -667.3544921875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 3249.572265625, + "y": -666.5732421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3248.04931640625, + "y": -666.294921875, + "type": "path", + "move_mode": "walk" + } + ], + + + "positions_not_actived_2":[ + { + "x": 3166.2568359375, + "y": -663.19921875, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + { + "x": 3169.171875, + "y": -663.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3171.65087890625, + "y": -661.556640625, + "type": "target", + "move_mode": "walk", + "#": "8" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json index 7d9ff731..a383f911 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个/7个-f.json @@ -1,195 +1,210 @@ { - "info": { - "name": "狗粮-须弥-二净甸-觉王之殿南-6个/7个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3592.2, - "y": -786.11, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-二净甸-觉王之殿南-6个/7个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3583.61, - "y": -754.22, - "type": "path", - "move_mode": "run" - }, - { - "x": 3591.92, - "y": -727.23, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying" - }, - { - "x": 3592.48, - "y": -726.39, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3592.51, - "y": -732.46, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "1" - }, - { - "x": 3603.56, - "y": -729.31, - "type": "path", - "move_mode": "run" - }, - { - "x": 3608.9, - "y": -729.03, - "type": "target", - "move_mode": "run", - "action": "", - "No.": "2" - }, - { - "x": 3615.45, - "y": -737.79, - "type": "path", - "move_mode": "run" - }, - { - "x": 3623.94, - "y": -757.59, - "type": "path", - "move_mode": "run" - }, - { - "x": 3626.65, - "y": -764.05, - "type": "target", - "move_mode": "run", - "action": "", - "No.": "3" - }, - { - "x": 3641.61, - "y": -776.09, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3643.86, - "y": -781.35, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", - "No.": "4" - }, - { - "x": 3645.62, - "y": -793.23, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3648.55, - "y": -818.23, - "type": "path", - "move_mode": "run" - }, - { - "x": 3671.57, - "y": -864.07, - "type": "path", - "move_mode": "run" - }, - { - "x": 3673.45, - "y": -867.69, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "5" - }, - { - "x": 3703.11, - "y": -845.36, - "type": "path", - "move_mode": "run" - }, - { - "x": 3730.62, - "y": -827.45, - "type": "path", - "move_mode": "run" - }, - { - "x": 3733.57, - "y": -822.08, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3739.74, - "y": -822.09, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3739.3, - "y": -822.89, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3737.39, - "y": -825.03, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "6" - }, - { - "x": 3737.0, - "y": -825.27, - "type": "target", - "move_mode": "walk", - "action": "", - "No.": "6" - } - ], - "positions_not_actived": [ - { - "x": 3760.6845703125, - "y": -833.935546875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3790.6494140625, - "y": -799.51171875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3795.19970703125, - "y": -789.6767578125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3803.39404296875, - "y": -791.34326171875, - "type": "target", - "move_mode": "walk", - "action": "", - "NO.": "7 (重兵把守,不去)" - } - ] + "positions": [ + { + "x": 3592.20458984375, + "y": -786.109375, + "type": "teleport" + }, + { + "x": 3583.609375, + "y": -754.2177734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3591.9248046875, + "y": -727.2333984375, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//":"stop_flying" + }, + { + "x": 3592.4775390625, + "y": -726.39013671875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3592.5107421875, + "y": -732.4560546875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "1" + }, + + { + "x": 3603.5595703125, + "y": -729.30712890625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3608.8974609375, + "y": -729.0302734375, + "type": "target", + "move_mode": "run", + "action":"", + "No.": "2" + }, + + { + "x": 3615.451171875, + "y": -737.78857421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3623.935546875, + "y": -757.58984375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3626.6474609375, + "y": -764.0546875, + "type": "target", + "move_mode": "run", + "action":"", + "No.": "3" + }, + + { + "x": 3641.6064453125, + "y": -776.0947265625, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 3643.86328125, + "y": -781.35302734375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", + "No.": "4" + }, + + { + "x": 3645.6181640625, + "y": -793.22607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3648.5458984375, + "y": -818.228515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3671.57470703125, + "y": -864.06591796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3673.45361328125, + "y": -867.6865234375, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "5" + }, + + { + "x": 3703.1103515625, + "y": -845.35986328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3730.625, + "y": -827.447265625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3733.5703125, + "y": -822.07958984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3739.7431640625, + "y": -822.091796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3739.2978515625, + "y": -822.88916015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3737.3857421875, + "y": -825.0283203125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + }, + { + "x": 3737.0048828125, + "y": -825.27001953125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + } + + ], + + + + "positions_not_actived": [ + { + "x": 3760.6845703125, + "y": -833.935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3790.6494140625, + "y": -799.51171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3795.19970703125, + "y": -789.6767578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3803.39404296875, + "y": -791.34326171875, + "type": "target", + "move_mode": "walk", + "action":"", + "NO.": "7 (重兵把守,不去)" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个-f.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个-f.json index 48f52eb9..88e1823f 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个-f.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个-f.json @@ -1,193 +1,205 @@ { - "info": { - "name": "狗粮-须弥-失落的苗圃-南-8个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3993.82, - "y": -989.4, - "type": "teleport" + "info": { + "name": "狗粮-须弥-失落的苗圃-南-8个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4001.17, - "y": -1050.72, - "type": "path", - "move_mode": "run" - }, - { - "x": 4010.42, - "y": -1055.11, - "type": "orientation" - }, - { - "x": 4010.42, - "y": -1055.11, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 4011.46, - "y": -1061.13, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4014.65, - "y": -1059.46, - "type": "orientation" - }, - { - "x": 4014.65, - "y": -1059.46, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4021.88, - "y": -1053.75, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4031.05, - "y": -1044.8, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4028.52, - "y": -1042.6, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4024.94, - "y": -1040.85, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 4030.02, - "y": -1048.98, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4029.91, - "y": -1062.24, - "type": "path", - "move_mode": "walk", - "//": "jump down" - }, - { - "x": 4024.55, - "y": -1060.62, - "type": "orientation" - }, - { - "x": 4024.55, - "y": -1060.62, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4021.63, - "y": -1058.9, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 4027.26, - "y": -1054.04, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 4028.67, - "y": -1055.16, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 4025.65, - "y": -1077.04, - "type": "path", - "move_mode": "run" - }, - { - "x": 4010.73, - "y": -1081.45, - "type": "path", - "move_mode": "run" - }, - { - "x": 4007.03, - "y": -1073.37, - "type": "target", - "move_mode": "run", - "#": "5" - }, - { - "x": 4007.12, - "y": -1071.92, - "type": "target", - "move_mode": "walk", - "#": "5" - }, - { - "x": 3993.65, - "y": -1085.62, - "type": "path", - "move_mode": "run" - }, - { - "x": 3992.01, - "y": -1090.83, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": 3992.01, - "y": -1090.83, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": 3990.36, - "y": -1086.34, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3996.89, - "y": -1052.46, - "type": "target", - "move_mode": "run", - "#": "7" - }, - { - "x": 3994.18, - "y": -1048.49, - "type": "target", - "move_mode": "walk", - "#": "8" - }, - { - "x": 3994.72, - "y": -1048.44, - "type": "target", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3993.8232421875, + "y": -989.39599609375, + "type": "teleport" + }, + { + "x": 4001.17333984375, + "y": -1050.7236328125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4010.419921875, + "y": -1055.11181640625, + "type": "orientation" + }, + { + "x": 4010.419921875, + "y": -1055.11181640625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 4011.4599609375, + "y": -1061.1279296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4014.65087890625, + "y": -1059.46484375, + "type": "orientation" + }, + + { + "x": 4014.65087890625, + "y": -1059.46484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4021.8759765625, + "y": -1053.74755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4031.04833984375, + "y": -1044.80419921875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4028.52001953125, + "y": -1042.6025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4024.9404296875, + "y": -1040.8513671875, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": 4030.0244140625, + "y": -1048.982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4029.9130859375, + "y": -1062.2412109375, + "type": "path", + "move_mode": "walk", + "//": "jump down" + }, + { + "x": 4024.5498046875, + "y": -1060.61865234375, + "type": "orientation" + }, + { + "x": 4024.5498046875, + "y": -1060.61865234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4021.634765625, + "y": -1058.8955078125, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + { + "x": 4027.2646484375, + "y": -1054.03662109375, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 4028.6748046875, + "y": -1055.15771484375, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + { + "x": 4025.650390625, + "y": -1077.04345703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4010.73388671875, + "y": -1081.44921875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4007.03125, + "y": -1073.3681640625, + "type": "target", + "move_mode": "run", + "#": "5" + }, + { + "x": 4007.1171875, + "y": -1071.9248046875, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + + { + "x": 3993.650390625, + "y": -1085.62353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", + "#": "6" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "#": "6" + }, + + { + "x": 3990.36474609375, + "y": -1086.3388671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3996.8916015625, + "y": -1052.46142578125, + "type": "target", + "move_mode": "run", + "#": "7" + }, + { + "x": 3994.17724609375, + "y": -1048.4873046875, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + { + "x": 3994.71826171875, + "y": -1048.44091796875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-须弥城-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-须弥城-4个.json index ed6fd6af..965bc515 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-须弥城-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-须弥城-4个.json @@ -1,181 +1,199 @@ { - "info": { - "name": "狗粮-须弥-须弥城-4个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 2877.02, - "y": -292.11, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-须弥-须弥城-4个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 2864.76, - "y": -301.87, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 2864.76, - "y": -301.87, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 2844.29, - "y": -293.89, - "type": "path", - "move_mode": "dash" - }, - { - "x": 2801.13, - "y": -291.79, - "type": "path", - "move_mode": "run" - }, - { - "x": 2791.72, - "y": -286.43, - "type": "path", - "move_mode": "run" - }, - { - "x": 2787.93, - "y": -284.36, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 2787.93, - "y": -284.36, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 2786.99, - "y": -503.11, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 2782.64, - "y": -500.25, - "type": "path", - "move_mode": "run" - }, - { - "x": 2759.38, - "y": -497.85, - "type": "path", - "move_mode": "run" - }, - { - "x": 2751.72, - "y": -497.56, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 2752.66, - "y": -496.86, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 2694.06, - "y": -416.45, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 2703.46, - "y": -412.8, - "type": "path", - "move_mode": "run" - }, - { - "x": 2721.87, - "y": -413.49, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.2),click" - }, - { - "x": 2729.29, - "y": -416.33, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 2729.3, - "y": -416.32, - "type": "target", - "move_mode": "walk", - "#": "4" - } - ], - "positions_alt": [ - { - "x": 2694.087890625, - "y": -416.45068359375, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 2700.48828125, - "y": -405.767578125, - "type": "path", - "move_mode": "run" - }, - { - "x": 2712.09375, - "y": -398.57275390625, - "type": "path", - "move_mode": "run" - }, - { - "x": 2722.02734375, - "y": -409.10498046875, - "type": "path", - "move_mode": "run" - }, - { - "x": 2724.9462890625, - "y": -412.029296875, - "type": "path", - "move_mode": "run" - }, - { - "x": 2729.2939453125, - "y": -416.33349609375, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 2729.2958984375, - "y": -416.32177734375, - "type": "target", - "move_mode": "walk", - "#": "4" - } - ] + + "positions": [ + { + "x": 2877.02099609375, + "y": -292.10693359375, + "type": "teleport" + }, + + { + "x": 2864.76025390625, + "y": -301.87109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 2864.76025390625, + "y": -301.87109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 2844.2900390625, + "y": -293.8876953125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 2801.1259765625, + "y": -291.78759765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2791.716796875, + "y": -286.42626953125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 2787.93359375, + "y": -284.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 2787.93359375, + "y": -284.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + + { + "x": 2786.98974609375, + "y": -503.11328125, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 2782.6416015625, + "y": -500.2490234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 2759.3828125, + "y": -497.84619140625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 2751.7177734375, + "y": -497.5625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 2752.6611328125, + "y": -496.85693359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + + { + "x": 2694.0615234375, + "y": -416.45068359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2703.462890625, + "y": -412.796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2721.869140625, + "y": -413.48681640625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.2),click" + }, + + { + "x": 2729.2939453125, + "y": -416.33349609375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 2729.2958984375, + "y": -416.32177734375, + "type": "target", + "move_mode": "walk", + "#": "4" + } + + ], + + + + "positions_alt": [ + { + "x": 2694.087890625, + "y": -416.45068359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2700.48828125, + "y": -405.767578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2712.09375, + "y": -398.57275390625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 2722.02734375, + "y": -409.10498046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2724.9462890625, + "y": -412.029296875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 2729.2939453125, + "y": -416.33349609375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 2729.2958984375, + "y": -416.32177734375, + "type": "target", + "move_mode": "walk", + "#": "4" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json index efb9bf88..d3e6b020 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json @@ -1,39 +1,38 @@ { - "info": { - "name": "(恢复)狗粮-璃月-琼玑野", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 259.49, - "y": -14.03, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-璃月-琼玑野", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 253.82, - "y": -12.02, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 253.68, - "y": -11.07, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 260.88, - "y": -10.79, - "type": "target", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 259.4912109375, + "y": -14.02978515625, + "type": "teleport" + }, + { + "x": 253.8203125, + "y": -12.01953125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 253.6845703125, + "y": -11.06689453125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 260.884765625, + "y": -10.7861328125, + "type": "target", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json index f789b6f6..6164df00 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -1,39 +1,38 @@ { - "info": { - "name": "(恢复)狗粮-稻妻-神无冢", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3233.2, - "y": -3534.19, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-稻妻-神无冢", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3238.42, - "y": -3532.76, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": -3239.14, - "y": -3532.55, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": -3243.41, - "y": -3525.49, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -3233.2021484375, + "y": -3534.1865234375, + "type": "teleport" + }, + { + "x": -3238.419921875, + "y": -3532.7587890625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": -3239.13671875, + "y": -3532.5478515625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": -3243.40625, + "y": -3525.4921875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json index cb561eb8..222b6f4c 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json @@ -1,39 +1,38 @@ { - "info": { - "name": "(恢复)狗粮-纳塔-涌流地", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 8582.04, - "y": -2675.2, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-纳塔-涌流地", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 8579.38, - "y": -2658.3, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 8579.27, - "y": -2657.31, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 8586.72, - "y": -2652.47, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 8582.041015625, + "y": -2675.1962890625, + "type": "teleport" + }, + { + "x": 8579.3798828125, + "y": -2658.2998046875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 8579.26953125, + "y": -2657.3076171875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 8586.71875, + "y": -2652.466796875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-失落的苗圃.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-失落的苗圃.json index 7f59c6f3..454423d6 100644 --- a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-失落的苗圃.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-失落的苗圃.json @@ -1,39 +1,38 @@ { - "info": { - "name": "(恢复)狗粮-须弥-失落的苗圃", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4021.74, - "y": -719.65, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-须弥-失落的苗圃", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4039.89, - "y": -725.55, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 4040.91, - "y": -725.22, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 4038.96, - "y": -718.49, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4021.7421875, + "y": -719.65478515625, + "type": "teleport" + }, + { + "x": 4039.89453125, + "y": -725.5517578125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 4040.9130859375, + "y": -725.21923828125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 4038.962890625, + "y": -718.494140625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json index 6d90470c..aa0115b8 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f.json @@ -1,554 +1,591 @@ { - "info": { - "name": "【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3891.56, - "y": -4389.85, - "type": "teleport" - }, - { - "x": -3888.84, - "y": -4398.54, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3850.68, - "y": -4511.2, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5)", - "//": "stop_flying" - }, - { - "x": -3850.68, - "y": -4511.0, - "type": "target", - "move_mode": "walk", - "#": "SE1" - }, - { - "x": -3850.68, - "y": -4511.0, - "type": "target", - "move_mode": "walk", - "#": "SE1" - }, - { - "x": -3849.72, - "y": -4510.7, - "type": "orientation" - }, - { - "x": -3849.72, - "y": -4510.7, - "type": "target", - "move_mode": "walk", - "#": "SE2" - }, - { - "x": -3847.23, - "y": -4508.52, - "type": "target", - "move_mode": "walk" - }, - { - "x": -3847.5, - "y": -4509.44, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3847.5, - "y": -4511.74, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3853.22, - "y": -4513.23, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3852.63, - "y": -4509.58, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3847.91, - "y": -4508.11, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3847.39, - "y": -4507.15, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3835.58, - "y": -4483.22, - "type": "path", - "move_mode": "dash" - }, - { - "x": -3840.1, - "y": -4483.73, - "type": "orientation" - }, - { - "x": -3840.1, - "y": -4483.73, - "type": "target", - "move_mode": "walk", - "#": "SE3" - }, - { - "x": -3821.77, - "y": -4488.96, - "type": "path", - "move_mode": "dash" - }, - { - "x": -3774.34, - "y": -4462.91, - "type": "path", - "move_mode": "dash" - }, - { - "x": -3780.55, - "y": -4452.1, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3782.16, - "y": -4445.18, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3783.37, - "y": -4439.07, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3790.03, - "y": -4437.59, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3790.07, - "y": -4430.52, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3790.52, - "y": -4424.66, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": -3789.15, - "y": -4417.97, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3785.61, - "y": -4422.54, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(x)", - "//": "stop_climbing", - "#": "2" - }, - { - "x": -3789.09, - "y": -4418.23, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3790.01, - "y": -4421.78, - "type": "orientation" - }, - { - "x": -3790.01, - "y": -4421.78, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3790.29, - "y": -4429.62, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3789.24, - "y": -4436.78, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3782.25, - "y": -4438.56, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3775.79, - "y": -4441.26, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": -3773.93, - "y": -4441.79, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1.0)", - "#": "4" - }, - { - "x": -3747.54, - "y": -4441.66, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3739.94, - "y": -4441.01, - "type": "target", - "move_mode": "walk", - "#": "5 6" - }, - { - "x": -3738.78, - "y": -4439.74, - "type": "target", - "move_mode": "walk", - "#": "5 6" - }, - { - "x": -3740.7, - "y": -4434.82, - "type": "orientation" - }, - { - "x": -3740.7, - "y": -4434.82, - "type": "path", - "move_mode": "jump" - }, - { - "x": -3742.28, - "y": -4432.42, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": -3739.79, - "y": -4426.64, - "type": "path", - "move_mode": "jump" - }, - { - "x": -3742.44, - "y": -4424.33, - "type": "orientation" - }, - { - "x": -3742.44, - "y": -4424.33, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3753.99, - "y": -4424.96, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3747.31, - "y": -4427.42, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3742.92, - "y": -4436.0, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3742.73, - "y": -4441.99, - "type": "target", - "move_mode": "walk", - "#": "8" - }, - { - "x": -3742.25, - "y": -4438.44, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3738.32, - "y": -4442.06, - "type": "orientation" - }, - { - "x": -3738.32, - "y": -4442.06, - "type": "target", - "move_mode": "walk", - "#": "9" - }, - { - "x": -3738.32, - "y": -4442.06, - "type": "target", - "move_mode": "walk", - "#": "9" - }, - { - "x": -3740.61, - "y": -4435.55, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3741.03, - "y": -4425.94, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3743.73, - "y": -4424.89, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3764.12, - "y": -4438.96, - "type": "path", - "move_mode": "dash" - }, - { - "x": -3772.15, - "y": -4439.85, - "type": "target", - "move_mode": "walk", - "#": "10" - }, - { - "x": -3775.47, - "y": -4439.16, - "type": "target", - "move_mode": "walk", - "#": "11" - }, - { - "x": -3776.83, - "y": -4439.1, - "type": "target", - "move_mode": "walk", - "#": "11" - }, - { - "x": -3777.38, - "y": -4440.09, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3777.16, - "y": -4439.61, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3767.13, - "y": -4439.35, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3756.24, - "y": -4437.08, - "type": "path", - "move_mode": "run" - }, - { - "x": -3746.1, - "y": -4434.91, - "type": "path", - "move_mode": "run" - }, - { - "x": -3741.37, - "y": -4432.56, - "type": "target", - "move_mode": "walk", - "#": "12" - }, - { - "x": -3740.29, - "y": -4437.45, - "type": "orientation" - }, - { - "x": -3740.29, - "y": -4437.45, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3738.12, - "y": -4437.6, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3728.73, - "y": -4437.86, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3726.89, - "y": -4433.17, - "type": "target", - "move_mode": "walk", - "#": "13" - }, - { - "x": -3727.5, - "y": -4431.02, - "type": "target", - "move_mode": "walk", - "#": "14" - }, - { - "x": -3730.12, - "y": -4429.97, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3733.76, - "y": -4429.88, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3736.15, - "y": -4431.21, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3732.62, - "y": -4432.68, - "type": "orientation" - }, - { - "x": -3732.62, - "y": -4432.68, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3727.3, - "y": -4432.94, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3718.22, - "y": -4433.0, - "type": "target", - "move_mode": "walk", - "#": "15" - }, - { - "x": -3718.89, - "y": -4432.81, - "type": "target", - "move_mode": "walk", - "#": "15" - }, - { - "x": -3719.91, - "y": -4430.71, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": -3719.91, - "y": -4430.71, - "type": "target", - "move_mode": "walk", - "#": "16" - }, - { - "x": -3719.91, - "y": -4430.71, - "type": "target", - "move_mode": "walk", - "#": "16" - }, - { - "x": -3726.2, - "y": -4429.3, - "type": "orientation" - }, - { - "x": -3726.2, - "y": -4429.3, - "type": "path", - "move_mode": "jump", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.2),click,wait(0.2),keypress(x),wait(0.2)", - "//": "stop_flying and stop_climbing" - }, - { - "x": -3726.67, - "y": -4428.84, - "type": "target", - "move_mode": "walk", - "#": "17" - }, - { - "x": -3726.24, - "y": -4429.43, - "type": "target", - "move_mode": "walk", - "#": "17" - } - ] + "info": { + "name": "【收尾】狗粮-稻妻-清籁岛-清籁丸-20个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "x": -3891.556640625, + "y": -4389.8505859375, + "type": "teleport" + }, + { + "x": -3888.8369140625, + "y": -4398.5390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3850.6845703125, + "y": -4511.197265625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5)", + "//": "stop_flying" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "target", + "move_mode": "walk", + "#": "SE1" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "target", + "move_mode": "walk", + "#": "SE1" + }, + { + "x": -3849.72265625, + "y": -4510.6962890625, + "type": "orientation" + }, + { + "x": -3849.72265625, + "y": -4510.6962890625, + "type": "target", + "move_mode": "walk", + "#": "SE2" + }, + { + "x": -3847.23046875, + "y": -4508.517578125, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3847.4970703125, + "y": -4509.4375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.4970703125, + "y": -4511.7373046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3853.224609375, + "y": -4513.228515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3852.6337890625, + "y": -4509.5849609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.908203125, + "y": -4508.10546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.3916015625, + "y": -4507.1513671875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3835.5830078125, + "y": -4483.216796875, + "type": "path", + "move_mode": "dash" + }, + { + "x": -3840.095703125, + "y": -4483.7294921875, + "type": "orientation" + }, + + { + "x": -3840.095703125, + "y": -4483.7294921875, + "type": "target", + "move_mode": "walk", + "#": "SE3" + }, + + { + "x": -3821.767578125, + "y": -4488.9599609375, + "type": "path", + "move_mode": "dash" + }, + { + "x": -3774.337890625, + "y": -4462.90625, + "type": "path", + "move_mode": "dash" + }, + { + "x": -3780.5498046875, + "y": -4452.0966796875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3782.16015625, + "y": -4445.1845703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3783.3681640625, + "y": -4439.068359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.029296875, + "y": -4437.59375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.07421875, + "y": -4430.5234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3790.515625, + "y": -4424.65625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": -3789.146484375, + "y": -4417.970703125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3785.60546875, + "y": -4422.544921875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(x)", + "//": "stop_climbing", + "#": "2" + }, + + { + "x": -3789.0947265625, + "y": -4418.2265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.009765625, + "y": -4421.7783203125, + "type": "orientation" + }, + { + "x": -3790.009765625, + "y": -4421.7783203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.2919921875, + "y": -4429.623046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3789.244140625, + "y": -4436.77734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3782.248046875, + "y": -4438.5615234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3775.7900390625, + "y": -4441.2607421875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": -3773.9287109375, + "y": -4441.794921875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.0)", + "#": "4" + }, + + { + "x": -3747.5400390625, + "y": -4441.6630859375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3739.9423828125, + "y": -4441.0087890625, + "type": "target", + "move_mode": "walk", + "#": "5 6" + }, + { + "x": -3738.78125, + "y": -4439.7421875, + "type": "target", + "move_mode": "walk", + "#": "5 6" + }, + + { + "x": -3740.69921875, + "y": -4434.8232421875, + "type": "orientation" + }, + { + "x": -3740.69921875, + "y": -4434.8232421875, + "type": "path", + "move_mode": "jump" + }, + + { + "x": -3742.279296875, + "y": -4432.4248046875, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + + { + "x": -3739.787109375, + "y": -4426.6416015625, + "type": "path", + "move_mode": "jump" + }, + { + "x": -3742.4375, + "y": -4424.3310546875, + "type": "orientation" + }, + { + "x": -3742.4375, + "y": -4424.3310546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3753.9892578125, + "y": -4424.9609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3747.310546875, + "y": -4427.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.921875, + "y": -4436.001953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3742.7294921875, + "y": -4441.98828125, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + + { + "x": -3742.2470703125, + "y": -4438.44140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3738.31640625, + "y": -4442.064453125, + "type": "orientation" + }, + + { + "x": -3738.31640625, + "y": -4442.064453125, + "type": "target", + "move_mode": "walk", + "#": "9" + }, + { + "x": -3738.31640625, + "y": -4442.064453125, + "type": "target", + "move_mode": "walk", + "#": "9" + }, + + { + "x": -3740.6142578125, + "y": -4435.5537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3741.0341796875, + "y": -4425.9443359375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3743.734375, + "y": -4424.8876953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3764.1240234375, + "y": -4438.958984375, + "type": "path", + "move_mode": "dash" + }, + + { + "x": -3772.146484375, + "y": -4439.849609375, + "type": "target", + "move_mode": "walk", + "#": "10" + }, + + { + "x": -3775.4658203125, + "y": -4439.1611328125, + "type": "target", + "move_mode": "walk", + "#": "11" + }, + { + "x": -3776.8251953125, + "y": -4439.1015625, + "type": "target", + "move_mode": "walk", + "#": "11" + }, + + { + "x": -3777.375, + "y": -4440.0869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3777.162109375, + "y": -4439.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3767.134765625, + "y": -4439.3466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3756.236328125, + "y": -4437.08203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3746.0966796875, + "y": -4434.9072265625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3741.365234375, + "y": -4432.560546875, + "type": "target", + "move_mode": "walk", + "#": "12" + }, + + { + "x": -3740.294921875, + "y": -4437.44921875, + "type": "orientation" + }, + { + "x": -3740.294921875, + "y": -4437.44921875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3738.1171875, + "y": -4437.6005859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3728.7265625, + "y": -4437.8623046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3726.888671875, + "y": -4433.171875, + "type": "target", + "move_mode": "walk", + "#": "13" + }, + { + "x": -3727.5048828125, + "y": -4431.0224609375, + "type": "target", + "move_mode": "walk", + "#": "14" + }, + + { + "x": -3730.1171875, + "y": -4429.974609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3733.7587890625, + "y": -4429.880859375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3736.1474609375, + "y": -4431.212890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3732.6171875, + "y": -4432.6826171875, + "type": "orientation" + }, + { + "x": -3732.6171875, + "y": -4432.6826171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3727.3017578125, + "y": -4432.943359375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3718.216796875, + "y": -4433.0048828125, + "type": "target", + "move_mode": "walk", + "#": "15" + }, + { + "x": -3718.89453125, + "y": -4432.8076171875, + "type": "target", + "move_mode": "walk", + "#": "15" + }, + + { + "x": -3719.91015625, + "y": -4430.7138671875, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": -3719.91015625, + "y": -4430.7138671875, + "type": "target", + "move_mode": "walk", + "#": "16" + }, + { + "x": -3719.91015625, + "y": -4430.7138671875, + "type": "target", + "move_mode": "walk", + "#": "16" + }, + + { + "x": -3726.197265625, + "y": -4429.3017578125, + "type": "orientation" + }, + { + "x": -3726.197265625, + "y": -4429.3017578125, + "type": "path", + "move_mode": "jump", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.2),click,wait(0.2),keypress(x),wait(0.2)", + "//": "stop_flying and stop_climbing" + }, + + { + "x": -3726.673828125, + "y": -4428.8369140625, + "type": "target", + "move_mode": "walk", + "#": "17" + }, + { + "x": -3726.2431640625, + "y": -4429.431640625, + "type": "target", + "move_mode": "walk", + "#": "17" + } + + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json index 3abf3d56..ac37595b 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json @@ -1,125 +1,134 @@ { - "info": { - "name": "狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3199.88, - "y": 3433.57, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3255.17, - "y": 3466.55, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3274.06, - "y": 3448.47, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3275.7, - "y": 3450.94, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 3276.0, - "y": 3452.83, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3275.96, - "y": 3449.73, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3199.75, - "y": 3433.99, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 3103.66, - "y": 3451.55, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 3105.48, - "y": 3446.94, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 3107.07, - "y": 3445.43, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3104.09, - "y": 3444.1, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 3105.56, - "y": 3441.87, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3087.35, - "y": 3458.84, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3079.52, - "y": 3457.36, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3073.13, - "y": 3457.92, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 3072.23, - "y": 3461.13, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3069.19, - "y": 3461.65, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 3067.75, - "y": 3457.87, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3199.884765625, + "y": 3433.569091796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3255.1708984375, + "y": 3466.55419921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3274.0615234375, + "y": 3448.466064453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3275.6982421875, + "y": 3450.93505859375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3275.99755859375, + "y": 3452.827392578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3275.96484375, + "y": 3449.72509765625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 3199.74853515625, + "y": 3433.9873046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3103.6552734375, + "y": 3451.550537109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + { + "x": 3105.48388671875, + "y": 3446.94287109375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3107.06884765625, + "y": 3445.429931640625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3104.091796875, + "y": 3444.09765625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3105.5556640625, + "y": 3441.872314453125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3087.34521484375, + "y": 3458.84326171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3079.5185546875, + "y": 3457.359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3073.13037109375, + "y": 3457.915283203125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3072.232421875, + "y": 3461.12890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3069.193359375, + "y": 3461.64990234375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3067.74560546875, + "y": 3457.865234375, + "type": "path", + "move_mode": "walk" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json index 51253963..2ac2addb 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json @@ -1,43 +1,43 @@ { - "info": { - "name": "狗粮-枫丹-伊黎耶林区-茉洁站西-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3773.97, - "y": 3784.02, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-伊黎耶林区-茉洁站西-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3852.51, - "y": 3843.24, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3949.0, - "y": 3830.82, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 3949.0, - "y": 3830.82, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 3945.87, - "y": 3833.67, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3773.974609375, + "y": 3784.01513671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3852.51171875, + "y": 3843.235107421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3949.00244140625, + "y": 3830.81884765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3949.00244140625, + "y": 3830.81884765625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3945.8671875, + "y": 3833.670654296875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json index 0d2314d3..fb259f4f 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json @@ -1,49 +1,49 @@ { - "info": { - "name": "狗粮-枫丹-枫丹庭区-西北恩肖家-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4865.44, - "y": 3913.01, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-枫丹庭区-西北恩肖家-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4920.81, - "y": 3951.8, - "type": "path", - "move_mode": "run" - }, - { - "x": 4969.26, - "y": 3986.03, - "type": "path", - "move_mode": "run" - }, - { - "x": 4972.68, - "y": 3998.31, - "type": "path", - "move_mode": "run" - }, - { - "x": 4973.09, - "y": 4002.47, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4974.49, - "y": 4004.09, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4865.4423828125, + "y": 3913.009033203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4920.806640625, + "y": 3951.795654296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4969.2626953125, + "y": 3986.031982421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4972.67529296875, + "y": 3998.30810546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4973.09423828125, + "y": 4002.472900390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": 4974.486328125, + "y": 4004.0869140625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-北-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-北-2个.json index 422199b6..3fc06193 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-北-2个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-北-2个.json @@ -1,71 +1,77 @@ { - "info": { - "name": "狗粮-枫丹-白露区-秋分山西侧-北-2个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4146.75, - "y": 2606.26, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-白露区-秋分山西侧-北-2个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4082.16, - "y": 2597.59, - "type": "path", - "move_mode": "run" - }, - { - "x": 4043.57, - "y": 2606.63, - "type": "target", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4043.57, - "y": 2606.63, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4146.76, - "y": 2606.19, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4192.83, - "y": 2694.12, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4197.68, - "y": 2694.23, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4199.62, - "y": 2694.54, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4203.59, - "y": 2692.79, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4146.75146484375, + "y": 2606.25634765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4082.158203125, + "y": 2597.589599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4043.56982421875, + "y": 2606.634521484375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4043.56982421875, + "y": 2606.634521484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + { + "x": 4146.76171875, + "y": 2606.19140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4192.82666015625, + "y": 2694.12109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4197.68408203125, + "y": 2694.229736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4199.623046875, + "y": 2694.54052734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4203.59423828125, + "y": 2692.78955078125, + "type": "path", + "move_mode": "walk" + } + + + + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json index 27a5cfe0..107f983a 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json @@ -1,87 +1,91 @@ { - "info": { - "name": "狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4146.76, - "y": 2606.25, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4215.85, - "y": 2483.69, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4266.71, - "y": 2467.34, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4261.67, - "y": 2470.94, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4266.96, - "y": 2468.13, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4261.01, - "y": 2462.98, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4258.93, - "y": 2460.27, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4259.06, - "y": 2462.58, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4261.85, - "y": 2453.07, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4266.79, - "y": 2451.41, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 4268.03, - "y": 2448.66, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4266.04, - "y": 2451.68, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + + { + "x": 4146.7646484375, + "y": 2606.246826171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4215.85400390625, + "y": 2483.687255859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4266.70654296875, + "y": 2467.33642578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4261.66748046875, + "y": 2470.94384765625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4266.96435546875, + "y": 2468.134521484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4261.01025390625, + "y": 2462.982666015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4258.93212890625, + "y": 2460.266357421875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4259.05712890625, + "y": 2462.5830078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4261.85400390625, + "y": 2453.07177734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4266.78857421875, + "y": 2451.4091796875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + { + "x": 4268.025390625, + "y": 2448.65576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4266.03662109375, + "y": 2451.679931640625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-东-3个(重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-东-3个(重兵把守).json index 5671dc85..3e34b6a7 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-东-3个(重兵把守).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-东-3个(重兵把守).json @@ -1,67 +1,72 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-东-3个(重兵把守)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3636.08, - "y": 4795.94, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-研究院区-东-3个(重兵把守)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3586.47, - "y": 4721.83, - "type": "path", - "move_mode": "run" - }, - { - "x": 3580.44, - "y": 4716.59, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 3580.36, - "y": 4713.65, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 3580.36, - "y": 4713.65, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 3585.59, - "y": 4717.08, - "type": "path", - "move_mode": "run" - }, - { - "x": 3556.83, - "y": 4736.08, - "type": "path", - "move_mode": "run" - }, - { - "x": 3552.08, - "y": 4737.79, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - } - ] + "positions": [ + { + "x": 3636.08251953125, + "y": 4795.94384765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3586.474609375, + "y": 4721.8291015625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3580.4384765625, + "y": 4716.591796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": 3580.36376953125, + "y": 4713.65234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 3580.36376953125, + "y": 4713.65234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + { + "x": 3585.587890625, + "y": 4717.0830078125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3556.82568359375, + "y": 4736.08056640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3552.07763671875, + "y": 4737.794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json index b6a28fff..7259c02a 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json @@ -1,63 +1,63 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3965.44, - "y": 4718.37, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3909.45, - "y": 4659.08, - "type": "path", - "move_mode": "fly" - }, - { - "x": 3952.26, - "y": 4669.41, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 3955.9, - "y": 4691.76, - "type": "path", - "move_mode": "fly" - }, - { - "x": 3955.9, - "y": 4691.76, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 3958.96, - "y": 4684.19, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 3957.7, - "y": 4691.62, - "type": "target", - "move_mode": "walk", - "action": "pick_around" - }, - { - "x": 3958.36, - "y": 4693.18, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3965.43603515625, + "y": 4718.36572265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3909.44970703125, + "y": 4659.083984375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3952.2607421875, + "y": 4669.4130859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3955.89697265625, + "y": 4691.7587890625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3955.89697265625, + "y": 4691.7587890625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3958.95654296875, + "y": 4684.18603515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3957.703125, + "y": 4691.62255859375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3958.361328125, + "y": 4693.18310546875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-莫尔泰区-七天神像-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-莫尔泰区-七天神像-1个.json index 8d55a992..dca19b7b 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-莫尔泰区-七天神像-1个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-莫尔泰区-七天神像-1个.json @@ -1,67 +1,69 @@ { - "info": { - "name": "狗粮-枫丹-莫尔泰区-七天神像-1个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3563.26, - "y": 3018.39, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-莫尔泰区-七天神像-1个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3579.91, - "y": 3031.24, - "type": "path", - "move_mode": "run" - }, - { - "x": 3591.27, - "y": 3063.64, - "type": "path", - "move_mode": "run" - }, - { - "x": 3591.27, - "y": 3063.64, - "type": "path", - "move_mode": "run" - }, - { - "x": 3591.27, - "y": 3063.64, - "type": "path", - "move_mode": "run" - }, - { - "x": 3590.88, - "y": 3072.69, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3586.43, - "y": 3070.46, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 3583.62, - "y": 3071.28, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3585.63, - "y": 3069.22, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3563.25537109375, + "y": 3018.392578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3579.912109375, + "y": 3031.2421875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3591.27197265625, + "y": 3063.642578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3591.27197265625, + "y": 3063.642578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3591.27197265625, + "y": 3063.642578125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3590.8828125, + "y": 3072.693603515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3586.4267578125, + "y": 3070.46240234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": 3583.62255859375, + "y": 3071.27734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3585.630859375, + "y": 3069.217529296875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json index 8d0376b1..8e58bcf7 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json @@ -1,177 +1,191 @@ { - "info": { - "name": "狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入)", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4984.69, - "y": 4462.96, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入)", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 5087.46, - "y": 4518.2, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5116.93, - "y": 4562.72, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5155.38, - "y": 4591.17, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5158.81, - "y": 4610.67, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5167.92, - "y": 4662.44, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5153.56, - "y": 4666.29, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5145.48, - "y": 4673.15, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5134.19, - "y": 4690.67, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5128.52, - "y": 4654.82, - "type": "path", - "move_mode": "fly" - }, - { - "x": 5129.06, - "y": 4649.13, - "type": "path", - "move_mode": "fly" - }, - { - "x": 5132.37, - "y": 4646.52, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5135.47, - "y": 4645.87, - "type": "target", - "move_mode": "walk", - "action": "pick_around", - "NO.": "1" - }, - { - "x": 5131.74, - "y": 4649.47, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5128.83, - "y": 4654.2, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5133.08, - "y": 4654.2, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5131.2, - "y": 4649.04, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5127.96, - "y": 4652.23, - "type": "target", - "move_mode": "walk", - "action": "pick_around", - "NO.": "2" - }, - { - "x": 5127.74, - "y": 4652.83, - "type": "target", - "move_mode": "walk", - "action": "pick_around", - "NO.": "2r" - }, - { - "x": 5126.42, - "y": 4647.76, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5126.47, - "y": 4646.54, - "type": "target", - "move_mode": "walk", - "action": "pick_around", - "NO.": "3" - }, - { - "x": 5136.3, - "y": 4642.91, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5131.65, - "y": 4643.2, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5128.69, - "y": 4645.87, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5133.14, - "y": 4648.52, - "type": "path", - "move_mode": "walk" - }, - { - "x": 5127.81, - "y": 4650.94, - "type": "target", - "move_mode": "walk", - "action": "pick_around", - "NO.": "4" - } - ] + "positions": [ + { + "x": 4984.69189453125, + "y": 4462.9599609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5087.4580078125, + "y": 4518.19873046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5116.931640625, + "y": 4562.7197265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5155.3828125, + "y": 4591.1708984375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5158.80859375, + "y": 4610.67138671875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 5167.9189453125, + "y": 4662.44189453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5153.55712890625, + "y": 4666.28515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5145.482421875, + "y": 4673.1474609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5134.1943359375, + "y": 4690.6748046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5128.52490234375, + "y": 4654.82421875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5129.06103515625, + "y": 4649.1259765625, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 5132.3681640625, + "y": 4646.5185546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5135.4677734375, + "y": 4645.865234375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "1" + }, + { + "x": 5131.74462890625, + "y": 4649.47119140625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5128.82568359375, + "y": 4654.2001953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5133.08203125, + "y": 4654.2001953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5131.20166015625, + "y": 4649.041015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5127.96484375, + "y": 4652.23193359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "2" + }, + { + "x": 5127.73681640625, + "y": 4652.82568359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "2r" + }, + + { + "x": 5126.41748046875, + "y": 4647.7568359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5126.466796875, + "y": 4646.53564453125, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "3" + }, + + + { + "x": 5136.3017578125, + "y": 4642.9140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5131.6513671875, + "y": 4643.20068359375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5128.68994140625, + "y": 4645.8671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5133.1435546875, + "y": 4648.5234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5127.81005859375, + "y": 4650.935546875, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "4" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-神无冢-无相之火-4个/5个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-神无冢-无相之火-4个/5个.json index 393cbbc7..30b4ead2 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-神无冢-无相之火-4个/5个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-神无冢-无相之火-4个/5个.json @@ -1,146 +1,158 @@ { - "info": { - "name": "狗粮-稻妻-神无冢-无相之火-4个/5个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3234.08, - "y": -3155.54, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-神无冢-无相之火-4个/5个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3224.79, - "y": -3140.48, - "type": "path", - "move_mode": "run" - }, - { - "x": -3203.89, - "y": -3105.04, - "type": "path", - "move_mode": "run" - }, - { - "x": -3146.64, - "y": -3056.37, - "type": "path", - "move_mode": "run" - }, - { - "x": -3137.49, - "y": -3051.47, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": -3143.03, - "y": -3036.34, - "type": "path", - "move_mode": "run" - }, - { - "x": -3143.99, - "y": -3021.74, - "type": "path", - "move_mode": "run" - }, - { - "x": -3138.85, - "y": -3023.95, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": -3155.22, - "y": -3014.22, - "type": "path", - "move_mode": "run" - }, - { - "x": -3164.2, - "y": -2974.9, - "type": "path", - "move_mode": "run" - }, - { - "x": -3187.4, - "y": -2966.37, - "type": "path", - "move_mode": "run" - }, - { - "x": -3210.86, - "y": -2965.26, - "type": "path", - "move_mode": "run" - }, - { - "x": -3219.1, - "y": -2964.89, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": -3225.21, - "y": -2957.17, - "type": "path", - "move_mode": "run" - }, - { - "x": -3256.23, - "y": -2981.81, - "type": "path", - "move_mode": "run" - }, - { - "x": -3285.53, - "y": -2971.02, - "type": "path", - "move_mode": "run" - }, - { - "x": -3287.64, - "y": -2964.94, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3288.87, - "y": -2963.96, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "4" - } - ], - "position_not_actived": [ - { - "#": "有干扰,不拿" - }, - { - "x": -3287.2421875, - "y": -2965.2568359375, - "type": "target", - "move_mode": "walk" - }, - { - "x": -3283.380859375, - "y": -2967.396484375, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "5" - } - ] + "positions": [ + { + "x": -3234.0810546875, + "y": -3155.5439453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3224.7939453125, + "y": -3140.484375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3203.8857421875, + "y": -3105.0390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3146.64453125, + "y": -3056.3671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3137.4912109375, + "y": -3051.470703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3143.033203125, + "y": -3036.3447265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3143.990234375, + "y": -3021.7373046875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3138.84765625, + "y": -3023.9462890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3155.2236328125, + "y": -3014.216796875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3164.201171875, + "y": -2974.904296875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3187.404296875, + "y": -2966.365234375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3210.8642578125, + "y": -2965.259765625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3219.095703125, + "y": -2964.89453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -3225.208984375, + "y": -2957.173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3256.2265625, + "y": -2981.8115234375, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": -3285.53125, + "y": -2971.0166015625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3287.6435546875, + "y": -2964.935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3288.8740234375, + "y": -2963.955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + } + + ], + + + + "position_not_actived": [ + { "#": "有干扰,不拿" }, + + { + "x": -3287.2421875, + "y": -2965.2568359375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3283.380859375, + "y": -2967.396484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东-3个.json index f98b92a0..22c86b54 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东-3个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东-3个.json @@ -1,73 +1,78 @@ { - "info": { - "name": "狗粮-稻妻-鹤观-东-3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3269.35, - "y": -6136.1, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-鹤观-东-3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3220.76, - "y": -6183.29, - "type": "path", - "move_mode": "run" - }, - { - "x": -3219.52, - "y": -6216.24, - "type": "path", - "move_mode": "run" - }, - { - "x": -3228.19, - "y": -6219.23, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": -3228.86, - "y": -6222.72, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": -3260.61, - "y": -6212.1, - "type": "path", - "move_mode": "run" - }, - { - "x": -3271.36, - "y": -6215.75, - "type": "target", - "move_mode": "run", - "action": "", - "#": "3" - }, - { - "x": -3270.76, - "y": -6215.49, - "type": "target", - "move_mode": "run", - "action": "", - "#": "3" - }, - { - "x": -3270.38, - "y": -6217.88, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -3269.3486328125, + "y": -6136.1025390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3220.759765625, + "y": -6183.2890625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3219.5185546875, + "y": -6216.2353515625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3228.1904296875, + "y": -6219.2265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3228.859375, + "y": -6222.716796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3260.61328125, + "y": -6212.1015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3271.361328125, + "y": -6215.748046875, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + }, + { + "x": -3270.759765625, + "y": -6215.4892578125, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + }, + + { + "x": -3270.3818359375, + "y": -6217.875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-枫丹-莫尔泰区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-枫丹-莫尔泰区.json index d0c5ba04..85505401 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-枫丹-莫尔泰区.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-枫丹-莫尔泰区.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-枫丹-莫尔泰区", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3563.38, - "y": 3018.5, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-枫丹-莫尔泰区", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3555.64, - "y": 3022.38, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 3554.94, - "y": 3022.57, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 3559.69, - "y": 3023.56, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3563.3828125, + "y": 3018.495849609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3555.6435546875, + "y": 3022.383056640625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 3554.9365234375, + "y": 3022.57373046875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 3559.69140625, + "y": 3023.555419921875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-稻妻-鹤观.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-稻妻-鹤观.json index 4a4dc1ff..c7d3bb46 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-稻妻-鹤观.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-稻妻-鹤观.json @@ -1,31 +1,31 @@ { - "info": { - "name": "(恢复)狗粮-稻妻-鹤观", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3269.42, - "y": -6135.95, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-稻妻-鹤观", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3270.25, - "y": -6134.66, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(2)" - }, - { - "x": -3268.16, - "y": -6139.04, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -3269.4228515625, + "y": -6135.947265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3270.248046875, + "y": -6134.6552734375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2)" + }, + { + "x": -3268.1572265625, + "y": -6139.0361328125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json index 0742243a..589d8131 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f.json @@ -1,57 +1,61 @@ { - "info": { - "name": "狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3595.62, - "y": 3254.41, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3611.26, - "y": 3270.22, - "type": "path", - "move_mode": "run" - }, - { - "x": 3615.74, - "y": 3276.54, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 1 - }, - { - "x": 3611.2, - "y": 3278.96, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3594.38, - "y": 3287.0, - "type": "path", - "move_mode": "run" - }, - { - "x": 3585.17, - "y": 3289.4, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 3583.75, - "y": 3290.64, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3595.623046875, + "y": 3254.41259765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3611.2626953125, + "y": 3270.2216796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3615.7373046875, + "y": 3276.536865234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 3611.1953125, + "y": 3278.960693359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3594.375, + "y": 3287.00341796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3585.166015625, + "y": 3289.40185546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 3583.75390625, + "y": 3290.641845703125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-枫丹庭区-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-枫丹庭区-3个.json index 152c2610..61125b4e 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-枫丹庭区-3个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-枫丹庭区-3个.json @@ -1,89 +1,94 @@ { - "info": { - "name": "狗粮-枫丹-枫丹庭区-3个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4508.96, - "y": 3630.58, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-枫丹庭区-3个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4494.82, - "y": 3628.3, - "type": "path", - "move_mode": "run" - }, - { - "x": 4460.49, - "y": 3609.28, - "type": "path", - "move_mode": "run" - }, - { - "x": 4455.14, - "y": 3607.5, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.8)", - "#": "1" - }, - { - "x": 4469.87, - "y": 3599.38, - "type": "path", - "move_mode": "run" - }, - { - "x": 4492.45, - "y": 3582.13, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4500.47, - "y": 3593.02, - "type": "path", - "move_mode": "run" - }, - { - "x": 4502.93, - "y": 3596.22, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 4502.9, - "y": 3593.29, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4483.99, - "y": 3574.08, - "type": "path", - "move_mode": "run" - }, - { - "x": 4470.6, - "y": 3566.29, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 4470.83, - "y": 3566.03, - "type": "target", - "move_mode": "walk", - "#": "3" - } - ] + "positions": [ + { + "x": 4508.962890625, + "y": 3630.5791015625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4494.81640625, + "y": 3628.29736328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4460.48828125, + "y": 3609.280517578125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4455.14306640625, + "y": 3607.502685546875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", + "#" : "1" + }, + + { + "x": 4469.8671875, + "y": 3599.378662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4492.447265625, + "y": 3582.13427734375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4500.4716796875, + "y": 3593.018310546875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4502.93115234375, + "y": 3596.22021484375, + "type": "target", + "move_mode": "walk", + "#" : "2" + }, + + { + "x": 4502.8984375, + "y": 3593.287353515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4483.99267578125, + "y": 3574.0771484375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4470.59619140625, + "y": 3566.292724609375, + "type": "target", + "move_mode": "walk", + "#" : "3" + }, + { + "x": 4470.8291015625, + "y": 3566.026123046875, + "type": "target", + "move_mode": "walk", + "#" : "3" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json index 08235158..64635ac7 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个-f~m.json @@ -1,38 +1,38 @@ { - "info": { - "name": "狗粮-枫丹-白露区-秋分山东侧-2个-f~m", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3917.18, - "y": 2576.29, - "type": "teleport" + "info": { + "name": "狗粮-枫丹-白露区-秋分山东侧-2个-f~m", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3904.1, - "y": 2547.26, - "type": "path", - "move_mode": "run" - }, - { - "x": 3899.57, - "y": 2543.32, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 3883.03, - "y": 2526.17, - "type": "target", - "move_mode": "run", - "action": "combat_script", - "action_params": "wait(0.8)", - "#": "2" - } - ] + "positions": [ + { + "x": 3917.1767578125, + "y": 2576.28662109375, + "type": "teleport" + }, + { + "x": 3904.10498046875, + "y": 2547.26171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3899.5673828125, + "y": 2543.31640625, + "type": "target", + "move_mode": "walk", + "#" : "1" + }, + { + "x": 3883.2314453125, + "y": 2526.55029296875, + "type": "target", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.8)", + "#" : "2" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json index 6b341774..736b078c 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json @@ -1,141 +1,150 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4001.06, - "y": 4878.44, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3951.51, - "y": 4831.57, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(1),click", - "//": "stop_flying" - }, - { - "x": 3950.23, - "y": 4837.31, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3941.91, - "y": 4860.54, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 3941.91, - "y": 4860.54, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3947.99, - "y": 4863.25, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3951.83, - "y": 4861.88, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 3951.83, - "y": 4861.88, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3953.05, - "y": 4853.21, - "type": "target", - "move_mode": "walk", - "#": 1 - }, - { - "x": 3953.16, - "y": 4857.78, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3946.52, - "y": 4876.2, - "type": "target", - "move_mode": "dash", - "#": 2 - }, - { - "x": 3947.05, - "y": 4876.59, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 3952.74, - "y": 4876.56, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3955.45, - "y": 4878.79, - "type": "target", - "move_mode": "walk" - }, - { - "x": 3955.88, - "y": 4881.54, - "type": "target", - "move_mode": "walk", - "#": 3 - }, - { - "x": 3957.56, - "y": 4876.62, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 3957.56, - "y": 4876.62, - "type": "path", - "move_mode": "fly" - }, - { - "x": 3961.28, - "y": 4875.99, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 3961.28, - "y": 4875.99, - "type": "target", - "move_mode": "walk", - "#": 4 - }, - { - "x": 3961.28, - "y": 4876.02, - "type": "target", - "move_mode": "walk", - "#": 4 - } - ] + "positions": [ + { + "x": 4001.06298828125, + "y": 4878.43701171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3951.5068359375, + "y": 4831.5673828125, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(1),click", + "//": "stop_flying" + }, + { + "x": 3950.2333984375, + "y": 4837.30517578125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3941.9130859375, + "y": 4860.5400390625, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 3941.9130859375, + "y": 4860.5400390625, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 3947.9853515625, + "y": 4863.24560546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3951.8271484375, + "y": 4861.8828125, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 3951.8271484375, + "y": 4861.8828125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3953.05126953125, + "y": 4853.205078125, + "type": "target", + "move_mode": "walk", + "#": 1 + }, + + { + "x": 3953.16015625, + "y": 4857.77587890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3946.5185546875, + "y": 4876.19873046875, + "type": "target", + "move_mode": "dash", + "#": 2 + }, + { + "x": 3947.05419921875, + "y": 4876.5859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 3952.7421875, + "y": 4876.5595703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3955.4482421875, + "y": 4878.791015625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3955.875, + "y": 4881.54345703125, + "type": "target", + "move_mode": "walk", + "#": 3 + }, + + { + "x": 3957.5615234375, + "y": 4876.62255859375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 3957.5615234375, + "y": 4876.62255859375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3961.2841796875, + "y": 4875.99462890625, + "type": "orientation", + "move_mode": "walk" + }, + + { + "x": 3961.2841796875, + "y": 4875.99462890625, + "type": "target", + "move_mode": "walk", + "#": 4 + }, + { + "x": 3961.27734375, + "y": 4876.01904296875, + "type": "target", + "move_mode": "walk", + "#": 4 + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中部塔内-9个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中部塔内-9个.json index f98ceb2e..dc9407e5 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中部塔内-9个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中部塔内-9个.json @@ -1,390 +1,426 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-中部塔内-9个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4434.34, - "y": 5091.71, - "type": "teleport" + "info": { + "name": "狗粮-枫丹-研究院区-中部塔内-9个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4424.36, - "y": 5069.71, - "type": "target", - "move_mode": "dash" - }, - { - "x": 4417.84, - "y": 5069.59, - "type": "orientation" - }, - { - "x": 4417.84, - "y": 5069.59, - "type": "target", - "move_mode": "walk", - "#": "PRE-1" - }, - { - "x": 4376.32, - "y": 4970.15, - "type": "path", - "move_mode": "dash", - "action": "combat_script", - "action_params": "wait(1.0)", - "//": "稍等体力恢复" - }, - { - "x": 4418.76, - "y": 4953.27, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4407.5, - "y": 4929.35, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4400.65, - "y": 4929.1, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4396.62, - "y": 4929.17, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 4399.11, - "y": 4928.03, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4399.26, - "y": 4926.96, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4399.7, - "y": 4922.84, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 4399.7, - "y": 4922.84, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 4397.94, - "y": 4923.75, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4395.0, - "y": 4925.74, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1.5)", - "//": "jump down, and do wait, otherwise.." - }, - { - "x": 4397.48, - "y": 4928.08, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 4397.48, - "y": 4928.08, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4397.41, - "y": 4931.02, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 4398.18, - "y": 4924.87, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 4398.18, - "y": 4924.87, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4396.33, - "y": 4922.46, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 4399.39, - "y": 4924.0, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4402.6, - "y": 4920.79, - "type": "target", - "move_mode": "walk", - "#": "5" - }, - { - "x": 4403.12, - "y": 4925.39, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4402.43, - "y": 4931.62, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4405.82, - "y": 4927.55, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4403.24, - "y": 4922.18, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4398.4, - "y": 4929.3, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4404.35, - "y": 4924.26, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 4404.35, - "y": 4924.26, - "type": "target", - "move_mode": "walk", - "//": "为了背对交互干扰" - }, - { - "x": 4401.72, - "y": 4921.89, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 4401.62, - "y": 4921.92, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": 4401.01, - "y": 4921.61, - "type": "target", - "move_mode": "walk" - }, - { - "x": 4398.99, - "y": 4921.73, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": 4398.99, - "y": 4921.73, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": 4398.79, - "y": 4933.11, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4405.44, - "y": 4929.71, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4398.93, - "y": 4921.35, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1.0)", - "#": "8" - }, - { - "x": 4400.16, - "y": 4919.91, - "type": "path", - "move_mode": "walk" - } - ], - "positions0": [ - { - "x": 4431.7890625, - "y": 5035.330078125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4380.36376953125, - "y": 4978.099609375, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4412.21630859375, - "y": 4947.82373046875, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4413.69677734375, - "y": 4943.3505859375, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4407.21728515625, - "y": 4929.189453125, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4409.076171875, - "y": 4929.76953125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4407.21728515625, - "y": 4929.189453125, - "type": "path", - "move_mode": "fly" - } - ], - "positions1": [ - { - "x": 4434.33154296875, - "y": 5091.71044921875, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4417.314453125, - "y": 4961.27783203125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4412.79833984375, - "y": 4944.1826171875, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4407.5029296875, - "y": 4929.724609375, - "type": "path", - "move_mode": "fly" - } - ], - "positions2": [ - { - "x": 4301.30615234375, - "y": 4764.99169921875, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4302.07177734375, - "y": 4765.6455078125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4309.3291015625, - "y": 4771.69921875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4315.44921875, - "y": 4804.60595703125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4324.7705078125, - "y": 4816.994140625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4343.58203125, - "y": 4872.6142578125, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4360.2294921875, - "y": 4890.021484375, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4373.55517578125, - "y": 4890.02734375, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4403.61279296875, - "y": 4920.849609375, - "type": "path", - "move_mode": "fly" - } - ] + + "positions":[ + { + "x": 4434.34375, + "y": 5091.7138671875, + "type": "teleport" + }, + + { + "x": 4424.3642578125, + "y": 5069.7080078125, + "type": "target", + "move_mode": "dash" + }, + { + "x": 4417.84228515625, + "y": 5069.5908203125, + "type": "orientation" + }, + { + "x": 4417.84228515625, + "y": 5069.5908203125, + "type": "target", + "move_mode": "walk", + "#" : "PRE-1" + }, + + { + "x": 4376.3173828125, + "y": 4970.154296875, + "type": "path", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(1.0)", + "//": "稍等体力恢复" + }, + { + "x": 4418.76025390625, + "y": 4953.2685546875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4407.50048828125, + "y": 4929.35205078125, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 4400.6455078125, + "y": 4929.09765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4396.62255859375, + "y": 4929.1748046875, + "type": "target", + "move_mode": "walk", + "#" : "1" + }, + + { + "x": 4399.10888671875, + "y": 4928.0341796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4399.25732421875, + "y": 4926.962890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4399.69970703125, + "y": 4922.84375, + "type": "target", + "move_mode": "walk", + "#" : "2" + }, + { + "x": 4399.69970703125, + "y": 4922.84375, + "type": "target", + "move_mode": "walk", + "#" : "2" + }, + + { + "x": 4397.93994140625, + "y": 4923.75048828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4395, + "y": 4925.7412109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.5)", + "//": "jump down, and do wait, otherwise.." + }, + + { + "x": 4397.484375, + "y": 4928.078125, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 4397.484375, + "y": 4928.078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4397.40869140625, + "y": 4931.0205078125, + "type": "target", + "move_mode": "walk", + "#" : "3" + }, + + { + "x": 4398.18115234375, + "y": 4924.869140625, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 4398.18115234375, + "y": 4924.869140625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4396.32568359375, + "y": 4922.4599609375, + "type": "target", + "move_mode": "walk", + "#" : "4" + }, + { + "x": 4399.39453125, + "y": 4924.00048828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4402.60205078125, + "y": 4920.79248046875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", + "#" : "5" + }, + + { + "x": 4403.11767578125, + "y": 4925.39306640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4402.4287109375, + "y": 4931.62451171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4405.81787109375, + "y": 4927.55078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4403.23828125, + "y": 4922.1796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4398.400390625, + "y": 4929.298828125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4404.35009765625, + "y": 4924.2646484375, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 4404.35009765625, + "y": 4924.2646484375, + "type": "target", + "move_mode": "walk", + "//": "为了背对交互干扰" + }, + { + "x": 4401.71728515625, + "y": 4921.8876953125, + "type": "orientation", + "move_mode": "walk" + }, + + { + "x": 4401.623046875, + "y": 4921.9248046875, + "type": "target", + "move_mode": "walk", + "#" : "6" + }, + { + "x": 4401.01220703125, + "y": 4921.61474609375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4398.994140625, + "y": 4921.734375, + "type": "target", + "move_mode": "walk", + "#" : "7" + }, + { + "x": 4398.994140625, + "y": 4921.734375, + "type": "target", + "move_mode": "walk", + "#" : "7" + }, + + { + "x": 4398.7900390625, + "y": 4933.11328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4405.4384765625, + "y": 4929.7138671875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4398.93408203125, + "y": 4921.35107421875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.0)", + "#" : "8" + }, + { + "x": 4400.162109375, + "y": 4919.91455078125, + "type": "path", + "move_mode": "walk" + } + ], + + + + + "positions0": + [ + { + "x": 4431.7890625, + "y": 5035.330078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4380.36376953125, + "y": 4978.099609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4412.21630859375, + "y": 4947.82373046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4413.69677734375, + "y": 4943.3505859375, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 4407.21728515625, + "y": 4929.189453125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4409.076171875, + "y": 4929.76953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4407.21728515625, + "y": 4929.189453125, + "type": "path", + "move_mode": "fly" + } + ], + + "positions1": + [ + { + "x": 4434.33154296875, + "y": 5091.71044921875, + "type": "teleport", + "move_mode": "walk" + }, + + + { + "x": 4417.314453125, + "y": 4961.27783203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4412.79833984375, + "y": 4944.1826171875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4407.5029296875, + "y": 4929.724609375, + "type": "path", + "move_mode": "fly" + } + + ], + + "positions2": + [ + { + "x": 4301.30615234375, + "y": 4764.99169921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4302.07177734375, + "y": 4765.6455078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4309.3291015625, + "y": 4771.69921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4315.44921875, + "y": 4804.60595703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4324.7705078125, + "y": 4816.994140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4343.58203125, + "y": 4872.6142578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4360.2294921875, + "y": 4890.021484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4373.55517578125, + "y": 4890.02734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4403.61279296875, + "y": 4920.849609375, + "type": "path", + "move_mode": "fly" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json index 7c3a76a4..5789896a 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个-f.json @@ -1,75 +1,80 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-学术会堂-1个/2个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4143.9, - "y": 4423.59, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-研究院区-学术会堂-1个/2个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4145.67, - "y": 4418.83, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": 4145.67, - "y": 4418.83, - "type": "target", - "move_mode": "walk", - "action": "" - } - ], - "position_not_actived": [ - { - "#": "太远" - }, - { - "x": 3923.07763671875, - "y": 4233.857421875, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4097.6533203125, - "y": 4326.37890625, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4097.95361328125, - "y": 4324.28125, - "type": "target", - "move_mode": "walk", - "action": "pick_around", - "#": "2" - }, - { - "x": 4096.02294921875, - "y": 4327.2353515625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4099.0654296875, - "y": 4328.869140625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4098.09765625, - "y": 4325.27490234375, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4143.8984375, + "y": 4423.59228515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4145.66552734375, + "y": 4418.8349609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 4145.66552734375, + "y": 4418.8349609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + + ], + + + + "position_not_actived": [ + { "#": "太远" }, + + { + "x": 3923.07763671875, + "y": 4233.857421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4097.6533203125, + "y": 4326.37890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4097.95361328125, + "y": 4324.28125, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "#": "2" + }, + + { + "x": 4096.02294921875, + "y": 4327.2353515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4099.0654296875, + "y": 4328.869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4098.09765625, + "y": 4325.27490234375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json index cb06e666..65554b58 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f.json @@ -1,238 +1,250 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4301.29, - "y": 4765.06, - "type": "teleport" + "info": { + "name": "狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4313.75, - "y": 4774.91, - "type": "orientation" - }, - { - "x": 4313.75, - "y": 4774.91, - "type": "path", - "move_mode": "run" - }, - { - "x": 4285.87, - "y": 4791.92, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4212.13, - "y": 4820.11, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4205.06, - "y": 4816.87, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 4204.54, - "y": 4816.44, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 4199.63, - "y": 4803.57, - "type": "path", - "move_mode": "run" - }, - { - "x": 4200.82, - "y": 4790.58, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying 下落后会逼近路径点,此处没必要" - }, - { - "x": 4196.68, - "y": 4697.36, - "type": "path", - "move_mode": "run" - }, - { - "x": 4196.96, - "y": 4692.53, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4195.91, - "y": 4690.8, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 4188.53, - "y": 4676.29, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 4188.53, - "y": 4676.29, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 4198.26, - "y": 4662.75, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4213.29, - "y": 4650.25, - "type": "path", - "move_mode": "run" - }, - { - "x": 4209.57, - "y": 4630.25, - "type": "path", - "move_mode": "run" - }, - { - "x": 4216.02, - "y": 4628.65, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 4216.02, - "y": 4628.65, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 4216.02, - "y": 4628.65, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 4202.35, - "y": 4620.68, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 4202.35, - "y": 4620.68, - "type": "path", - "move_mode": "run" - }, - { - "x": 4207.31, - "y": 4618.19, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": 4207.35, - "y": 4618.45, - "type": "target", - "move_mode": "walk", - "#": "5 6" - }, - { - "x": 4207.36, - "y": 4618.67, - "type": "target", - "move_mode": "walk", - "#": "5 6" - }, - { - "x": 4206.82, - "y": 4621.38, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4209.16, - "y": 4618.73, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4206.96, - "y": 4616.66, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4202.59, - "y": 4619.14, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4205.4, - "y": 4620.48, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4196.43, - "y": 4624.15, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4117.17, - "y": 4661.07, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4114.39, - "y": 4667.3, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": 4111.8, - "y": 4666.82, - "type": "target", - "move_mode": "walk", - "#": "8" - }, - { - "x": 4109.93, - "y": 4668.49, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4116.1, - "y": 4671.53, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4301.29443359375, + "y": 4765.06494140625, + "type": "teleport" + }, + { + "x": 4313.7529296875, + "y": 4774.91015625, + "type": "orientation" + }, + { + "x": 4313.7529296875, + "y": 4774.91015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4285.86669921875, + "y": 4791.9169921875, + "type": "path", + "move_mode": "dash" + }, + { + "x": 4212.12548828125, + "y": 4820.1083984375, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 4205.05615234375, + "y": 4816.8740234375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 4204.53515625, + "y": 4816.443359375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 4199.63134765625, + "y": 4803.568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4200.82080078125, + "y": 4790.57666015625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "stop_flying 下落后会逼近路径点,此处没必要" + }, + { + "x": 4196.68310546875, + "y": 4697.35986328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4196.9599609375, + "y": 4692.5341796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4195.91455078125, + "y": 4690.79541015625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 4188.525390625, + "y": 4676.29345703125, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 4188.525390625, + "y": 4676.29345703125, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + { + "x": 4198.255859375, + "y": 4662.74658203125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4213.29052734375, + "y": 4650.2529296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4209.56982421875, + "y": 4630.24658203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4216.02392578125, + "y": 4628.65380859375, + "type": "orientation", + "move_mode": "walk" + }, + + { + "x": 4216.02392578125, + "y": 4628.65380859375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 4216.02392578125, + "y": 4628.65380859375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + { + "x": 4202.34814453125, + "y": 4620.67626953125, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": 4202.34814453125, + "y": 4620.67626953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4207.314453125, + "y": 4618.18701171875, + "type": "orientation", + "move_mode": "walk" + }, + + { + "x": 4207.35, + "y": 4618.45, + "type": "target", + "move_mode": "walk", + "#": "5 6" + }, + { + "x": 4207.35888671875, + "y": 4618.669921875, + "type": "target", + "move_mode": "walk", + "#": "5 6" + }, + + { + "x": 4206.8193359375, + "y": 4621.3759765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4209.15869140625, + "y": 4618.73046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4206.95751953125, + "y": 4616.6552734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4202.58935546875, + "y": 4619.142578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4205.3994140625, + "y": 4620.47705078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4196.42578125, + "y": 4624.1474609375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4117.1728515625, + "y": 4661.068359375, + "type": "path", + "move_mode": "dash" + }, + { + "x": 4114.39453125, + "y": 4667.30078125, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + { + "x": 4111.79736328125, + "y": 4666.82373046875, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + + { + "x": 4109.9345703125, + "y": 4668.48681640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4116.1015625, + "y": 4671.5322265625, + "type": "path", + "move_mode": "walk" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json index aa89e7a8..a09824b8 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json @@ -1,201 +1,204 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-西北-6个/7个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4624.36, - "y": 4951.77, - "type": "teleport" + "info": { + "name": "狗粮-枫丹-研究院区-西北-6个/7个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4607.05, - "y": 4943.2, - "type": "path", - "move_mode": "run" - }, - { - "x": 4604.59, - "y": 4933.92, - "type": "orientation" - }, - { - "x": 4604.59, - "y": 4933.92, - "type": "target", - "move_mode": "run", - "#": "1" - }, - { - "x": 4604.59, - "y": 4933.92, - "type": "target", - "move_mode": "run", - "#": "1" - }, - { - "x": 4609.61, - "y": 4937.72, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4695.14, - "y": 4995.16, - "type": "path", - "move_mode": "run" - }, - { - "x": 4685.82, - "y": 5006.55, - "type": "path", - "move_mode": "run" - }, - { - "x": 4677.63, - "y": 4998.97, - "type": "orientation" - }, - { - "x": 4677.63, - "y": 4998.97, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.8)", - "#": "2" - }, - { - "x": 4688.03, - "y": 4989.87, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4731.58, - "y": 4946.59, - "type": "path", - "move_mode": "run" - }, - { - "x": 4726.75, - "y": 4935.32, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.2),click", - "//": "stop_flying" - }, - { - "x": 4723.99, - "y": 4932.69, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 4706.39, - "y": 4924.84, - "type": "path", - "move_mode": "run" - }, - { - "x": 4722.03, - "y": 4911.13, - "type": "path", - "move_mode": "run" - }, - { - "x": 4728.32, - "y": 4906.86, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4734.84, - "y": 4902.87, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 4735.63, - "y": 4902.67, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 4746.91, - "y": 4912.09, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4752.42, - "y": 4912.72, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(x)", - "//": "stop_climbing", - "#": "5" - }, - { - "x": 4752.42, - "y": 4912.72, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(x)", - "//": "stop_climbing", - "#": "5" - }, - { - "x": 4751.49, - "y": 4912.4, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4747.04, - "y": 4906.86, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4758.87, - "y": 4900.0, - "type": "orientation" - }, - { - "x": 4758.87, - "y": 4900.0, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": 4758.87, - "y": 4900.0, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": 4758.91, - "y": 4899.86, - "type": "path", - "move_mode": "walk" - } - ], - "positions_not_actived": [ - { - "#": "有一个不拿,有干扰(就没录)" - } - ] + "positions": [ + { + "x": 4624.3583984375, + "y": 4951.76953125, + "type": "teleport" + }, + + { + "x": 4610.19580078125, + "y": 4933.4912109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4605.03564453125, + "y": 4934.54052734375, + "type": "orientation" + }, + { + "x": 4605.03564453125, + "y": 4934.54052734375, + "type": "target", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.8)", + "#": "1" + }, + + { + "x": 4609.60595703125, + "y": 4937.71826171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4695.14013671875, + "y": 4995.1630859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4685.82080078125, + "y": 5006.54736328125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4677.62548828125, + "y": 4998.96630859375, + "type": "orientation" + }, + { + "x": 4677.62548828125, + "y": 4998.96630859375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", + "#": "2" + }, + + { + "x": 4688.0302734375, + "y": 4989.86865234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4731.576171875, + "y": 4946.5927734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4726.74853515625, + "y": 4935.31982421875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.2),click", + "//": "stop_flying" + }, + + + { + "x": 4723.99169921875, + "y": 4932.6865234375, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 4706.38916015625, + "y": 4924.84423828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4722.03076171875, + "y": 4911.13134765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4728.322265625, + "y": 4906.859375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4734.841796875, + "y": 4902.86572265625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 4735.62841796875, + "y": 4902.6748046875, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + { + "x": 4746.90625, + "y": 4912.08740234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4752.42041015625, + "y": 4912.71875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(x)", + "//": "stop_climbing", + "#": "5" + }, + { + "x": 4752.42041015625, + "y": 4912.71875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(x)", + "//": "stop_climbing", + "#": "5" + }, + + { + "x": 4751.48681640625, + "y": 4912.39501953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4747.041015625, + "y": 4906.857421875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4758.86865234375, + "y": 4899.99755859375, + "type": "orientation" + }, + { + "x": 4758.86865234375, + "y": 4899.99755859375, + "type": "target", + "move_mode": "walk", + "#": "6" + }, + { + "x": 4758.86865234375, + "y": 4899.99755859375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8)", + "#": "6" + } + + ], + + "positions_not_actived": [ + { "#": "有一个不拿,有干扰(就没录)" } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个-m-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个-m-f.json index a76f2ed0..7dba149d 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个-m-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个-m-f.json @@ -1,152 +1,167 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-西南偏南-6个-m-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4498.21, - "y": 4710.75, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-研究院区-西南偏南-6个-m-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4509.79, - "y": 4703.54, - "type": "path", - "move_mode": "run" - }, - { - "x": 4524.94, - "y": 4693.33, - "type": "path", - "move_mode": "run" - }, - { - "x": 4529.02, - "y": 4688.63, - "type": "target", - "move_mode": "walk", - "#": "1-1", - "x_": 4529.025390625, - "y_": 4688.64208984375 - }, - { - "x": 4516.02, - "y": 4647.35, - "type": "path", - "move_mode": "run" - }, - { - "x": 4515.14, - "y": 4642.24, - "type": "target", - "move_mode": "walk", - "#": "1-2" - }, - { - "x": 4480.58, - "y": 4585.61, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4463.65, - "y": 4587.28, - "type": "path", - "move_mode": "run" - }, - { - "x": 4456.24, - "y": 4591.09, - "type": "target", - "move_mode": "walk", - "#": "1-3" - }, - { - "x": 4459.78, - "y": 4596.06, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4452.67, - "y": 4606.42, - "type": "path", - "move_mode": "run" - }, - { - "x": 4447.81, - "y": 4604.45, - "type": "path", - "move_mode": "run" - }, - { - "x": 4443.91, - "y": 4573.6, - "type": "target", - "move_mode": "run", - "#": "1-4" - }, - { - "x": 4443.91, - "y": 4573.6, - "type": "target", - "move_mode": "walk", - "#": "1-4" - }, - { - "x": 4446.62, - "y": 4611.61, - "type": "path", - "move_mode": "run" - }, - { - "x": 4423.56, - "y": 4605.87, - "type": "path", - "move_mode": "run" - }, - { - "x": 4429.21, - "y": 4582.55, - "type": "target", - "move_mode": "walk", - "#": "1-5" - }, - { - "x": 4427.16, - "y": 4584.45, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4426.63, - "y": 4577.12, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4430.09, - "y": 4571.46, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4432.6, - "y": 4567.63, - "type": "target", - "move_mode": "walk", - "#": "1-6" - }, - { - "x": 4433.41, - "y": 4568.96, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + + { + "x": 4498.20947265625, + "y": 4710.75146484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4509.79248046875, + "y": 4703.54052734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4524.94482421875, + "y": 4693.33349609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4529.02197265625, + "y": 4688.62646484375, + "type": "target", + "move_mode": "walk", + "#": "1-1", + + "x_": 4529.025390625, + "y_": 4688.64208984375 + }, + + { + "x": 4516.01806640625, + "y": 4647.345703125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4515.140625, + "y": 4642.23828125, + "type": "target", + "move_mode": "walk", + "#": "1-2" + }, + + { + "x": 4480.5830078125, + "y": 4585.60888671875, + "type": "path", + "move_mode": "dash" + }, + { + "x": 4463.65234375, + "y": 4587.2802734375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4456.2392578125, + "y": 4591.0908203125, + "type": "target", + "move_mode": "walk", + "#": "1-3" + }, + + { + "x": 4459.78466796875, + "y": 4596.064453125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4452.6748046875, + "y": 4606.41943359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4447.8125, + "y": 4604.453125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "run", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "#": "1-4" + }, + + { + "x": 4446.62255859375, + "y": 4611.61083984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4423.56396484375, + "y": 4605.86572265625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4429.208984375, + "y": 4582.5546875, + "type": "target", + "move_mode": "walk", + "#": "1-5" + }, + + { + "x": 4427.1630859375, + "y": 4584.4501953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4426.63037109375, + "y": 4577.1171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4430.09228515625, + "y": 4571.4599609375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4432.59912109375, + "y": 4567.62939453125, + "type": "target", + "move_mode": "walk", + "#": "1-6" + }, + { + "x": 4433.41162109375, + "y": 4568.9619140625, + "type": "path", + "move_mode": "walk" + } + + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个-f.json index 86460706..905da7e0 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个-f.json @@ -1,126 +1,136 @@ { - "info": { - "name": "狗粮-枫丹-研究院区-西南偏西-4个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4498.22, - "y": 4710.8, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-研究院区-西南偏西-4个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4566.91, - "y": 4733.6, - "type": "orientation" - }, - { - "x": 4512.52, - "y": 4715.36, - "type": "path", - "move_mode": "run" - }, - { - "x": 4566.91, - "y": 4733.6, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.2),click", - "//": "stop_flying" - }, - { - "x": 4566.26, - "y": 4736.99, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4561.51, - "y": 4743.19, - "type": "target", - "move_mode": "walk", - "#": "2- 1+2" - }, - { - "x": 4566.14, - "y": 4743.39, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4562.09, - "y": 4746.35, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4561.72, - "y": 4747.18, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4557.9, - "y": 4778.68, - "type": "path", - "move_mode": "run" - }, - { - "x": 4562.15, - "y": 4819.31, - "type": "path", - "move_mode": "run" - }, - { - "x": 4563.64, - "y": 4825.15, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4569.19, - "y": 4826.4, - "type": "orientation" - }, - { - "x": 4569.19, - "y": 4826.4, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1.0)", - "#": "2-3" - }, - { - "x": 4564.34, - "y": 4832.91, - "type": "path", - "move_mode": "run" - }, - { - "x": 4535.29, - "y": 4847.56, - "type": "path", - "move_mode": "run" - }, - { - "x": 4533.4, - "y": 4848.49, - "type": "target", - "move_mode": "walk", - "#": "2-4" - }, - { - "x": 4534.03, - "y": 4848.39, - "type": "target", - "move_mode": "walk", - "#": "2-4" - } - ] + "positions": [ + + { + "x": 4498.2177734375, + "y": 4710.80224609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4566.91064453125, + "y": 4733.60009765625, + "type": "orientation" + }, + { + "x": 4512.52001953125, + "y": 4715.357421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4566.91064453125, + "y": 4733.60009765625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.2),click", + "//": "stop_flying" + }, + + { + "x": 4566.25927734375, + "y": 4736.98583984375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4561.50537109375, + "y": 4743.1923828125, + "type": "target", + "move_mode": "walk", + "#": "2- 1+2" + }, + + { + "x": 4566.13623046875, + "y": 4743.39306640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4562.08837890625, + "y": 4746.34814453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4561.72412109375, + "y": 4747.18408203125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4557.90283203125, + "y": 4778.6806640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4562.1533203125, + "y": 4819.3095703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4563.64404296875, + "y": 4825.14794921875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4569.19482421875, + "y": 4826.39501953125, + "type": "orientation" + }, + { + "x": 4568.6279296875, + "y": 4826.10546875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.0)", + "#": "2-3" + }, + + { + "x": 4564.3427734375, + "y": 4832.90625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4535.2919921875, + "y": 4847.5625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4533.40283203125, + "y": 4848.49462890625, + "type": "target", + "move_mode": "walk", + "#": "2-4" + }, + { + "x": 4534.02978515625, + "y": 4848.39111328125, + "type": "target", + "move_mode": "walk", + "#": "2-4" + } + + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-3个/5个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-3个/5个.json index b53167ff..c09ace91 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-3个/5个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-3个/5个.json @@ -1,196 +1,204 @@ { - "info": { - "name": "狗粮-枫丹-黎翡区-七天神像-3个/5个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4545.57, - "y": 4225.69, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-黎翡区-七天神像-3个/5个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4540.26, - "y": 4211.99, - "type": "path", - "move_mode": "run" - }, - { - "x": 4532.92, - "y": 4206.62, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4535.24, - "y": 4210.52, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4535.23, - "y": 4210.48, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4539.25, - "y": 4200.26, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4547.75, - "y": 4205.93, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4555.97, - "y": 4208.39, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4555.97, - "y": 4208.39, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4552.45, - "y": 4219.98, - "type": "path", - "move_mode": "run" - }, - { - "x": 4564.38, - "y": 4231.63, - "type": "path", - "move_mode": "run" - }, - { - "x": 4572.14, - "y": 4226.48, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 4572.12, - "y": 4226.45, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - } - ], - "positions_not_actived": [ - { - "#": "较远" - }, - { - "x": 4545.53076171875, - "y": 4225.73583984375, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4537.87109375, - "y": 4231.0810546875, - "type": "path", - "move_mode": "run" - }, - { - "x": 4511.12353515625, - "y": 4260.70654296875, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4445.537109375, - "y": 4307.8427734375, - "type": "path", - "move_mode": "fly" - }, - { - "x": 4383.1318359375, - "y": 4338.974609375, - "type": "path", - "move_mode": "run" - }, - { - "x": 4341.67919921875, - "y": 4334.3154296875, - "type": "path", - "move_mode": "run" - }, - { - "x": 4323.0908203125, - "y": 4335.3369140625, - "type": "path", - "move_mode": "run" - }, - { - "x": 4315.45751953125, - "y": 4336.32861328125, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "4" - }, - { - "x": 4408.38232421875, - "y": 4299.90869140625, - "type": "path", - "move_mode": "run" - }, - { - "x": 4425.123046875, - "y": 4297.01806640625, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": 4433.6787109375, - "y": 4309.984375, - "type": "path", - "move_mode": "run" - }, - { - "x": 4435.56689453125, - "y": 4313.78564453125, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "5" - }, - { - "x": 4435.46240234375, - "y": 4315.6640625, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4438.86474609375, - "y": 4313.9345703125, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4545.568359375, + "y": 4225.68896484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4540.2578125, + "y": 4211.9921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4532.91748046875, + "y": 4206.62158203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4535.2421875, + "y": 4210.51611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4535.22900390625, + "y": 4210.4765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 4539.25, + "y": 4200.2626953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4547.75439453125, + "y": 4205.93310546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4555.9736328125, + "y": 4208.388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4555.9736328125, + "y": 4208.388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": 4552.4453125, + "y": 4219.98291015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4564.38232421875, + "y": 4231.63427734375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4572.14013671875, + "y": 4226.48388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4572.12451171875, + "y": 4226.4501953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + } + + ], + + + + "positions_not_actived": [ + {"#": "较远"}, + + { + "x": 4545.53076171875, + "y": 4225.73583984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4537.87109375, + "y": 4231.0810546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4511.12353515625, + "y": 4260.70654296875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4445.537109375, + "y": 4307.8427734375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4383.1318359375, + "y": 4338.974609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4341.67919921875, + "y": 4334.3154296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4323.0908203125, + "y": 4335.3369140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4315.45751953125, + "y": 4336.32861328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4408.38232421875, + "y": 4299.90869140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4425.123046875, + "y": 4297.01806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4433.6787109375, + "y": 4309.984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4435.56689453125, + "y": 4313.78564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4435.46240234375, + "y": 4315.6640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4438.86474609375, + "y": 4313.9345703125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json index 83e6cb43..af5bfc4b 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个-f.json @@ -1,75 +1,82 @@ { - "info": { - "name": "狗粮-枫丹-黎翡区-芒索斯山东-3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4984.81, - "y": 4462.96, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-枫丹-黎翡区-芒索斯山东-3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4948.06, - "y": 4457.57, - "type": "path", - "move_mode": "run" - }, - { - "x": 4947.35, - "y": 4458.25, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 4950.83, - "y": 4452.81, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4957.11, - "y": 4451.8, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4957.14, - "y": 4451.9, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 4873.21, - "y": 4377.44, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4868.27, - "y": 4381.04, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 4868.23, - "y": 4381.02, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - } - ] + "positions": [ + { + "x": 4984.806640625, + "y": 4462.95556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4948.05712890625, + "y": 4457.57470703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4947.35400390625, + "y": 4458.25146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + { + "x": 4950.8251953125, + "y": 4452.81201171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4957.111328125, + "y": 4451.796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4957.14306640625, + "y": 4451.896484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + { + "x": 4873.21484375, + "y": 4377.4365234375, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 4868.2734375, + "y": 4381.03857421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": 4868.22998046875, + "y": 4381.02294921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + + + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个-f.json index 49d36b69..7121c39c 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个-f.json @@ -1,67 +1,70 @@ { - "info": { - "name": "狗粮-稻妻-海祇岛-东方小岛-2个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -1315.16, - "y": -3776.15, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-海祇岛-东方小岛-2个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -1331.33, - "y": -3769.79, - "type": "path", - "move_mode": "run" - }, - { - "x": -1364.8, - "y": -3757.77, - "type": "target", - "move_mode": "run", - "action": "", - "#": "1" - }, - { - "x": -1364.76, - "y": -3757.86, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": -1366.83, - "y": -3756.3, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": -1366.83, - "y": -3756.3, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": -1369.99, - "y": -3754.95, - "type": "path", - "move_mode": "walk" - }, - { - "x": -1364.93, - "y": -3755.22, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -1315.1552734375, + "y": -3776.1455078125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -1331.330078125, + "y": -3769.791015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -1364.8, + "y": -3757.7734375, + "type": "target", + "move_mode": "run", + "action": "", + "#": "1" + }, + { + "x": -1364.7578125, + "y": -3757.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -1366.8330078125, + "y": -3756.2978515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -1366.8330078125, + "y": -3756.2978515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -1369.9873046875, + "y": -3754.9521484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -1364.927734375, + "y": -3755.2236328125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个-f.json index f42d908c..2ce92c96 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个-f.json @@ -1,94 +1,101 @@ { - "info": { - "name": "狗粮-稻妻-海祇岛-望泷村西南-4个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -755.56, - "y": -4001.06, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-海祇岛-望泷村西南-4个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -709.21, - "y": -4045.46, - "type": "orientation", - "move_mode": "run" - }, - { - "x": -709.21, - "y": -4045.46, - "type": "path", - "move_mode": "dash" - }, - { - "x": -702.72, - "y": -4050.68, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": -701.0, - "y": -4057.77, - "type": "path", - "move_mode": "run" - }, - { - "x": -672.42, - "y": -4043.46, - "type": "target", - "move_mode": "dash", - "#": "2" - }, - { - "x": -688.42, - "y": -4042.28, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": -688.42, - "y": -4042.28, - "type": "target", - "move_mode": "dash", - "#": "3" - }, - { - "x": -689.1, - "y": -4042.8, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": -682.83, - "y": -4064.79, - "type": "path", - "move_mode": "run" - }, - { - "x": -689.36, - "y": -4084.09, - "type": "path", - "move_mode": "run" - }, - { - "x": -694.66, - "y": -4087.55, - "type": "target", - "move_mode": "run", - "#": "4" - }, - { - "x": -692.22, - "y": -4089.18, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -755.556640625, + "y": -4001.0576171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -709.2138671875, + "y": -4045.4638671875, + "type": "orientation", + "move_mode": "run" + }, + { + "x": -709.2138671875, + "y": -4045.4638671875, + "type": "path", + "move_mode": "dash" + }, + + { + "x": -702.724609375, + "y": -4050.6787109375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": -700.99609375, + "y": -4057.7744140625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -672.419921875, + "y": -4043.4560546875, + "type": "target", + "move_mode": "dash", + "#": "2" + }, + + { + "x": -688.423828125, + "y": -4042.2841796875, + "type": "orientation", + "move_mode": "walk" + }, + + { + "x": -688.423828125, + "y": -4042.2841796875, + "type": "target", + "move_mode": "dash", + "#": "3" + }, + { + "x": -689.103515625, + "y": -4042.796875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + { + "x": -682.83203125, + "y": -4064.791015625, + "type": "path", + "move_mode": "run" + }, + { + "x": -689.36328125, + "y": -4084.0888671875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -694.6552734375, + "y": -4087.5498046875, + "type": "target", + "move_mode": "run", + "#": "4" + }, + { + "x": -692.21875, + "y": -4089.1806640625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json index 018537c0..f384ccbd 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f.json @@ -1,154 +1,162 @@ { - "info": { - "name": "狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -1057.77, - "y": -3946.1, - "type": "teleport" + "info": { + "name": "狗粮-稻妻-海祇岛-珊瑚宫东北-6个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -1059.79, - "y": -3918.25, - "type": "path", - "move_mode": "run" - }, - { - "x": -1064.23, - "y": -3900.31, - "type": "path", - "move_mode": "run" - }, - { - "x": -1062.61, - "y": -3876.77, - "type": "path", - "move_mode": "run" - }, - { - "x": -1061.49, - "y": -3875.04, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": -1059.8, - "y": -3876.13, - "type": "path", - "move_mode": "walk" - }, - { - "x": -1043.09, - "y": -3873.95, - "type": "path", - "move_mode": "fly" - }, - { - "x": -1008.45, - "y": -3815.68, - "type": "path", - "move_mode": "fly" - }, - { - "x": -985.36, - "y": -3702.87, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.2),click,wait(0.2),keypress(x),wait(0.2),click", - "//": "stop_flying and stop_climbing", - "#": "2" - }, - { - "x": -985.32, - "y": -3702.86, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": -988.72, - "y": -3701.06, - "type": "orientation" - }, - { - "x": -988.72, - "y": -3701.06, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": -996.25, - "y": -3698.03, - "type": "path", - "move_mode": "walk" - }, - { - "x": -994.95, - "y": -3689.17, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": -994.92, - "y": -3689.13, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": -996.22, - "y": -3699.13, - "type": "path", - "move_mode": "walk" - }, - { - "x": -1009.17, - "y": -3707.14, - "type": "target", - "move_mode": "walk", - "#": "5" - }, - { - "x": -1009.03, - "y": -3707.25, - "type": "target", - "move_mode": "walk", - "#": "5" - }, - { - "x": -1016.52, - "y": -3715.26, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": -1016.51, - "y": -3715.23, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": -1016.12, - "y": -3717.7, - "type": "path", - "move_mode": "walk" - }, - { - "x": -1017.87, - "y": -3717.0, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -1057.765625, + "y": -3946.099609375, + "type": "teleport" + }, + { + "x": -1059.79296875, + "y": -3918.24609375, + "type": "path", + "move_mode": "run" + }, + { + "x": -1064.2255859375, + "y": -3900.314453125, + "type": "path", + "move_mode": "run" + }, + { + "x": -1062.611328125, + "y": -3876.7705078125, + "type": "path", + "move_mode": "run" + }, + { + "x": -1061.4912109375, + "y": -3875.04296875, + "type": "target", + "move_mode": "walk", + "#" : "1" + }, + { + "x": -1059.796875, + "y": -3876.1328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -1043.0927734375, + "y": -3873.9521484375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -1008.44921875, + "y": -3815.68359375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -985.3623046875, + "y": -3702.8671875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.2),click,wait(0.2),keypress(x),wait(0.2),click", + "//": "stop_flying and stop_climbing", + "#" : "2" + }, + + { + "x": -985.31640625, + "y": -3702.8623046875, + "type": "target", + "move_mode": "walk", + "#" : "2" + }, + { + "x": -988.7158203125, + "y": -3701.0595703125, + "type": "orientation" + }, + { + "x": -988.7158203125, + "y": -3701.0595703125, + "type": "target", + "move_mode": "walk", + "#" : "3" + }, + + { + "x": -996.2490234375, + "y": -3698.03125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -994.94921875, + "y": -3689.1689453125, + "type": "target", + "move_mode": "walk", + "#" : "4" + }, + { + "x": -994.9169921875, + "y": -3689.126953125, + "type": "target", + "move_mode": "walk", + "#" : "4" + }, + + { + "x": -996.2236328125, + "y": -3699.126953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -1009.1708984375, + "y": -3707.1435546875, + "type": "target", + "move_mode": "walk", + "#" : "5" + }, + { + "x": -1009.0302734375, + "y": -3707.2490234375, + "type": "target", + "move_mode": "walk", + "#" : "5" + }, + + { + "x": -1016.515625, + "y": -3715.2587890625, + "type": "target", + "move_mode": "walk", + "#" : "6" + }, + { + "x": -1016.5107421875, + "y": -3715.2275390625, + "type": "target", + "move_mode": "walk", + "#" : "6" + }, + + { + "x": -1016.1181640625, + "y": -3717.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -1017.8671875, + "y": -3717, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个-f.json index 5b5315a2..375035ee 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个-f.json @@ -1,175 +1,173 @@ { - "info": { - "name": "狗粮-稻妻-清籁岛-平海砦西-8个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -4185.01, - "y": -4244.45, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-清籁岛-平海砦西-8个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -4164.59, - "y": -4246.81, - "type": "path", - "move_mode": "walk" - }, - { - "x": -4161.02, - "y": -4245.01, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": -4161.05, - "y": -4244.98, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": -4163.87, - "y": -4241.23, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": -4162.27, - "y": -4241.07, - "type": "path", - "move_mode": "walk" - }, - { - "x": -4160.94, - "y": -4239.35, - "type": "path", - "move_mode": "walk" - }, - { - "x": -4156.61, - "y": -4232.5, - "move_mode": "walk", - "action": "", - "#": "3", - "type": "path" - }, - { - "x": -4163.09, - "y": -4229.81, - "type": "path", - "move_mode": "walk" - }, - { - "x": -4257.69, - "y": -4202.17, - "type": "path", - "move_mode": "run" - }, - { - "x": -4266.87, - "y": -4209.89, - "type": "path", - "move_mode": "fly" - }, - { - "x": -4246.3, - "y": -4234.44, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "4" - }, - { - "x": -4258.74, - "y": -4229.51, - "type": "path", - "move_mode": "run" - }, - { - "x": -4248.29, - "y": -4261.11, - "type": "path", - "move_mode": "run" - }, - { - "x": -4240.35, - "y": -4260.59, - "type": "path", - "move_mode": "walk" - }, - { - "x": -4237.31, - "y": -4260.68, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "5" - }, - { - "x": -4224.45, - "y": -4255.72, - "type": "path", - "move_mode": "fly" - }, - { - "x": -4227.13, - "y": -4241.93, - "type": "path", - "move_mode": "run" - }, - { - "x": -4228.68, - "y": -4237.18, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "6" - }, - { - "x": -4217.39, - "y": -4248.92, - "type": "path", - "move_mode": "run" - }, - { - "x": -4216.55, - "y": -4251.26, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "7" - }, - { - "x": -4216.34, - "y": -4269.99, - "type": "path", - "move_mode": "run" - }, - { - "x": -4185.74, - "y": -4300.0, - "type": "target", - "move_mode": "run", - "action": "", - "#": "8" - }, - { - "x": -4185.59, - "y": -4300.91, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "8" - } - ] + "positions": [ + { + "x": -4185.0078125, + "y": -4244.4521484375, + "type": "teleport" + }, + { + "x": -4164.5859375, + "y": -4246.80859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4161.0205078125, + "y": -4245.0068359375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": -4161.0458984375, + "y": -4244.984375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": -4163.865234375, + "y": -4241.2314453125, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": -4162.2724609375, + "y": -4241.0673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4160.935546875, + "y": -4239.349609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4156.60546875, + "y": -4232.4990234375, + "move_mode": "walk", + "#": "3" + }, + + { + "x": -4163.0869140625, + "y": -4229.8125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -4257.689453125, + "y": -4202.173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": -4266.8671875, + "y": -4209.888671875, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -4246.2978515625, + "y": -4234.4384765625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": -4258.7373046875, + "y": -4229.5126953125, + "type": "path", + "move_mode": "run" + }, + + { + "x": -4248.2919921875, + "y": -4261.1123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": -4240.349609375, + "y": -4260.5869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4237.306640625, + "y": -4260.6796875, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + + { + "x": -4224.4462890625, + "y": -4255.716796875, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -4227.126953125, + "y": -4241.9287109375, + "type": "path", + "move_mode": "run" + }, + { + "x": -4228.68359375, + "y": -4237.1826171875, + "type": "target", + "move_mode": "walk", + "#": "6" + }, + + { + "x": -4216.53125, + "y": -4251.341796875, + "type": "target", + "move_mode": "run", + "#": "7" + }, + { + "x": -4216.53125, + "y": -4251.341796875, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + + { + "x": -4216.3388671875, + "y": -4269.9912109375, + "type": "path", + "move_mode": "run" + }, + { + "x": -4185.7373046875, + "y": -4300.0029296875, + "type": "target", + "move_mode": "run", + "#": "8" + }, + { + "x": -4185.59375, + "y": -4300.9140625, + "type": "target", + "move_mode": "walk", + "#": "8" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个-f.json index eaf4a373..20d3225d 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个-f.json @@ -1,55 +1,56 @@ { - "info": { - "name": "狗粮-稻妻-清籁岛-浅濑神社-3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3704.07, - "y": -4694.58, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-清籁岛-浅濑神社-3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3720.13, - "y": -4711.16, - "type": "path", - "move_mode": "run" - }, - { - "x": -3740.88, - "y": -4738.68, - "type": "path", - "move_mode": "run" - }, - { - "x": -3737.98, - "y": -4746.46, - "type": "path", - "move_mode": "run" - }, - { - "x": -3711.82, - "y": -4749.17, - "type": "target", - "move_mode": "run", - "action": "" - }, - { - "x": -3710.88, - "y": -4747.05, - "type": "target", - "move_mode": "walk", - "action": "" - }, - { - "x": -3712.5, - "y": -4746.32, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -3704.0693359375, + "y": -4694.578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3720.130859375, + "y": -4711.158203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3740.8837890625, + "y": -4738.6845703125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3737.982421875, + "y": -4746.4609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3711.8173828125, + "y": -4749.169921875, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "x": -3710.8828125, + "y": -4747.0546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -3712.4990234375, + "y": -4746.32421875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个-f.json index 92ebf543..07353a82 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个-f.json @@ -1,174 +1,189 @@ { - "info": { - "name": "狗粮-稻妻-清籁岛-越石村-8个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -4023.26, - "y": -4428.84, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-清籁岛-越石村-8个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3987.26, - "y": -4454.29, - "type": "path", - "move_mode": "run" - }, - { - "x": -3977.65, - "y": -4453.93, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": -3976.12, - "y": -4444.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3977.56, - "y": -4438.66, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3980.95, - "y": -4438.63, - "type": "orientation", - "move_mode": "walk" - }, - { - "x": -3980.95, - "y": -4438.63, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3984.11, - "y": -4437.77, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": -3982.89, - "y": -4438.13, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3980.82, - "y": -4437.59, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3970.38, - "y": -4439.14, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": -3968.54, - "y": -4435.37, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3967.64, - "y": -4435.78, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3965.72, - "y": -4437.34, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "4" - }, - { - "x": -3967.1, - "y": -4432.43, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3967.03, - "y": -4425.8, - "type": "path", - "move_mode": "walk", - "//": "drump down" - }, - { - "x": -3972.6, - "y": -4425.37, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "5" - }, - { - "x": -3978.78, - "y": -4424.49, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "6" - }, - { - "x": -3969.29, - "y": -4427.41, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3967.38, - "y": -4425.67, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3966.97, - "y": -4422.5, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3966.68, - "y": -4402.91, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "7" - }, - { - "x": -3969.39, - "y": -4383.39, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE)" - }, - { - "x": -3969.55, - "y": -4383.69, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "8" - } - ] + "positions": [ + { + "x": -4023.263671875, + "y": -4428.8388671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3987.2587890625, + "y": -4454.291015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3977.6455078125, + "y": -4453.9326171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3976.1171875, + "y": -4444.0205078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3977.556640625, + "y": -4438.66015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3980.9541015625, + "y": -4438.6259765625, + "type": "orientation", + "move_mode": "walk" + }, + { + "x": -3980.9541015625, + "y": -4438.6259765625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3984.1115234375, + "y": -4437.771484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3982.8896484375, + "y": -4438.1337890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3980.82421875, + "y": -4437.59375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3970.37890625, + "y": -4439.1357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": -3968.544921875, + "y": -4435.3671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3967.64453125, + "y": -4435.7802734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3965.724609375, + "y": -4437.3408203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + { + "x": -3967.103515625, + "y": -4432.42578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3967.0341796875, + "y": -4425.7958984375, + "type": "path", + "move_mode": "walk", + "//": "drump down" + }, + + { + "x": -3972.595703125, + "y": -4425.369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": -3978.779296875, + "y": -4424.4921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + + { + "x": -3969.28515625, + "y": -4427.4111328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3967.384765625, + "y": -4425.671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3966.9677734375, + "y": -4422.5, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3966.6826171875, + "y": -4402.9052734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + { + "x": -3969.388671875, + "y": -4383.3857421875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE)" + }, + { + "x": -3969.5478515625, + "y": -4383.689453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个-f.json index df7e45fd..dc0c8d71 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个-f.json @@ -1,134 +1,143 @@ { - "info": { - "name": "狗粮-稻妻-神无冢-东-5个/6个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3393.12, - "y": -3556.06, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-神无冢-东-5个/6个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3397.01, - "y": -3550.01, - "type": "orientation" - }, - { - "x": -3397.01, - "y": -3550.01, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3397.55, - "y": -3547.26, - "type": "target", - "move_mode": "fly", - "#": "1" - }, - { - "x": -3399.29, - "y": -3543.23, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3404.28, - "y": -3543.53, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": -3404.54, - "y": -3542.51, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3405.58, - "y": -3534.47, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": -3445.89, - "y": -3544.02, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.2),click", - "//": "stop_flying" - }, - { - "x": -3446.69, - "y": -3550.23, - "type": "target", - "move_mode": "walk" - }, - { - "x": -3445.58, - "y": -3553.41, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": -3435.53, - "y": -3566.9, - "type": "target", - "move_mode": "run", - "action": "combat_script", - "action_params": "wait(0.5)", - "#": "5" - } - ], - "positions_not_actived": [ - { - "#": "后面重兵把守" - }, - { - "x": -3442.427734375, - "y": -3569.3125, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3437.7919921875, - "y": -3573.4208984375, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3427.4033203125, - "y": -3573.28125, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3422.0302734375, - "y": -3575.3935546875, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3420.580078125, - "y": -3574.71875, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": -3418.3681640625, - "y": -3574.56640625, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -3393.1181640625, + "y": -3556.0556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3397.0126953125, + "y": -3550.0146484375, + "type": "orientation" + }, + { + "x": -3397.0126953125, + "y": -3550.0146484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3397.546875, + "y": -3547.2587890625, + "type": "target", + "move_mode": "fly", + "#" : "1" + }, + + { + "x": -3399.2900390625, + "y": -3543.2275390625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3404.2822265625, + "y": -3543.5341796875, + "type": "target", + "move_mode": "walk", + "#" : "2" + }, + + { + "x": -3404.54296875, + "y": -3542.5107421875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3405.5810546875, + "y": -3534.466796875, + "type": "target", + "move_mode": "walk", + "#" : "3" + }, + + { + "x": -3445.89453125, + "y": -3544.0205078125, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.2),click", + "//": "stop_flying" + }, + { + "x": -3446.6904296875, + "y": -3550.2265625, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3445.5810546875, + "y": -3553.40625, + "type": "target", + "move_mode": "walk", + "#" : "4" + }, + { + "x": -3435.5322265625, + "y": -3566.9013671875, + "type": "target", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.5)", + "#" : "5" + } + + ], + + + + "positions_not_actived": [ + { "#": "后面重兵把守" }, + + { + "x": -3442.427734375, + "y": -3569.3125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3437.7919921875, + "y": -3573.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3427.4033203125, + "y": -3573.28125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3422.0302734375, + "y": -3575.3935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3420.580078125, + "y": -3574.71875, + "type": "target", + "move_mode": "walk", + "#" : "6" + }, + { + "x": -3418.3681640625, + "y": -3574.56640625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json index f932be72..4de00ec5 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-2个/3个-f.json @@ -1,104 +1,111 @@ { - "info": { - "name": "狗粮-稻妻-神无冢-九条阵屋-2个/3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3437.03, - "y": -3319.72, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-神无冢-九条阵屋-2个/3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3438.06, - "y": -3320.02, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3468.29, - "y": -3326.39, - "type": "path", - "move_mode": "run" - }, - { - "x": -3529.22, - "y": -3339.28, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying" - }, - { - "x": -3538.0, - "y": -3343.46, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": -3539.83, - "y": -3345.84, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - } - ], - "positions_not_actived": [ - { - "x": -3437.0263671875, - "y": -3319.755859375, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": -3420.0283203125, - "y": -3306.0888671875, - "type": "path", - "move_mode": "run" - }, - { - "x": -3406.646484375, - "y": -3286.25, - "type": "path", - "move_mode": "run" - }, - { - "x": -3405.4697265625, - "y": -3232.3525390625, - "type": "path", - "move_mode": "run" - }, - { - "x": -3407.9404296875, - "y": -3234.4228515625, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": -3407.193359375, - "y": -3234.5576171875, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": -3407.830078125, - "y": -3236.0400390625, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - } - ] + "positions": [ + { + "x": -3437.0322265625, + "y": -3319.720703125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3438.0625, + "y": -3320.0234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3468.294921875, + "y": -3326.3857421875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3529.224609375, + "y": -3339.28125, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "stop_flying" + }, + + { + "x": -3537.9952734375, + "y": -3343.459140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -3539.8330078125, + "y": -3345.8359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + } + + ], + + + + "positions_not_actived": [ + + { + "x": -3437.0263671875, + "y": -3319.755859375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3420.0283203125, + "y": -3306.0888671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3406.646484375, + "y": -3286.25, + "type": "path", + "move_mode": "run" + }, + { + "x": -3405.4697265625, + "y": -3232.3525390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3407.9404296875, + "y": -3234.4228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -3407.193359375, + "y": -3234.5576171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -3407.830078125, + "y": -3236.0400390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json index 4bc26604..8b7df670 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json @@ -1,120 +1,129 @@ { - "info": { - "name": "狗粮-稻妻-神无冢-堇色之庭-4个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3931.22, - "y": -3202.79, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-神无冢-堇色之庭-4个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3934.51, - "y": -3201.48, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3939.63, - "y": -3204.32, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3940.51, - "y": -3205.35, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3953.93, - "y": -3198.43, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3958.95, - "y": -3197.09, - "type": "target", - "move_mode": "walk", - "#": 1 - }, - { - "x": -3958.95, - "y": -3197.09, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", - "#": 1 - }, - { - "x": -3958.55, - "y": -3207.8, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3941.68, - "y": -3224.41, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3940.54, - "y": -3219.45, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": -3940.54, - "y": -3219.45, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": -3928.07, - "y": -3239.05, - "type": "path", - "move_mode": "walk" - }, - { - "x": -3925.31, - "y": -3264.47, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3929.94, - "y": -3269.75, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 3 - }, - { - "x": -3984.2, - "y": -3242.82, - "type": "path", - "move_mode": "fly" - }, - { - "x": -3988.4, - "y": -3228.45, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", - "#": 4 - } - ] + "positions": [ + { + "x": -3931.2216796875, + "y": -3202.7919921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3934.5068359375, + "y": -3201.48046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3939.6318359375, + "y": -3204.3203125, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3940.5126953125, + "y": -3205.3515625, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3953.9296875, + "y": -3198.4306640625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3958.9462890625, + "y": -3197.0888671875, + "type": "target", + "move_mode": "walk", + "#": 1 + }, + { + "x": -3958.9462890625, + "y": -3197.0888671875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", + "#": 1 + }, + + { + "x": -3958.546875, + "y": -3207.796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3941.6845703125, + "y": -3224.412109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": -3928.0673828125, + "y": -3239.0546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3925.3115234375, + "y": -3264.466796875, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3929.943359375, + "y": -3269.751953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + { + "x": -3984.2021484375, + "y": -3242.8232421875, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3988.3955078125, + "y": -3228.4501953125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", + "#": 4 + } + + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个-f.json index 1b15eacc..c133ebc6 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个-f.json @@ -1,43 +1,44 @@ { - "info": { - "name": "狗粮-稻妻-鹤观-东偏中-2个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3103.74, - "y": -6268.54, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "狗粮-稻妻-鹤观-东偏中-2个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3037.78, - "y": -6187.05, - "type": "path", - "move_mode": "dash" - }, - { - "x": -3034.77, - "y": -6181.54, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": -3032.58, - "y": -6182.53, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": -3030.55, - "y": -6181.25, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -3103.740234375, + "y": -6268.5400390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3037.77734375, + "y": -6187.048828125, + "type": "path", + "move_mode": "dash" + }, + + { + "x": -3034.7744140625, + "y": -6181.5390625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": -3032.583984375, + "y": -6182.5283203125, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": -3030.5546875, + "y": -6181.2529296875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个-f.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个-f.json index 8b7837b0..4fbe9dd8 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个-f.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个-f.json @@ -1,41 +1,42 @@ { - "info": { - "name": "狗粮-稻妻-鹤观-南-2个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -2612.3, - "y": -6508.22, - "type": "teleport" + "info": { + "name": "狗粮-稻妻-鹤观-南-2个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -2583.2, - "y": -6523.86, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "x": -2581.47, - "y": -6529.78, - "type": "target", - "move_mode": "walk" - }, - { - "x": -2579.81, - "y": -6533.03, - "type": "target", - "move_mode": "walk" - }, - { - "x": -2580.07, - "y": -6535.29, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -2612.30078125, + "y": -6508.21875, + "type": "teleport" + }, + { + "x": -2583.203125, + "y": -6523.86328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -2581.470703125, + "y": -6529.7802734375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -2579.80859375, + "y": -6533.02734375, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -2580.0732421875, + "y": -6535.291015625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json index cff2445d..8a6d3c83 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-枫丹-研究院区", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3865.13, - "y": 4492.29, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-枫丹-研究院区", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3868.0, - "y": 4496.66, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 3868.9, - "y": 4496.48, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 3867.14, - "y": 4493.82, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3865.1328125, + "y": 4492.28564453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3868.001953125, + "y": 4496.66162109375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 3868.8974609375, + "y": 4496.4794921875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 3867.14453125, + "y": 4493.82470703125, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json index 00f56b53..98cbcc5c 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-枫丹-黎翡区", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4545.48, - "y": 4225.51, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-枫丹-黎翡区", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4542.24, - "y": 4229.51, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 4542.74, - "y": 4230.82, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": 4544.6, - "y": 4227.29, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4545.48046875, + "y": 4225.5087890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4542.24462890625, + "y": 4229.505859375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 4542.736328125, + "y": 4230.81640625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": 4544.595703125, + "y": 4227.29296875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json index 28d3469e..3d33a9a6 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-稻妻-清籁岛", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -4023.3, - "y": -4428.78, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-稻妻-清籁岛", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -4027.52, - "y": -4435.19, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": -4028.64, - "y": -4435.22, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": -4026.05, - "y": -4432.1, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -4023.3037109375, + "y": -4428.7822265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -4027.5234375, + "y": -4435.1884765625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": -4028.6376953125, + "y": -4435.2236328125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": -4026.0498046875, + "y": -4432.1005859375, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json index f789b6f6..9a5ff993 100644 --- a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -1,39 +1,39 @@ { - "info": { - "name": "(恢复)狗粮-稻妻-神无冢", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": -3233.2, - "y": -3534.19, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "(恢复)狗粮-稻妻-神无冢", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": -3238.42, - "y": -3532.76, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": -3239.14, - "y": -3532.55, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1)" - }, - { - "x": -3243.41, - "y": -3525.49, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": -3233.2021484375, + "y": -3534.1865234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3238.419921875, + "y": -3532.7587890625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": -3239.13671875, + "y": -3532.5478515625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1)" + }, + { + "x": -3243.40625, + "y": -3525.4921875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json index 9026e2a8..4643f41d 100644 --- a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f.json @@ -1,179 +1,188 @@ { - "info": { - "name": "【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 4498.2, - "y": 4710.68, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 4445.49, - "y": 4615.72, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4376.03, - "y": 4583.81, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4282.07, - "y": 4596.0, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4278.32, - "y": 4581.66, - "type": "target", - "move_mode": "walk" - }, - { - "x": 4280.72, - "y": 4579.73, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", - "#": 1 - }, - { - "x": 4281.57, - "y": 4579.05, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", - "#": 1 - }, - { - "x": 4281.57, - "y": 4579.05, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 1 - }, - { - "x": 4301.32, - "y": 4764.95, - "type": "teleport", - "move_mode": "walk" - }, - { - "x": 4302.11, - "y": 4765.98, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4309.05, - "y": 4769.85, - "type": "path", - "move_mode": "walk" - }, - { - "x": 4337.72, - "y": 4787.05, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4372.78, - "y": 4827.42, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4380.33, - "y": 4830.14, - "type": "target", - "move_mode": "walk" - }, - { - "x": 4381.12, - "y": 4829.96, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click", - "#": 2 - }, - { - "x": 4381.66, - "y": 4828.93, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click", - "#": 2 - }, - { - "x": 4381.66, - "y": 4828.93, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 2 - }, - { - "x": 4428.44, - "y": 4838.92, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4452.74, - "y": 4861.34, - "type": "path", - "move_mode": "dash" - }, - { - "x": 4457.27, - "y": 4866.49, - "type": "target", - "move_mode": "walk" - }, - { - "x": 4458.39, - "y": 4867.66, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", - "#": 3 - }, - { - "x": 4459.04, - "y": 4868.45, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", - "#": 3 - }, - { - "x": 4459.04, - "y": 4868.45, - "type": "target", - "move_mode": "walk", - "action": "", - "#": 3 - }, - { - "x": 4461.5, - "y": 4870.77, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 4498.1982421875, + "y": 4710.67626953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4445.49267578125, + "y": 4615.71533203125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 4376.025390625, + "y": 4583.8095703125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 4282.06689453125, + "y": 4596, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 4278.322265625, + "y": 4581.658203125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4280.720703125, + "y": 4579.73193359375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", + "#": 1 + }, + { + "x": 4281.57421875, + "y": 4579.0537109375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", + "#": 1 + }, + { + "x": 4281.57421875, + "y": 4579.0537109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + + { + "x": 4301.3232421875, + "y": 4764.947265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4302.1103515625, + "y": 4765.9833984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4309.046875, + "y": 4769.8505859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4337.71875, + "y": 4787.05126953125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 4372.7822265625, + "y": 4827.41943359375, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 4380.333984375, + "y": 4830.14306640625, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 4381.12109375, + "y": 4829.95849609375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click", + "#": 2 + }, + { + "x": 4381.66357421875, + "y": 4828.92529296875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click", + "#": 2 + }, + { + "x": 4381.66357421875, + "y": 4828.92529296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 4428.43798828125, + "y": 4838.923828125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 4452.7392578125, + "y": 4861.34375, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 4457.26513671875, + "y": 4866.49365234375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4458.3935546875, + "y": 4867.66015625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", + "#": 3 + }, + { + "x": 4459.04248046875, + "y": 4868.44873046875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "click,wait(0.5),click,wait(0.5),click,wait(0.2)", + "#": 3 + }, + { + "x": 4459.04248046875, + "y": 4868.44873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 4461.5029296875, + "y": 4870.7666015625, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔-灵谜纹+13个.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔-灵谜纹+13个.json index ace42d90..dd1a1804 100644 --- a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔-灵谜纹+13个.json +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔-灵谜纹+13个.json @@ -1,505 +1,541 @@ { - "info": { - "name": "【额外】狗粮-纳塔-灵谜纹+13个", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 9706.74, - "y": -1544.93, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" + "info": { + "name": "【额外】狗粮-纳塔-灵谜纹+13个", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 9707.67, - "y": -1550.33, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(2.8)", - "//": "附身" - }, - { - "x": 9712.37, - "y": -1540.56, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "起跳" - }, - { - "x": 9734.87, - "y": -1492.6, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(6),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "降落,起跳" - }, - { - "x": 9729.2, - "y": -1556.84, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1),mousedown,wait(0.5),moveby(-400,0),wait(1.0),mouseup,wait(0.5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "扫码,起跳", - "#": "1" - }, - { - "x": 9740.29, - "y": -1561.33, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(3),mousedown,wait(0.5),moveby(-200,-150),wait(1.0),mouseup,wait(0.5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "降落,扫码,起跳", - "#": "2" - }, - { - "x": 9732.74, - "y": -1552.66, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9726.19, - "y": -1548.61, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(-300,3000),wait(1.0),mouseup", - "//": "朝向,扫码", - "#": "3" - }, - { - "x": 9685.83, - "y": -1621.18, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9644.9, - "y": -1652.29, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(2),click", - "//": "无伤下落" - }, - { - "x": 9623.22, - "y": -1649.06, - "type": "path", - "move_mode": "run", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(2.8)", - "//": "附身" - }, - { - "x": 9634.31, - "y": -1604.08, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(0,600),wait(1.0),mouseup", - "#": "4" - }, - { - "x": 9471.23, - "y": -1673.69, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9464.91, - "y": -1685.58, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(5.5),click", - "//": "无伤下落" - }, - { - "x": 9460.98, - "y": -1683.69, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(0.2),keypress(t),wait(2.8)", - "//": "附身" - }, - { - "x": 9447.97, - "y": -1653.56, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9440.71, - "y": -1639.97, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(-300,0),wait(1.0),mouseup", - "#": "5" - }, - { - "x": 9506.05, - "y": -1620.98, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(1.0),mouseup", - "#": "6" - }, - { - "x": 9310.89, - "y": -1423.18, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9316.2, - "y": -1547.38, - "type": "path", - "move_mode": "dash" - }, - { - "x": 9324.37, - "y": -1571.84, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(1.5),click", - "//": "无伤下落" - }, - { - "x": 9330.86, - "y": -1566.93, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(0.2),keypress(t),wait(2.8)", - "//": "附身" - }, - { - "x": 9351.03, - "y": -1568.23, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9376.68, - "y": -1526.4, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9364.81, - "y": -1523.54, - "type": "orientation", - "move_mode": "walk", - "//": "朝向", - "//1": "bgi的转向有时会明显偏离出误差范围,可能是中途到达过范围内但镜头转动未及时刹停的缘故导致。故大于90度的转向做两次,以保证停在误差范围内。下同。" - }, - { - "x": 9364.81, - "y": -1523.54, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(0,-300),wait(1.0),mouseup", - "#": "7", - "//": "朝向,扫码" - }, - { - "x": 9386.95, - "y": -1536.51, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "keydown(VK_SPACE),wait(0.8),keyup(VK_SPACE)", - "//": "起跳" - }, - { - "x": 9386.95, - "y": -1556.01, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(3)", - "//": "降落" - }, - { - "x": 9388.28, - "y": -1551.73, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9395.94, - "y": -1543.5, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(-300,100),wait(1.0),mouseup", - "#": "8", - "//": "朝向,扫码" - }, - { - "x": 10112.83, - "y": -140.45, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 10114.35, - "y": -125.25, - "type": "path", - "move_mode": "run" - }, - { - "x": 10113.01, - "y": -115.54, - "type": "path", - "move_mode": "fly" - }, - { - "x": 10087.82, - "y": -91.89, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.5),click", - "//": "stop_flying" - }, - { - "x": 10085.56, - "y": -87.28, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(2.8)", - "//": "附身" - }, - { - "x": 10080.15, - "y": -86.77, - "type": "orientation", - "move_mode": "walk", - "//": "朝向" - }, - { - "x": 10080.15, - "y": -86.77, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(-1200,0),wait(1.0),mouseup,wait(0.5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "朝向,扫码,起跳", - "#": "9" - }, - { - "x": 10099.4, - "y": -88.06, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(3)", - "//": "降落" - }, - { - "x": 10098.01, - "y": -95.76, - "type": "orientation", - "move_mode": "walk", - "//": "朝向" - }, - { - "x": 10098.01, - "y": -95.76, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(-800,0),wait(1.0),mouseup", - "#": "10", - "//": "朝向,扫码" - }, - { - "x": 10070.24, - "y": 25.62, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 10071.48, - "y": 78.56, - "type": "path", - "move_mode": "dash", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(2.8),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "附身,起跳" - }, - { - "x": 10078.59, - "y": 99.3, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(0,-800),wait(1.0),mouseup", - "#": "11" - }, - { - "x": 10059.53, - "y": 103.23, - "type": "path", - "move_mode": "fly" - }, - { - "x": 10037.16, - "y": 129.71, - "type": "path", - "move_mode": "run" - }, - { - "x": 10037.2, - "y": 148.36, - "type": "path", - "move_mode": "run" - }, - { - "x": 10031.0, - "y": 153.78, - "type": "path", - "move_mode": "run", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(2.8)", - "//": "附身" - }, - { - "x": 10024.54, - "y": 146.23, - "type": "orientation", - "move_mode": "walk", - "//": "朝向" - }, - { - "x": 10024.54, - "y": 146.23, - "type": "orientation", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(-300,0),wait(1.0),mouseup", - "#": "12", - "//": "朝向,扫码" - }, - { - "x": 9971.12, - "y": 250.5, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9965.44, - "y": 251.4, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(2.8),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "附身,起跳" - }, - { - "x": 9956.83, - "y": 247.93, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(1.0),mousedown,wait(1.0),mouseup", - "#": "13" - } - ], - "positions_alt": [ - { - "x": 9706.740234375, - "y": -1544.9267578125, - "type": "teleport", - "move_mode": "walk", - "action": "force_tp" - }, - { - "x": 9707.666015625, - "y": -1550.33251953125, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(2.8),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "附身,起跳" - }, - { - "x": 9717.6337890625, - "y": -1570.3779296875, - "type": "path", - "move_mode": "walk" - }, - { - "x": 9759.52734375, - "y": -1600.6923828125, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "降落,起跳" - }, - { - "x": 9743.322265625, - "y": -1563.4150390625, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(5)", - "//": "降落,起跳" - }, - { - "x": 9743.3330078125, - "y": -1563.8193359375, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(-1800,-1000),wait(2.0),mouseup,wait(0.5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", - "//": "扫码,起跳", - "#": "1" - }, - { - "x": 9742.220703125, - "y": -1563.19970703125, - "type": "path", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(0,-400),wait(2.0),mouseup,wait(0.5),keypress(VK_SPACE),wait(3)", - "//": "扫码,降落", - "#": "2" - }, - { - "x": 9740.7197265625, - "y": -1560.798828125, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "mousedown,wait(0.5),moveby(200,1900),wait(2.0),mouseup,wait(1.111),mousedown,wait(0.5),moveby(6000,0),wait(2.0),mouseup", - "//": "扫码", - "#": "3" - } - ] + + "positions": [ + { + "x": 9706.740234375, + "y": -1544.9267578125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + + { + "x": 9707.666015625, + "y": -1550.33251953125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(2.8)", + "//": "附身" + }, + { + "x": 9712.369140625, + "y": -1540.556640625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "起跳" + }, + { + "x": 9734.8701171875, + "y": -1492.603515625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(6),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "降落,起跳" + }, + + { + "x": 9729.197265625, + "y": -1556.837890625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),mousedown,wait(0.5),moveby(-400,0),wait(1.0),mouseup,wait(0.5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "扫码,起跳", + "#": "1" + }, + { + "x": 9740.2919921875, + "y": -1561.328125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(3),mousedown,wait(0.5),moveby(-200,-150),wait(1.0),mouseup,wait(0.5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "降落,扫码,起跳", + "#": "2" + }, + + { + "x": 9732.736328125, + "y": -1552.6640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9726.189453125, + "y": -1548.61181640625, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(-300,3000),wait(1.0),mouseup", + "//": "朝向,扫码", + "#": "3" + }, + + + + { + "x": 9685.828125, + "y": -1621.1796875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9644.8984375, + "y": -1652.28857421875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(2),click", + "//": "无伤下落" + }, + { + "x": 9623.220703125, + "y": -1649.064453125, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(2.8)", + "//": "附身" + }, + { + "x": 9634.3095703125, + "y": -1604.0791015625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(0,600),wait(1.0),mouseup", + "#": "4" + }, + + + + { + "x": 9471.2314453125, + "y": -1673.68798828125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9464.908203125, + "y": -1685.57958984375, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(5.5),click", + "//": "无伤下落" + }, + { + "x": 9460.982421875, + "y": -1683.6904296875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(0.2),keypress(t),wait(2.8)", + "//": "附身" + }, + { + "x": 9447.9716796875, + "y": -1653.560546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9440.7099609375, + "y": -1639.97314453125, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(-300,0),wait(1.0),mouseup", + "#": "5" + }, + { + "x": 9506.048828125, + "y": -1620.984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(1.0),mouseup", + "#": "6" + }, + + + + { + "x": 9310.8916015625, + "y": -1423.18115234375, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9316.2021484375, + "y": -1547.384765625, + "type": "path", + "move_mode": "dash" + }, + { + "x": 9324.3671875, + "y": -1571.84228515625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(1.5),click", + "//": "无伤下落" + }, + { + "x": 9330.85546875, + "y": -1566.92529296875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(0.2),keypress(t),wait(2.8)", + "//": "附身" + }, + + { + "x": 9351.0263671875, + "y": -1568.23193359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9376.677734375, + "y": -1526.3984375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9364.810546875, + "y": -1523.54150390625, + "type": "orientation", + "move_mode": "walk", + "//": "朝向", + "//1": "bgi的转向有时会明显偏离出误差范围,可能是中途到达过范围内但镜头转动未及时刹停的缘故导致。故大于90度的转向做两次,以保证停在误差范围内。下同。" + }, + { + "x": 9364.810546875, + "y": -1523.54150390625, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(0,-300),wait(1.0),mouseup", + "#": "7", + "//": "朝向,扫码" + }, + { + "x": 9386.9453125, + "y": -1536.5107421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keydown(VK_SPACE),wait(0.8),keyup(VK_SPACE)", + "//": "起跳" + }, + { + "x": 9386.951171875, + "y": -1556.0078125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(3)", + "//": "降落" + }, + { + "x": 9388.27734375, + "y": -1551.734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9395.9384765625, + "y": -1543.498046875, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(-300,100),wait(1.0),mouseup", + "#": "8", + "//": "朝向,扫码" + }, + + + + { + "x": 10112.83203125, + "y": -140.45068359375, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 10114.3486328125, + "y": -125.248046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 10113.01171875, + "y": -115.5380859375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 10087.82421875, + "y": -91.89111328125, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.5),click", + "//": "stop_flying" + }, + { + "x": 10085.5625, + "y": -87.2763671875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(2.8)", + "//": "附身" + }, + { + "x": 10080.150390625, + "y": -86.77099609375, + "type": "orientation", + "move_mode": "walk", + "//": "朝向" + }, + { + "x": 10080.150390625, + "y": -86.77099609375, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(-1200,0),wait(1.0),mouseup,wait(0.5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "朝向,扫码,起跳", + "#": "9" + }, + { + "x": 10099.3974609375, + "y": -88.05859375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(3)", + "//": "降落" + }, + { + "x": 10098.0146484375, + "y": -95.76318359375, + "type": "orientation", + "move_mode": "walk", + "//": "朝向" + }, + { + "x": 10098.0146484375, + "y": -95.76318359375, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(-800,0),wait(1.0),mouseup", + "#": "10", + "//": "朝向,扫码" + }, + + + + { + "x": 10070.23828125, + "y": 25.62353515625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + + { + "x": 10071.48046875, + "y": 78.560546875, + "type": "path", + "move_mode": "dash", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(2.8),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "附身,起跳" + }, + { + "x": 10078.5927734375, + "y": 99.3046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(0,-800),wait(1.0),mouseup", + "#": "11" + }, + + { + "x": 10059.52734375, + "y": 103.22705078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 10037.15625, + "y": 129.70556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 10037.1953125, + "y": 148.35791015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 10031, + "y": 153.78369140625, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(2.8)", + "//": "附身" + }, + { + "x": 10024.544921875, + "y": 146.2294921875, + "type": "orientation", + "move_mode": "walk", + "//": "朝向" + }, + { + "x": 10024.544921875, + "y": 146.2294921875, + "type": "orientation", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(-300,0),wait(1.0),mouseup", + "#": "12", + "//": "朝向,扫码" + }, + + + + { + "x": 9971.1162109375, + "y": 250.4990234375, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9965.439453125, + "y": 251.40380859375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(2.8),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "附身,起跳" + }, + { + "x": 9956.8271484375, + "y": 247.92822265625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.0),mousedown,wait(1.0),mouseup", + "#": "13" + } + + ], + + + + "positions_alt": [ + { + "x": 9706.740234375, + "y": -1544.9267578125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + + { + "x": 9707.666015625, + "y": -1550.33251953125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(2.8),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "附身,起跳" + }, + { + "x": 9717.6337890625, + "y": -1570.3779296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9759.52734375, + "y": -1600.6923828125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "降落,起跳" + }, + + { + "x": 9743.322265625, + "y": -1563.4150390625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(5)", + "//": "降落,起跳" + }, + + { + "x": 9743.3330078125, + "y": -1563.8193359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(-1800,-1000),wait(2.0),mouseup,wait(0.5),keydown(VK_SPACE),wait(0.5),keyup(VK_SPACE)", + "//": "扫码,起跳", + "#": "1" + }, + + { + "x": 9742.220703125, + "y": -1563.19970703125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(0,-400),wait(2.0),mouseup,wait(0.5),keypress(VK_SPACE),wait(3)", + "//": "扫码,降落", + "#": "2" + }, + + { + "x": 9740.7197265625, + "y": -1560.798828125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "mousedown,wait(0.5),moveby(200,1900),wait(2.0),mouseup,wait(1.111),mousedown,wait(0.5),moveby(6000,0),wait(2.0),mouseup", + "//": "扫码", + "#": "3" + } + ] + } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json index bcdc03f7..1d6139ee 100644 --- a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔-鸡屁股+8个/9个-f.json @@ -1,257 +1,279 @@ { - "info": { - "name": "【额外】狗粮-纳塔-鸡屁股+8个/9个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 8738.19, - "y": -1857.47, - "type": "teleport" + "info": { + "name": "【额外】狗粮-纳塔-鸡屁股+8个/9个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 8766.15, - "y": -1834.32, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(0.2),click", - "//": "stop_flying" - }, - { - "x": 8766.45, - "y": -1825.4, - "type": "target", - "move_mode": "walk", - "#": "1" - }, - { - "x": 8439.6, - "y": -2107.03, - "type": "teleport" - }, - { - "x": 8415.8, - "y": -2075.84, - "type": "path", - "move_mode": "run" - }, - { - "x": 8379.19, - "y": -1980.15, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(3.5),click", - "//": "无伤下落" - }, - { - "x": 8375.7, - "y": -1971.43, - "type": "target", - "move_mode": "walk", - "#": "2" - }, - { - "x": 8258.35, - "y": -1744.62, - "type": "teleport" - }, - { - "x": 8234.75, - "y": -1720.24, - "type": "path", - "move_mode": "run" - }, - { - "x": 8230.86, - "y": -1712.17, - "type": "target", - "move_mode": "walk", - "#": "3" - }, - { - "x": 7857.46, - "y": -1751.33, - "type": "teleport" - }, - { - "x": 8003.59, - "y": -1744.78, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(3),click", - "//": "无伤下落" - }, - { - "x": 7994.86, - "y": -1745.24, - "type": "target", - "move_mode": "walk", - "#": "4" - }, - { - "x": 8400.6, - "y": -1221.32, - "type": "teleport" - }, - { - "x": 8374.54, - "y": -1223.0, - "type": "path", - "move_mode": "dash" - }, - { - "x": 8264.16, - "y": -1248.93, - "type": "path", - "move_mode": "dash" - }, - { - "x": 8133.96, - "y": -1271.96, - "type": "path", - "move_mode": "dash" - }, - { - "x": 8123.29, - "y": -1275.89, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": 8123.25, - "y": -1275.92, - "type": "target", - "move_mode": "walk", - "#": "6" - }, - { - "x": 8125.72, - "y": -1278.68, - "type": "orientation" - }, - { - "x": 8125.72, - "y": -1278.68, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": 8125.72, - "y": -1278.68, - "type": "target", - "move_mode": "walk", - "#": "7" - }, - { - "x": 8125.68, - "y": -1281.18, - "type": "path", - "move_mode": "walk" - }, - { - "x": 8124.62, - "y": -1290.23, - "type": "path", - "move_mode": "run" - }, - { - "x": 8123.27, - "y": -1330.81, - "type": "path", - "move_mode": "run" - }, - { - "x": 8121.05, - "y": -1400.53, - "type": "path", - "move_mode": "fly", - "_action": "combat_script", - "_action_params": "keypress(VK_SPACE),wait(0.2),click", - "//": "no stop_flying" - }, - { - "x": 8140.87, - "y": -1458.41, - "type": "path", - "move_mode": "dash" - }, - { - "x": 8143.83, - "y": -1471.27, - "type": "target", - "move_mode": "walk", - "#": "8" - }, - { - "x": 9782.42, - "y": -1764.72, - "type": "teleport", - "action": "force_tp" - }, - { - "x": 9888.59, - "y": -1760.61, - "type": "path", - "move_mode": "dash" - }, - { - "x": 9899.22, - "y": -1761.63, - "type": "path", - "move_mode": "run", - "action": "combat_script", - "action_params": "wait(0.2),keypress(t),wait(2.8),keypress(e),wait(1)", - "//": "附身,遁地" - }, - { - "x": 9904.22, - "y": -1797.63, - "type": "path", - "move_mode": "climb" - }, - { - "x": 9896.65, - "y": -1866.52, - "type": "target", - "move_mode": "run", - "#": "9" - } - ], - "positions_not_actived": [ - { - "x": 8008.7412109375, - "y": -1738.15478515625, - "type": "path", - "move_mode": "run" - }, - { - "x": 8053.34326171875, - "y": -1713.03271484375, - "type": "path", - "move_mode": "run" - }, - { - "x": 8056.2685546875, - "y": -1715.15673828125, - "type": "target", - "move_mode": "walk", - "#": "5", - "//": "需要在到达上限之前触摸鸡屁三次直到出现调查点,超限后回来依然存在" - }, - { - "x": 8056.9794921875, - "y": -1716.3125, - "type": "target", - "move_mode": "walk", - "#": "5" - } - ] + "positions": [ + + { + "x": 8738.1943359375, + "y": -1857.46533203125, + "type": "teleport" + }, + { + "x": 8766.15234375, + "y": -1834.3193359375, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(0.2),click", + "//": "stop_flying" + }, + { + "x": 8766.4541015625, + "y": -1825.40478515625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + + + { + "x": 8439.59765625, + "y": -2107.0283203125, + "type": "teleport" + }, + { + "x": 8415.802734375, + "y": -2075.837890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8379.1923828125, + "y": -1980.14990234375, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(3.5),click", + "//": "无伤下落" + }, + { + "x": 8375.69921875, + "y": -1971.431640625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + + + { + "x": 8258.3486328125, + "y": -1744.6220703125, + "type": "teleport" + }, + { + "x": 8234.75, + "y": -1720.24462890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8230.8564453125, + "y": -1712.17041015625, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + + + { + "x": 7857.4638671875, + "y": -1751.333984375, + "type": "teleport" + }, + { + "x": 8003.58984375, + "y": -1744.78076171875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(3),click", + "//": "无伤下落" + }, + { + "x": 7994.86328125, + "y": -1745.2353515625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + + + { + "x": 8400.59765625, + "y": -1221.3232421875, + "type": "teleport" + }, + { + "x": 8374.5419921875, + "y": -1222.99951171875, + "type": "path", + "move_mode": "dash" + }, + { + "x": 8264.1640625, + "y": -1248.92578125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 8133.962890625, + "y": -1271.9609375, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 8124.2548828125, + "y": -1275.65576171875, + "type": "target", + "move_mode": "walk", + "#": "6" + }, + { + "x": 8124.2548828125, + "y": -1275.65576171875, + "type": "target", + "move_mode": "walk", + "#": "6" + }, + { + "x": 8125.720703125, + "y": -1278.67822265625, + "type": "orientation" + }, + { + "x": 8125.720703125, + "y": -1278.67822265625, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + { + "x": 8125.720703125, + "y": -1278.67822265625, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + + { + "x": 8125.6845703125, + "y": -1281.18212890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8124.62060546875, + "y": -1290.23388671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8123.27001953125, + "y": -1330.814453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 8121.0458984375, + "y": -1400.533203125, + "type": "path", + "move_mode": "fly", + "_action": "combat_script", + "_action_params": "keypress(VK_SPACE),wait(0.2),click", + "//": "no stop_flying" + }, + { + "x": 8140.86962890625, + "y": -1458.4140625, + "type": "path", + "move_mode": "dash" + }, + { + "x": 8143.83251953125, + "y": -1471.2744140625, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + + + + { + "x": 9782.4208984375, + "y": -1764.7216796875, + "type": "teleport", + "action": "force_tp" + }, + { + "x": 9888.5888671875, + "y": -1760.61376953125, + "type": "path", + "move_mode": "dash" + }, + { + "x": 9899.2236328125, + "y": -1761.6298828125, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.2),keypress(t),wait(2.8),keypress(e),wait(1)", + "//": "附身,遁地" + }, + { + "x": 9904.220703125, + "y": -1797.63037109375, + "type": "path", + "move_mode": "climb" + }, + + { + "x": 9896.650390625, + "y": -1866.52490234375, + "type": "target", + "move_mode": "run", + "#": "9" + } + + ], + + "positions_not_actived": [ + + { + "x": 8008.7412109375, + "y": -1738.15478515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8053.34326171875, + "y": -1713.03271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 8056.2685546875, + "y": -1715.15673828125, + "type": "target", + "move_mode": "walk", + "#": "5", + "//": "需要在到达上限之前触摸鸡屁三次直到出现调查点,超限后回来依然存在" + }, + { + "x": 8056.9794921875, + "y": -1716.3125, + "type": "target", + "move_mode": "walk", + "#": "5" + } + ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个-f.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个-f.json index f2b443e3..0fcf3947 100644 --- a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个-f.json +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个-f.json @@ -1,251 +1,265 @@ { - "info": { - "name": "【额外】狗粮-须弥-水天丛林+7个-f", - "type": "collect", - "author": "Yang-z", - "version": "1.0", - "bgiVersion": "0.42.0" - }, - "positions": [ - { - "x": 3128.7, - "y": -1734.63, - "type": "teleport", - "move_mode": "walk" + "info": { + "name": "【额外】狗粮-须弥-水天丛林+7个-f", + "type": "collect", + "author": "Yang-z", + "version": "1.1", + "bgiVersion": "0.42.0" }, - { - "x": 3160.33, - "y": -1784.95, - "type": "path", - "move_mode": "fly", - "action": "combat_script", - "action_params": "keypress(VK_SPACE),wait(5),click", - "//": "无伤下落" - }, - { - "x": 3161.26, - "y": -1780.15, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3162.84, - "y": -1776.45, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "1" - }, - { - "x": 3165.92, - "y": -1770.85, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3170.3, - "y": -1771.86, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3175.15, - "y": -1776.59, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3176.82, - "y": -1772.96, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3178.75, - "y": -1766.19, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3185.72, - "y": -1755.38, - "type": "path", - "move_mode": "walk", - "//": "" - }, - { - "x": 3178.92, - "y": -1743.14, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3177.12, - "y": -1726.37, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3176.96, - "y": -1720.2, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "2" - }, - { - "x": 3210.48, - "y": -1727.46, - "type": "path", - "move_mode": "run" - }, - { - "x": 3221.91, - "y": -1706.66, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3238.64, - "y": -1669.95, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3243.75, - "y": -1675.49, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3247.75, - "y": -1670.69, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3247.04, - "y": -1668.32, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "3" - }, - { - "x": 3259.35, - "y": -1663.19, - "type": "path", - "move_mode": "run" - }, - { - "x": 3280.99, - "y": -1663.35, - "type": "path", - "move_mode": "run" - }, - { - "x": 3303.06, - "y": -1658.51, - "type": "path", - "move_mode": "run" - }, - { - "x": 3308.69, - "y": -1649.83, - "type": "path", - "move_mode": "run" - }, - { - "x": 3333.65, - "y": -1609.58, - "type": "target", - "move_mode": "run", - "action": "", - "#": "4" - }, - { - "x": 3341.15, - "y": -1621.77, - "type": "path", - "move_mode": "run" - }, - { - "x": 3352.88, - "y": -1650.66, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3343.59, - "y": -1723.48, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3335.31, - "y": -1730.41, - "type": "path", - "move_mode": "walk" - }, - { - "x": 3330.38, - "y": -1734.0, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "5" - }, - { - "x": 3317.35, - "y": -1764.42, - "type": "path", - "move_mode": "run" - }, - { - "x": 3300.36, - "y": -1788.79, - "type": "path", - "move_mode": "run" - }, - { - "x": 3282.24, - "y": -1822.77, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3242.03, - "y": -1829.27, - "type": "path", - "move_mode": "run" - }, - { - "x": 3234.12, - "y": -1830.17, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "6" - }, - { - "x": 3211.06, - "y": -1831.8, - "type": "path", - "move_mode": "dash" - }, - { - "x": 3204.88, - "y": -1832.09, - "type": "target", - "move_mode": "walk", - "action": "", - "#": "7" - }, - { - "x": 3202.92, - "y": -1832.16, - "type": "path", - "move_mode": "walk" - } - ] + "positions": [ + { + "x": 3128.6962890625, + "y": -1734.62841796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3160.330078125, + "y": -1784.9462890625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(5),click", + "//": "无伤下落" + }, + + { + "x": 3161.2568359375, + "y": -1780.14697265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3162.83740234375, + "y": -1776.4501953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 3165.9248046875, + "y": -1770.85107421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3170.3037109375, + "y": -1771.859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3175.1484375, + "y": -1776.59130859375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3176.8232421875, + "y": -1772.955078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3178.7470703125, + "y": -1766.18896484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3185.72119140625, + "y": -1755.3798828125, + "type": "path", + "move_mode": "walk", + "//": "" + }, + { + "x": 3178.9228515625, + "y": -1743.14306640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3177.1162109375, + "y": -1726.36767578125, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 3176.955078125, + "y": -1720.19921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": 3210.4833984375, + "y": -1727.45556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3221.9130859375, + "y": -1706.65869140625, + "type": "path", + "move_mode": "dash" + }, + { + "x": 3238.64013671875, + "y": -1669.9541015625, + "type": "path", + "move_mode": "dash" + }, + { + "x": 3243.7470703125, + "y": -1675.4912109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3247.74853515625, + "y": -1670.6923828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3247.03955078125, + "y": -1668.3232421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 3259.34619140625, + "y": -1663.18896484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3280.98681640625, + "y": -1663.34814453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3303.05859375, + "y": -1658.505859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3308.69287109375, + "y": -1649.82666015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3333.64697265625, + "y": -1609.5849609375, + "type": "target", + "move_mode": "run", + "action": "", + "#": "4" + }, + + { + "x": 3341.15234375, + "y": -1621.7734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3352.87890625, + "y": -1650.6552734375, + "type": "path", + "move_mode": "dash" + }, + { + "x": 3343.59326171875, + "y": -1723.4775390625, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 3335.3134765625, + "y": -1730.40625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3330.3759765625, + "y": -1734.00390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": 3317.349609375, + "y": -1764.421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3300.36376953125, + "y": -1788.787109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3282.2421875, + "y": -1822.77490234375, + "type": "path", + "move_mode": "dash" + }, + + { + "x": 3242.0341796875, + "y": -1829.26513671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3234.1162109375, + "y": -1830.17333984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + + { + "x": 3211.0556640625, + "y": -1831.802734375, + "type": "path", + "move_mode": "dash" + }, + { + "x": 3204.8837890625, + "y": -1832.0869140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 3202.92138671875, + "y": -1832.1591796875, + "type": "path", + "move_mode": "walk" + } + ] } \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json new file mode 100644 index 00000000..75de4df6 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6101--纳塔_镜璧山_西海岸1_(8-13).json @@ -0,0 +1,202 @@ +{ + "info": { + "name": "6101--纳塔_镜璧山_西海岸1_(8-13)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.5", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json new file mode 100644 index 00000000..7a8a884d --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6102--纳塔_镜璧山_西海岸2_(8-6).json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "6102--纳塔_镜璧山_西海岸2_(8-6)", + "type": "collect", + "author": "Demo&汐", + "version": "1.2", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json new file mode 100644 index 00000000..80364c3b --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6103--纳塔_镜璧山_西海岸3_(5-3).json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "6103--纳塔_镜璧山_西海岸3_(5-3)", + "type": "collect", + "author": "Demo&mno", + "version": "1.4", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json new file mode 100644 index 00000000..6de24d51 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6104--纳塔_镜璧山_中部1_(8-6).json @@ -0,0 +1,238 @@ +{ + "info": { + "name": "6104--纳塔_镜璧山_中部1_(8-6)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.2", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json new file mode 100644 index 00000000..e2674743 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6105--纳塔_镜璧山_神像1_(4-0).json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "6105--纳塔_镜璧山_神像1_(4-0)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.4", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6106--纳塔_镜璧山_中部2.json b/repo/pathing/小怪锄地2000/0_6_纳塔/6106--纳塔_镜璧山_中部2.json new file mode 100644 index 00000000..44aedac9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6106--纳塔_镜璧山_中部2.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "6106--纳塔_镜璧山_中部2", + "type": "collect", + "author": "Demo&汐", + "version": "1.3", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json new file mode 100644 index 00000000..fb4cb596 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6107--纳塔_镜璧山_神像2_(9-6).json @@ -0,0 +1,130 @@ +{ + "info": { + "name": "6107--纳塔_镜璧山_神像2_(9-6)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.6", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json new file mode 100644 index 00000000..38271afa --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6201--纳塔_奥奇_西北海岸_(8-1).json @@ -0,0 +1,139 @@ +{ + "info": { + "name": "6201--纳塔_奥奇_西北海岸_(8-1)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.7", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json new file mode 100644 index 00000000..71397262 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6203--纳塔_奥奇_中层悬崖_11-2).json @@ -0,0 +1,209 @@ +{ + "info": { + "name": "6203--纳塔_奥奇_中层悬崖_11-2)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.6", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json new file mode 100644 index 00000000..07e6a1a6 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6204--纳塔_奥奇_神像_(7-1).json @@ -0,0 +1,112 @@ +{ + "info": { + "name": "6204--纳塔_奥奇_神像_(7-1)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.2", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json new file mode 100644 index 00000000..797d7369 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6205--纳塔_奥奇_东北岛屿_(5-1).json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "6205--纳塔_奥奇_东北岛屿_(5-1)", + "type": "collect", + "author": "Demo&汐", + "version": "1.2", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json new file mode 100644 index 00000000..f7d14dc8 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6301--纳塔_翘枝崖_神像_(8-3).json @@ -0,0 +1,139 @@ +{ + "info": { + "name": "6301--纳塔_翘枝崖_神像_(8-3)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.4", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json new file mode 100644 index 00000000..65b9fbd3 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6302--纳塔_翘枝崖_北海岸_(3-5).json @@ -0,0 +1,103 @@ +{ + "info": { + "name": "6302--纳塔_翘枝崖_北海岸_(3-5)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json new file mode 100644 index 00000000..0ed9ed65 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6303--纳塔_翘枝崖_花语会南_(3-6).json @@ -0,0 +1,121 @@ +{ + "info": { + "name": "6303--纳塔_翘枝崖_花语会南_(3-6)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.2", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json new file mode 100644 index 00000000..30ba2a5f --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6304--纳塔_翘枝崖_花语会南2_(3-9).json @@ -0,0 +1,166 @@ +{ + "info": { + "name": "6304--纳塔_翘枝崖_花语会南2_(3-9)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.2", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9310.861328125, + "y": -1423.19189453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 9327.154296875, + "y": -1468.55810546875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 9327.154296875, + "y": -1468.55810546875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 9352.505859375, + "y": -1488.0087890625, + "action": "", + "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", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 9388.6884765625, + "y": -1483.82666015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 9431.1181640625, + "y": -1448.41943359375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 9464.091796875, + "y": -1444.02294921875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 9465.21484375, + "y": -1447.04443359375, + "action": "combat_script", + "move_mode": "walk", + "action_params": "attack(0.5)", + "type": "path" + }, + { + "id": 11, + "x": 9464.091796875, + "y": -1444.02294921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 9490.1044921875, + "y": -1442.763671875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 9490.1044921875, + "y": -1442.763671875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 9542.837890625, + "y": -1434.98388671875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 9518.435546875, + "y": -1441.38623046875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 9500.3896484375, + "y": -1477.9541015625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 17, + "x": 9500.3896484375, + "y": -1477.9541015625, + "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_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json new file mode 100644 index 00000000..17904cba --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6305--纳塔_翘枝崖_花语会南3_(4-4).json @@ -0,0 +1,139 @@ +{ + "info": { + "name": "6305--纳塔_翘枝崖_花语会南3_(4-4)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.2", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json new file mode 100644 index 00000000..c6bebb0d --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6306--纳塔_翘枝崖_柴薪之丘_(11-18).json @@ -0,0 +1,274 @@ +{ + "info": { + "name": "6306--纳塔_翘枝崖_柴薪之丘_(11-18)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.5", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json new file mode 100644 index 00000000..88643930 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6401--纳塔_万火之瓯_竞技场_(14-17).json @@ -0,0 +1,264 @@ +{ + "info": { + "name": "6401--纳塔_万火之瓯_竞技场_(14-17)", + "type": "collect", + "author": "Demo&汐", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json new file mode 100644 index 00000000..12a3f2bf --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6402--纳塔_万火之瓯_竞技场2_(3-4).json @@ -0,0 +1,104 @@ +{ + "info": { + "name": "6402--纳塔_万火之瓯_竞技场2_(3-4)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8738.2216796875, + "y": -1857.4560546875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 8742.8359375, + "y": -1852.94189453125, + "action": "stop_flying", + "move_mode": "fly", + "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, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 8823.76953125, + "y": -1774.45263671875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 8884.58203125, + "y": -1761.26318359375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 7, + "x": 8884.58203125, + "y": -1761.26318359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 8905.416015625, + "y": -1743.73828125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 8940.3466796875, + "y": -1731.37158203125, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 8940.3466796875, + "y": -1731.37158203125, + "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_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json new file mode 100644 index 00000000..4287aa19 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6403--纳塔_万火之瓯_竞技场3_(4-3).json @@ -0,0 +1,67 @@ +{ + "info": { + "name": "6403--纳塔_万火之瓯_竞技场3_(4-3)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8916.8193359375, + "y": -1638.63916015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 8789.810546875, + "y": -1690.83203125, + "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, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json new file mode 100644 index 00000000..5c317867 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6404--纳塔_万火之瓯_竞技场4_(12-11).json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "6404--纳塔_万火之瓯_竞技场4_(12-11)", + "type": "collect", + "author": "Demo&汐", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json new file mode 100644 index 00000000..f19e5c50 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6405--纳塔_万火之瓯_竞技场5_(3-5).json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "6405--纳塔_万火之瓯_竞技场5_(3-5)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json new file mode 100644 index 00000000..8db3226f --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6406--纳塔_万火之瓯_悬木人_(6-6).json @@ -0,0 +1,112 @@ +{ + "info": { + "name": "6406--纳塔_万火之瓯_悬木人_(6-6)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/新版锄地--小怪/6405--纳塔_万火之瓯_竞技场5_(3-5).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json similarity index 62% rename from repo/pathing/新版锄地--小怪/6405--纳塔_万火之瓯_竞技场5_(3-5).json rename to repo/pathing/小怪锄地2000/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json index 1fb5aca7..0f88ed83 100644 --- a/repo/pathing/新版锄地--小怪/6405--纳塔_万火之瓯_竞技场5_(3-5).json +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6407--纳塔_万火之瓯_悬木人_(5-4).json @@ -1,6 +1,6 @@ { "info": { - "name": "6405--纳塔_万火之瓯_竞技场5_(3-5)", + "name": "6407--纳塔_万火之瓯_悬木人_(5-4)", "type": "collect", "author": "Demo&汐", "version": "1.1", @@ -10,8 +10,8 @@ "positions": [ { "id": 1, - "x": 9084.142578125, - "y": -1965.3291015625, + "x": 8664.69921875, + "y": -2220.8515625, "action": "", "move_mode": "walk", "action_params": "", @@ -19,62 +19,62 @@ }, { "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": 9085.17578125, - "y": -2049.4921875, - "action": "combat_script", - "move_mode": "dash", - "action_params": "wait(0.5)", - "type": "path" - }, - { - "id": 5, - "x": 9106.9296875, - "y": -2049.5712890625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "50", - "type": "path" - }, - { - "id": 6, - "x": 9141.5859375, - "y": -2047.1552734375, + "x": 8684.130859375, + "y": -2188.763671875, "action": "fight", "move_mode": "dash", "action_params": "", "type": "path" }, { - "id": 7, - "x": 9084.142578125, - "y": -1965.3291015625, + "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": 9074.2177734375, - "y": -1974.69970703125, + "x": 8612.951171875, + "y": -2189.7646484375, "action": "", "move_mode": "dash", "action_params": "", @@ -82,8 +82,8 @@ }, { "id": 9, - "x": 9076.146484375, - "y": -2019.005859375, + "x": 8544.5263671875, + "y": -2209.4931640625, "action": "", "move_mode": "dash", "action_params": "", @@ -91,17 +91,17 @@ }, { "id": 10, - "x": 9050.75390625, - "y": -2029.556640625, - "action": "stop_flying", - "move_mode": "fly", - "action_params": "1500", + "x": 8546.931640625, + "y": -2191.5283203125, + "action": "", + "move_mode": "dash", + "action_params": "", "type": "path" }, { "id": 11, - "x": 9015.00390625, - "y": -2049.71875, + "x": 8539.896484375, + "y": -2194.955078125, "action": "fight", "move_mode": "dash", "action_params": "", diff --git a/repo/pathing/小怪锄地2000/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json new file mode 100644 index 00000000..0573972d --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6501--纳塔_坚岩隘谷_硫晶支脉_(6-4).json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "6501--纳塔_坚岩隘谷_硫晶支脉_(6-4)", + "type": "collect", + "author": "Demo&汐", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json new file mode 100644 index 00000000..6477cec7 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9).json @@ -0,0 +1,130 @@ +{ + "info": { + "name": "6502--纳塔_坚岩隘谷_硫晶支脉2_(4-9)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json new file mode 100644 index 00000000..8710ca94 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6503--纳塔_坚岩隘谷_隆崛坡_(6-1).json @@ -0,0 +1,157 @@ +{ + "info": { + "name": "6503--纳塔_坚岩隘谷_隆崛坡_(6-1)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json new file mode 100644 index 00000000..4d2abfd2 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13).json @@ -0,0 +1,337 @@ +{ + "info": { + "name": "6504--纳塔_坚岩隘谷_硫晶支脉3_(16-13)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json new file mode 100644 index 00000000..6ec8096e --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6505--纳塔_坚岩隘谷_回声之子_(7-13).json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "6505--纳塔_坚岩隘谷_回声之子_(7-13)", + "type": "collect", + "author": "Demo&汐", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json new file mode 100644 index 00000000..1ad62fde --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6506--纳塔_坚岩隘谷_回声之子_(8-9).json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "6506--纳塔_坚岩隘谷_回声之子_(8-9)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json new file mode 100644 index 00000000..7b404ee8 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6507--纳塔_坚岩隘谷_中部河流_(15-9).json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "6507--纳塔_坚岩隘谷_中部河流_(15-9)", + "type": "collect", + "author": "Demo&汐", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json new file mode 100644 index 00000000..7b4a18cf --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2).json @@ -0,0 +1,112 @@ +{ + "info": { + "name": "6508--纳塔_坚岩隘谷_硫晶支脉4_(6-2)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json new file mode 100644 index 00000000..f8927738 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6509--纳塔_坚岩隘谷_南侧崖壁_(5-5).json @@ -0,0 +1,121 @@ +{ + "info": { + "name": "6509--纳塔_坚岩隘谷_南侧崖壁_(5-5)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json new file mode 100644 index 00000000..a623e1cf --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6510--纳塔_坚岩隘谷_南侧崖壁_(8-13).json @@ -0,0 +1,175 @@ +{ + "info": { + "name": "6510--纳塔_坚岩隘谷_南侧崖壁_(8-13)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json new file mode 100644 index 00000000..53768caa --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6511--纳塔_坚岩隘谷_隆崛坡2_(2-3).json @@ -0,0 +1,94 @@ +{ + "info": { + "name": "6511--纳塔_坚岩隘谷_隆崛坡2_(2-3)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json new file mode 100644 index 00000000..99f05ed7 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6601--纳塔_涌流地_北侧山脉_(2-4).json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "6601--纳塔_涌流地_北侧山脉_(2-4)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json new file mode 100644 index 00000000..6bd070d5 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6602--纳塔_涌流地_北侧山脉2_(11-7).json @@ -0,0 +1,229 @@ +{ + "info": { + "name": "6602--纳塔_涌流地_北侧山脉2_(11-7)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json new file mode 100644 index 00000000..83ff07cc --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6603--纳塔_涌流地_秘境西侧_(2-7).json @@ -0,0 +1,85 @@ +{ + "info": { + "name": "6603--纳塔_涌流地_秘境西侧_(2-7)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json new file mode 100644 index 00000000..15ceb201 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6604--纳塔_涌流地_秘境南侧_(2-7).json @@ -0,0 +1,121 @@ +{ + "info": { + "name": "6604--纳塔_涌流地_秘境南侧_(2-7)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json new file mode 100644 index 00000000..1339e456 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6605--纳塔_涌流地_溶水域_(6-0).json @@ -0,0 +1,103 @@ +{ + "info": { + "name": "6605--纳塔_涌流地_溶水域_(6-0)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json new file mode 100644 index 00000000..55aaac15 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6606--纳塔_涌流地_溶水域2_(4-3).json @@ -0,0 +1,94 @@ +{ + "info": { + "name": "6606--纳塔_涌流地_溶水域2_(4-3)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json new file mode 100644 index 00000000..549f8ae1 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6607--纳塔_涌流地_溶水域3_(11-5).json @@ -0,0 +1,139 @@ +{ + "info": { + "name": "6607--纳塔_涌流地_溶水域3_(11-5)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json new file mode 100644 index 00000000..244af9a8 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6608--纳塔_涌流地_溶水域4_(2-3).json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "6608--纳塔_涌流地_溶水域4_(2-3)", + "type": "collect", + "author": "Demo&汐", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json new file mode 100644 index 00000000..5eb5134f --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6609--纳塔_涌流地_南侧小岛_(5-8).json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "6609--纳塔_涌流地_南侧小岛_(5-8)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json new file mode 100644 index 00000000..c0186242 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6610--纳塔_涌流地_东侧小岛_(10-14).json @@ -0,0 +1,203 @@ +{ + "info": { + "name": "6610--纳塔_涌流地_东侧小岛_(10-14)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json new file mode 100644 index 00000000..6d7e4c10 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6611--纳塔_涌流地_中央神像_(9-8).json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "6611--纳塔_涌流地_中央神像_(9-8)", + "type": "collect", + "author": "Demo&汐", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json new file mode 100644 index 00000000..140534f9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6701--纳塔_踞石山_庙宇北侧_(3-5).json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "6701--纳塔_踞石山_庙宇北侧_(3-5)", + "type": "collect", + "author": "Demo&汐", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json new file mode 100644 index 00000000..8f42c002 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6702--纳塔_踞石山_庙宇北侧_(1-11).json @@ -0,0 +1,130 @@ +{ + "info": { + "name": "6702--纳塔_踞石山_庙宇北侧_(1-11)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json new file mode 100644 index 00000000..7e04adb7 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6703--纳塔_踞石山_北侧主峰_(10-9).json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "6703--纳塔_踞石山_北侧主峰_(10-9)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json new file mode 100644 index 00000000..170b29c1 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6704--纳塔_踞石山_东侧海边_(3-7).json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "6704--纳塔_踞石山_东侧海边_(3-7)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json new file mode 100644 index 00000000..3d21c5e2 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6705--纳塔_踞石山_彩石顶_(10-4).json @@ -0,0 +1,242 @@ +{ + "info": { + "name": "6705--纳塔_踞石山_彩石顶_(10-4)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json new file mode 100644 index 00000000..73528bf4 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6706--纳塔_踞石山_彩石顶2_(7-16).json @@ -0,0 +1,247 @@ +{ + "info": { + "name": "6706--纳塔_踞石山_彩石顶2_(7-16)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json new file mode 100644 index 00000000..06da86f9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6707--纳塔_踞石山_庙宇_(9-11).json @@ -0,0 +1,238 @@ +{ + "info": { + "name": "6707--纳塔_踞石山_庙宇_(9-11)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json new file mode 100644 index 00000000..e5f416d8 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6708--纳塔_踞石山_彩石顶3_(6-9).json @@ -0,0 +1,130 @@ +{ + "info": { + "name": "6708--纳塔_踞石山_彩石顶3_(6-9)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json new file mode 100644 index 00000000..23d6b866 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6801--纳塔_安饶之野_镜壁山东南_(20).json @@ -0,0 +1,256 @@ +{ + "info": { + "name": "6801--纳塔_安饶之野_镜壁山东南_(20)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json new file mode 100644 index 00000000..c7e9612f --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6802--纳塔_安饶之野_镜壁山西南_(23).json @@ -0,0 +1,301 @@ +{ + "info": { + "name": "6802--纳塔_安饶之野_镜壁山西南_(23)", + "type": "collect", + "author": "汐", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9515.6220703125, + "y": -2206.2939453125, + "action": "force_tp", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 9459.970703125, + "y": -2213.703125, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 9424.681640625, + "y": -2207.583984375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 9417.15234375, + "y": -2195.1201171875, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 9411.140625, + "y": -2186.724609375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 9515.6220703125, + "y": -2206.2939453125, + "action": "force_tp", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 7, + "x": 9506.499478589052, + "y": -2228.4996968407304, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 9495.818359375, + "y": -2254.591796875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 9497.6103515625, + "y": -2243.4921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 9545.1533203125, + "y": -2257.41015625, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 9544.25390625, + "y": -2322.873046875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 9587.7919921875, + "y": -2294.169921875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 9603.5126953125, + "y": -2301.3291015625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 9515.6220703125, + "y": -2206.2939453125, + "action": "force_tp", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 15, + "x": 9532.2021484375, + "y": -2217.779296875, + "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, + "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", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 9699.865234375, + "y": -2115.3583984375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 9728.28125, + "y": -2125.83203125, + "action": "combat_script", + "move_mode": "dash", + "action_params": "attack(0.3)", + "type": "path" + }, + { + "id": 25, + "x": 9748.500209354395, + "y": -2091.5007882141, + "action": "combat_script", + "move_mode": "dash", + "action_params": "attack(0.3)", + "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, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 9755.5810546875, + "y": -2102.8154296875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 9786.365234375, + "y": -2079.0625, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 9799.568359375, + "y": -2111.828125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 9820.98046875, + "y": -2090.150390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 9808.353515625, + "y": -2061.5478515625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json new file mode 100644 index 00000000..78407ccc --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6803--纳塔_熔岩辉龙像东南_(5).json @@ -0,0 +1,112 @@ +{ + "info": { + "name": "6803--纳塔_熔岩辉龙像东南_镜壁山东南_(5)", + "type": "collect", + "author": "汐", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 9834.62109375, + "y": -2359.9140625, + "action_params": "", + "locked": false + }, + { + "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, + "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, + "action_params": "" + }, + { + "id": 7, + "x": 9870.4775390625, + "y": -2393.9658203125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 9873.0732421875, + "y": -2434.5546875, + "type": "path", + "move_mode": "dash", + "action": "combat_script", + "action_params": "attack(0.3)" + }, + { + "id": 9, + "x": 9900.62890625, + "y": -2381.5908203125, + "type": "path", + "move_mode": "dash", + "action": "combat_script", + "action_params": "attack(0.3)" + }, + { + "id": 10, + "x": 9886.44921875, + "y": -2417.2763671875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + }, + { + "id": 11, + "x": 9824.2255859375, + "y": -2432.2822265625, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json new file mode 100644 index 00000000..5c469ce6 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6804--纳塔_安饶之野东北海岸_(8).json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "6804--纳塔_安饶之野东北海岸_(8)", + "type": "collect", + "author": "汐", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json new file mode 100644 index 00000000..350c4b79 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6805--纳塔_安饶之野东岩浆池_(5).json @@ -0,0 +1,85 @@ +{ + "info": { + "name": "6805--纳塔_安饶之野东岩浆池_(5)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json new file mode 100644 index 00000000..034db345 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6806--纳塔_安饶之野东斜坡_(16).json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "6806--纳塔_安饶之野东斜坡_(16)", + "type": "collect", + "author": "汐", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json new file mode 100644 index 00000000..4fe6cf11 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6807--纳塔_安饶之野神像_(8).json @@ -0,0 +1,86 @@ +{ + "info": { + "name": "6807--纳塔_安饶之野神像_(8)", + "type": "collect", + "author": "汐", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 10025.7421875, + "y": -2614.857421875, + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 9991.62890625, + "y": -2619.1396484375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "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, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 10034.3876953125, + "y": -2575.59375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 10057.2978515625, + "y": -2460.82421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 8, + "x": 10070.12890625, + "y": -2442.35546875, + "type": "path", + "move_mode": "dash", + "action": "fight", + "action_params": "", + "locked": false + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json new file mode 100644 index 00000000..683ad638 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6808--纳塔_安饶之野_沃陆之邦北小岛_(14).json @@ -0,0 +1,121 @@ +{ + "info": { + "name": "6808--纳塔_安饶之野_沃陆之邦北小岛_(14)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json new file mode 100644 index 00000000..5c574e80 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6809--纳塔_安饶之野_石火坠陨处_(12).json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "6809--纳塔_安饶之野_石火坠陨处_(12)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json new file mode 100644 index 00000000..9f276500 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6810--纳塔_安饶之野西南_(21).json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "6810--纳塔_安饶之野西南_(21)", + "type": "collect", + "author": "汐", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json new file mode 100644 index 00000000..ebea8485 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6811--纳塔_安饶之野_荒废弃造坞_(10).json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "6811--纳塔_安饶之野_荒废弃造坞_(10)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json new file mode 100644 index 00000000..5542d1a6 --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6812--纳塔_安饶之野_孑遗的留迹东南_(20).json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "6812--纳塔_安饶之野_孑遗的留迹东南_(20)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": 9917.955078125, + "y": -3275.8310546875, + "action": "force_tp", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 3, + "x": 9956.34375, + "y": -3264.0927734375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 9957.6142578125, + "y": -3210.7763671875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 9958.6142578125, + "y": -3210.7763671875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 10018.4208984375, + "y": -3213.65625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 10002.1875, + "y": -3163.1826171875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 10002.1875, + "y": -3163.1826171875, + "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_纳塔/6813--纳塔_安饶之野西北_(8).json b/repo/pathing/小怪锄地2000/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json new file mode 100644 index 00000000..5c5c525d --- /dev/null +++ b/repo/pathing/小怪锄地2000/0_6_纳塔/6813--纳塔_安饶之野西北_(8).json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "6813--纳塔_安饶之野西北_(8)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_1_蒙德/1101蒙德望风角.json b/repo/pathing/小怪锄地2000/1_1_蒙德/1101蒙德望风角.json new file mode 100644 index 00000000..1b412fd0 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_1_蒙德/1101蒙德望风角.json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "1101蒙德望风角", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "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/小怪锄地2000/1_1_蒙德/1102蒙德望风角.json b/repo/pathing/小怪锄地2000/1_1_蒙德/1102蒙德望风角.json new file mode 100644 index 00000000..e74bc1c8 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_1_蒙德/1102蒙德望风角.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "1102蒙德望风角", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "dash", + "action_params": "", + "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/小怪锄地2000/1_1_蒙德/1103蒙德望风山地.json b/repo/pathing/小怪锄地2000/1_1_蒙德/1103蒙德望风山地.json new file mode 100644 index 00000000..6aa6532c --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_1_蒙德/1103蒙德望风山地.json @@ -0,0 +1,336 @@ +{ + "info": { + "name": "1103蒙德望风山地", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1291.5, + "y": 2678.4, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1291.5, + "y": 2678.4, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1277.369140625, + "y": 2658.291259765625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1266.369140625, + "y": 2648.291259765625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1235.2568359375, + "y": 2639.375244140625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1235.2568359375, + "y": 2639.375244140625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -1227.953125, + "y": 2657.877197265625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1219.765625, + "y": 2678.180908203125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1219.765626, + "y": 2678.180908203126, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1219.765626, + "y": 2678.180908203126, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1206.806640625, + "y": 2681.305419921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1191.37109375, + "y": 2677.0751953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1177.6240234375, + "y": 2683.637939453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1151.98046875, + "y": 2702.3193359375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1151.98046875, + "y": 2702.3193359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -1127.1025390625, + "y": 2664.409423828125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -1127.1025390626, + "y": 2664.409423828126, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -1127.1025390626, + "y": 2664.409423828126, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -1271.5732421875, + "y": 2724.694580078125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 22, + "x": -1262.681640625, + "y": 2755.527587890625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -1272.1279296875, + "y": 2779.388916015625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -1272.1279296875, + "y": 2779.388916015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -1251.4912109375, + "y": 2776.62451171875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -1230.48046875, + "y": 2771.06494140625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -1221.9833984375, + "y": 2780.493408203125, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -1221.9833984375, + "y": 2780.493408203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -1186.8837890625, + "y": 2754.42138671875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -1162.994140625, + "y": 2759.685791015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -1160.1337890625, + "y": 2732.940673828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -1169.8818359375, + "y": 2730.030517578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 33, + "x": -1170.4169921875, + "y": 2730.04150390625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": -1173.2958984375, + "y": 2731.14501953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": -1173.9646484375, + "y": 2735.8306640625, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "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/小怪锄地2000/1_1_蒙德/1104蒙德千风西.json b/repo/pathing/小怪锄地2000/1_1_蒙德/1104蒙德千风西.json new file mode 100644 index 00000000..19bbc022 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_1_蒙德/1104蒙德千风西.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "1104蒙德千风西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "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/小怪锄地2000/1_1_蒙德/1202蒙德奔狼领.json b/repo/pathing/小怪锄地2000/1_1_蒙德/1202蒙德奔狼领.json new file mode 100644 index 00000000..8cf53810 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_1_蒙德/1202蒙德奔狼领.json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "1202蒙德奔狼领", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "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/小怪锄地2000/1_1_蒙德/1203蒙德塞西莉亚苗圃.json b/repo/pathing/小怪锄地2000/1_1_蒙德/1203蒙德塞西莉亚苗圃.json new file mode 100644 index 00000000..f64da0f7 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_1_蒙德/1203蒙德塞西莉亚苗圃.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "1203蒙德塞西莉亚苗圃", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "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/小怪锄地2000/1_2_璃月/2101璃月无妄坡西南.json b/repo/pathing/小怪锄地2000/1_2_璃月/2101璃月无妄坡西南.json new file mode 100644 index 00000000..6410c548 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2101璃月无妄坡西南.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "2101璃月无妄坡西南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_2_璃月/2201璃月明蕴镇西北.json b/repo/pathing/小怪锄地2000/1_2_璃月/2201璃月明蕴镇西北.json new file mode 100644 index 00000000..a4044aa3 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2201璃月明蕴镇西北.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "2201璃月明蕴镇西北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "dash", + "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/小怪锄地2000/1_2_璃月/2202璃月瑶光滩西北.json b/repo/pathing/小怪锄地2000/1_2_璃月/2202璃月瑶光滩西北.json new file mode 100644 index 00000000..c1f0cc7c --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2202璃月瑶光滩西北.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "2202璃月瑶光滩西北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_2_璃月/2301璃月太山府.json b/repo/pathing/小怪锄地2000/1_2_璃月/2301璃月太山府.json new file mode 100644 index 00000000..93eedd84 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2301璃月太山府.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "2301璃月太山府", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_2_璃月/2302璃月珉林.json b/repo/pathing/小怪锄地2000/1_2_璃月/2302璃月珉林.json new file mode 100644 index 00000000..50a2a010 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2302璃月珉林.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "2302璃月珉林", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_2_璃月/2303璃月琥牢山.json b/repo/pathing/小怪锄地2000/1_2_璃月/2303璃月琥牢山.json new file mode 100644 index 00000000..b2200286 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2303璃月琥牢山.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "2303璃月琥牢山", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_2_璃月/2401璃月地面矿区.json b/repo/pathing/小怪锄地2000/1_2_璃月/2401璃月地面矿区.json new file mode 100644 index 00000000..0d43a833 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2401璃月地面矿区.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "2401璃月地面矿区", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_2_璃月/2501璃月遁玉陵.json b/repo/pathing/小怪锄地2000/1_2_璃月/2501璃月遁玉陵.json new file mode 100644 index 00000000..3d69c989 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2501璃月遁玉陵.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "2501璃月遁玉陵", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_2_璃月/2502璃月群玉阁西.json b/repo/pathing/小怪锄地2000/1_2_璃月/2502璃月群玉阁西.json new file mode 100644 index 00000000..7ff838bc --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2502璃月群玉阁西.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "2502璃月群玉阁西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_2_璃月/2601璃月港东北.json b/repo/pathing/小怪锄地2000/1_2_璃月/2601璃月港东北.json new file mode 100644 index 00000000..48b78bb9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_2_璃月/2601璃月港东北.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "2601璃月港东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3101稻妻白狐之野南.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3101稻妻白狐之野南.json new file mode 100644 index 00000000..02c63da9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3101稻妻白狐之野南.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "3101稻妻白狐之野南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3102稻妻绀田村南.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3102稻妻绀田村南.json new file mode 100644 index 00000000..398f49e3 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3102稻妻绀田村南.json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "3102稻妻绀田村南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3104稻妻绀田村南2.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3104稻妻绀田村南2.json new file mode 100644 index 00000000..3e39c9eb --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3104稻妻绀田村南2.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "3104稻妻绀田村南2", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3105稻妻镇守之森.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3105稻妻镇守之森.json new file mode 100644 index 00000000..d5522ec7 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3105稻妻镇守之森.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "3105稻妻镇守之森", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3106稻妻神里屋敷.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3106稻妻神里屋敷.json new file mode 100644 index 00000000..496f91af --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3106稻妻神里屋敷.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "3106稻妻神里屋敷", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3107稻妻绀田村.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3107稻妻绀田村.json new file mode 100644 index 00000000..4c62172e --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3107稻妻绀田村.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "3107稻妻绀田村", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3108稻妻荒海南.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3108稻妻荒海南.json new file mode 100644 index 00000000..8394f797 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3108稻妻荒海南.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "3108稻妻荒海南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3201稻妻九条阵屋.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3201稻妻九条阵屋.json new file mode 100644 index 00000000..558bd962 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3201稻妻九条阵屋.json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "3201稻妻九条阵屋", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3202稻妻踏鞴东北.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3202稻妻踏鞴东北.json new file mode 100644 index 00000000..8182092b --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3202稻妻踏鞴东北.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "3202稻妻踏鞴东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3204稻妻踏鞴神像2.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3204稻妻踏鞴神像2.json new file mode 100644 index 00000000..4e7a2140 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3204稻妻踏鞴神像2.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "3204稻妻踏鞴神像2", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3205稻妻踏鞴反应炉东三骗骗花.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3205稻妻踏鞴反应炉东三骗骗花.json new file mode 100644 index 00000000..b634d46a --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3205稻妻踏鞴反应炉东三骗骗花.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "3205稻妻踏鞴反应炉东三骗骗花", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3206稻妻踏鞴反应炉东.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3206稻妻踏鞴反应炉东.json new file mode 100644 index 00000000..7d1362b9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3206稻妻踏鞴反应炉东.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "3206稻妻踏鞴反应炉东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3207稻妻踏鞴浪船.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3207稻妻踏鞴浪船.json new file mode 100644 index 00000000..82450507 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3207稻妻踏鞴浪船.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "3207稻妻踏鞴浪船", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3208稻妻借景之馆.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3208稻妻借景之馆.json new file mode 100644 index 00000000..852661a0 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3208稻妻借景之馆.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "3208稻妻借景之馆", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3209稻妻踏鞴公义东南.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3209稻妻踏鞴公义东南.json new file mode 100644 index 00000000..9c284178 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3209稻妻踏鞴公义东南.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "3209稻妻踏鞴公义东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3210稻妻公义飞萤.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3210稻妻公义飞萤.json new file mode 100644 index 00000000..1613bafe --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3210稻妻公义飞萤.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "3210稻妻公义飞萤", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3211稻妻名椎滩东.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3211稻妻名椎滩东.json new file mode 100644 index 00000000..b865c724 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3211稻妻名椎滩东.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "3211稻妻名椎滩东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/新版锄地--小怪/6202--纳塔_奥奇_北海岸_(4-0).json b/repo/pathing/小怪锄地2000/1_3_稻妻/3212稻妻名椎滩西.json similarity index 60% rename from repo/pathing/新版锄地--小怪/6202--纳塔_奥奇_北海岸_(4-0).json rename to repo/pathing/小怪锄地2000/1_3_稻妻/3212稻妻名椎滩西.json index 8b53a01e..3e4c9cd9 100644 --- a/repo/pathing/新版锄地--小怪/6202--纳塔_奥奇_北海岸_(4-0).json +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3212稻妻名椎滩西.json @@ -1,8 +1,8 @@ { "info": { - "name": "6202--纳塔_奥奇_北海岸_(4-0)", + "name": "3212稻妻名椎滩西", "type": "collect", - "author": "Demo", + "author": "mno", "version": "1.0", "description": "", "bgiVersion": "0.42.3" @@ -10,17 +10,17 @@ "positions": [ { "id": 1, - "x": 10070.25, - "y": 25.6552734375, + "x": -2533.369140625, + "y": -3539.66796875, "action": "", - "move_mode": "run", + "move_mode": "walk", "action_params": "", "type": "teleport" }, { "id": 2, - "x": 10065.2265625, - "y": 47.07373046875, + "x": -2525.541015625, + "y": -3577.1787109375, "action": "", "move_mode": "dash", "action_params": "", @@ -28,26 +28,26 @@ }, { "id": 3, - "x": 10067.45703125, - "y": 83.7451171875, + "x": -2515.724609375, + "y": -3562.4443359375, "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" - }, - { - "id": 4, - "x": 10038.3193359375, - "y": 132.4287109375, - "action": "", "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": 10035.5087890625, - "y": 154.59228515625, + "x": -2473.72265625, + "y": -3565.0888671875, "action": "", "move_mode": "dash", "action_params": "", @@ -55,30 +55,30 @@ }, { "id": 6, - "x": 10026.2421875, - "y": 158.5693359375, - "action": "combat_script", - "move_mode": "dash", - "action_params": "attack,wait(0.5),attack", + "x": -2450.10546875, + "y": -3571.0537109375, + "action": "", + "move_mode": "run", + "action_params": "", "type": "path" }, { "id": 7, - "x": 10018.0224609375, - "y": 168.6767578125, - "action": "", + "x": -2426.373046875, + "y": -3588.775390625, + "action": "fight", "move_mode": "dash", "action_params": "", "type": "path" }, { "id": 8, - "x": 10015.0478515625, - "y": 176.251953125, - "action": "fight", - "move_mode": "dash", - "action_params": "", - "type": "path" + "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/小怪锄地2000/1_3_稻妻/3301稻妻绯木村神像.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3301稻妻绯木村神像.json new file mode 100644 index 00000000..2813486c --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3301稻妻绯木村神像.json @@ -0,0 +1,363 @@ +{ + "info": { + "name": "3301稻妻绯木村神像", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3302稻妻蛇骨矿洞南.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3302稻妻蛇骨矿洞南.json new file mode 100644 index 00000000..49c4797b --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3302稻妻蛇骨矿洞南.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "3302稻妻蛇骨矿洞南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3303稻妻剑鬼东2.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3303稻妻剑鬼东2.json new file mode 100644 index 00000000..825027f8 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3303稻妻剑鬼东2.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "3303稻妻剑鬼东2", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3304稻妻剑鬼东3.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3304稻妻剑鬼东3.json new file mode 100644 index 00000000..b6a8119d --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3304稻妻剑鬼东3.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "3304稻妻剑鬼东3", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3305稻妻剑鬼东1.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3305稻妻剑鬼东1.json new file mode 100644 index 00000000..1e48485d --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3305稻妻剑鬼东1.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "3305稻妻剑鬼东1", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3306稻妻藤兜砦西.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3306稻妻藤兜砦西.json new file mode 100644 index 00000000..96f18a6c --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3306稻妻藤兜砦西.json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "3306稻妻藤兜砦西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3401稻妻海祇岛东.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3401稻妻海祇岛东.json new file mode 100644 index 00000000..47bf11d3 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3401稻妻海祇岛东.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "3401稻妻海祇岛东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_3_稻妻/3403稻妻海祇岛南.json b/repo/pathing/小怪锄地2000/1_3_稻妻/3403稻妻海祇岛南.json new file mode 100644 index 00000000..d21e1796 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_3_稻妻/3403稻妻海祇岛南.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "3403稻妻海祇岛南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_4_须弥/4101须弥二净甸.json b/repo/pathing/小怪锄地2000/1_4_须弥/4101须弥二净甸.json new file mode 100644 index 00000000..e6859cf1 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_4_须弥/4101须弥二净甸.json @@ -0,0 +1,525 @@ +{ + "info": { + "name": "4101须弥二净甸", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5101枫丹廷东北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5101枫丹廷东北.json new file mode 100644 index 00000000..b25efe50 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5101枫丹廷东北.json @@ -0,0 +1,184 @@ +{ + "info": { + "name": "5101枫丹廷东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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", + "locked": false + }, + { + "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/小怪锄地2000/1_5_枫丹/5102枫丹廷北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5102枫丹廷北.json new file mode 100644 index 00000000..3592bb76 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5102枫丹廷北.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "5102枫丹廷北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 4597.1926171875, + "y": 3943.937724609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 4599.654296875, + "y": 3894.140625, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 4586.2099609375, + "y": 3897.312255859375, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 4586.2099609375, + "y": 3897.312255859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 4492.29248046875, + "y": 3883.56201171875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 4498.86083984375, + "y": 3887.252197265625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 4481.8837890625, + "y": 3876.139404296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 4462.7537890625, + "y": 3830.139404296875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 4441.48486328125, + "y": 3837.131103515625, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "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/小怪锄地2000/1_5_枫丹/5201枫丹优兰湖西.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5201枫丹优兰湖西.json new file mode 100644 index 00000000..e5fae35a --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5201枫丹优兰湖西.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "5201枫丹优兰湖西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5202枫丹垂柳西北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5202枫丹垂柳西北.json new file mode 100644 index 00000000..1448bd8a --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5202枫丹垂柳西北.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "5202枫丹垂柳西北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5203枫丹垂柳东南.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5203枫丹垂柳东南.json new file mode 100644 index 00000000..0a024bd0 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5203枫丹垂柳东南.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "5203枫丹垂柳东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5204枫丹垂柳东南.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5204枫丹垂柳东南.json new file mode 100644 index 00000000..02b4260b --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5204枫丹垂柳东南.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "5204枫丹垂柳东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5205枫丹垂柳东南.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5205枫丹垂柳东南.json new file mode 100644 index 00000000..f72bccc0 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5205枫丹垂柳东南.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "5205枫丹垂柳东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5206枫丹垂柳东南.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5206枫丹垂柳东南.json new file mode 100644 index 00000000..fbe379ee --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5206枫丹垂柳东南.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "5206枫丹垂柳东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5207枫丹柔灯港北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5207枫丹柔灯港北.json new file mode 100644 index 00000000..000d3284 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5207枫丹柔灯港北.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "5207枫丹柔灯港北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5208枫丹幽林东北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5208枫丹幽林东北.json new file mode 100644 index 00000000..95181ebc --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5208枫丹幽林东北.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "5208枫丹幽林东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5209枫丹露景泉东.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5209枫丹露景泉东.json new file mode 100644 index 00000000..721bc358 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5209枫丹露景泉东.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "5209枫丹露景泉东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5210枫丹幽林东北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5210枫丹幽林东北.json new file mode 100644 index 00000000..ea4191b9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5210枫丹幽林东北.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "5210枫丹幽林东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5301枫丹卡布堡南.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5301枫丹卡布堡南.json new file mode 100644 index 00000000..2c693058 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5301枫丹卡布堡南.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "5301枫丹卡布堡南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5303枫丹卡布堡北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5303枫丹卡布堡北.json new file mode 100644 index 00000000..9aab5bf2 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5303枫丹卡布堡北.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "5303枫丹卡布堡北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5401枫丹秋分东南.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5401枫丹秋分东南.json new file mode 100644 index 00000000..f7edb79d --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5401枫丹秋分东南.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "5401枫丹秋分东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5402枫丹秋分山东.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5402枫丹秋分山东.json new file mode 100644 index 00000000..b3df26cf --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5402枫丹秋分山东.json @@ -0,0 +1,264 @@ +{ + "info": { + "name": "5402枫丹秋分山东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5403枫丹螃蟹北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5403枫丹螃蟹北.json new file mode 100644 index 00000000..ccac1039 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5403枫丹螃蟹北.json @@ -0,0 +1,255 @@ +{ + "info": { + "name": "5403枫丹螃蟹北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 4287.8701171875, + "y": 2453.374755859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 4336.7236328125, + "y": 2411.212158203125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 4368.9482421875, + "y": 2420.17041015625, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 4401.8447265625, + "y": 2397.64208984375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 4389.20263671875, + "y": 2365.114990234375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 4387.50263671875, + "y": 2356.514990234375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "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/小怪锄地2000/1_5_枫丹/5501枫丹螃蟹西.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5501枫丹螃蟹西.json new file mode 100644 index 00000000..5636e2f2 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5501枫丹螃蟹西.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "5501枫丹螃蟹西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5502枫丹苍晶南山峰西.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5502枫丹苍晶南山峰西.json new file mode 100644 index 00000000..de9359b4 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5502枫丹苍晶南山峰西.json @@ -0,0 +1,246 @@ +{ + "info": { + "name": "5502枫丹苍晶南山峰西", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5503枫丹厄里东北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5503枫丹厄里东北.json new file mode 100644 index 00000000..44565040 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5503枫丹厄里东北.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "5503枫丹厄里东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5603枫丹场力北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5603枫丹场力北.json new file mode 100644 index 00000000..49ea5977 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5603枫丹场力北.json @@ -0,0 +1,390 @@ +{ + "info": { + "name": "5603枫丹场力北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5604枫丹中央遗址北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5604枫丹中央遗址北.json new file mode 100644 index 00000000..03392143 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5604枫丹中央遗址北.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "5604枫丹中央遗址北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5605枫丹中央遗址北.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5605枫丹中央遗址北.json new file mode 100644 index 00000000..79a7a9a0 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5605枫丹中央遗址北.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "5605枫丹中央遗址北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5607枫丹新科学院.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5607枫丹新科学院.json new file mode 100644 index 00000000..ec008ca4 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5607枫丹新科学院.json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "5607枫丹新科学院", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5608枫丹新科学院.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5608枫丹新科学院.json new file mode 100644 index 00000000..3b9443a8 --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5608枫丹新科学院.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "5608枫丹新科学院", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/1_5_枫丹/5609枫丹千年骏麟.json b/repo/pathing/小怪锄地2000/1_5_枫丹/5609枫丹千年骏麟.json new file mode 100644 index 00000000..cf8e86aa --- /dev/null +++ b/repo/pathing/小怪锄地2000/1_5_枫丹/5609枫丹千年骏麟.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "5609枫丹千年骏麟", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹.json new file mode 100644 index 00000000..8ce7ec30 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/000如果执行了这条路径说明你启用了错误的文件夹.json @@ -0,0 +1,99 @@ +{ + "info": { + "name": "000如果执行了这条路径说明你启用了错误的文件夹请阅读README", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/25012璃月遁玉陵.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/25012璃月遁玉陵.json new file mode 100644 index 00000000..85ee66c0 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/25012璃月遁玉陵.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "25012璃月遁玉陵", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/3103稻妻绀田村南3.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3103稻妻绀田村南3.json new file mode 100644 index 00000000..0bddffc0 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3103稻妻绀田村南3.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "3103稻妻绀田村南3", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/3203稻妻踏鞴神像.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3203稻妻踏鞴神像.json new file mode 100644 index 00000000..0406c6ab --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3203稻妻踏鞴神像.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "3203稻妻踏鞴神像", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3233.25390625, + "y": -3534.1357421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -3230.505859375, + "y": -3530.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -3213.2587890625, + "y": -3512.5244140625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "500", + "type": "path" + }, + { + "id": 4, + "x": -3194.0654296875, + "y": -3511.3623046875, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -3194.0654296875, + "y": -3511.3623046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -3152.5908203125, + "y": -3507.740234375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -3126.849609375, + "y": -3521.4375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -3076.654296875, + "y": -3523.0419921875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -3056.552734375, + "y": -3522.6220703125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -3040.3173828125, + "y": -3522.3408203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -3034.0087890625, + "y": -3529.0107421875, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -3034.0087890625, + "y": -3529.0107421875, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -3023.83984375, + "y": -3550.1865234375, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -2993.138671875, + "y": -3594.9248046875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -2985.345703125, + "y": -3623.0625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -2985.345703125, + "y": -3623.0625, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json new file mode 100644 index 00000000..e1521768 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3402稻妻海祇岛东南.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "3402稻妻海祇岛东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/3404稻妻海祇岛北.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3404稻妻海祇岛北.json new file mode 100644 index 00000000..0a3f71d1 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/3404稻妻海祇岛北.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "3404稻妻海祇岛北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/51012枫丹廷东北.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/51012枫丹廷东北.json new file mode 100644 index 00000000..e59820f1 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/51012枫丹廷东北.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "51012枫丹廷东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4865.38623046875, + "y": 3913.11572265625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 4903.42626953125, + "y": 3941.13818359375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 4915.53564453125, + "y": 3936.3984375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 4948.33837890625, + "y": 3954.460693359375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 4982.76904296875, + "y": 3935.888671875, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 4996.71826171875, + "y": 3957.602294921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 4990.357421875, + "y": 3947.964599609375, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 4990.357421875, + "y": 3947.964599609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 5004.8369140625, + "y": 3998.894287109375, + "action": "combat_script", + "move_mode": "walk", + "action_params": "keypress(f),wait(0.1),dash", + "type": "path" + }, + { + "id": 10, + "x": 5004.8369140625, + "y": 3998.894287109375, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 5004.8369140625, + "y": 3998.894287109375, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/51014枫丹廷东北.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/51014枫丹廷东北.json new file mode 100644 index 00000000..3add7c2b --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/51014枫丹廷东北.json @@ -0,0 +1,58 @@ +{ + "info": { + "name": "51014枫丹廷东北", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4865.46875, + "y": 3912.95703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 4876.5654296875, + "y": 3972.333251953125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 4851.49560546875, + "y": 4016.47802734375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 4839.66650390625, + "y": 4011.04541015625, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 5, + "x": 4839.66650390625, + "y": 4011.04541015625, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/52092枫丹露景泉东.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/52092枫丹露景泉东.json new file mode 100644 index 00000000..cb447e25 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/52092枫丹露景泉东.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "52092枫丹露景泉东", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/5302枫丹卡布堡南.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/5302枫丹卡布堡南.json new file mode 100644 index 00000000..65342d5b --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/5302枫丹卡布堡南.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "5302枫丹卡布堡南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/5601枫丹场力东南.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/5601枫丹场力东南.json new file mode 100644 index 00000000..b168c5dc --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/5601枫丹场力东南.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "5601枫丹场力东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/5602枫丹场力东南.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/5602枫丹场力东南.json new file mode 100644 index 00000000..b7afbbdb --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/5602枫丹场力东南.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "5602枫丹场力东南", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/5606枫丹新科学院.json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/5606枫丹新科学院.json new file mode 100644 index 00000000..63b2165f --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/5606枫丹新科学院.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "5606枫丹新科学院", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_0_低效路线(不跑)/61051--纳塔_镜璧山_神像1_(4-0).json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/61051--纳塔_镜璧山_神像1_(4-0).json new file mode 100644 index 00000000..2299addc --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/61051--纳塔_镜璧山_神像1_(4-0).json @@ -0,0 +1,49 @@ +{ + "info": { + "name": "61051--纳塔_镜璧山_神像1_(4-0)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.4", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9519.966796875, + "y": -1779.22021484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 9517.5703125, + "y": -1785.0126953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 9506.7978515625, + "y": -1769.9169921875, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 4, + "x": 9506.7978515625, + "y": -1769.9169921875, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/64051--纳塔_万火之瓯_竞技场5_(3-5).json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/64051--纳塔_万火之瓯_竞技场5_(3-5).json new file mode 100644 index 00000000..300c21d2 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/64051--纳塔_万火之瓯_竞技场5_(3-5).json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "64051--纳塔_万火之瓯_竞技场5_(3-5)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "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": 9085.17578125, + "y": -2049.4921875, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(0.5)", + "type": "path" + }, + { + "id": 5, + "x": 9106.9296875, + "y": -2049.5712890625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "50", + "type": "path" + }, + { + "id": 6, + "x": 9141.5859375, + "y": -2047.1552734375, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 7, + "x": 9141.5859375, + "y": -2047.1552734375, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/66103--纳塔_涌流地_东侧小岛_(10-14).json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/66103--纳塔_涌流地_东侧小岛_(10-14).json new file mode 100644 index 00000000..7b85c04d --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/66103--纳塔_涌流地_东侧小岛_(10-14).json @@ -0,0 +1,85 @@ +{ + "info": { + "name": "66103--纳塔_涌流地_东侧小岛_(10-14)", + "type": "collect", + "author": "Demo&汐&mno", + "version": "1.1", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8291.626953125, + "y": -2922.3984375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 8309.968597921807, + "y": -2910.999128417101, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "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": 4, + "x": 8358.44140625, + "y": -2879.669921875, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 8315.892578125, + "y": -2837.9189453125, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 8326.5576171875, + "y": -2813.564453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 8328.2666015625, + "y": -2808.953125, + "action": "fight", + "move_mode": "walk", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 8, + "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/小怪锄地2000/9_0_低效路线(不跑)/68092--纳塔_安饶之野_石火坠陨处_(12).json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/68092--纳塔_安饶之野_石火坠陨处_(12).json new file mode 100644 index 00000000..bb9e23a0 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/68092--纳塔_安饶之野_石火坠陨处_(12).json @@ -0,0 +1,49 @@ +{ + "info": { + "name": "68092--纳塔_安饶之野_石火坠陨处_(12)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 10595.94140625, + "y": -2665.2509765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 10611.6484375, + "y": -2697.0615234375, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 10623.3232421875, + "y": -2716.884765625, + "action": "fight", + "move_mode": "dash", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 4, + "x": 10623.3232421875, + "y": -2716.884765625, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/68121--纳塔_安饶之野_孑遗的留迹东南_(20).json b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/68121--纳塔_安饶之野_孑遗的留迹东南_(20).json new file mode 100644 index 00000000..ecb4f178 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_0_低效路线(不跑)/68121--纳塔_安饶之野_孑遗的留迹东南_(20).json @@ -0,0 +1,112 @@ +{ + "info": { + "name": "68121--纳塔_安饶之野_孑遗的留迹东南_(20)", + "type": "collect", + "author": "汐&mno", + "version": "1.0", + "description": "", + "bgiVersion": "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", + "locked": false + }, + { + "id": 11, + "x": 10391.4853515625, + "y": -3199.9208984375, + "action": "combat_script", + "move_mode": "dash", + "action_params": "wait(1)", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json new file mode 100644 index 00000000..8ce7ec30 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/000如果执行了这条路径说明你启用了错误的文件夹请阅读README.json @@ -0,0 +1,99 @@ +{ + "info": { + "name": "000如果执行了这条路径说明你启用了错误的文件夹请阅读README", + "type": "collect", + "author": "mno", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json new file mode 100644 index 00000000..17615982 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛01.json @@ -0,0 +1,392 @@ +{ + "info": { + "name": "7020稻妻清濑岛01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json new file mode 100644 index 00000000..a48fe84f --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛02.json @@ -0,0 +1,122 @@ +{ + "info": { + "name": "7020稻妻清濑岛02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4251.88671875, + "y": -4785.4658203125, + "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, + "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, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json new file mode 100644 index 00000000..4725f3a9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛03.json @@ -0,0 +1,130 @@ +{ + "info": { + "name": "7020稻妻清濑岛03", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4472.234375, + "y": -4577.8359375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4455.9765625, + "y": -4594.8212890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4422.591796875, + "y": -4591.1064453125, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 4, + "x": -4471.634765625, + "y": -4586.94921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4503.013671875, + "y": -4611.1064453125, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 6, + "x": -4530.8515625, + "y": -4623.6923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4521.525390625, + "y": -4665.9130859375, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "", + "locked": false + }, + { + "id": 8, + "x": -4521.525390625, + "y": -4665.9130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4520.18359375, + "y": -4684.240234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4532.75390625, + "y": -4751.3681640625, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 11, + "x": -4476.91796875, + "y": -4781.0576171875, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 12, + "x": -4463.6796875, + "y": -4792.8447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4463.33984375, + "y": -4803.2998046875, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json new file mode 100644 index 00000000..69c09aee --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛04.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "7020稻妻清濑岛04", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json new file mode 100644 index 00000000..3d2bb422 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛05.json @@ -0,0 +1,58 @@ +{ + "info": { + "name": "7020稻妻清濑岛05", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json new file mode 100644 index 00000000..c27cfa9b --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛07.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "7020稻妻清濑岛07", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json new file mode 100644 index 00000000..20f4cbc9 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛08.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "7020稻妻清濑岛08", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json new file mode 100644 index 00000000..d99b1117 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛09.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "7020稻妻清濑岛09", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3891.5595703125, + "y": -4389.912109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3837.9765625, + "y": -4423.3623046875, + "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", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3878.26953125, + "y": -4460.1044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3862.830078125, + "y": -4497.224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3849.4736328125, + "y": -4482.794921875, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json new file mode 100644 index 00000000..579aa02f --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7020稻妻清濑岛12.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "7020稻妻清濑岛12", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "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/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json new file mode 100644 index 00000000..7e3fbe95 --- /dev/null +++ b/repo/pathing/小怪锄地2000/9_3_稻妻未修正部分(不跑)/7022稻妻鹤冠05.json @@ -0,0 +1,161 @@ +{ + "info": { + "name": "7022稻妻鹤冠05", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2811.3515625, + "y": -6048.8544921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -2835.333984375, + "y": -6087.1005859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 3, + "x": -2865.9521484375, + "y": -6100.3896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 4, + "x": -2877.912109375, + "y": -6084.5029296875, + "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, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "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, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": -2972.94921875, + "y": -6059.4375, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 12, + "x": -2978.5927734375, + "y": -6035.0517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2958.5859375, + "y": -6018.224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2930.0595703125, + "y": -6032.0576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2911.685546875, + "y": -6040.9033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2888.931640625, + "y": -6028.6396484375, + "type": "path", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/README.txt b/repo/pathing/小怪锄地2000/README.txt new file mode 100644 index 00000000..672af0e8 --- /dev/null +++ b/repo/pathing/小怪锄地2000/README.txt @@ -0,0 +1,3 @@ +提醒:尚处于测试阶段,可能出现各种bug,欢迎反馈bug或者提供运行日志帮助优化路线 +食用方法:先运行《死亡笔记 从零开始的提瓦特400杀,真的手酸,虽然BGI没有手啦》后运行本合集,本合集含有约1800只小怪和48只精英怪 +路线来源:锄地上限集原作者@mfkvfhpdx的路线,经过@mno(啊哈)的修改和扩充(稻妻部分路线的修改无限期搁置),纳塔部分则来自@Demo,@汐和@mno \ No newline at end of file diff --git a/repo/pathing/小怪锄地2000/上限集分析.xlsx b/repo/pathing/小怪锄地2000/上限集分析.xlsx new file mode 100644 index 00000000..69138c92 Binary files /dev/null and b/repo/pathing/小怪锄地2000/上限集分析.xlsx differ diff --git a/repo/pathing/小怪锄地2000/更新日志.txt b/repo/pathing/小怪锄地2000/更新日志.txt new file mode 100644 index 00000000..e60482b6 --- /dev/null +++ b/repo/pathing/小怪锄地2000/更新日志.txt @@ -0,0 +1,13 @@ +0424 +将拆分后的路线用不同的配队运行取得均值最终筛选出低效路线,并将对应路线合并回去 +优化了部分路线 +加入了用于报错的路线000,避免用户运行错误的文件夹 +0422 +该版本仅用于查找低效路线,不做实际使用 +将现有路线尽可能进行拆分,有利于分析和剔除低效路线 +纳塔路线末尾加入等待一秒,提高摩拉收集率 +0419 +试运行了所有路线,将部分效率较低的路线(小于等于3.0)移入低效文件夹 +开始进行标注每条路线怪物数量的工作 +给出运行结果的参考表格,帮助查看是否存在漏怪,数据仅供参考 +附日志分析使用方法:打开对应配置组,依次选择更多功能、日志分析,按教程填写cookie后获取日志分析 \ No newline at end of file diff --git a/repo/pathing/日落果/日落果-须弥-二净甸-7个.json b/repo/pathing/日落果/日落果-须弥-二净甸-7个.json new file mode 100644 index 00000000..d5d7776c --- /dev/null +++ b/repo/pathing/日落果/日落果-须弥-二净甸-7个.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "日落果-须弥-二净甸-7个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4042.46, + "y": -238.48, + "action_params": "" + }, + { + "id": 2, + "x": 4035.37, + "y": -253.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3981.92, + "y": -352.75, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 4, + "x": 3979.42, + "y": -355.57, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3955.1, + "y": -361.68, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3936.83, + "y": -369.25, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8),keypress(VK_SPACE),wait(0.8),keypress(VK_SPACE)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/日落果/日落果-须弥-二净甸-觉王之殿-8个.json b/repo/pathing/日落果/日落果-须弥-二净甸-觉王之殿-8个.json new file mode 100644 index 00000000..0dace880 --- /dev/null +++ b/repo/pathing/日落果/日落果-须弥-二净甸-觉王之殿-8个.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "日落果-须弥-二净甸-觉王之殿-8个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3591.66, + "y": -787.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3504.41, + "y": -774.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3469.97, + "y": -778.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3465.32, + "y": -766.29, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(0.8),keypress(VK_SPACE),wait(0.8),keypress(VK_SPACE)", + "type": "target" + }, + { + "id": 5, + "x": 3705.62, + "y": -497.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 6, + "x": 3549.13, + "y": -584.77, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "1500", + "type": "target" + }, + { + "id": 7, + "x": 3553.35, + "y": -601.97, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3547.05, + "y": -616.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3549.96, + "y": -620.15, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8),keypress(VK_SPACE),wait(0.8),keypress(VK_SPACE)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/日落果/日落果-须弥-善见地-禅那园-11个.json b/repo/pathing/日落果/日落果-须弥-善见地-禅那园-11个.json new file mode 100644 index 00000000..f246e054 --- /dev/null +++ b/repo/pathing/日落果/日落果-须弥-善见地-禅那园-11个.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "日落果-须弥-善见地-禅那园-11个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3135.57, + "y": -1079.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3125.34, + "y": -1076.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3103.39, + "y": -1084.72, + "action": "nahida_collect", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3048.77, + "y": -1076.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 3048.02, + "y": -1045.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 3036.58, + "y": -1012.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3033.44, + "y": -1010.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3026.38, + "y": -986.58, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 3021.57, + "y": -963.06, + "action": "nahida_collect", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 3042.19, + "y": -915.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 3046.63, + "y": -886.38, + "action": "combat_script", + "move_mode": "walk", + "action_params": "wait(0.8),keypress(VK_SPACE),wait(0.8),keypress(VK_SPACE)", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/日落果/日落果-须弥-道成林-化成郭-5个.json b/repo/pathing/日落果/日落果-须弥-道成林-化成郭-5个.json new file mode 100644 index 00000000..8393098e --- /dev/null +++ b/repo/pathing/日落果/日落果-须弥-道成林-化成郭-5个.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "日落果-须弥-道成林-化成郭-5个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2701.59, + "y": -761.96, + "action_params": "" + }, + { + "id": 2, + "x": 2681.75, + "y": -777.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2646.49, + "y": -835.7, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2640.65, + "y": -846.27, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8),keypress(VK_SPACE),wait(0.8),keypress(VK_SPACE)" + }, + { + "id": 5, + "x": 2618.52, + "y": -851.38, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2619.32, + "y": -853.56, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8),keypress(VK_SPACE),wait(0.8),keypress(VK_SPACE)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/日落果/日落果-须弥-阿陀河谷-6个.json b/repo/pathing/日落果/日落果-须弥-阿陀河谷-6个.json new file mode 100644 index 00000000..ad07bf98 --- /dev/null +++ b/repo/pathing/日落果/日落果-须弥-阿陀河谷-6个.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "日落果-须弥-阿陀河谷-6个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2794.19, + "y": -1216.5, + "action_params": "" + }, + { + "id": 2, + "x": 2834.36, + "y": -1212.23, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2932.31, + "y": -1227.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2953.48, + "y": -1227.85, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 5, + "x": 2954.84, + "y": -1237.3, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8),keypress(VK_SPACE),wait(0.8),keypress(VK_SPACE)" + }, + { + "id": 6, + "x": 2992.48, + "y": -1256.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3049.24, + "y": -1303.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3092.8, + "y": -1328.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3098.7, + "y": -1339.33, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8),keypress(VK_SPACE),wait(0.8),keypress(VK_SPACE)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 悬铃木x18.json b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 悬铃木x18.json new file mode 100644 index 00000000..c0d1157d --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 悬铃木x18.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "[枫丹] 悬铃木x18", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4683.80322265625, + "y": 2426.124755859375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4597.6328125, + "y": 2353.38916015625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4569.02001953125, + "y": 2341.4970703125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 椴木x9 + 悬铃木x9.json b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 椴木x9 + 悬铃木x9.json new file mode 100644 index 00000000..fff67457 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 椴木x9 + 悬铃木x9.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "[枫丹] 椴木x9 + 悬铃木x9", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3383.1943359375, + "y": 2692.22314453125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3367.9716796875, + "y": 2700.928466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3249.283203125, + "y": 2761.09814453125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 椴木x9.json b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 椴木x9.json new file mode 100644 index 00000000..190c53cb --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 椴木x9.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "[枫丹] 椴木x9", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4984.4609375, + "y": 1699.88134765625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4977.05322265625, + "y": 1713.58203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4980.44189453125, + "y": 1734.904296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4975.56640625, + "y": 1811.01416015625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 炬木x15.json b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 炬木x15.json new file mode 100644 index 00000000..94150bbb --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 炬木x15.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "[枫丹] 炬木x15", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4704.083984375, + "y": 2376.86669921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 4683.68701171875, + "y": 2389.752197265625, + "action": "log_output", + "move_mode": "walk", + "action_params": "目前不支持非地面点位的路径追踪,请向东方向前行到墙边", + "type": "orientation" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 白梣木x15.json b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 白梣木x15.json new file mode 100644 index 00000000..c5f73c55 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 白梣木x15.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "[枫丹] 白梣木x15", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4689.51904296875, + "y": 2429.276611328125, + "action_params": "" + }, + { + "id": 2, + "x": 4731.1494140625, + "y": 2477.20361328125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 香柏木x27.json b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 香柏木x27.json new file mode 100644 index 00000000..9c99819e --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[枫丹] 香柏木x27.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "[枫丹] 香柏木x27", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3923.0693359375, + "y": 4233.8671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3921.4736328125, + "y": 4196.3671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[璃月] 却砂木x12.json b/repo/pathing/木材伐木点-配合自动伐木使用/[璃月] 却砂木x12.json new file mode 100644 index 00000000..285b2ae7 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[璃月] 却砂木x12.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "[璃月] 却砂木x12", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 340.9365234375, + "y": 547.91259765625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 401.0791015625, + "y": 499.00390625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 417.9228515625, + "y": 485.568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[璃月] 竹节x30.json b/repo/pathing/木材伐木点-配合自动伐木使用/[璃月] 竹节x30.json new file mode 100644 index 00000000..3c1df6f0 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[璃月] 竹节x30.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "[璃月] 竹节x30", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 843.09375, + "y": 1532.849609375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 808.3974609375, + "y": 1515.33984375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 孔雀木x9 + 御伽木x6.json b/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 孔雀木x9 + 御伽木x6.json new file mode 100644 index 00000000..12704ec4 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 孔雀木x9 + 御伽木x6.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "[稻妻] 孔雀木x9 + 御伽木x6", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4429.8125, + "y": -2798.57421875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4458.048828125, + "y": -2812.5673828125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 御伽木x9 + 孔雀木x6.json b/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 御伽木x9 + 孔雀木x6.json new file mode 100644 index 00000000..bac7c0d8 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 御伽木x9 + 孔雀木x6.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "[稻妻] 御伽木x9 + 孔雀木x6", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4217.869140625, + "y": -2397.865234375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4185.3984375, + "y": -2430.158203125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 枫木x9.json b/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 枫木x9.json new file mode 100644 index 00000000..e484c81b --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 枫木x9.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "[稻妻] 枫木x9", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3812.810546875, + "y": -2547.3427734375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3809.3671875, + "y": -2577.1220703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3796.8505859375, + "y": -2604.203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3759.8125, + "y": -2594.4453125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 梦见木x12.json b/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 梦见木x12.json new file mode 100644 index 00000000..3e3c821a --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[稻妻] 梦见木x12.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "[稻妻] 梦见木x12", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4232.17578125, + "y": -3003.2158203125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4219.541015625, + "y": -2982.3671875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4138.595703125, + "y": -2970.5, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4065.251953125, + "y": -2997.798828125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4005.177734375, + "y": -2972.4296875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3999.3955078125, + "y": -2976.142578125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 桃椰子木x12.json b/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 桃椰子木x12.json new file mode 100644 index 00000000..c2737bc5 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 桃椰子木x12.json @@ -0,0 +1,31 @@ +{ + "info": { + "name": "[纳塔] 桃椰子木x12", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8350.158203125, + "y": -2843.5556640625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 8381.07421875, + "y": -2823.087890625, + "type": "orientation", + "move_mode": "walk", + "action": "log_output", + "action_params": "当前暂不支持分层地图的路径追踪,请手动前往(神像五点钟方向的小山包)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 灰灰楼林木x9.json b/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 灰灰楼林木x9.json new file mode 100644 index 00000000..b748e708 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 灰灰楼林木x9.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "[纳塔] 灰灰楼林木x9", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9757.900390625, + "y": -613.65771484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 9766.7333984375, + "y": -603.93212890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 9774.1640625, + "y": -613.4931640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9809.4599609375, + "y": -656.9931640625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 9813.7685546875, + "y": -663.6298828125, + "type": "target", + "move_mode": "climb", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 燃爆木x15.json b/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 燃爆木x15.json new file mode 100644 index 00000000..61e15270 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 燃爆木x15.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "[纳塔] 燃爆木x15", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9039.0693359375, + "y": -2428.6201171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 9034.5234375, + "y": -2447.1689453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 9033.30078125, + "y": -2452.609375, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9049.291015625, + "y": -2513.6337890625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 白栗栎木x9.json b/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 白栗栎木x9.json new file mode 100644 index 00000000..232a9188 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[纳塔] 白栗栎木x9.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "[纳塔] 白栗栎木x9", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8058.86181640625, + "y": -2372.5966796875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 8068.009765625, + "y": -2379.6435546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 8086.94287109375, + "y": -2394.7197265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 8146.4697265625, + "y": -2439.9921875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 垂香木x15.json b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 垂香木x15.json new file mode 100644 index 00000000..6ad8d17f --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 垂香木x15.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "[蒙德] 垂香木", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -521.623046875, + "y": 2181.329833984375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -537.1240234375, + "y": 2175.3076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -541.736328125, + "y": 2160.890625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 杉木x18.json b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 杉木x18.json new file mode 100644 index 00000000..dc21273b --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 杉木x18.json @@ -0,0 +1,58 @@ +{ + "info": { + "name": "[蒙德] 杉木x18", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -251.591796875, + "y": 2256.58984375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -231.8388671875, + "y": 2219.850341796875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -221.59375, + "y": 2218.249755859375, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -154.837890625, + "y": 2198.947509765625, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -28.115234375, + "y": 2163.086181640625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 松木x24.json b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 松木x24.json new file mode 100644 index 00000000..938c4a4c --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 松木x24.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "[蒙德] 松木x24", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -749.4052734375, + "y": 2263.125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -784.896484375, + "y": 2303.740234375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 桦木x18.json b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 桦木x18.json new file mode 100644 index 00000000..50bed7e9 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 桦木x18.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "[蒙德] 桦木x18", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1330.107421875, + "y": 2563.807373046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1367.8466796875, + "y": 2571.372314453125, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1376.634765625, + "y": 2580.2109375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 萃华木x6 + 垂香木x3.json b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 萃华木x6 + 垂香木x3.json new file mode 100644 index 00000000..e3eaf0c1 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[蒙德] 萃华木x6 + 垂香木x3.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "[蒙德] 萃华木x6 + 垂香木x3", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1120.86328125, + "y": 2190.60888671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1152.7080078125, + "y": 2170.24365234375, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1155.90234375, + "y": 2175.06591796875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 业果木x21 + 辉木x3.json b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 业果木x21 + 辉木x3.json new file mode 100644 index 00000000..4f9649f7 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 业果木x21 + 辉木x3.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "[须弥] 业果木x21 + 辉木x3", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3135.63671875, + "y": -1079.6572265625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3166.373046875, + "y": -1080.20654296875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3175.55078125, + "y": -1064.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 刺葵木x6.json b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 刺葵木x6.json new file mode 100644 index 00000000..f52388a0 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 刺葵木x6.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "[须弥] 刺葵木x6", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4209.84130859375, + "y": -2712.0947265625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4203.99462890625, + "y": -2730.2568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 柽木x15.json b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 柽木x15.json new file mode 100644 index 00000000..e4aca833 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 柽木x15.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "[须弥] 柽木x15", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4095.984375, + "y": -2025.97412109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4120.65185546875, + "y": -2047.38671875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4148.99365234375, + "y": -2041.66357421875, + "type": "path", + "move_mode": "dash", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4218.1259765625, + "y": -2061.7998046875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 证悟木x18 + 业果木x6.json b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 证悟木x18 + 业果木x6.json new file mode 100644 index 00000000..76b94c6f --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 证悟木x18 + 业果木x6.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "[须弥] 证悟木x18 + 业果木x6", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3135.6884765625, + "y": -1079.6435546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3149.046875, + "y": -1088.2412109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3149.900390625, + "y": -1104.6689453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3164.40234375, + "y": -1127.8310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3158.82421875, + "y": -1138.740234375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 辉木x21 + 业果木x6.json b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 辉木x21 + 业果木x6.json new file mode 100644 index 00000000..7a0bd7d4 --- /dev/null +++ b/repo/pathing/木材伐木点-配合自动伐木使用/[须弥] 辉木x21 + 业果木x6.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "[须弥] 辉木x21 + 业果木x6", + "type": "collect", + "author": "Patrick-Ze (AyakaMain)", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3145.435546875, + "y": -1079.84033203125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3160.798828125, + "y": -1080.49169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3179.044921875, + "y": -1062.67236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3198.0546875, + "y": -1076.755859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3206.8642578125, + "y": -1064.88818359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3202.689453125, + "y": -1057.3876953125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/瓦雷莎家的果园/瓦蕾莎家的果园(万叶采集)@Tool_tingsu/瓦蕾莎家的果园(万叶2分钟版).json b/repo/pathing/瓦雷莎家的果园/瓦蕾莎家的果园(万叶采集)@Tool_tingsu/瓦蕾莎家的果园(万叶2分钟版).json new file mode 100644 index 00000000..30867270 --- /dev/null +++ b/repo/pathing/瓦雷莎家的果园/瓦蕾莎家的果园(万叶采集)@Tool_tingsu/瓦蕾莎家的果园(万叶2分钟版).json @@ -0,0 +1,292 @@ +{ + "info": { + "name": "瓦蕾莎家的果园(万叶2分钟版)", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 10260.7119140625, + "y": -2538.6650390625, + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 10256.6474609375, + "y": -2531.0947265625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 10248.2470703125, + "y": -2531.0087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 10227.7578125, + "y": -2514.8408203125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 10228.21484375, + "y": -2508.9482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 10218.5595703125, + "y": -2502.9248046875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "万叶 e(hold),attack,wait(5.0)" + }, + { + "id": 7, + "x": 10205.8515625, + "y": -2497.330078125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "万叶 e(hold),attack,wait(2.0)" + }, + { + "id": 8, + "x": 10202.212890625, + "y": -2506.2509765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 10196.5986328125, + "y": -2510.970703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 10199.275390625, + "y": -2513.9306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 10204.2841796875, + "y": -2514.845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 10205.17578125, + "y": -2511.072265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 10214.64453125, + "y": -2517.796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 10219.3642578125, + "y": -2519.8544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 10214.640625, + "y": -2521.8203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 10207.6533203125, + "y": -2518.462890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 10196.7265625, + "y": -2520.6669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 10193.0380859375, + "y": -2507.375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 10180.97265625, + "y": -2514.556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 10181.54296875, + "y": -2508.6318359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 10175.2060546875, + "y": -2515.9306640625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5)" + }, + { + "id": 22, + "x": 10167.9140625, + "y": -2514.69921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 10162.921875, + "y": -2519.005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 10141.3251953125, + "y": -2508.607421875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5)" + }, + { + "id": 25, + "x": 10146.4169921875, + "y": -2519.30078125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "万叶 e(hold),attack,wait(2.0)" + }, + { + "id": 26, + "x": 10143.9462890625, + "y": -2514.869140625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2.0)" + }, + { + "id": 27, + "x": 10141.337890625, + "y": -2511.642578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 10132.197265625, + "y": -2509.6904296875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "万叶 e(hold),attack,wait(4.0)" + }, + { + "id": 29, + "x": 10139.419921875, + "y": -2501.9140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 10145.171875, + "y": -2500.4833984375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "万叶 e(hold),attack,wait(2.0)" + }, + { + "id": 31, + "x": 10141.45703125, + "y": -2503.1787109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2.0)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/瓦雷莎家的果园/瓦雷莎家的果园.json b/repo/pathing/瓦雷莎家的果园/瓦蕾莎家的果园(纳西妲采集)@D捣蛋/瓦雷莎家的果园.json similarity index 100% rename from repo/pathing/瓦雷莎家的果园/瓦雷莎家的果园.json rename to repo/pathing/瓦雷莎家的果园/瓦蕾莎家的果园(纳西妲采集)@D捣蛋/瓦雷莎家的果园.json diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A01-蒙德-望风角1.json b/repo/pathing/薄荷/薄荷全收集/薄荷A01-蒙德-望风角1.json new file mode 100644 index 00000000..89315b82 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A01-蒙德-望风角1.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "薄荷A01-蒙德-望风角1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1629.6, + "y": 2834.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1634.52, + "y": 2845.41, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1633.04, + "y": 2867.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1641.69, + "y": 2920.31, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1663.79, + "y": 2939.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1678.46, + "y": 2969.75, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1717.75, + "y": 2994.41, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": -1629.6, + "y": 2834.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 9, + "x": -1640.66, + "y": 2809.35, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1662.63, + "y": 2787.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1685.95, + "y": 2801.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1767.46, + "y": 2848.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1772.64, + "y": 2851.84, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1747.79, + "y": 2881.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1764.72, + "y": 2897.18, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1791.22, + "y": 2928.35, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1764.01, + "y": 2949.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -1773.13, + "y": 2927.88, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -1769.08, + "y": 2912.21, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A02-蒙德-望风角2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A02-蒙德-望风角2.json new file mode 100644 index 00000000..f4c290e2 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A02-蒙德-望风角2.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷A02-蒙德-望风角2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1629.23, + "y": 2834.4, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1571.06, + "y": 2859.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1568.57, + "y": 2873.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1552.64, + "y": 2861.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1535.62, + "y": 2820.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1489.4, + "y": 2837.26, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1469.15, + "y": 2805.42, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1434.82, + "y": 2789.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -1431.05, + "y": 2764.47, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1409.74, + "y": 2771.38, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1364.88, + "y": 2760.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1398.66, + "y": 2740.98, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1396.48, + "y": 2731.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1402.92, + "y": 2724.57, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 15, + "x": -1629.23, + "y": 2834.4, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 16, + "x": -1641.79, + "y": 2812.75, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1633.25, + "y": 2733.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -1604.51, + "y": 2682.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -1584.42, + "y": 2659.33, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -1555.03, + "y": 2669.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -1596.05, + "y": 2699.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -1587.29, + "y": 2705.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -1620.06, + "y": 2757.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -1604.56, + "y": 2793.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -1613.78, + "y": 2817.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 26, + "x": -1642.46, + "y": 2682.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 27, + "x": -1639.16, + "y": 2666.41, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -1611.23, + "y": 2632.54, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -1605.18, + "y": 2615.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -1575.88, + "y": 2597.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -1525.16, + "y": 2610.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -1504.01, + "y": 2612.57, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A03-蒙德-望风山地1.json b/repo/pathing/薄荷/薄荷全收集/薄荷A03-蒙德-望风山地1.json new file mode 100644 index 00000000..0056f357 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A03-蒙德-望风山地1.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "薄荷A03-蒙德-望风山地1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1273.75, + "y": 2721.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1273.36, + "y": 2729.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1262.18, + "y": 2753.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1267.08, + "y": 2768.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1298.1, + "y": 2758.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1299.59, + "y": 2796.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1326.2, + "y": 2841.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1314.14, + "y": 2852.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -1333.45, + "y": 2885.15, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1342.09, + "y": 2887.75, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1338.2, + "y": 2920.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1392.87, + "y": 2941.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1296.8, + "y": 2948.57, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1251.5, + "y": 2934.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1206.68, + "y": 2900.32, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1160.37, + "y": 2918.0, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A04-蒙德-望风山地2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A04-蒙德-望风山地2.json new file mode 100644 index 00000000..008b6eb6 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A04-蒙德-望风山地2.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "薄荷A04-蒙德-望风山地2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1273.72, + "y": 2721.57, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1261.51, + "y": 2744.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1267.66, + "y": 2778.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1255.82, + "y": 2781.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1237.34, + "y": 2792.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1234.24, + "y": 2812.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1233.07, + "y": 2819.38, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1237.73, + "y": 2821.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1166.49, + "y": 2777.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1166.05, + "y": 2766.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1149.48, + "y": 2743.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1152.79, + "y": 2726.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1117.01, + "y": 2667.76, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": -1273.74, + "y": 2721.64, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -1282.01, + "y": 2701.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -1271.12, + "y": 2686.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -1278.71, + "y": 2666.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A05-蒙德-摘星崖.json b/repo/pathing/薄荷/薄荷全收集/薄荷A05-蒙德-摘星崖.json new file mode 100644 index 00000000..381b0e3a --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A05-蒙德-摘星崖.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "薄荷A05-蒙德-摘星崖", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1505.8, + "y": 2296.13, + "action_params": "" + }, + { + "id": 2, + "x": -1522.89, + "y": 2282.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1526.4, + "y": 2272.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1519.05, + "y": 2308.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1578.07, + "y": 2414.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1584.5, + "y": 2437.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1642.54, + "y": 2420.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1702.82, + "y": 2439.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1721.69, + "y": 2460.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1700.8, + "y": 2508.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A06-蒙德-星落湖.json b/repo/pathing/薄荷/薄荷全收集/薄荷A06-蒙德-星落湖.json new file mode 100644 index 00000000..ae7ac684 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A06-蒙德-星落湖.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷A06-蒙德-星落湖", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1505.87, + "y": 2296.29, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1479.03, + "y": 2301.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1410.47, + "y": 2312.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1384.62, + "y": 2352.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1379.59, + "y": 2358.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1384.33, + "y": 2352.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1350.76, + "y": 2310.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1339.0, + "y": 2295.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1305.72, + "y": 2337.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1279.87, + "y": 2373.44, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1505.83, + "y": 2296.18, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1478.18, + "y": 2322.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1491.79, + "y": 2387.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -1446.62, + "y": 2456.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -1428.7, + "y": 2483.99, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 16, + "x": -1420.97, + "y": 2500.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -1429.85, + "y": 2542.21, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 18, + "x": -1330.04, + "y": 2563.78, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -1298.03, + "y": 2553.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -1270.92, + "y": 2533.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -1235.81, + "y": 2506.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A07-蒙德-风起地1(收集50).json b/repo/pathing/薄荷/薄荷全收集/薄荷A07-蒙德-风起地1(收集50).json new file mode 100644 index 00000000..b2aec9c3 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A07-蒙德-风起地1(收集50).json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷A07-蒙德-风起地1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1120.83, + "y": 2190.77, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1166.75, + "y": 2191.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1182.51, + "y": 2192.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1250.97, + "y": 2192.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1263.42, + "y": 2213.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1328.46, + "y": 2221.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1323.77, + "y": 2198.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1384.28, + "y": 2206.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1416.33, + "y": 2202.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1416.64, + "y": 2195.03, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1120.9, + "y": 2190.47, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1068.48, + "y": 2165.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -970.1, + "y": 2211.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -964.79, + "y": 2207.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A08-蒙德-风起地2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A08-蒙德-风起地2.json new file mode 100644 index 00000000..ea1ef3ab --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A08-蒙德-风起地2.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "薄荷A08-蒙德-风起地2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1167.72, + "y": 2133.23, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1139.6, + "y": 2114.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1226.62, + "y": 2109.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1221.12, + "y": 2101.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1218.8, + "y": 2095.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1223.98, + "y": 2097.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1278.98, + "y": 2093.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1297.43, + "y": 2096.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1319.77, + "y": 2076.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1329.79, + "y": 2085.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1373.63, + "y": 2072.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1366.96, + "y": 2087.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1373.15, + "y": 2090.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A09-蒙德-风起地3.json b/repo/pathing/薄荷/薄荷全收集/薄荷A09-蒙德-风起地3.json new file mode 100644 index 00000000..0460e166 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A09-蒙德-风起地3.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "薄荷A09-蒙德-风起地3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1266.83, + "y": 1933.86, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1277.38, + "y": 1924.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1280.75, + "y": 1924.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1308.06, + "y": 1919.04, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1266.48, + "y": 1933.6, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1245.63, + "y": 1940.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1251.82, + "y": 1934.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1185.68, + "y": 1945.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1142.17, + "y": 1943.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1127.89, + "y": 1930.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1121.72, + "y": 1889.43, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1126.66, + "y": 1889.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A10-蒙德-鹰翔海滩.json b/repo/pathing/薄荷/薄荷全收集/薄荷A10-蒙德-鹰翔海滩.json new file mode 100644 index 00000000..70a3fabe --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A10-蒙德-鹰翔海滩.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "薄荷A10-蒙德-鹰翔海滩", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1535.54, + "y": 1977.07, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1583.52, + "y": 2017.01, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1583.21, + "y": 2040.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1576.64, + "y": 2044.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": -1535.94, + "y": 1977.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 6, + "x": -1568.63, + "y": 1973.86, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": -1535.54, + "y": 1977.07, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 8, + "x": -1496.02, + "y": 2012.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -1478.37, + "y": 2003.21, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1475.02, + "y": 2008.37, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1467.58, + "y": 2006.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1444.76, + "y": 2056.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 13, + "x": -1536.8, + "y": 1978.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 14, + "x": -1477.11, + "y": 1962.2, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1469.33, + "y": 1953.77, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1453.5, + "y": 1924.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1444.81, + "y": 1896.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -1473.73, + "y": 1927.49, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -1498.07, + "y": 1928.06, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -1508.42, + "y": 1918.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -1496.63, + "y": 1929.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -1521.28, + "y": 1938.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -1530.31, + "y": 1921.46, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -1551.19, + "y": 1946.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A11-蒙德-千风神殿.json b/repo/pathing/薄荷/薄荷全收集/薄荷A11-蒙德-千风神殿.json new file mode 100644 index 00000000..906ee2c5 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A11-蒙德-千风神殿.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "薄荷A11-蒙德-千风神殿", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1638.58, + "y": 2153.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1618.1, + "y": 2134.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1623.09, + "y": 2118.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1613.46, + "y": 2085.47, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1664.63, + "y": 2077.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1698.27, + "y": 2073.58, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1726.98, + "y": 2091.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1725.93, + "y": 2109.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 9, + "x": -1639.54, + "y": 2153.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 10, + "x": -1679.9, + "y": 2152.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1687.48, + "y": 2168.45, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1691.05, + "y": 2172.56, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1705.5, + "y": 2163.15, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1745.01, + "y": 2149.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1751.42, + "y": 2157.47, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1763.21, + "y": 2165.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A12-蒙德-誓言岬.json b/repo/pathing/薄荷/薄荷全收集/薄荷A12-蒙德-誓言岬.json new file mode 100644 index 00000000..1d891b65 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A12-蒙德-誓言岬.json @@ -0,0 +1,471 @@ +{ + "info": { + "name": "薄荷A12-蒙德-誓言岬", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1999.11, + "y": 1434.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -2067.36, + "y": 1409.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -2041.59, + "y": 1393.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1986.82, + "y": 1331.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1970.94, + "y": 1356.97, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1961.89, + "y": 1376.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1963.72, + "y": 1389.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1976.46, + "y": 1365.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -1975.15, + "y": 1359.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1986.28, + "y": 1296.57, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1964.85, + "y": 1259.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1955.02, + "y": 1246.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1928.65, + "y": 1253.49, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1906.98, + "y": 1220.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1870.37, + "y": 1215.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1823.79, + "y": 1257.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1804.14, + "y": 1264.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -1800.27, + "y": 1234.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -1790.94, + "y": 1225.97, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -1797.31, + "y": 1192.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -1795.48, + "y": 1184.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -1779.17, + "y": 1203.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -1764.38, + "y": 1189.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -1756.44, + "y": 1192.14, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -1687.98, + "y": 1175.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -1669.14, + "y": 1163.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -1613.54, + "y": 1132.84, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -1608.13, + "y": 1235.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -1618.73, + "y": 1243.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -1604.39, + "y": 1252.45, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -1592.02, + "y": 1258.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -1589.47, + "y": 1265.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": -1587.46, + "y": 1289.26, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": -1639.72, + "y": 1332.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": -1711.67, + "y": 1361.57, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": -1688.63, + "y": 1338.96, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": -1673.79, + "y": 1338.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": -1671.69, + "y": 1320.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 39, + "x": -1687.95, + "y": 1315.86, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 40, + "x": -1706.65, + "y": 1315.14, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 41, + "x": -1708.41, + "y": 1295.95, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 42, + "x": -1713.19, + "y": 1282.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 43, + "x": -1720.59, + "y": 1282.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 44, + "x": -1725.04, + "y": 1282.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": -1724.3, + "y": 1272.88, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 46, + "x": -1715.2, + "y": 1264.06, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 47, + "x": -1722.9, + "y": 1265.02, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 48, + "x": -1716.33, + "y": 1255.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 49, + "x": -1711.43, + "y": 1240.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 50, + "x": -1684.74, + "y": 1253.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 51, + "x": -1685.06, + "y": 1237.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A13-蒙德-达达乌帕谷1(运行0.5h).json b/repo/pathing/薄荷/薄荷全收集/薄荷A13-蒙德-达达乌帕谷1(运行0.5h).json new file mode 100644 index 00000000..53a0d75f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A13-蒙德-达达乌帕谷1(运行0.5h).json @@ -0,0 +1,390 @@ +{ + "info": { + "name": "薄荷A13-蒙德-达达乌帕谷1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1432.71, + "y": 1464.58, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1488.11, + "y": 1452.38, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1495.98, + "y": 1435.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1489.67, + "y": 1434.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1485.29, + "y": 1437.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1492.45, + "y": 1434.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1471.17, + "y": 1403.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1498.91, + "y": 1366.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1509.3, + "y": 1353.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1508.62, + "y": 1347.12, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1503.52, + "y": 1341.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1511.91, + "y": 1333.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1524.49, + "y": 1308.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -1517.64, + "y": 1303.67, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -1506.5, + "y": 1310.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -1482.97, + "y": 1337.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -1448.1, + "y": 1332.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -1414.49, + "y": 1355.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -1403.62, + "y": 1353.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -1400.25, + "y": 1352.94, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -1386.39, + "y": 1346.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -1376.63, + "y": 1296.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -1348.42, + "y": 1293.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -1345.47, + "y": 1293.66, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -1338.35, + "y": 1293.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -1332.53, + "y": 1294.82, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -1315.08, + "y": 1296.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -1299.5, + "y": 1317.8, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -1310.75, + "y": 1265.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -1321.85, + "y": 1210.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -1317.55, + "y": 1190.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -1314.22, + "y": 1177.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -1396.93, + "y": 1112.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": -1431.33, + "y": 1092.76, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 35, + "x": -1432.78, + "y": 1096.8, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": -1411.82, + "y": 1157.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": -1430.26, + "y": 1177.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": -1496.38, + "y": 1180.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": -1529.65, + "y": 1147.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": -1545.42, + "y": 1147.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": -1570.89, + "y": 1180.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": -1582.63, + "y": 1175.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A14-蒙德-达达乌帕谷2(收集100).json b/repo/pathing/薄荷/薄荷全收集/薄荷A14-蒙德-达达乌帕谷2(收集100).json new file mode 100644 index 00000000..00cb0a6f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A14-蒙德-达达乌帕谷2(收集100).json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "薄荷A14-蒙德-达达乌帕谷2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1432.73, + "y": 1464.58, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1428.26, + "y": 1470.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1403.64, + "y": 1532.56, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1388.11, + "y": 1610.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1385.16, + "y": 1630.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1406.67, + "y": 1650.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1420.47, + "y": 1651.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1428.13, + "y": 1667.23, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1437.22, + "y": 1663.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A15-蒙德-晨曦酒馆.json b/repo/pathing/薄荷/薄荷全收集/薄荷A15-蒙德-晨曦酒馆.json new file mode 100644 index 00000000..6bc0a0d7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A15-蒙德-晨曦酒馆.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷A15-蒙德-晨曦酒馆", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -578.73, + "y": 1853.31, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -563.46, + "y": 1844.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -519.33, + "y": 1817.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -502.74, + "y": 1802.43, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -480.97, + "y": 1775.65, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 6, + "x": -480.95, + "y": 1789.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -372.4, + "y": 1827.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -366.95, + "y": 1840.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -371.71, + "y": 1885.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -364.87, + "y": 1915.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -371.91, + "y": 1939.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -379.17, + "y": 1937.4, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -201.2, + "y": 1861.89, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -190.93, + "y": 1882.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -282.34, + "y": 1834.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -287.31, + "y": 1837.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -297.99, + "y": 1796.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -296.15, + "y": 1784.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -300.17, + "y": 1752.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -332.97, + "y": 1727.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -390.38, + "y": 1638.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A16-蒙德-奔狼领1.json b/repo/pathing/薄荷/薄荷全收集/薄荷A16-蒙德-奔狼领1.json new file mode 100644 index 00000000..15ca5d3e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A16-蒙德-奔狼领1.json @@ -0,0 +1,220 @@ +{ + "info": { + "name": "薄荷A16-蒙德-奔狼领1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -521.62, + "y": 2181.31, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -522.02, + "y": 2166.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -541.3, + "y": 2164.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -551.01, + "y": 2174.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -553.43, + "y": 2177.73, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -580.8, + "y": 2178.9, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -521.62, + "y": 2181.31, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -532.13, + "y": 2150.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -538.11, + "y": 2134.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -529.36, + "y": 2117.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -508.42, + "y": 2105.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -480.04, + "y": 2112.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -458.53, + "y": 2133.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -439.96, + "y": 2151.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -427.16, + "y": 2167.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -407.77, + "y": 2139.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -401.73, + "y": 2115.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -384.34, + "y": 2093.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -383.94, + "y": 2087.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -384.19, + "y": 2080.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -390.7, + "y": 2080.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -397.89, + "y": 2065.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -397.71, + "y": 2039.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A17-蒙德-奔狼领2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A17-蒙德-奔狼领2.json new file mode 100644 index 00000000..0345f00e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A17-蒙德-奔狼领2.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "薄荷A17-蒙德-奔狼领2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -243.79, + "y": 2256.36, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -266.42, + "y": 2253.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -298.52, + "y": 2252.11, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -386.23, + "y": 2297.63, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -394.21, + "y": 2275.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -409.48, + "y": 2309.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -425.04, + "y": 2357.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -395.58, + "y": 2385.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -385.82, + "y": 2372.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -382.7, + "y": 2366.92, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -390.07, + "y": 2349.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -389.08, + "y": 2344.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -460.42, + "y": 2322.32, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": -472.89, + "y": 2320.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -490.63, + "y": 2307.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -479.39, + "y": 2300.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A18-蒙德-奔狼领3.json b/repo/pathing/薄荷/薄荷全收集/薄荷A18-蒙德-奔狼领3.json new file mode 100644 index 00000000..2678f527 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A18-蒙德-奔狼领3.json @@ -0,0 +1,292 @@ +{ + "info": { + "name": "薄荷A18-蒙德-奔狼领3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -251.6, + "y": 2256.61, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -227.9, + "y": 2224.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -224.08, + "y": 2219.17, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -206.39, + "y": 2179.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -216.06, + "y": 2177.04, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -214.49, + "y": 2127.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -214.75, + "y": 2090.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -213.83, + "y": 2080.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -201.61, + "y": 2052.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -155.81, + "y": 2076.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -142.23, + "y": 2091.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -121.63, + "y": 2052.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -124.86, + "y": 2033.94, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": -251.6, + "y": 2256.61, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -240.46, + "y": 2237.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -212.46, + "y": 2242.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -202.62, + "y": 2237.56, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -151.88, + "y": 2222.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -135.77, + "y": 2204.98, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 20, + "x": -103.18, + "y": 2192.73, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 21, + "x": -88.93, + "y": 2172.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -72.93, + "y": 2168.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -63.49, + "y": 2182.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -44.2, + "y": 2220.66, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 25, + "x": -41.55, + "y": 2225.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -36.51, + "y": 2206.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -29.16, + "y": 2172.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -43.89, + "y": 2144.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -10.96, + "y": 2120.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -17.11, + "y": 2077.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -31.37, + "y": 2073.38, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A19-蒙德-明冠峡1.json b/repo/pathing/薄荷/薄荷全收集/薄荷A19-蒙德-明冠峡1.json new file mode 100644 index 00000000..e7d7d210 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A19-蒙德-明冠峡1.json @@ -0,0 +1,157 @@ +{ + "info": { + "name": "薄荷A19-蒙德-明冠峡1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -440.21, + "y": 2580.93, + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -422.31, + "y": 2553.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -386.66, + "y": 2506.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -379.61, + "y": 2481.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -388.69, + "y": 2470.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -418.14, + "y": 2490.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -439.28, + "y": 2503.1, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": -434.13, + "y": 2507.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -424.03, + "y": 2502.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -445.3, + "y": 2518.9, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -440.21, + "y": 2580.93, + "action_params": "" + }, + { + "id": 12, + "x": -470.74, + "y": 2628.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -514.71, + "y": 2629.38, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": -500.34, + "y": 2618.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -494.4, + "y": 2608.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -547.98, + "y": 2629.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A20-蒙德-明冠峡2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A20-蒙德-明冠峡2.json new file mode 100644 index 00000000..cb41d9ab --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A20-蒙德-明冠峡2.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "薄荷A20-蒙德-明冠峡2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -251.62, + "y": 2256.58, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -250.65, + "y": 2284.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -251.0, + "y": 2297.97, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -237.61, + "y": 2306.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -229.71, + "y": 2320.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -227.78, + "y": 2323.16, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -202.98, + "y": 2308.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -136.06, + "y": 2306.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -123.76, + "y": 2345.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -105.06, + "y": 2398.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -105.26, + "y": 2425.78, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 12, + "x": -157.02, + "y": 2434.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -183.4, + "y": 2459.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -201.25, + "y": 2505.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -188.58, + "y": 2518.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -211.4, + "y": 2542.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -186.94, + "y": 2569.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -162.06, + "y": 2571.29, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": -180.42, + "y": 2596.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -186.14, + "y": 2650.4, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A21-蒙德-明冠峡3.json b/repo/pathing/薄荷/薄荷全收集/薄荷A21-蒙德-明冠峡3.json new file mode 100644 index 00000000..7e3fc5e7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A21-蒙德-明冠峡3.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷A21-蒙德-明冠峡3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -251.67, + "y": 2256.62, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -249.42, + "y": 2284.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -251.27, + "y": 2295.77, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -250.54, + "y": 2352.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -231.54, + "y": 2391.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -215.79, + "y": 2436.06, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -243.36, + "y": 2431.38, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -261.08, + "y": 2437.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -268.83, + "y": 2440.84, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -279.05, + "y": 2466.09, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -270.78, + "y": 2507.98, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -269.66, + "y": 2537.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -266.97, + "y": 2556.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -265.27, + "y": 2568.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -256.91, + "y": 2581.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -259.93, + "y": 2614.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -287.46, + "y": 2628.11, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -263.5, + "y": 2677.97, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -230.68, + "y": 2698.15, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -225.78, + "y": 2701.85, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -212.28, + "y": 2729.48, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -209.64, + "y": 2738.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -294.46, + "y": 2778.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -352.03, + "y": 2781.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -369.51, + "y": 2785.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -383.05, + "y": 2766.02, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -403.28, + "y": 2787.14, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -453.97, + "y": 2771.95, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -493.24, + "y": 2769.43, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A22-蒙德-风龙废墟1.json b/repo/pathing/薄荷/薄荷全收集/薄荷A22-蒙德-风龙废墟1.json new file mode 100644 index 00000000..77576256 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A22-蒙德-风龙废墟1.json @@ -0,0 +1,247 @@ +{ + "info": { + "name": "薄荷A22-蒙德-风龙废墟1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 36.77, + "y": 2380.89, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 55.51, + "y": 2422.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 63.11, + "y": 2419.31, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 56.96, + "y": 2420.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 10.96, + "y": 2439.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -9.36, + "y": 2467.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -10.52, + "y": 2499.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -21.51, + "y": 2516.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -12.17, + "y": 2507.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 19.31, + "y": 2513.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 32.17, + "y": 2521.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 52.47, + "y": 2491.51, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 46.89, + "y": 2483.59, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 36.77, + "y": 2380.89, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 89.76, + "y": 2531.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 105.88, + "y": 2518.34, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 17, + "x": 117.72, + "y": 2531.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 141.41, + "y": 2522.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 137.68, + "y": 2535.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 161.34, + "y": 2537.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 178.91, + "y": 2529.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 191.75, + "y": 2534.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 211.07, + "y": 2532.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 198.49, + "y": 2513.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 196.23, + "y": 2510.62, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 209.83, + "y": 2483.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A23-蒙德-风龙废墟2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A23-蒙德-风龙废墟2.json new file mode 100644 index 00000000..6526603f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A23-蒙德-风龙废墟2.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷A23-蒙德-风龙废墟2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -83.88, + "y": 2781.7, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -76.36, + "y": 2777.58, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -71.39, + "y": 2766.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -71.65, + "y": 2682.07, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -98.01, + "y": 2649.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -69.17, + "y": 2670.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -42.07, + "y": 2661.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -41.71, + "y": 2648.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 0.54, + "y": 2614.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 30.05, + "y": 2599.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 44.58, + "y": 2592.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 61.69, + "y": 2572.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 71.21, + "y": 2579.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 63.72, + "y": 2587.29, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 50.51, + "y": 2596.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 49.87, + "y": 2599.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 37.58, + "y": 2606.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 37.42, + "y": 2618.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 39.2, + "y": 2638.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 24.5, + "y": 2631.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 17.41, + "y": 2639.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 23.12, + "y": 2648.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 28.79, + "y": 2651.86, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 24, + "x": -83.88, + "y": 2781.7, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 25, + "x": -74.83, + "y": 2816.17, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -50.33, + "y": 2849.46, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -29.16, + "y": 2835.18, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 14.15, + "y": 2804.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 32.54, + "y": 2776.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A24-蒙德-风龙废墟3(收集150,运行1h).json b/repo/pathing/薄荷/薄荷全收集/薄荷A24-蒙德-风龙废墟3(收集150,运行1h).json new file mode 100644 index 00000000..504aa9f7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A24-蒙德-风龙废墟3(收集150,运行1h).json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷A24-蒙德-风龙废墟3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 265.59, + "y": 2914.88, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 248.57, + "y": 2918.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 257.59, + "y": 2938.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 251.63, + "y": 2955.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 234.19, + "y": 2958.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 246.02, + "y": 2979.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 259.02, + "y": 2986.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 317.01, + "y": 2962.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 327.93, + "y": 2973.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 326.84, + "y": 2970.88, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 265.6, + "y": 2915.09, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 322.95, + "y": 2882.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 345.19, + "y": 2891.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 354.55, + "y": 2908.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 367.02, + "y": 2890.8, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 265.62, + "y": 2914.99, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 260.09, + "y": 2854.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 253.59, + "y": 2832.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 246.62, + "y": 2823.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 314.07, + "y": 2794.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 345.34, + "y": 2783.57, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 265.68, + "y": 2915.05, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 168.47, + "y": 2929.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 152.59, + "y": 2914.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 91.86, + "y": 2958.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 82.88, + "y": 2986.22, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 265.62, + "y": 2914.97, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 169.9, + "y": 2824.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 142.54, + "y": 2807.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A25-蒙德-风龙废墟4.json b/repo/pathing/薄荷/薄荷全收集/薄荷A25-蒙德-风龙废墟4.json new file mode 100644 index 00000000..798601c4 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A25-蒙德-风龙废墟4.json @@ -0,0 +1,381 @@ +{ + "info": { + "name": "薄荷A25-蒙德-风龙废墟4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 338.19, + "y": 2581.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 307.35, + "y": 2575.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 272.37, + "y": 2590.84, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 4, + "x": 338.19, + "y": 2581.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 5, + "x": 331.92, + "y": 2626.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 357.3, + "y": 2642.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": 338.19, + "y": 2581.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 8, + "x": 380.59, + "y": 2592.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 406.34, + "y": 2592.24, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 413.7, + "y": 2588.28, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 419.09, + "y": 2588.09, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 435.99, + "y": 2583.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 434.17, + "y": 2572.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 433.38, + "y": 2569.72, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 449.19, + "y": 2555.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 475.9, + "y": 2530.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 479.75, + "y": 2527.78, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 483.34, + "y": 2525.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 444.54, + "y": 2516.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 458.1, + "y": 2512.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 487.62, + "y": 2513.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 494.37, + "y": 2514.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 519.72, + "y": 2524.88, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 532.16, + "y": 2539.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 536.12, + "y": 2542.15, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 540.71, + "y": 2557.07, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 542.71, + "y": 2559.35, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 545.5, + "y": 2591.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 531.45, + "y": 2674.47, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 532.51, + "y": 2715.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 536.22, + "y": 2728.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 535.4, + "y": 2742.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": 530.69, + "y": 2779.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 535.5, + "y": 2780.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": 525.28, + "y": 2811.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": 520.93, + "y": 2822.95, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": 519.49, + "y": 2827.25, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": 503.91, + "y": 2829.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 513.3, + "y": 2837.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 566.58, + "y": 2833.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 41, + "x": 595.9, + "y": 2784.55, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A26-蒙德-清泉镇.json b/repo/pathing/薄荷/薄荷全收集/薄荷A26-蒙德-清泉镇.json new file mode 100644 index 00000000..f97a4df6 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A26-蒙德-清泉镇.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷A26-蒙德-清泉镇", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -578.78, + "y": 1853.39, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -562.53, + "y": 1856.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -555.39, + "y": 1934.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -558.11, + "y": 1972.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -543.11, + "y": 1998.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -567.41, + "y": 2006.1, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": -595.16, + "y": 2021.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -611.3, + "y": 2016.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -645.21, + "y": 2006.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -701.29, + "y": 2032.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -727.54, + "y": 2054.85, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 12, + "x": -732.62, + "y": 2039.02, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -867.62, + "y": 1992.22, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -836.18, + "y": 1983.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -792.31, + "y": 1967.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -767.07, + "y": 1932.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -760.17, + "y": 1930.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -722.02, + "y": 1919.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -721.69, + "y": 1894.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -758.17, + "y": 1851.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -769.79, + "y": 1820.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -792.32, + "y": 1844.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -808.5, + "y": 1853.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -817.34, + "y": 1894.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -806.72, + "y": 1897.33, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 26, + "x": -578.77, + "y": 1853.39, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -618.61, + "y": 1811.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -654.83, + "y": 1786.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -657.83, + "y": 1777.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -676.9, + "y": 1791.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -714.71, + "y": 1765.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A27-蒙德-蒙德城.json b/repo/pathing/薄荷/薄荷全收集/薄荷A27-蒙德-蒙德城.json new file mode 100644 index 00000000..aee1eeb0 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A27-蒙德-蒙德城.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "薄荷A27-蒙德-蒙德城", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -749.43, + "y": 2263.09, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -744.12, + "y": 2273.28, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -722.0, + "y": 2299.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -711.47, + "y": 2321.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -710.89, + "y": 2329.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -688.24, + "y": 2342.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -696.41, + "y": 2367.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -666.3, + "y": 2381.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -646.66, + "y": 2401.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -650.77, + "y": 2412.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -655.65, + "y": 2411.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A28-雪山-覆雪之路1.json b/repo/pathing/薄荷/薄荷全收集/薄荷A28-雪山-覆雪之路1.json new file mode 100644 index 00000000..a6e4c0cc --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A28-雪山-覆雪之路1.json @@ -0,0 +1,499 @@ +{ + "info": { + "name": "薄荷A28-雪山-覆雪之路1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1130.68, + "y": 1597.77, + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -1145.02, + "y": 1610.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1137.59, + "y": 1632.59, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1147.35, + "y": 1571.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1129.9, + "y": 1560.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1106.3, + "y": 1562.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1089.17, + "y": 1539.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1060.02, + "y": 1524.07, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": -1042.17, + "y": 1551.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1026.85, + "y": 1546.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1011.35, + "y": 1536.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -998.0, + "y": 1498.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1018.85, + "y": 1489.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -1023.66, + "y": 1487.95, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -1020.28, + "y": 1467.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -1023.35, + "y": 1451.57, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -1130.81, + "y": 1597.91, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -1146.89, + "y": 1570.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -1123.86, + "y": 1529.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -1109.66, + "y": 1490.93, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 21, + "x": -1135.93, + "y": 1513.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -1152.99, + "y": 1502.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -1163.38, + "y": 1478.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -1154.57, + "y": 1469.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -1164.66, + "y": 1449.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -1166.32, + "y": 1421.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -1178.82, + "y": 1415.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -1204.21, + "y": 1386.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -1201.4, + "y": 1358.28, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -1130.81, + "y": 1597.92, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -1143.34, + "y": 1603.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -1163.45, + "y": 1587.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -1183.69, + "y": 1544.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": -1202.8, + "y": 1526.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": -1235.95, + "y": 1515.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": -1257.59, + "y": 1494.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": -1264.27, + "y": 1469.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": -1272.55, + "y": 1448.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": -1274.71, + "y": 1441.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": -1277.49, + "y": 1432.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": -1293.43, + "y": 1417.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": -1276.39, + "y": 1430.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": -1268.73, + "y": 1430.96, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": -1262.09, + "y": 1427.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": -1250.29, + "y": 1415.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": -1245.27, + "y": 1411.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": -1264.98, + "y": 1375.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": -1256.25, + "y": 1357.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": -1262.13, + "y": 1356.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": -1266.01, + "y": 1355.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": -1301.91, + "y": 1369.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": -1314.22, + "y": 1379.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": -1317.71, + "y": 1377.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 54, + "x": -1317.27, + "y": 1381.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A29-雪山-覆雪之路2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A29-雪山-覆雪之路2.json new file mode 100644 index 00000000..34d57ac3 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A29-雪山-覆雪之路2.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "薄荷A29-雪山-覆雪之路2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1010.14, + "y": 1334.1, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1028.91, + "y": 1316.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1050.17, + "y": 1306.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1052.3, + "y": 1317.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1062.13, + "y": 1302.8, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1072.93, + "y": 1302.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1082.88, + "y": 1301.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1082.62, + "y": 1295.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1136.2, + "y": 1303.4, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1167.88, + "y": 1280.23, + "type": "path", + "move_mode": "walk", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": -1175.41, + "y": 1268.96, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1022.6, + "y": 1331.24, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1009.41, + "y": 1352.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -1032.34, + "y": 1360.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -1050.3, + "y": 1359.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -1073.05, + "y": 1358.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -1089.37, + "y": 1363.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -1095.9, + "y": 1377.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -1130.13, + "y": 1381.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -1143.59, + "y": 1384.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -1139.76, + "y": 1392.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -1119.65, + "y": 1418.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A30-雪山-旧宫1.json b/repo/pathing/薄荷/薄荷全收集/薄荷A30-雪山-旧宫1.json new file mode 100644 index 00000000..741fb124 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A30-雪山-旧宫1.json @@ -0,0 +1,492 @@ +{ + "info": { + "name": "薄荷A30-雪山-旧宫1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1023.35, + "y": 1174.48, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1003.09, + "y": 1157.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1006.01, + "y": 1148.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1002.54, + "y": 1139.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1003.17, + "y": 1120.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -987.96, + "y": 1118.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": -947.01, + "y": 1100.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 8, + "x": -920.86, + "y": 1112.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 9, + "x": -909.17, + "y": 1114.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -920.86, + "y": 1112.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -947.01, + "y": 1100.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -987.96, + "y": 1118.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -994.69, + "y": 1130.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -995.89, + "y": 1151.54, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 15, + "x": -1011.65, + "y": 1147.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -1026.02, + "y": 1136.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -1040.54, + "y": 1137.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -1056.39, + "y": 1129.49, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": -1069.05, + "y": 1129.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -1107.22, + "y": 1127.69, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -1129.34, + "y": 1117.04, + "type": "path", + "move_mode": "walk", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 22, + "x": -1122.43, + "y": 1112.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -1130.74, + "y": 1116.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -1167.73, + "y": 1125.6, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 25, + "x": -1180.28, + "y": 1138.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -1183.52, + "y": 1147.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -1181.66, + "y": 1151.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -1185.57, + "y": 1138.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -1199.96, + "y": 1106.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -1202.07, + "y": 1097.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -1178.22, + "y": 1103.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -1176.87, + "y": 1097.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -1177.5, + "y": 1086.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": -1195.05, + "y": 1081.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": -1191.63, + "y": 1075.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": -1204.33, + "y": 1096.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": -1219.97, + "y": 1098.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": -1237.21, + "y": 1093.79, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": -1023.36, + "y": 1174.5, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": -1032.56, + "y": 1169.76, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 41, + "x": -1031.75, + "y": 1177.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": -1023.58, + "y": 1185.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": -1030.74, + "y": 1199.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": -1041.86, + "y": 1209.3, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": -1056.27, + "y": 1200.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": -1077.41, + "y": 1210.47, + "type": "path", + "move_mode": "walk", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 47, + "x": -1102.1, + "y": 1188.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": -1125.74, + "y": 1192.99, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 49, + "x": -1141.57, + "y": 1207.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": -1140.14, + "y": 1196.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": -1135.77, + "y": 1181.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": -1134.35, + "y": 1173.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": -1130.49, + "y": 1170.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A31-雪山-旧宫2(收集200).json b/repo/pathing/薄荷/薄荷全收集/薄荷A31-雪山-旧宫2(收集200).json new file mode 100644 index 00000000..62fae5bf --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A31-雪山-旧宫2(收集200).json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷A31-雪山-旧宫2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1013.39, + "y": 1028.37, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1035.68, + "y": 1035.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1053.83, + "y": 1064.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1077.24, + "y": 1088.48, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1091.41, + "y": 1100.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1105.03, + "y": 1099.92, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1122.47, + "y": 1059.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1117.92, + "y": 1055.4, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -1127.62, + "y": 1036.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1125.69, + "y": 1008.15, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1139.63, + "y": 992.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1144.4, + "y": 988.54, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1181.48, + "y": 867.67, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1194.33, + "y": 873.51, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1176.59, + "y": 862.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1166.96, + "y": 878.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1171.21, + "y": 903.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -1205.57, + "y": 926.26, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -1219.35, + "y": 945.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -1249.55, + "y": 966.07, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -1266.95, + "y": 962.84, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A32-雪山-星荧洞窟1(运行1.5h).json b/repo/pathing/薄荷/薄荷全收集/薄荷A32-雪山-星荧洞窟1(运行1.5h).json new file mode 100644 index 00000000..70e83716 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A32-雪山-星荧洞窟1(运行1.5h).json @@ -0,0 +1,599 @@ +{ + "info": { + "name": "薄荷A32-雪山-星荧洞窟1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1334.5, + "y": 825.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1303.51, + "y": 801.14, + "action": "", + "move_mode": "swim", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -1298.09, + "y": 783.18, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -1285.26, + "y": 768.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -1272.75, + "y": 753.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -1247.66, + "y": 755.48, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -1236.07, + "y": 756.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -1217.22, + "y": 760.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -1203.9, + "y": 769.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -1181.33, + "y": 766.22, + "action": "combat_script", + "move_mode": "walk", + "action_params": "keypress(F),wait(3.0)", + "type": "path" + }, + { + "id": 11, + "x": -1160.33, + "y": 732.9, + "action": "", + "move_mode": "swim", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1171.31, + "y": 719.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -1173.91, + "y": 702.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -1163.75, + "y": 692.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -1168.88, + "y": 676.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -1176.68, + "y": 665.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -1185.22, + "y": 650.98, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -1168.21, + "y": 645.11, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -1135.66, + "y": 626.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -1118.07, + "y": 630.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -1104.81, + "y": 649.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -1086.13, + "y": 671.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -1066.14, + "y": 691.19, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -1063.08, + "y": 699.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -1055.01, + "y": 722.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -1068.94, + "y": 737.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -1082.77, + "y": 761.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -1127.2, + "y": 762.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -1142.31, + "y": 752.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -1125.78, + "y": 759.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -1115.58, + "y": 770.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -1087.19, + "y": 768.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": -1063.64, + "y": 768.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": -1033.92, + "y": 748.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": -1018.14, + "y": 728.88, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": -1017.45, + "y": 713.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": -1003.2, + "y": 685.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": -985.53, + "y": 658.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 39, + "x": -961.59, + "y": 649.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 40, + "x": -941.49, + "y": 679.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 41, + "x": -926.32, + "y": 644.49, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 42, + "x": -917.93, + "y": 646.37, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 43, + "x": -903.95, + "y": 667.21, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 44, + "x": -900.54, + "y": 687.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 45, + "x": -882.31, + "y": 679.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 46, + "x": -873.74, + "y": 679.21, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 47, + "x": -867.61, + "y": 687.77, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 48, + "x": -865.35546875, + "y": 673.9345703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 49, + "x": -862.126953125, + "y": 660.6923828125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5)" + }, + { + "id": 50, + "x": -865.35546875, + "y": 673.9345703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": -867.61, + "y": 687.77, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 52, + "x": -867.07, + "y": 699.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 53, + "x": -834.94, + "y": 705.36, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 54, + "x": -828.67, + "y": 694.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 55, + "x": -827.63, + "y": 685.59, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 56, + "x": -809.49, + "y": 680.96, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 57, + "x": -777.37, + "y": 662.48, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 58, + "x": -765.32, + "y": 654.77, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 59, + "x": -782.57, + "y": 658.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 60, + "x": -814.89, + "y": 667.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 61, + "x": -811.48, + "y": 651.33, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 62, + "x": -825.87, + "y": 643.88, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 63, + "x": -840.09, + "y": 640.57, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 64, + "x": -840.28, + "y": 624.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 65, + "x": -851.57, + "y": 630.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A33-雪山-星荧洞窟2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A33-雪山-星荧洞窟2.json new file mode 100644 index 00000000..1aefe332 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A33-雪山-星荧洞窟2.json @@ -0,0 +1,246 @@ +{ + "info": { + "name": "薄荷A33-雪山-星荧洞窟2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1006.94, + "y": 859.48, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -1011.36, + "y": 850.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -985.14, + "y": 851.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -968.43, + "y": 834.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -957.72, + "y": 828.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -955.22, + "y": 828.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -918.86, + "y": 808.36, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -911.93, + "y": 792.76, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -900.1, + "y": 795.1, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -895.03, + "y": 797.59, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -885.65, + "y": 787.77, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -824.86, + "y": 797.64, + "action": "stop_flying", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -799.03, + "y": 803.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -798.53, + "y": 797.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 15, + "x": -705.49, + "y": 925.7, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 16, + "x": -686.18, + "y": 925.73, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -662.88, + "y": 922.3, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -646.94, + "y": 882.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -640.8, + "y": 866.14, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -643.6, + "y": 858.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -663.04, + "y": 845.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -672.65, + "y": 821.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -674.63, + "y": 814.96, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -684.41, + "y": 813.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -663.01, + "y": 787.51, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -650.66, + "y": 775.11, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A34-雪山-眠龙谷1(收集250).json b/repo/pathing/薄荷/薄荷全收集/薄荷A34-雪山-眠龙谷1(收集250).json new file mode 100644 index 00000000..8667c8a0 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A34-雪山-眠龙谷1(收集250).json @@ -0,0 +1,526 @@ +{ + "info": { + "name": "薄荷A34-雪山-眠龙谷1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -573.98, + "y": 1458.65, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -591.02, + "y": 1495.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -603.14, + "y": 1508.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -612.64, + "y": 1513.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -636.44, + "y": 1513.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -654.12, + "y": 1520.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -678.21, + "y": 1480.99, + "type": "path", + "move_mode": "swim", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -682.74, + "y": 1472.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -695.94, + "y": 1466.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -714.5, + "y": 1488.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -717.81, + "y": 1526.12, + "type": "path", + "move_mode": "swim", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -719.14, + "y": 1535.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -739.48, + "y": 1540.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -771.36, + "y": 1551.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -783.16, + "y": 1565.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -813.43, + "y": 1580.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -850.96, + "y": 1599.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -885.14, + "y": 1604.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -910.85, + "y": 1622.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -937.81, + "y": 1632.0, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -573.98, + "y": 1458.65, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -582.78, + "y": 1443.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -585.39, + "y": 1391.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -578.59, + "y": 1376.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -601.35, + "y": 1339.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -630.88, + "y": 1338.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -650.76, + "y": 1368.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -667.41, + "y": 1389.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -683.31, + "y": 1384.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -707.25, + "y": 1369.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -726.72, + "y": 1380.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -752.72, + "y": 1383.37, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -573.97, + "y": 1458.66, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": -547.76, + "y": 1467.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": -517.24, + "y": 1443.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": -502.13, + "y": 1441.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": -527.33, + "y": 1404.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": -558.03, + "y": 1377.05, + "type": "path", + "move_mode": "swim", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": -546.6, + "y": 1350.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": -521.99, + "y": 1366.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": -496.07, + "y": 1359.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": -480.21, + "y": 1387.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": -463.08, + "y": 1390.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": -455.3, + "y": 1397.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": -447.96, + "y": 1396.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": -425.33, + "y": 1409.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": -392.1, + "y": 1439.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": -396.82, + "y": 1400.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": -386.63, + "y": 1367.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": -364.9, + "y": 1345.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": -375.66, + "y": 1297.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": -390.56, + "y": 1270.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": -405.17, + "y": 1255.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 54, + "x": -430.07, + "y": 1258.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 55, + "x": -449.31, + "y": 1277.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 56, + "x": -441.64, + "y": 1285.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 57, + "x": -424.34, + "y": 1328.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A35-雪山-眠龙谷2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A35-雪山-眠龙谷2.json new file mode 100644 index 00000000..835c5622 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A35-雪山-眠龙谷2.json @@ -0,0 +1,516 @@ +{ + "info": { + "name": "薄荷A35-雪山-眠龙谷2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -843.18, + "y": 1266.62, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -826.0, + "y": 1347.03, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -841.31, + "y": 1404.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -827.43, + "y": 1417.89, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -831.78, + "y": 1428.77, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -833.33, + "y": 1429.47, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": -844.51, + "y": 1267.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 8, + "x": -855.53, + "y": 1261.48, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -892.03, + "y": 1260.37, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -920.89, + "y": 1249.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 11, + "x": -844.5, + "y": 1267.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 12, + "x": -841.76, + "y": 1294.98, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -851.7, + "y": 1308.87, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -836.18, + "y": 1331.04, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -832.94, + "y": 1324.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -825.39, + "y": 1317.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -825.02, + "y": 1312.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -803.31, + "y": 1303.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -792.71, + "y": 1290.99, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -790.77, + "y": 1284.76, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -785.26, + "y": 1271.49, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 22, + "x": -844.5, + "y": 1267.7, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 23, + "x": -843.21, + "y": 1258.17, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -829.95, + "y": 1252.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -806.71, + "y": 1240.93, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -797.55, + "y": 1234.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -786.08, + "y": 1234.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -769.55, + "y": 1230.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -759.34, + "y": 1234.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -751.03, + "y": 1222.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -724.92, + "y": 1205.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -716.55, + "y": 1169.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": -707.72, + "y": 1172.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": -715.57, + "y": 1170.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": -718.59, + "y": 1156.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": -719.82, + "y": 1145.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": -721.16, + "y": 1137.54, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": -719.57, + "y": 1132.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 39, + "x": -722.79, + "y": 1120.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 40, + "x": -702.69, + "y": 1100.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 41, + "x": -686.28, + "y": 1099.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 42, + "x": -660.54, + "y": 1086.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 43, + "x": -683.11, + "y": 1096.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 44, + "x": -700.01, + "y": 1078.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 45, + "x": -698.1, + "y": 1062.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 46, + "x": -694.77, + "y": 1032.32, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 47, + "x": -683.07, + "y": 1028.11, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 48, + "x": -669.62, + "y": 1031.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 49, + "x": -644.26, + "y": 1009.21, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 50, + "x": -650.68, + "y": 1011.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 51, + "x": -645.46, + "y": 1011.17, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 52, + "x": -639.74, + "y": 1000.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 53, + "x": -610.21, + "y": 999.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 54, + "x": -604.31, + "y": 1002.37, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 55, + "x": -587.31, + "y": 1002.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 56, + "x": -565.53, + "y": 986.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A36-雪山-眠龙谷3.json b/repo/pathing/薄荷/薄荷全收集/薄荷A36-雪山-眠龙谷3.json new file mode 100644 index 00000000..178d0fdf --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A36-雪山-眠龙谷3.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷A36-雪山-眠龙谷3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -556.54, + "y": 1235.24, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -547.82, + "y": 1234.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -546.48, + "y": 1224.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -562.31, + "y": 1220.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -565.11, + "y": 1212.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -572.8, + "y": 1206.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -580.36, + "y": 1203.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -582.75, + "y": 1191.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -580.26, + "y": 1171.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -578.33, + "y": 1161.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -580.1, + "y": 1153.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -544.53, + "y": 1138.4, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": -541.45, + "y": 1136.36, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -532.96, + "y": 1136.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A37-雪山-寒天之钉.json b/repo/pathing/薄荷/薄荷全收集/薄荷A37-雪山-寒天之钉.json new file mode 100644 index 00000000..9d1ada39 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A37-雪山-寒天之钉.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "薄荷A37-雪山-寒天之钉", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -824.53, + "y": 1037.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -824.05, + "y": 1043.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -823.51, + "y": 1047.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -829.08, + "y": 1049.37, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -843.33, + "y": 1055.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -832.96, + "y": 1071.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -815.23, + "y": 1074.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A38-雪山-近郊1.json b/repo/pathing/薄荷/薄荷全收集/薄荷A38-雪山-近郊1.json new file mode 100644 index 00000000..8637e9b7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A38-雪山-近郊1.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "薄荷A38-雪山-近郊1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -486.43, + "y": 860.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -505.49, + "y": 878.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -495.7, + "y": 875.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -475.51, + "y": 875.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -471.69, + "y": 883.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -475.59, + "y": 885.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -459.0, + "y": 914.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -441.56, + "y": 923.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -431.46, + "y": 942.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -438.68, + "y": 974.76, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -448.79, + "y": 979.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -477.19, + "y": 990.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷A39-雪山-近郊2.json b/repo/pathing/薄荷/薄荷全收集/薄荷A39-雪山-近郊2.json new file mode 100644 index 00000000..0be44294 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷A39-雪山-近郊2.json @@ -0,0 +1,399 @@ +{ + "info": { + "name": "薄荷A39-雪山-近郊2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -486.43, + "y": 860.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -466.02, + "y": 858.1, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -465.58, + "y": 851.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -439.0, + "y": 835.21, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -433.96, + "y": 813.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -440.37, + "y": 798.38, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -423.68, + "y": 791.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -409.93, + "y": 802.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -390.83, + "y": 772.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -386.24, + "y": 749.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -388.53, + "y": 799.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -400.02, + "y": 842.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -384.68, + "y": 847.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -338.48, + "y": 882.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -368.09, + "y": 886.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -383.8, + "y": 889.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -385.98, + "y": 908.59, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -365.43, + "y": 928.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -386.09, + "y": 937.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -385.39, + "y": 955.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -360.18, + "y": 988.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -350.9, + "y": 998.46, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -368.26, + "y": 998.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -384.33, + "y": 1003.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -384.63, + "y": 1013.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -366.95, + "y": 1039.41, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -373.48, + "y": 1046.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -370.74, + "y": 1058.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -362.48, + "y": 1082.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -346.45, + "y": 1087.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -373.54, + "y": 1096.19, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -386.25, + "y": 1109.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": -398.23, + "y": 1126.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": -403.45, + "y": 1143.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": -414.29, + "y": 1147.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": -417.78, + "y": 1166.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": -407.03, + "y": 1185.3, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": -414.07, + "y": 1189.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 39, + "x": -420.67, + "y": 1192.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 40, + "x": -425.65, + "y": 1201.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 41, + "x": -398.52, + "y": 1198.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 42, + "x": -377.85, + "y": 1205.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 43, + "x": -362.92, + "y": 1181.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B01-璃月-石门1(收集300).json b/repo/pathing/薄荷/薄荷全收集/薄荷B01-璃月-石门1(收集300).json new file mode 100644 index 00000000..bda2a93a --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B01-璃月-石门1(收集300).json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷B01-璃月-石门1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -321.63, + "y": 1472.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -259.15, + "y": 1521.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -238.12, + "y": 1503.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -231.44, + "y": 1487.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -193.03, + "y": 1487.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -182.58, + "y": 1471.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -135.66, + "y": 1474.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -113.87, + "y": 1494.2, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -71.23, + "y": 1505.28, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -38.63, + "y": 1506.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -70.3, + "y": 1533.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -80.33, + "y": 1546.86, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -54.9, + "y": 1549.05, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -50.0, + "y": 1550.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -27.12, + "y": 1541.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -19.67, + "y": 1551.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 4.58, + "y": 1569.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 15.76, + "y": 1574.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 5.07, + "y": 1569.35, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -13.06, + "y": 1582.06, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -25.69, + "y": 1590.15, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -29.09, + "y": 1586.7, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -37.98, + "y": 1605.01, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -27.28, + "y": 1605.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -37.49, + "y": 1645.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -61.15, + "y": 1663.58, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -98.66, + "y": 1658.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -116.82, + "y": 1709.76, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -96.91, + "y": 1712.41, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -40.04, + "y": 1717.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -18.31, + "y": 1716.06, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 44.37, + "y": 1730.5, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B02-璃月-石门2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B02-璃月-石门2.json new file mode 100644 index 00000000..ce7cb691 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B02-璃月-石门2.json @@ -0,0 +1,354 @@ +{ + "info": { + "name": "薄荷B02-璃月-石门2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -321.66, + "y": 1473.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -258.1, + "y": 1467.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -225.58, + "y": 1472.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -193.08, + "y": 1464.38, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -161.12, + "y": 1461.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -151.83, + "y": 1460.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -129.88, + "y": 1464.87, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -115.04, + "y": 1472.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -50.93, + "y": 1472.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -79.2, + "y": 1453.63, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -100.85, + "y": 1447.65, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -55.41, + "y": 1444.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -28.94, + "y": 1451.38, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 4.52, + "y": 1478.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 29.71, + "y": 1487.3, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 27.9, + "y": 1508.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 37.88, + "y": 1515.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 36.31, + "y": 1525.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 10.93, + "y": 1538.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 25.41, + "y": 1513.44, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 35.44, + "y": 1477.91, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 31.13, + "y": 1453.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 15.44, + "y": 1444.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -24.66, + "y": 1419.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -1.08, + "y": 1415.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 58.4, + "y": 1401.37, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 67.24, + "y": 1410.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 86.01, + "y": 1402.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 102.9, + "y": 1440.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 98.95, + "y": 1457.15, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 89.51, + "y": 1488.95, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 95.41, + "y": 1505.18, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": 97.68, + "y": 1514.63, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": 99.94, + "y": 1543.18, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": 119.7, + "y": 1495.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": 121.06, + "y": 1474.21, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": 125.84, + "y": 1456.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": 144.83, + "y": 1446.92, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B03-璃月-无妄坡1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B03-璃月-无妄坡1.json new file mode 100644 index 00000000..46102135 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B03-璃月-无妄坡1.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷B03-璃月-无妄坡1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 385.87, + "y": 1688.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 352.14, + "y": 1686.0, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 308.13, + "y": 1685.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 280.31, + "y": 1682.0, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 241.87, + "y": 1654.27, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 220.51, + "y": 1657.97, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 164.39, + "y": 1629.12, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": 385.87, + "y": 1688.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 9, + "x": 367.68, + "y": 1712.54, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 365.57, + "y": 1723.37, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 379.65, + "y": 1692.04, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 389.41, + "y": 1665.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 392.67, + "y": 1654.44, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 392.55, + "y": 1652.85, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B04-璃月-无妄坡2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B04-璃月-无妄坡2.json new file mode 100644 index 00000000..ce3fcbca --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B04-璃月-无妄坡2.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "薄荷B04-璃月-无妄坡2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 547.71, + "y": 1766.84, + "action_params": "" + }, + { + "id": 2, + "x": 544.41, + "y": 1765.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 501.17, + "y": 1776.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 486.41, + "y": 1777.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 484.35, + "y": 1772.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 480.95, + "y": 1771.01, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 481.93, + "y": 1758.4, + "type": "target", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 477.77, + "y": 1758.05, + "type": "target", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 470.39, + "y": 1754.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 466.26, + "y": 1767.11, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 461.83, + "y": 1786.23, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 457.42, + "y": 1787.34, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": 482.54, + "y": 1793.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 485.87, + "y": 1811.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 503.26, + "y": 1829.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 509.73, + "y": 1836.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 524.21, + "y": 1854.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 574.99, + "y": 1870.34, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 604.42, + "y": 1919.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 595.06, + "y": 1947.59, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 601.95, + "y": 1953.73, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 612.2, + "y": 1942.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B05-璃月-无妄坡3(收集350,运行2h).json b/repo/pathing/薄荷/薄荷全收集/薄荷B05-璃月-无妄坡3(收集350,运行2h).json new file mode 100644 index 00000000..81a35314 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B05-璃月-无妄坡3(收集350,运行2h).json @@ -0,0 +1,382 @@ +{ + "info": { + "name": "薄荷B05-璃月-无妄坡3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 547.75, + "y": 1766.79, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 554.03, + "y": 1753.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 561.23, + "y": 1730.0, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 581.58, + "y": 1726.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 591.79, + "y": 1727.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 595.71, + "y": 1719.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 616.26, + "y": 1700.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 623.5, + "y": 1697.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 629.12, + "y": 1693.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 640.99, + "y": 1704.47, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 651.82, + "y": 1712.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 654.73, + "y": 1724.27, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 547.75, + "y": 1766.79, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 612.09, + "y": 1787.44, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 15, + "x": 629.16, + "y": 1794.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 626.89, + "y": 1827.29, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 654.65, + "y": 1837.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 670.93, + "y": 1850.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 659.45, + "y": 1848.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 656.96, + "y": 1862.51, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 678.62, + "y": 1892.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 688.88, + "y": 1887.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 697.81, + "y": 1860.1, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 701.01, + "y": 1847.16, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 801.6, + "y": 1796.1, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 813.25, + "y": 1792.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 840.92, + "y": 1861.29, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 842.31, + "y": 1875.12, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 792.47, + "y": 1783.31, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 790.07, + "y": 1773.98, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 775.58, + "y": 1767.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 767.89, + "y": 1762.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 763.04, + "y": 1748.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 766.85, + "y": 1724.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 739.89, + "y": 1689.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 771.79, + "y": 1687.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 789.77, + "y": 1686.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 798.95, + "y": 1689.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 840.26, + "y": 1706.24, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 40, + "x": 850.11, + "y": 1711.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 849.79, + "y": 1717.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B06-璃月-无妄坡4.json b/repo/pathing/薄荷/薄荷全收集/薄荷B06-璃月-无妄坡4.json new file mode 100644 index 00000000..3f1b1aaa --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B06-璃月-无妄坡4.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷B06-璃月-无妄坡4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 490.57, + "y": 1435.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 476.06, + "y": 1510.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 464.6, + "y": 1571.98, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 452.91, + "y": 1571.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 466.85, + "y": 1569.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 495.37, + "y": 1560.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 523.2, + "y": 1551.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 567.38, + "y": 1566.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 583.29, + "y": 1561.96, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 596.54, + "y": 1559.21, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 570.89, + "y": 1510.42, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 556.55, + "y": 1497.15, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 13, + "x": 489.79, + "y": 1435.06, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 14, + "x": 464.17, + "y": 1457.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 423.25, + "y": 1451.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 405.79, + "y": 1437.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 407.72, + "y": 1356.8, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 445.46, + "y": 1355.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 462.66, + "y": 1362.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 518.45, + "y": 1403.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 547.1, + "y": 1382.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 598.06, + "y": 1393.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 602.92, + "y": 1407.03, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 631.79, + "y": 1434.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 648.31, + "y": 1421.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 682.86, + "y": 1405.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 689.33, + "y": 1391.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 692.25, + "y": 1404.72, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 710.28, + "y": 1458.75, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 30, + "x": 842.73, + "y": 1534.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 31, + "x": 829.23, + "y": 1533.62, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B07-璃月-荻花洲.json b/repo/pathing/薄荷/薄荷全收集/薄荷B07-璃月-荻花洲.json new file mode 100644 index 00000000..164f670b --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B07-璃月-荻花洲.json @@ -0,0 +1,309 @@ +{ + "info": { + "name": "薄荷B07-璃月-荻花洲", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 253.14, + "y": 1285.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 241.58, + "y": 1282.02, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 226.83, + "y": 1239.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 223.61, + "y": 1194.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 248.96, + "y": 1145.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 275.83, + "y": 1162.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 313.82, + "y": 1126.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 320.97, + "y": 1125.44, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 342.46, + "y": 1124.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 377.03, + "y": 1092.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 406.0, + "y": 1100.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 422.03, + "y": 1113.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 434.43, + "y": 1135.52, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 470.38, + "y": 1110.26, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 483.28, + "y": 1083.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 488.9, + "y": 1060.62, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 465.39, + "y": 1048.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 464.49, + "y": 1067.23, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 452.51, + "y": 1075.49, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 426.08, + "y": 1070.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 373.59, + "y": 1057.21, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 350.47, + "y": 1065.13, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 362.42, + "y": 1032.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 342.66, + "y": 999.88, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 298.11, + "y": 951.28, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 280.53, + "y": 913.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 265.45, + "y": 885.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 294.95, + "y": 942.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 290.09, + "y": 954.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 288.58, + "y": 961.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 279.93, + "y": 965.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 245.85, + "y": 981.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": 228.13, + "y": 973.27, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B08-璃月-明藴镇1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B08-璃月-明藴镇1.json new file mode 100644 index 00000000..7da81443 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B08-璃月-明藴镇1.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷B08-璃月-明藴镇1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -189.54, + "y": 972.72, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -209.71, + "y": 947.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -212.71, + "y": 924.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -220.56, + "y": 923.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -234.05, + "y": 909.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -257.06, + "y": 907.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -280.21, + "y": 928.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -287.61, + "y": 949.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -281.79, + "y": 965.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -271.64, + "y": 965.05, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -268.06, + "y": 975.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -251.77, + "y": 980.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -245.01, + "y": 992.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -220.4, + "y": 988.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -194.07, + "y": 975.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -166.52, + "y": 975.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -141.18, + "y": 969.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -118.88, + "y": 957.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -79.52, + "y": 946.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -61.59, + "y": 899.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -35.98, + "y": 853.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 19.71, + "y": 874.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 41.0, + "y": 892.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 23.25, + "y": 937.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 16.5, + "y": 956.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 7.75, + "y": 963.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -48.38, + "y": 1012.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -98.72, + "y": 1005.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -38.74, + "y": 1030.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1.9, + "y": 1080.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 20.75, + "y": 1099.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 66.4, + "y": 1096.38, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B09-璃月-明藴镇2(收集400).json b/repo/pathing/薄荷/薄荷全收集/薄荷B09-璃月-明藴镇2(收集400).json new file mode 100644 index 00000000..807f3b54 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B09-璃月-明藴镇2(收集400).json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷B09-璃月-明藴镇2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -255.06, + "y": 630.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -300.37, + "y": 609.5, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -331.06, + "y": 596.18, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -425.22, + "y": 636.95, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -483.41, + "y": 596.88, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 6, + "x": -255.06, + "y": 630.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 7, + "x": -335.41, + "y": 695.81, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -302.13, + "y": 791.62, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -314.86, + "y": 828.45, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -307.77, + "y": 832.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 11, + "x": -255.06, + "y": 630.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 12, + "x": -220.29, + "y": 694.48, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -194.11, + "y": 735.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -185.68, + "y": 754.29, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -196.26, + "y": 762.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -178.49, + "y": 776.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -171.08, + "y": 788.49, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -114.44, + "y": 790.34, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -96.81, + "y": 777.28, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 20, + "x": -255.06, + "y": 630.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 21, + "x": -194.83, + "y": 587.09, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -166.29, + "y": 600.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -150.78, + "y": 596.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -124.41, + "y": 571.19, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -129.8, + "y": 554.21, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -119.5, + "y": 534.95, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -105.01, + "y": 553.81, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -57.49, + "y": 656.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 29, + "x": -26.65, + "y": 633.98, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -69.61, + "y": 623.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -106.43, + "y": 622.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -138.76, + "y": 660.02, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B10-璃月-归离原1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B10-璃月-归离原1.json new file mode 100644 index 00000000..7e8ce864 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B10-璃月-归离原1.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷B10-璃月-归离原1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 341.33, + "y": 548.49, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 334.27, + "y": 567.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 328.13, + "y": 577.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 325.78, + "y": 584.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 311.18, + "y": 598.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 291.67, + "y": 612.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 277.02, + "y": 590.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 279.08, + "y": 583.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 266.86, + "y": 559.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 259.0, + "y": 541.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 236.93, + "y": 557.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 210.95, + "y": 562.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 190.33, + "y": 553.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 168.25, + "y": 574.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 164.9, + "y": 590.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 140.23, + "y": 566.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 123.39, + "y": 556.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 80.97, + "y": 571.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 53.66, + "y": 561.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 72.35, + "y": 528.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 110.67, + "y": 514.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B11-璃月-归离原2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B11-璃月-归离原2.json new file mode 100644 index 00000000..96a027b9 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B11-璃月-归离原2.json @@ -0,0 +1,318 @@ +{ + "info": { + "name": "薄荷B11-璃月-归离原2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 341.24, + "y": 548.07, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 358.93, + "y": 537.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 397.53, + "y": 523.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 406.69, + "y": 557.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 445.98, + "y": 572.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 469.03, + "y": 587.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 468.39, + "y": 621.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 502.04, + "y": 633.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 521.52, + "y": 644.15, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 10, + "x": 509.79, + "y": 658.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 498.08, + "y": 672.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 475.79, + "y": 677.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 445.63, + "y": 711.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 431.94, + "y": 684.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 426.22, + "y": 678.25, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 413.23, + "y": 619.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 405.86, + "y": 614.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 397.56, + "y": 647.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 371.49, + "y": 652.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 358.97, + "y": 676.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 352.32, + "y": 683.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 316.56, + "y": 680.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 281.71, + "y": 660.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 249.37, + "y": 656.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 248.57, + "y": 705.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 268.46, + "y": 709.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 266.6, + "y": 777.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 242.43, + "y": 779.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 230.82, + "y": 774.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 174.01, + "y": 765.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 149.69, + "y": 761.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 134.66, + "y": 767.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 131.83, + "y": 752.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 128.41, + "y": 698.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B12-璃月-归离原3.json b/repo/pathing/薄荷/薄荷全收集/薄荷B12-璃月-归离原3.json new file mode 100644 index 00000000..cc8a864d --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B12-璃月-归离原3.json @@ -0,0 +1,247 @@ +{ + "info": { + "name": "薄荷B12-璃月-归离原3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 341.32, + "y": 548.13, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 340.03, + "y": 530.63, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 337.54, + "y": 514.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 324.23, + "y": 479.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 319.67, + "y": 456.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 311.26, + "y": 446.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 281.97, + "y": 448.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 285.54, + "y": 457.43, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": 341.32, + "y": 548.13, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 341.4, + "y": 532.49, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 351.62, + "y": 500.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 363.67, + "y": 468.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 367.72, + "y": 460.36, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 375.61, + "y": 441.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 385.79, + "y": 405.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 409.33, + "y": 425.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 418.49, + "y": 430.16, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 438.7, + "y": 429.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 449.62, + "y": 438.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 441.54, + "y": 420.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 443.2, + "y": 407.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 449.64, + "y": 394.97, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 23, + "x": 443.89, + "y": 398.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 458.78, + "y": 391.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 475.3, + "y": 403.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 487.16, + "y": 412.8, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B13-璃月-归离原4.json b/repo/pathing/薄荷/薄荷全收集/薄荷B13-璃月-归离原4.json new file mode 100644 index 00000000..46da8ab5 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B13-璃月-归离原4.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "薄荷B13-璃月-归离原4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 173.94, + "y": 389.58, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 164.18, + "y": 421.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 151.98, + "y": 415.15, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 54.27, + "y": 139.36, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 79.79, + "y": 166.17, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 172.98, + "y": 202.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 191.44, + "y": 235.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 179.26, + "y": 268.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 170.21, + "y": 276.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 155.82, + "y": 269.8, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 160.99, + "y": 314.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 152.74, + "y": 324.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 161.5, + "y": 344.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 148.76, + "y": 353.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 119.19, + "y": 356.48, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 16, + "x": 118.71, + "y": 351.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 115.01, + "y": 336.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 115.07, + "y": 329.78, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 82.93, + "y": 306.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 46.91, + "y": 345.73, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 21, + "x": 40.25, + "y": 297.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 30.75, + "y": 274.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -31.97, + "y": 259.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4.24, + "y": 253.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 54.12, + "y": 250.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 56.62, + "y": 224.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 83.45, + "y": 236.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 109.27, + "y": 248.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 127.52, + "y": 256.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 143.49, + "y": 272.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 182.82, + "y": 270.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 226.46, + "y": 260.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 257.42, + "y": 266.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 277.67, + "y": 232.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 284.35, + "y": 206.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 313.19, + "y": 195.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 347.06, + "y": 183.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B14-璃月-归离原5(收集450).json b/repo/pathing/薄荷/薄荷全收集/薄荷B14-璃月-归离原5(收集450).json new file mode 100644 index 00000000..a8bb06e7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B14-璃月-归离原5(收集450).json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "薄荷B14-璃月-归离原5", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 489.38, + "y": 222.2, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 481.36, + "y": 208.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 475.47, + "y": 187.79, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 470.72, + "y": 214.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 453.75, + "y": 229.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 465.48, + "y": 241.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 459.63, + "y": 245.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 463.64, + "y": 264.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 456.46, + "y": 248.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 463.01, + "y": 253.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 462.77, + "y": 265.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 457.6, + "y": 275.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 460.92, + "y": 289.32, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 451.56, + "y": 299.43, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 438.11, + "y": 303.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 395.07, + "y": 308.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 381.98, + "y": 304.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 363.53, + "y": 286.27, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 351.92, + "y": 285.78, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 331.76, + "y": 302.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 327.6, + "y": 332.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 330.32, + "y": 349.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 326.67, + "y": 354.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B15-璃月-孤云阁.json b/repo/pathing/薄荷/薄荷全收集/薄荷B15-璃月-孤云阁.json new file mode 100644 index 00000000..1f367b6c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B15-璃月-孤云阁.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "薄荷B15-璃月-孤云阁", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -963.42, + "y": -288.94, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -917.17, + "y": -273.48, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -891.13, + "y": -289.44, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -919.79, + "y": -314.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -941.58, + "y": -333.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -945.49, + "y": -315.69, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -948.13, + "y": -297.77, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -937.03, + "y": -276.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -950.61, + "y": -243.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -966.29, + "y": -220.7, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -1028.33, + "y": -196.95, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -1011.48, + "y": -201.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -986.3, + "y": -184.49, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -956.66, + "y": -174.36, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -913.45, + "y": -145.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -900.1, + "y": -127.59, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -907.17, + "y": -120.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -909.71, + "y": -90.36, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -913.56, + "y": -68.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B16-璃月-渌华池1(运行2.5h).json b/repo/pathing/薄荷/薄荷全收集/薄荷B16-璃月-渌华池1(运行2.5h).json new file mode 100644 index 00000000..558d12bc --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B16-璃月-渌华池1(运行2.5h).json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "薄荷B16-璃月-渌华池1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 54.31, + "y": 139.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -7.57, + "y": 162.7, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -23.81, + "y": 145.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -46.43, + "y": 81.97, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -41.98, + "y": 57.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 6, + "x": 54.31, + "y": 139.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 7, + "x": 41.6, + "y": 122.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 57.7, + "y": 105.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 68.76, + "y": 85.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 81.65, + "y": 84.15, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 106.38, + "y": 94.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 138.7, + "y": 102.34, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 130.17, + "y": 87.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 127.55, + "y": 81.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 121.42, + "y": 77.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 117.71, + "y": 59.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 83.51, + "y": 59.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 80.67, + "y": 42.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 129.84, + "y": 15.06, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B17-璃月-渌华池2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B17-璃月-渌华池2.json new file mode 100644 index 00000000..45b285ad --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B17-璃月-渌华池2.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "薄荷B17-璃月-渌华池2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 25.99, + "y": -112.36, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 35.61, + "y": -123.97, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 41.64, + "y": -121.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 54.78, + "y": -123.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 62.16, + "y": -130.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 49.89, + "y": -138.68, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 32.41, + "y": -150.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 54.39, + "y": -155.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 92.98, + "y": -162.02, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 100.2, + "y": -161.75, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 25.99, + "y": -112.28, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 0.58, + "y": -100.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -39.75, + "y": -104.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -94.64, + "y": -112.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -115.26, + "y": -129.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -139.27, + "y": -141.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -150.07, + "y": -186.2, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 18, + "x": -158.77, + "y": -159.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -170.64, + "y": -141.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -168.07, + "y": -132.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -155.96, + "y": -98.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -183.25, + "y": -93.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B18-璃月-渌华池3.json b/repo/pathing/薄荷/薄荷全收集/薄荷B18-璃月-渌华池3.json new file mode 100644 index 00000000..b56f687d --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B18-璃月-渌华池3.json @@ -0,0 +1,354 @@ +{ + "info": { + "name": "薄荷B18-璃月-渌华池3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 259.46, + "y": -14.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 262.3, + "y": 13.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 264.05, + "y": 30.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 251.96, + "y": 50.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 272.63, + "y": 79.38, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 267.99, + "y": 119.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 241.28, + "y": 111.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 222.98, + "y": 114.45, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 217.99, + "y": 138.96, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 258.72, + "y": 162.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 284.76, + "y": 155.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 292.83, + "y": 117.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 296.39, + "y": 101.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 310.35, + "y": 86.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 328.42, + "y": 85.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 340.59, + "y": 91.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 356.25, + "y": 98.96, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 383.78, + "y": 111.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 259.46, + "y": -14.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 20, + "x": 267.04, + "y": -42.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 256.97, + "y": -80.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 256.82, + "y": -99.53, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 287.93, + "y": -88.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 289.58, + "y": -79.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 293.82, + "y": -68.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 290.93, + "y": -61.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 307.21, + "y": -40.19, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 314.77, + "y": -18.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 353.65, + "y": 18.0, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 352.53, + "y": 60.98, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 359.74, + "y": 28.76, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 384.57, + "y": 28.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": 423.77, + "y": 40.5, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": 410.24, + "y": 42.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": 418.28, + "y": 46.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": 431.06, + "y": 57.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": 470.38, + "y": 53.3, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": 505.63, + "y": 51.69, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B19-璃月-遁玉陵.json b/repo/pathing/薄荷/薄荷全收集/薄荷B19-璃月-遁玉陵.json new file mode 100644 index 00000000..849f1a95 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B19-璃月-遁玉陵.json @@ -0,0 +1,336 @@ +{ + "info": { + "name": "薄荷B19-璃月-遁玉陵", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 611.57, + "y": -284.06, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 567.88, + "y": -338.21, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 558.78, + "y": -330.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 551.14, + "y": -326.27, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 524.26, + "y": -319.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 500.96, + "y": -312.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 483.67, + "y": -316.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 475.09, + "y": -322.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 481.39, + "y": -296.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 485.17, + "y": -279.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 491.52, + "y": -275.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 501.11, + "y": -268.27, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 510.05, + "y": -255.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 497.93, + "y": -219.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 531.66, + "y": -229.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 547.29, + "y": -226.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 570.97, + "y": -217.48, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 18, + "x": 564.48, + "y": -201.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 563.79, + "y": -179.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 565.13, + "y": -169.62, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 21, + "x": 593.32, + "y": -171.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 676.49, + "y": -185.11, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 23, + "x": 661.58, + "y": -162.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 644.43, + "y": -139.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 682.5, + "y": -110.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 684.99, + "y": -75.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 684.6, + "y": -19.2, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 28, + "x": 652.0, + "y": 4.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 626.8, + "y": -29.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 604.66, + "y": -47.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 594.58, + "y": -55.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 547.48, + "y": -37.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 512.95, + "y": -52.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 502.86, + "y": -47.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 491.44, + "y": -62.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 514.88, + "y": -81.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B20-璃月-璃月港.json b/repo/pathing/薄荷/薄荷全收集/薄荷B20-璃月-璃月港.json new file mode 100644 index 00000000..2785281f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B20-璃月-璃月港.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "薄荷B20-璃月-璃月港", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 267.94, + "y": -665.15, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 263.47, + "y": -674.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 320.78, + "y": -734.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 290.26, + "y": -757.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 261.35, + "y": -771.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 203.14, + "y": -788.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 171.42, + "y": -799.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 138.45, + "y": -812.82, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 99.06, + "y": -822.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 60.23, + "y": -829.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 37.13, + "y": -827.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -39.83, + "y": -757.47, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -69.35, + "y": -756.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -92.68, + "y": -794.9, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 15, + "x": -99.54, + "y": -832.37, + "type": "path", + "move_mode": "walk", + "action": "pick_around", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B21-璃月-天衡山1(收集500).json b/repo/pathing/薄荷/薄荷全收集/薄荷B21-璃月-天衡山1(收集500).json new file mode 100644 index 00000000..296e166f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B21-璃月-天衡山1(收集500).json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "薄荷B21-璃月-天衡山1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 507.61, + "y": -630.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 550.17, + "y": -609.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 595.08, + "y": -580.34, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 612.77, + "y": -574.47, + "action": "stop_flying", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 598.53, + "y": -612.46, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 601.6, + "y": -636.28, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 578.74, + "y": -686.28, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 574.97, + "y": -705.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 581.7, + "y": -722.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 598.5, + "y": -721.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 605.68, + "y": -719.97, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 613.95, + "y": -713.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 626.57, + "y": -720.17, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 638.37, + "y": -738.58, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 625.98, + "y": -706.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 16, + "x": 508.02, + "y": -630.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 17, + "x": 498.45, + "y": -746.11, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 481.34, + "y": -756.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 473.02, + "y": -759.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 469.11, + "y": -767.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 457.04, + "y": -793.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 470.32, + "y": -783.64, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B22-璃月-天衡山2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B22-璃月-天衡山2.json new file mode 100644 index 00000000..a186dffe --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B22-璃月-天衡山2.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "薄荷B22-璃月-天衡山2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 611.71, + "y": -284.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 628.72, + "y": -309.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 640.68, + "y": -397.5, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 646.71, + "y": -409.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 828.25, + "y": -583.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 6, + "x": 821.89, + "y": -584.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 798.89, + "y": -592.7, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 674.72, + "y": -572.37, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 695.85, + "y": -552.99, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 721.3, + "y": -523.06, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 748.03, + "y": -550.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 746.47, + "y": -503.37, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 765.51, + "y": -479.44, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 820.64, + "y": -478.93, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 847.18, + "y": -502.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 865.18, + "y": -525.74, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B23-璃月-天衡山3.json b/repo/pathing/薄荷/薄荷全收集/薄荷B23-璃月-天衡山3.json new file mode 100644 index 00000000..81ef3e5e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B23-璃月-天衡山3.json @@ -0,0 +1,264 @@ +{ + "info": { + "name": "薄荷B23-璃月-天衡山3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 828.23, + "y": -583.36, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 930.97, + "y": -599.55, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 934.6, + "y": -613.1, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1011.63, + "y": -678.43, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 994.98, + "y": -677.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 949.91, + "y": -646.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 913.43, + "y": -635.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 896.05, + "y": -628.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 885.38, + "y": -654.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 888.37, + "y": -678.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 867.29, + "y": -699.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 852.8, + "y": -709.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 853.09, + "y": -726.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 861.6, + "y": -749.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 833.17, + "y": -710.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 820.66, + "y": -715.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 809.05, + "y": -705.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 794.75, + "y": -703.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 778.94, + "y": -695.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 736.46, + "y": -681.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 717.86, + "y": -676.57, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 708.21, + "y": -683.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 717.09, + "y": -678.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 721.75, + "y": -693.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 730.44, + "y": -710.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 732.07, + "y": -719.27, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 728.05, + "y": -722.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 723.47, + "y": -738.7, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B24-璃月-青墟浦1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B24-璃月-青墟浦1.json new file mode 100644 index 00000000..a2cb8401 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B24-璃月-青墟浦1.json @@ -0,0 +1,391 @@ +{ + "info": { + "name": "薄荷B24-璃月-青墟浦1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 711.46, + "y": -769.04, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 672.46, + "y": -765.41, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 711.46, + "y": -769.04, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 710.27, + "y": -799.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 728.1, + "y": -772.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 765.47, + "y": -787.0, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 785.1, + "y": -795.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 813.6, + "y": -815.22, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": 829.42, + "y": -808.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 879.5, + "y": -786.33, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 918.23, + "y": -780.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 933.29, + "y": -780.65, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 894.23, + "y": -806.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 896.49, + "y": -831.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 914.56, + "y": -828.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 930.18, + "y": -872.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 955.38, + "y": -885.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 955.7, + "y": -917.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 961.37, + "y": -927.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 977.11, + "y": -937.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 974.41, + "y": -949.43, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 969.41, + "y": -949.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 937.25, + "y": -969.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 918.59, + "y": -975.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 912.25, + "y": -980.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 843.57, + "y": -937.49, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 817.32, + "y": -954.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 824.14, + "y": -920.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 803.92, + "y": -891.2, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 30, + "x": 782.24, + "y": -869.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 777.15, + "y": -853.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 796.89, + "y": -846.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 808.98, + "y": -851.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 835.76, + "y": -861.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 830.06, + "y": -870.48, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 824.72, + "y": -875.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 814.3, + "y": -869.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 765.65, + "y": -886.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 757.8, + "y": -913.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 727.76, + "y": -906.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 714.35, + "y": -892.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 708.36, + "y": -895.13, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B25-璃月-青墟浦2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B25-璃月-青墟浦2.json new file mode 100644 index 00000000..52570d8c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B25-璃月-青墟浦2.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷B25-璃月-青墟浦2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1128.45, + "y": -984.37, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1130.71, + "y": -991.44, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1118.39, + "y": -1005.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1104.24, + "y": -1012.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1107.15, + "y": -992.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1094.44, + "y": -976.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1093.34, + "y": -944.0, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 1122.03, + "y": -882.39, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": 1148.5, + "y": -881.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1169.72, + "y": -883.38, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1221.46, + "y": -909.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1247.91, + "y": -905.29, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": 1261.93, + "y": -901.31, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1275.69, + "y": -911.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1294.06, + "y": -913.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1304.85, + "y": -912.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1323.86, + "y": -918.24, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1326.43, + "y": -903.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1317.33, + "y": -894.3, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 20, + "x": 1347.45, + "y": -899.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1381.02, + "y": -900.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1397.74, + "y": -900.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1372.89, + "y": -860.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1366.92, + "y": -838.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1357.57, + "y": -830.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1341.61, + "y": -796.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1328.65, + "y": -790.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1306.64, + "y": -789.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1266.52, + "y": -786.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B26-璃月-灵矩关1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B26-璃月-灵矩关1.json new file mode 100644 index 00000000..888d86c7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B26-璃月-灵矩关1.json @@ -0,0 +1,400 @@ +{ + "info": { + "name": "薄荷B26-璃月-灵矩关1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1043.16, + "y": -558.02, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 1019.87, + "y": -538.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1003.36, + "y": -532.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 983.14, + "y": -531.2, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 989.07, + "y": -531.98, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1043.16, + "y": -558.02, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1136.42, + "y": -533.64, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 1144.31, + "y": -524.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1153.68, + "y": -514.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1165.25, + "y": -505.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1184.27, + "y": -473.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1190.99, + "y": -461.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1197.14, + "y": -446.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1206.0, + "y": -429.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1203.93, + "y": -423.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1208.72, + "y": -421.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1226.47, + "y": -442.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1231.82, + "y": -450.58, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1219.54, + "y": -470.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1206.01, + "y": -462.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1201.76, + "y": -456.14, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1203.51, + "y": -449.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1203.28, + "y": -434.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1218.84, + "y": -408.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1220.77, + "y": -405.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1204.3, + "y": -394.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1201.91, + "y": -394.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1195.68, + "y": -409.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1223.11, + "y": -434.96, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 30, + "x": 1230.8, + "y": -436.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 1233.41, + "y": -432.54, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1246.6, + "y": -439.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 1240.32, + "y": -454.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 1247.41, + "y": -459.23, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 1253.81, + "y": -448.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 1253.58, + "y": -445.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 1255.39, + "y": -441.87, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 1271.27, + "y": -452.63, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 1286.53, + "y": -471.08, + "type": "path", + "move_mode": "swim", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 1289.66, + "y": -471.79, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 1300.95, + "y": -474.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 1298.01, + "y": -520.01, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 1288.31, + "y": -551.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B27-璃月-灵矩关2(收集550).json b/repo/pathing/薄荷/薄荷全收集/薄荷B27-璃月-灵矩关2(收集550).json new file mode 100644 index 00000000..a794099b --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B27-璃月-灵矩关2(收集550).json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷B27-璃月-灵矩关2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1470.14, + "y": -728.81, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1450.65, + "y": -710.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1438.55, + "y": -683.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1417.74, + "y": -680.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1396.45, + "y": -678.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1389.25, + "y": -679.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1365.06, + "y": -696.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1341.99, + "y": -657.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1311.57, + "y": -631.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1288.23, + "y": -615.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1253.96, + "y": -610.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1267.77, + "y": -626.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1273.16, + "y": -633.39, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1265.56, + "y": -644.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1267.07, + "y": -671.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1276.15, + "y": -718.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1277.63, + "y": -745.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1293.74, + "y": -757.88, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1285.69, + "y": -746.11, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1267.35, + "y": -722.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1231.22, + "y": -705.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1222.78, + "y": -698.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1212.46, + "y": -700.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1197.45, + "y": -703.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1156.79, + "y": -741.72, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1145.81, + "y": -748.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1150.38, + "y": -728.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1161.92, + "y": -721.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1147.16, + "y": -720.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1135.27, + "y": -717.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 1124.46, + "y": -719.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1103.02, + "y": -715.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B28-璃月-灵矩关3(运行3h).json b/repo/pathing/薄荷/薄荷全收集/薄荷B28-璃月-灵矩关3(运行3h).json new file mode 100644 index 00000000..8df2f4a9 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B28-璃月-灵矩关3(运行3h).json @@ -0,0 +1,238 @@ +{ + "info": { + "name": "薄荷B28-璃月-灵矩关3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 978.75, + "y": -353.55, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 947.94, + "y": -334.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 888.76, + "y": -300.43, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 864.23, + "y": -332.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 872.9, + "y": -394.79, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 978.75, + "y": -353.55, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 993.04, + "y": -347.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1003.28, + "y": -348.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1080.21, + "y": -374.02, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 10, + "x": 1094.65, + "y": -337.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1116.33, + "y": -331.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1121.74, + "y": -302.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1130.04, + "y": -257.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1136.07, + "y": -235.58, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1141.57, + "y": -228.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1183.71, + "y": -226.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1206.4, + "y": -230.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1212.4, + "y": -268.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1216.22, + "y": -302.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1175.33, + "y": -307.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1166.03, + "y": -310.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1146.4, + "y": -307.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1164.08, + "y": -291.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1178.83, + "y": -284.99, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 25, + "x": 1177.06, + "y": -287.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B29-璃月-天遒谷1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B29-璃月-天遒谷1.json new file mode 100644 index 00000000..794a03ea --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B29-璃月-天遒谷1.json @@ -0,0 +1,208 @@ +{ + "info": { + "name": "薄荷B29-璃月-天遒谷1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1152.81, + "y": 141.56, + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 1111.93, + "y": 117.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 3, + "x": 1073.21, + "y": 89.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 4, + "x": 1059.53, + "y": 64.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": 1018.5, + "y": 19.85, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 6, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1152.81, + "y": 141.56, + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": 1206.11, + "y": 124.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1265.17, + "y": 113.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1278.18, + "y": 109.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1300.8, + "y": 84.55, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1152.81, + "y": 141.56, + "action_params": "", + "locked": false + }, + { + "id": 12, + "x": 1184.95, + "y": 155.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1215.18, + "y": 159.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1212.97, + "y": 166.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1217.71, + "y": 177.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1222.3, + "y": 178.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1243.3, + "y": 206.23, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1255.27, + "y": 222.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1272.11, + "y": 235.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1298.16, + "y": 244.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1284.03, + "y": 259.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B30-璃月-天遒谷2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B30-璃月-天遒谷2.json new file mode 100644 index 00000000..eaeb913a --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B30-璃月-天遒谷2.json @@ -0,0 +1,237 @@ +{ + "info": { + "name": "薄荷B30-璃月-天遒谷2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1389.0, + "y": 516.48, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1387.1, + "y": 497.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1399.43, + "y": 483.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1506.87, + "y": 442.95, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 1481.57, + "y": 485.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1475.37, + "y": 533.22, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": 1445.79, + "y": 572.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1381.53, + "y": 585.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1336.65, + "y": 580.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1307.19, + "y": 578.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1285.68, + "y": 560.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1270.85, + "y": 540.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1240.68, + "y": 510.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1240.85, + "y": 467.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1247.15, + "y": 464.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1262.64, + "y": 436.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1265.67, + "y": 415.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1257.19, + "y": 399.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1254.74, + "y": 387.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1248.59, + "y": 388.1, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1202.0, + "y": 360.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1180.61, + "y": 338.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1184.75, + "y": 327.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1179.4, + "y": 327.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1140.24, + "y": 331.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B31-璃月-翠玦坡1(收集600).json b/repo/pathing/薄荷/薄荷全收集/薄荷B31-璃月-翠玦坡1(收集600).json new file mode 100644 index 00000000..a13fd97b --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B31-璃月-翠玦坡1(收集600).json @@ -0,0 +1,768 @@ +{ + "info": { + "name": "薄荷B31-璃月-翠玦坡1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 837.48, + "y": 235.15, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 875.71, + "y": 275.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 910.1, + "y": 308.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 950.37, + "y": 315.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 966.21, + "y": 316.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 972.88, + "y": 303.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 973.66, + "y": 324.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 972.12, + "y": 346.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 974.55, + "y": 361.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 984.92, + "y": 369.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 991.48, + "y": 374.85, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1007.11, + "y": 366.8, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1017.21, + "y": 347.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1025.83, + "y": 371.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1012.94, + "y": 403.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 999.54, + "y": 427.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 978.07, + "y": 440.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 975.64, + "y": 446.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 952.92, + "y": 463.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 918.58, + "y": 470.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 900.8, + "y": 451.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 905.68, + "y": 443.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 892.32, + "y": 434.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 812.33, + "y": 365.3, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 822.97, + "y": 353.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 814.78, + "y": 364.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 824.66, + "y": 403.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 818.35, + "y": 415.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 808.68, + "y": 425.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 792.28, + "y": 437.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 788.61, + "y": 439.21, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 771.26, + "y": 432.23, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 745.83, + "y": 436.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 709.93, + "y": 427.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 688.85, + "y": 407.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 694.1, + "y": 390.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 671.87, + "y": 364.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 649.17, + "y": 333.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 616.56, + "y": 305.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 605.19, + "y": 292.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 606.7, + "y": 277.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 600.25, + "y": 304.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 601.18, + "y": 335.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 569.42, + "y": 355.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 553.48, + "y": 374.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 562.91, + "y": 372.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 582.77, + "y": 390.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 618.48, + "y": 398.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 633.51, + "y": 396.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 598.68, + "y": 429.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 593.07, + "y": 456.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": 600.6, + "y": 476.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": 602.39, + "y": 505.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 54, + "x": 632.14, + "y": 476.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 55, + "x": 644.83, + "y": 466.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 56, + "x": 663.06, + "y": 474.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 57, + "x": 667.72, + "y": 487.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 58, + "x": 658.58, + "y": 533.02, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 59, + "x": 649.21, + "y": 585.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 60, + "x": 629.78, + "y": 615.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 61, + "x": 608.14, + "y": 640.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 62, + "x": 606.29, + "y": 651.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 63, + "x": 609.31, + "y": 654.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 64, + "x": 633.71, + "y": 659.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 65, + "x": 632.97, + "y": 650.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 66, + "x": 632.04, + "y": 655.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 67, + "x": 651.31, + "y": 650.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 68, + "x": 667.37, + "y": 641.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 69, + "x": 697.87, + "y": 637.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 70, + "x": 703.32, + "y": 635.89, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 71, + "x": 722.81, + "y": 630.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 72, + "x": 732.02, + "y": 609.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 73, + "x": 740.79, + "y": 589.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 74, + "x": 763.94, + "y": 581.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 75, + "x": 801.15, + "y": 564.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 76, + "x": 837.12, + "y": 564.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 77, + "x": 864.72, + "y": 544.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 78, + "x": 853.57, + "y": 538.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 79, + "x": 879.62, + "y": 534.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 80, + "x": 918.12, + "y": 536.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 81, + "x": 942.82, + "y": 535.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 82, + "x": 951.34, + "y": 548.46, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 83, + "x": 934.49, + "y": 573.24, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 84, + "x": 920.44, + "y": 582.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B32-璃月-翠玦坡2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B32-璃月-翠玦坡2.json new file mode 100644 index 00000000..b477d1e6 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B32-璃月-翠玦坡2.json @@ -0,0 +1,489 @@ +{ + "info": { + "name": "薄荷B32-璃月-翠玦坡2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 837.51, + "y": 235.16, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 864.48, + "y": 242.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 900.3, + "y": 256.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 925.15, + "y": 249.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 937.84, + "y": 238.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 982.32, + "y": 243.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 998.8, + "y": 222.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1007.24, + "y": 208.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1031.34, + "y": 228.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1045.5, + "y": 274.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 996.94, + "y": 261.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 992.65, + "y": 249.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 999.15, + "y": 222.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1007.22, + "y": 208.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1015.45, + "y": 191.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1032.92, + "y": 154.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1009.61, + "y": 157.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 986.51, + "y": 154.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 970.24, + "y": 131.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 960.25, + "y": 126.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 962.47, + "y": 108.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 944.43, + "y": 100.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 953.5, + "y": 80.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 956.41, + "y": 72.68, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 971.93, + "y": 53.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 944.59, + "y": 24.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 938.39, + "y": 18.26, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 926.04, + "y": 2.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 917.19, + "y": -16.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 902.61, + "y": -1.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 904.29, + "y": 25.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 918.11, + "y": 86.86, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 959.26, + "y": 125.24, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 34, + "x": 950.6, + "y": 133.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 956.38, + "y": 182.39, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 36, + "x": 923.75, + "y": 182.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 893.68, + "y": 180.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 888.15, + "y": 186.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 894.81, + "y": 122.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 921.45, + "y": 100.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 922.17, + "y": 87.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 903.22, + "y": 80.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 896.19, + "y": 90.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 889.7, + "y": 102.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 849.61, + "y": 77.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 829.99, + "y": 63.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 811.67, + "y": 64.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 809.07, + "y": 61.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 804.98, + "y": 96.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 798.5, + "y": 120.03, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 811.02, + "y": 150.93, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 52, + "x": 816.08, + "y": 129.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": 837.63, + "y": 168.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B33-璃月-奥藏山1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B33-璃月-奥藏山1.json new file mode 100644 index 00000000..ee9373b1 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B33-璃月-奥藏山1.json @@ -0,0 +1,337 @@ +{ + "info": { + "name": "薄荷B33-璃月-奥藏山1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1271.11, + "y": 1564.05, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 1272.08, + "y": 1567.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1267.49, + "y": 1558.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1245.26, + "y": 1517.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1282.5, + "y": 1480.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1301.6, + "y": 1477.02, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1271.11, + "y": 1564.05, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1218.65, + "y": 1539.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1189.19, + "y": 1544.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1146.1, + "y": 1537.49, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1118.21, + "y": 1532.36, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1102.64, + "y": 1532.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1088.03, + "y": 1529.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1066.98, + "y": 1536.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1094.48, + "y": 1520.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1119.8, + "y": 1505.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1135.26, + "y": 1484.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1129.28, + "y": 1472.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1134.58, + "y": 1453.91, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1100.54, + "y": 1416.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1101.2, + "y": 1397.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1100.23, + "y": 1368.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1097.55, + "y": 1353.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1089.55, + "y": 1351.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1078.43, + "y": 1345.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1066.14, + "y": 1340.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1017.47, + "y": 1302.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 992.45, + "y": 1280.83, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1271.21, + "y": 1564.01, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1211.95, + "y": 1582.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 1142.18, + "y": 1570.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1114.91, + "y": 1577.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 1067.22, + "y": 1604.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 1043.48, + "y": 1624.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 999.94, + "y": 1638.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 995.75, + "y": 1632.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B34-璃月-奥藏山2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B34-璃月-奥藏山2.json new file mode 100644 index 00000000..9ebb0586 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B34-璃月-奥藏山2.json @@ -0,0 +1,534 @@ +{ + "info": { + "name": "薄荷B34-璃月-奥藏山2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1121.02, + "y": 1190.4, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1103.98, + "y": 1194.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1056.84, + "y": 1185.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1041.91, + "y": 1187.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1028.48, + "y": 1192.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1025.96, + "y": 1212.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1033.15, + "y": 1221.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1049.96, + "y": 1230.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1033.52, + "y": 1228.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1018.7, + "y": 1219.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 999.04, + "y": 1202.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 968.92, + "y": 1216.49, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": 985.02, + "y": 1170.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1002.45, + "y": 1148.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1015.05, + "y": 1142.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 990.64, + "y": 1131.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1016.49, + "y": 1090.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1033.79, + "y": 1089.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1050.5, + "y": 1106.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1069.99, + "y": 1121.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1076.71, + "y": 1130.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1092.11, + "y": 1124.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1100.0, + "y": 1116.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1116.85, + "y": 1098.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1135.64, + "y": 1107.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1167.8, + "y": 1106.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1188.16, + "y": 1128.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1204.78, + "y": 1137.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1224.14, + "y": 1142.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1238.14, + "y": 1158.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 1249.01, + "y": 1178.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1216.07, + "y": 1168.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 1205.26, + "y": 1161.14, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 1184.04, + "y": 1177.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 1182.91, + "y": 1193.21, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 1169.7, + "y": 1216.05, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 1191.28, + "y": 1225.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 1203.44, + "y": 1231.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 1207.58, + "y": 1257.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 1213.08, + "y": 1272.84, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 41, + "x": 1238.25, + "y": 1271.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 1251.99, + "y": 1262.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 1273.0, + "y": 1263.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 1289.09, + "y": 1243.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 1323.01, + "y": 1241.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 1333.3, + "y": 1251.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 1343.69, + "y": 1244.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 1346.22, + "y": 1240.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 1350.77, + "y": 1234.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 1341.19, + "y": 1230.84, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 1332.1, + "y": 1226.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": 1315.56, + "y": 1234.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": 1316.47, + "y": 1250.43, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 54, + "x": 1316.76, + "y": 1264.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 55, + "x": 1287.83, + "y": 1273.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 56, + "x": 1299.73, + "y": 1281.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 57, + "x": 1314.31, + "y": 1293.1, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 58, + "x": 1320.23, + "y": 1298.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B35-璃月-绝云间1(收集650h,运行3.5h).json b/repo/pathing/薄荷/薄荷全收集/薄荷B35-璃月-绝云间1(收集650h,运行3.5h).json new file mode 100644 index 00000000..c3dfca19 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B35-璃月-绝云间1(收集650h,运行3.5h).json @@ -0,0 +1,552 @@ +{ + "info": { + "name": "薄荷B35-璃月-绝云间1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 731.02, + "y": 1061.99, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 746.12, + "y": 1061.39, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 757.18, + "y": 1065.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 748.96, + "y": 1087.54, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 774.34, + "y": 1083.36, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 796.17, + "y": 1089.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 803.73, + "y": 1085.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 849.6, + "y": 1105.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 861.16, + "y": 1090.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 881.56, + "y": 1066.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 894.19, + "y": 1067.42, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 955.05, + "y": 1054.82, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 943.47, + "y": 1076.38, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 916.52, + "y": 1126.4, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 896.97, + "y": 1130.36, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 872.83, + "y": 1128.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 17, + "x": 730.28, + "y": 1062.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 18, + "x": 710.73, + "y": 1042.16, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 682.95, + "y": 1025.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 685.08, + "y": 1005.0, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 724.48, + "y": 1020.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 753.09, + "y": 1016.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 763.44, + "y": 1015.43, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 770.86, + "y": 1015.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 772.0, + "y": 976.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 772.53, + "y": 954.75, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 767.51, + "y": 935.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 762.36, + "y": 912.64, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 729.08, + "y": 920.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 707.41, + "y": 919.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 687.3, + "y": 920.42, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 670.15, + "y": 882.27, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": 638.52, + "y": 867.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": 624.72, + "y": 861.33, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": 617.9, + "y": 831.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": 619.79, + "y": 809.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": 588.32, + "y": 790.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": 547.7, + "y": 797.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 39, + "x": 526.67, + "y": 794.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 540.85, + "y": 794.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 556.46, + "y": 800.44, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 42, + "x": 602.42, + "y": 804.38, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 43, + "x": 620.96, + "y": 781.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 44, + "x": 624.46, + "y": 767.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 45, + "x": 634.53, + "y": 743.42, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 46, + "x": 700.98, + "y": 721.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 47, + "x": 718.23, + "y": 737.06, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 48, + "x": 726.27, + "y": 742.57, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 49, + "x": 752.81, + "y": 745.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 50, + "x": 762.67, + "y": 733.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 51, + "x": 765.73, + "y": 720.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 52, + "x": 784.46, + "y": 734.18, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 53, + "x": 781.43, + "y": 751.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 54, + "x": 771.96, + "y": 756.75, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 55, + "x": 762.29, + "y": 762.15, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 56, + "x": 752.81, + "y": 775.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 57, + "x": 724.66, + "y": 783.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 58, + "x": 712.69, + "y": 801.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 59, + "x": 710.37, + "y": 808.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 60, + "x": 705.5, + "y": 827.18, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B36-璃月-绝云间2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B36-璃月-绝云间2.json new file mode 100644 index 00000000..5b7e5941 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B36-璃月-绝云间2.json @@ -0,0 +1,399 @@ +{ + "info": { + "name": "薄荷B36-璃月-绝云间2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1045.54, + "y": 950.35, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 1020.74, + "y": 982.0, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "", + "locked": false + }, + { + "id": 3, + "x": 1037.2, + "y": 977.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 4, + "x": 1059.47, + "y": 982.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 5, + "x": 1077.39, + "y": 983.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 6, + "x": 1097.36, + "y": 999.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": 1084.16, + "y": 1004.19, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 8, + "x": 1045.54, + "y": 950.35, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 9, + "x": 1020.02, + "y": 933.61, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1011.35, + "y": 916.19, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 996.02, + "y": 925.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 985.85, + "y": 931.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 954.12, + "y": 951.92, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 946.1, + "y": 951.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 926.41, + "y": 941.83, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 16, + "x": 1045.54, + "y": 950.35, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 17, + "x": 988.02, + "y": 921.27, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 968.58, + "y": 865.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 967.23, + "y": 852.45, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 966.6, + "y": 828.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 985.74, + "y": 830.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 997.76, + "y": 829.1, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1005.69, + "y": 823.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1019.83, + "y": 812.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1014.89, + "y": 809.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1007.97, + "y": 804.92, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 989.65, + "y": 802.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 978.43, + "y": 800.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 950.84, + "y": 785.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 928.33, + "y": 779.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 927.44, + "y": 754.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 935.53, + "y": 725.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 973.07, + "y": 710.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 991.49, + "y": 704.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 1007.23, + "y": 701.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 985.81, + "y": 705.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 978.34, + "y": 707.38, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 923.91, + "y": 733.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 892.98, + "y": 764.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 886.73, + "y": 769.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 860.44, + "y": 792.48, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 852.45, + "y": 791.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B37-璃月-绝云间3.json b/repo/pathing/薄荷/薄荷全收集/薄荷B37-璃月-绝云间3.json new file mode 100644 index 00000000..5eeb1e7e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B37-璃月-绝云间3.json @@ -0,0 +1,237 @@ +{ + "info": { + "name": "薄荷B37-璃月-绝云间3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1451.49, + "y": 1028.53, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1439.6, + "y": 1027.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1433.33, + "y": 1026.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1425.35, + "y": 1032.75, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1420.44, + "y": 1030.01, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1417.32, + "y": 1018.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1408.52, + "y": 1020.42, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1403.36, + "y": 1025.95, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1386.41, + "y": 1033.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1360.74, + "y": 1037.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1347.2, + "y": 1045.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1315.02, + "y": 1013.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1291.5, + "y": 977.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1290.59, + "y": 977.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1252.09, + "y": 997.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1239.69, + "y": 960.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1214.44, + "y": 958.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1198.54, + "y": 945.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1194.02, + "y": 954.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1186.34, + "y": 930.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1162.86, + "y": 904.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1171.51, + "y": 855.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1159.14, + "y": 805.14, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 24, + "x": 1177.59, + "y": 821.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1196.39, + "y": 839.09, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B38-璃月-绝云间4.json b/repo/pathing/薄荷/薄荷全收集/薄荷B38-璃月-绝云间4.json new file mode 100644 index 00000000..2d7f8040 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B38-璃月-绝云间4.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "薄荷B38-璃月-绝云间4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1182.71, + "y": 626.08, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1174.52, + "y": 634.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1124.11, + "y": 641.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1112.08, + "y": 653.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1098.67, + "y": 673.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1094.26, + "y": 700.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1086.92, + "y": 719.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1086.15, + "y": 722.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B39-璃月-庆云顶.json b/repo/pathing/薄荷/薄荷全收集/薄荷B39-璃月-庆云顶.json new file mode 100644 index 00000000..e70353d3 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B39-璃月-庆云顶.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "薄荷B39-璃月-庆云顶", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1451.49, + "y": 1028.62, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1495.26, + "y": 1039.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1525.02, + "y": 1025.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1538.8, + "y": 1017.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1543.97, + "y": 966.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1550.75, + "y": 949.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1550.76, + "y": 912.95, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1433.42, + "y": 837.08, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1425.15, + "y": 922.11, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 10, + "x": 1440.7, + "y": 948.49, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 1444.15, + "y": 956.84, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1474.57, + "y": 763.61, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1563.77, + "y": 760.12, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": 1529.58, + "y": 836.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1535.48, + "y": 847.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1544.21, + "y": 852.62, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1474.56, + "y": 763.63, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1356.29, + "y": 826.42, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": 1268.46, + "y": 812.92, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 20, + "x": 1267.83, + "y": 803.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B40-璃月-琥牢山1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B40-璃月-琥牢山1.json new file mode 100644 index 00000000..36cdc1cb --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B40-璃月-琥牢山1.json @@ -0,0 +1,237 @@ +{ + "info": { + "name": "薄荷B40-璃月-琥牢山1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1794.22, + "y": 717.46, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1802.2, + "y": 736.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1870.43, + "y": 799.75, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 1896.43, + "y": 837.49, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 1890.08, + "y": 876.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1862.56, + "y": 890.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1840.33, + "y": 867.76, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1794.22, + "y": 717.46, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1735.17, + "y": 769.64, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 10, + "x": 1759.62, + "y": 760.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1735.92, + "y": 739.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1737.3, + "y": 723.33, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": 1704.5, + "y": 712.8, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": 1686.0, + "y": 686.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1677.13, + "y": 671.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1646.04, + "y": 668.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1611.83, + "y": 655.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1602.42, + "y": 653.08, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": 1617.25, + "y": 627.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1675.52, + "y": 589.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1688.95, + "y": 624.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1746.12, + "y": 636.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1757.62, + "y": 634.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1773.13, + "y": 627.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1780.09, + "y": 649.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B41-璃月-琥牢山2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B41-璃月-琥牢山2.json new file mode 100644 index 00000000..b4b4b276 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B41-璃月-琥牢山2.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "薄荷B41-璃月-琥牢山2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1794.21, + "y": 717.48, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1803.2, + "y": 699.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1826.78, + "y": 652.98, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1857.77, + "y": 597.39, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 1845.05, + "y": 558.37, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1834.0, + "y": 537.44, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": 1868.5, + "y": 486.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1887.95, + "y": 470.16, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": 1897.6, + "y": 462.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1906.88, + "y": 453.68, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 1902.04, + "y": 429.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1849.22, + "y": 443.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1825.97, + "y": 465.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1798.52, + "y": 475.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1747.43, + "y": 501.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1738.42, + "y": 506.03, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 17, + "x": 1731.75, + "y": 499.54, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B42-璃月-南天门(收集700).json b/repo/pathing/薄荷/薄荷全收集/薄荷B42-璃月-南天门(收集700).json new file mode 100644 index 00000000..f4613496 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B42-璃月-南天门(收集700).json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "薄荷B42-璃月-南天门", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1665.88, + "y": 386.57, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1659.75, + "y": 374.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1647.99, + "y": 365.52, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1637.62, + "y": 351.15, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1632.29, + "y": 347.53, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1627.41, + "y": 347.62, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1627.29, + "y": 358.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1612.5, + "y": 329.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1629.88, + "y": 276.65, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 10, + "x": 1668.77, + "y": 284.91, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1703.24, + "y": 275.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1700.68, + "y": 316.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1696.02, + "y": 346.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1713.06, + "y": 367.23, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1715.54, + "y": 391.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1725.52, + "y": 408.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B43-璃月-采樵谷1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B43-璃月-采樵谷1.json new file mode 100644 index 00000000..b6c8d166 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B43-璃月-采樵谷1.json @@ -0,0 +1,849 @@ +{ + "info": { + "name": "薄荷B43-璃月-采樵谷1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1268.36, + "y": -64.16, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1287.24, + "y": -81.9, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1292.1, + "y": -78.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1321.36, + "y": -102.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1378.92, + "y": -84.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1392.55, + "y": -81.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1412.98, + "y": -64.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1424.25, + "y": -59.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1457.01, + "y": -75.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1474.02, + "y": -51.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1475.7, + "y": -21.3, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1472.04, + "y": -10.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1450.74, + "y": 9.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1494.68, + "y": 8.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1521.59, + "y": -2.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1527.66, + "y": -6.94, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1537.07, + "y": -12.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1559.36, + "y": -27.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1571.78, + "y": -29.57, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1606.82, + "y": -20.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1644.73, + "y": -41.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1652.79, + "y": -42.07, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1669.64, + "y": -15.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1660.57, + "y": -11.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1653.19, + "y": -5.75, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 26, + "x": 1676.66, + "y": 24.04, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1706.82, + "y": 21.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1730.36, + "y": 13.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1747.36, + "y": 15.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1765.17, + "y": 47.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 1783.08, + "y": 47.38, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1784.82, + "y": 27.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 1816.87, + "y": 38.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 1827.92, + "y": 44.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 1832.91, + "y": 49.09, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 1866.52, + "y": 68.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 1828.79, + "y": 92.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 1831.76, + "y": 99.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 1832.05, + "y": 134.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 1830.36, + "y": 153.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 1861.17, + "y": 175.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 1860.94, + "y": 196.82, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 1881.3, + "y": 228.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 1890.26, + "y": 247.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 1897.28, + "y": 249.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 1916.04, + "y": 242.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 1922.39, + "y": 234.96, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 1929.3, + "y": 227.35, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 1960.02, + "y": 238.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 1969.45, + "y": 242.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 1979.84, + "y": 234.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": 1996.62, + "y": 200.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": 2012.49, + "y": 191.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 54, + "x": 1986.45, + "y": 222.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 55, + "x": 1967.46, + "y": 262.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 56, + "x": 1954.94, + "y": 289.58, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 57, + "x": 1938.39, + "y": 338.58, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 58, + "x": 1932.27, + "y": 372.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 59, + "x": 1903.21, + "y": 351.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 60, + "x": 1895.61, + "y": 329.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 61, + "x": 1879.59, + "y": 345.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 62, + "x": 1861.73, + "y": 354.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 63, + "x": 1850.96, + "y": 358.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 64, + "x": 1834.21, + "y": 361.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 65, + "x": 1816.2, + "y": 332.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 66, + "x": 1831.23, + "y": 277.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 67, + "x": 1840.82, + "y": 262.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 68, + "x": 1815.92, + "y": 247.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 69, + "x": 1796.81, + "y": 219.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 70, + "x": 1788.98, + "y": 226.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 71, + "x": 1766.73, + "y": 281.69, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 72, + "x": 1749.18, + "y": 220.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 73, + "x": 1763.26, + "y": 183.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 74, + "x": 1767.52, + "y": 154.15, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 75, + "x": 1732.98, + "y": 166.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 76, + "x": 1721.7, + "y": 175.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 77, + "x": 1686.0, + "y": 175.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 78, + "x": 1673.42, + "y": 175.18, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 79, + "x": 1666.39, + "y": 175.23, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 80, + "x": 1651.09, + "y": 191.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 81, + "x": 1636.27, + "y": 169.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 82, + "x": 1658.72, + "y": 136.3, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 83, + "x": 1683.51, + "y": 140.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 84, + "x": 1687.73, + "y": 142.05, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 85, + "x": 1690.03, + "y": 131.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 86, + "x": 1692.15, + "y": 118.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 87, + "x": 1697.31, + "y": 103.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 88, + "x": 1662.46, + "y": 106.46, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 89, + "x": 1640.51, + "y": 123.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 90, + "x": 1632.1, + "y": 128.75, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 91, + "x": 1608.13, + "y": 134.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 92, + "x": 1576.3, + "y": 132.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 93, + "x": 1563.44, + "y": 79.55, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B44-璃月-采樵谷2(收集750).json b/repo/pathing/薄荷/薄荷全收集/薄荷B44-璃月-采樵谷2(收集750).json new file mode 100644 index 00000000..fa39e0df --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B44-璃月-采樵谷2(收集750).json @@ -0,0 +1,516 @@ +{ + "info": { + "name": "薄荷B44-璃月-采樵谷2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1656.71, + "y": -284.21, + "action_params": "" + }, + { + "id": 2, + "x": 1682.67, + "y": -270.18, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 1664.11, + "y": -246.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1671.99, + "y": -213.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1697.74, + "y": -190.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1723.22, + "y": -182.0, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1722.2, + "y": -195.64, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1725.6, + "y": -214.31, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1734.49, + "y": -243.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1758.81, + "y": -229.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1783.65, + "y": -217.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1794.47, + "y": -212.55, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1800.5, + "y": -218.66, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1811.72, + "y": -241.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1851.29, + "y": -262.18, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1878.11, + "y": -253.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1914.62, + "y": -235.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1943.77, + "y": -231.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1954.59, + "y": -254.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1970.81, + "y": -238.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1966.85, + "y": -224.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1960.55, + "y": -209.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1954.56, + "y": -183.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1945.03, + "y": -172.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1933.22, + "y": -111.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1945.83, + "y": -91.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1949.67, + "y": -85.83, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1960.99, + "y": -82.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1981.93, + "y": -60.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1989.19, + "y": -53.72, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 1976.61, + "y": -37.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1957.48, + "y": -13.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 1938.27, + "y": -5.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 1861.33, + "y": -56.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 1806.44, + "y": -38.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 1785.66, + "y": -56.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 1798.14, + "y": -87.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 1817.47, + "y": -109.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 1797.67, + "y": -88.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 1777.48, + "y": -76.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 1744.96, + "y": -91.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 1688.07, + "y": -62.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 1649.11, + "y": -74.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 1613.93, + "y": -77.48, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 1571.88, + "y": -94.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 1597.13, + "y": -132.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 1631.1, + "y": -156.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 1640.2, + "y": -171.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 1651.46, + "y": -156.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 1652.02, + "y": -153.58, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 1651.13, + "y": -144.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": 1658.61, + "y": -156.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": 1666.74, + "y": -193.72, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 54, + "x": 1630.48, + "y": -200.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 55, + "x": 1607.92, + "y": -192.83, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 56, + "x": 1603.53, + "y": -186.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B45-沉玉谷-翘英庄1(运行4h).json b/repo/pathing/薄荷/薄荷全收集/薄荷B45-沉玉谷-翘英庄1(运行4h).json new file mode 100644 index 00000000..142d5d08 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B45-沉玉谷-翘英庄1(运行4h).json @@ -0,0 +1,246 @@ +{ + "info": { + "name": "薄荷B45-沉玉谷-翘英庄1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1114.8125, + "y": 1947.99169921875, + "action_params": "" + }, + { + "id": 2, + "x": 1140.1865234375, + "y": 1928.7890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1173.791015625, + "y": 1920.03662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1204.185546875, + "y": 1907.35009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1229.98828125, + "y": 1896.10546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1244.8974609375, + "y": 1883.3486328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1270.064453125, + "y": 1861.0908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1283.53515625, + "y": 1856.50244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1304.4677734375, + "y": 1857.4580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1314.9853515625, + "y": 1845.67041015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1323.0166015625, + "y": 1813.4140625, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1307.9521484375, + "y": 1803.0927734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1278.90625, + "y": 1796.625, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1262.8837890625, + "y": 1807.78466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1233.958984375, + "y": 1815.60302734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1218.9931640625, + "y": 1819.255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1204.13671875, + "y": 1802.96923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1182.927734375, + "y": 1786.55322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1175.1572265625, + "y": 1797.05712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1147.0205078125, + "y": 1766.14208984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1152.744140625, + "y": 1732.56396484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1136.3662109375, + "y": 1722.046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1169.6728515625, + "y": 1713.474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1178.80078125, + "y": 1708.20703125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1193.3203125, + "y": 1712.5576171875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1204.65234375, + "y": 1756.23681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B46-沉玉谷-翘英庄2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B46-沉玉谷-翘英庄2.json new file mode 100644 index 00000000..c684f8c7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B46-沉玉谷-翘英庄2.json @@ -0,0 +1,301 @@ +{ + "info": { + "name": "薄荷B46-沉玉谷-翘英庄2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1468.048828125, + "y": 1998.0146484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1460.8037109375, + "y": 1996.8779296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1444.79296875, + "y": 1998.1787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1406.7265625, + "y": 1942.744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1396.01171875, + "y": 1928.0927734375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1468.1396484375, + "y": 1998.0126953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": 1461.5146484375, + "y": 2009.38525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1460.3271484375, + "y": 2031.3720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1473.1611328125, + "y": 2066.05029296875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1468.1396484375, + "y": 1998.0126953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1490.25390625, + "y": 1981.64111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1506.412109375, + "y": 2004.29931640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1563.59765625, + "y": 2018.41650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1595.76953125, + "y": 2033.3427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1601.716796875, + "y": 2056.943359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1629.234375, + "y": 2043.95556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1667.6875, + "y": 2030.82666015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1677.8623046875, + "y": 2020.14453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1691.5537109375, + "y": 2010.38525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1707.083984375, + "y": 1999.3701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1716.4443359375, + "y": 1978.11767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1729.4775390625, + "y": 1993.26611328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1738.3046875, + "y": 2003.29150390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1748.5859375, + "y": 2017.798828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1761.6689453125, + "y": 2019.5146484375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1794.53125, + "y": 2021.74658203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1810.48828125, + "y": 2027.57080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1832.833984375, + "y": 2013.025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1851.2607421875, + "y": 2018.64404296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1861.7119140625, + "y": 2001.40673828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 1882.033203125, + "y": 1995.15087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1908.8935546875, + "y": 1981.09326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B47-沉玉谷-翘英庄3.json b/repo/pathing/薄荷/薄荷全收集/薄荷B47-沉玉谷-翘英庄3.json new file mode 100644 index 00000000..9be427bf --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B47-沉玉谷-翘英庄3.json @@ -0,0 +1,318 @@ +{ + "info": { + "name": "薄荷B47-沉玉谷-翘英庄3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1545.173828125, + "y": 2246.093505859375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1521.697265625, + "y": 2248.159423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1511.95703125, + "y": 2243.196044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1508.205078125, + "y": 2230.4423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1513.3876953125, + "y": 2210.77197265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1524.0361328125, + "y": 2192.158935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1535.533203125, + "y": 2175.148681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1542.9755859375, + "y": 2165.05517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1555.6865234375, + "y": 2164.552734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1579.77734375, + "y": 2155.86572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1597.7236328125, + "y": 2153.119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1616.9345703125, + "y": 2150.4150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1631.6953125, + "y": 2152.15478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1634.7509765625, + "y": 2152.328369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1642.0244140625, + "y": 2163.75341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1647.84375, + "y": 2174.230712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1656.853515625, + "y": 2184.549072265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1668.7373046875, + "y": 2189.359619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1746.6796875, + "y": 2325.12646484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1731.15625, + "y": 2358.90478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1716.58984375, + "y": 2363.7236328125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1701.0751953125, + "y": 2361.704833984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 23, + "x": 1703.587890625, + "y": 2357.52294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1701.7255859375, + "y": 2345.84716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1704.5546875, + "y": 2328.7734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1696.1943359375, + "y": 2304.34716796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 27, + "x": 1686.1982421875, + "y": 2303.55419921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1665.578125, + "y": 2316.900146484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1644.8427734375, + "y": 2319.8818359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 1618.0634765625, + "y": 2299.948974609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 31, + "x": 1613.392578125, + "y": 2285.31787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 1574.0361328125, + "y": 2295.882080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 1553.05859375, + "y": 2303.72412109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 1524.4169921875, + "y": 2334.1025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B48-沉玉谷-灵濛山1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B48-沉玉谷-灵濛山1.json new file mode 100644 index 00000000..e61ac06a --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B48-沉玉谷-灵濛山1.json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "薄荷B48-沉玉谷-灵濛山1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1725.400390625, + "y": 2114.990478515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1747.8642578125, + "y": 2116.066162109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1732.94140625, + "y": 2135.786376953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1725.3505859375, + "y": 2137.95654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1757.2021484375, + "y": 2152.632080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1788.5390625, + "y": 2161.09033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1798.419921875, + "y": 2164.77685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1801.521484375, + "y": 2170.732666015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1786.2314453125, + "y": 2150.589111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1797.4013671875, + "y": 2142.334228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1804.673828125, + "y": 2130.55859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1813.720703125, + "y": 2103.85498046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1816.9091796875, + "y": 2098.01416015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1827.0029296875, + "y": 2090.765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1836.09765625, + "y": 2075.7880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1834.3720703125, + "y": 2084.84765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1837.9033203125, + "y": 2097.8818359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1852.515625, + "y": 2105.214111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1886.1494140625, + "y": 2100.310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1908.498046875, + "y": 2130.075439453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1923.03125, + "y": 2132.1279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1927.3896484375, + "y": 2142.68359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1921.1875, + "y": 2150.441162109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1886.787109375, + "y": 2175.110595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1855.025390625, + "y": 2172.7373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1903.3984375, + "y": 2200.35546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1911.6455078125, + "y": 2228.73681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1946.87109375, + "y": 2251.716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2015.1630859375, + "y": 2238.742919921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2025.4775390625, + "y": 2253.782470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B49-沉玉谷-灵濛山2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B49-沉玉谷-灵濛山2.json new file mode 100644 index 00000000..bbca482a --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B49-沉玉谷-灵濛山2.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "薄荷B49-沉玉谷-灵濛山2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1977.2587890625, + "y": 2341.04248046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1972.23046875, + "y": 2341.520263671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1901.7890625, + "y": 2371.29150390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 1897.8447265625, + "y": 2373.313232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2191.552734375, + "y": 2110.82421875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2207.021484375, + "y": 2135.985107421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2238.3544921875, + "y": 2207.077392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2220.0830078125, + "y": 2238.07958984375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 9, + "x": 2228.2001953125, + "y": 2231.68359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2191.576171875, + "y": 2110.8291015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2167.4404296875, + "y": 2104.309814453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2133.8896484375, + "y": 2100.822021484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2112.416015625, + "y": 2079.4560546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2104.4833984375, + "y": 2062.461669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2089.6591796875, + "y": 2031.19482421875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2096.61328125, + "y": 1983.81787109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 17, + "x": 2100.029296875, + "y": 1983.5576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B50-沉玉谷-药蝶谷(收集800).json b/repo/pathing/薄荷/薄荷全收集/薄荷B50-沉玉谷-药蝶谷(收集800).json new file mode 100644 index 00000000..c0409619 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B50-沉玉谷-药蝶谷(收集800).json @@ -0,0 +1,507 @@ +{ + "info": { + "name": "薄荷B50-沉玉谷-药蝶谷", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1689.419921875, + "y": 1652.70166015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 1678.98828125, + "y": 1644.3427734375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 1681.7509765625, + "y": 1628.7568359375, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 1681.314453125, + "y": 1608.8056640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 1682.1025390625, + "y": 1585.35009765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 1687.0068359375, + "y": 1581.33349609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 1688.8251953125, + "y": 1573.5390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 1688.5400390625, + "y": 1559.79150390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1675.8662109375, + "y": 1556.3330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1680.548828125, + "y": 1547.60107421875, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1678.189453125, + "y": 1535.3564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1706.57421875, + "y": 1540.70166015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 1710.232421875, + "y": 1537.93994140625, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 1715.830078125, + "y": 1534.29541015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 1721.7646484375, + "y": 1529.34521484375, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 1730.1650390625, + "y": 1533.009765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 1725.5263671875, + "y": 1491.2294921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 1732.2373046875, + "y": 1471.2373046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 1707.3349609375, + "y": 1437.87841796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 1689.5390625, + "y": 1443.86669921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 1687.06640625, + "y": 1442.36279296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 1657.548828125, + "y": 1450.93505859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 1613.1298828125, + "y": 1458.83154296875, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 1571.3974609375, + "y": 1466.71484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 1549.9482421875, + "y": 1471.23486328125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 1551.220703125, + "y": 1497.556640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 1551.6962890625, + "y": 1525.28515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 1553.7900390625, + "y": 1552.6826171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 1556.4150390625, + "y": 1589.69091796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 1585.2314453125, + "y": 1644.03662109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 1585.443359375, + "y": 1670.80029296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": 1589.5849609375, + "y": 1677.1865234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": 1587.439453125, + "y": 1669.74267578125, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": 1582.7744140625, + "y": 1640.82421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": 1541.8720703125, + "y": 1611.10888671875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": 1500.095703125, + "y": 1627.15234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": 1490.07421875, + "y": 1612.64892578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": 1496.271484375, + "y": 1654.427734375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 39, + "x": 1488.0244140625, + "y": 1683.00390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 40, + "x": 1455.81640625, + "y": 1707.34130859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 41, + "x": 1452.923828125, + "y": 1714.91455078125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 42, + "x": 1499.7001953125, + "y": 1742.4365234375, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 43, + "x": 1537.279296875, + "y": 1773.39501953125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 44, + "x": 1540.71875, + "y": 1803.78125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 45, + "x": 1558.6416015625, + "y": 1730.23828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 46, + "x": 1548.0224609375, + "y": 1732.50439453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 47, + "x": 1477.3095703125, + "y": 1725.5947265625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 48, + "x": 1488.7490234375, + "y": 1723.63134765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 49, + "x": 1507.9072265625, + "y": 1729.99072265625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 50, + "x": 1525.625, + "y": 1723.09716796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 51, + "x": 1535.4326171875, + "y": 1716.84326171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 52, + "x": 1542.5517578125, + "y": 1707.95849609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 53, + "x": 1549.408203125, + "y": 1707.978515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 54, + "x": 1560.1865234375, + "y": 1712.72314453125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 55, + "x": 1565.107421875, + "y": 1711.8818359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B51-沉玉谷-古茶树坡.json b/repo/pathing/薄荷/薄荷全收集/薄荷B51-沉玉谷-古茶树坡.json new file mode 100644 index 00000000..8ec58400 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B51-沉玉谷-古茶树坡.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷B51-沉玉谷-古茶树坡", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1691.3251953125, + "y": 1829.2763671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 1676.58203125, + "y": 1798.271484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 1701.326171875, + "y": 1798.77587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 1711.5283203125, + "y": 1795.85791015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 1713.560546875, + "y": 1768.9814453125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 1708.2822265625, + "y": 1735.642578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 1724.9072265625, + "y": 1733.99609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 1779.4619140625, + "y": 1744.65576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 1806.978515625, + "y": 1743.80615234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 1822.4306640625, + "y": 1724.283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1848.4345703125, + "y": 1733.58349609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1853.9501953125, + "y": 1751.5673828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1847.5126953125, + "y": 1766.83251953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1829.5986328125, + "y": 1765.373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1813.5068359375, + "y": 1768.49951171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1804.396484375, + "y": 1820.31640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1768.0732421875, + "y": 1841.98779296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1759.669921875, + "y": 1842.2529296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1752.8486328125, + "y": 1843.00732421875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1763.650390625, + "y": 1868.7890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1781.173828125, + "y": 1883.6591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 1722.2392578125, + "y": 1881.93017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 1697.177734375, + "y": 1904.87255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1664.8359375, + "y": 1911.44873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 1649.4765625, + "y": 1913.2646484375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1616.8955078125, + "y": 1917.3447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1587.6435546875, + "y": 1881.70654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 1552.34765625, + "y": 1867.26611328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 1539.4384765625, + "y": 1856.26806640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B52-沉玉谷-赤璋城垣1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B52-沉玉谷-赤璋城垣1.json new file mode 100644 index 00000000..7813f585 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B52-沉玉谷-赤璋城垣1.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷B52-沉玉谷-赤璋城垣1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2066.1591796875, + "y": 1484.69873046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2073.9384765625, + "y": 1496.3681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2088.4716796875, + "y": 1513.37841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2053.880859375, + "y": 1538.974609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2048.6279296875, + "y": 1544.30029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2039.267578125, + "y": 1543.1337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2034.82421875, + "y": 1528.35986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2040.6044921875, + "y": 1502.375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2036.9345703125, + "y": 1489.2177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2030.263671875, + "y": 1455.24169921875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 1863.6025390625, + "y": 1590.97412109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 1854.3125, + "y": 1606.4892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 1879.5673828125, + "y": 1615.26953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 1885.6298828125, + "y": 1568.453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 1907.1826171875, + "y": 1526.8046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 1916.88671875, + "y": 1520.21826171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 1904.3818359375, + "y": 1501.63720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 1879.51953125, + "y": 1479.203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 1885.2841796875, + "y": 1437.78173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 1905.0302734375, + "y": 1410.41015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 1933.34765625, + "y": 1377.603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B53-沉玉谷-赤璋城垣2.json b/repo/pathing/薄荷/薄荷全收集/薄荷B53-沉玉谷-赤璋城垣2.json new file mode 100644 index 00000000..b751e6f1 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B53-沉玉谷-赤璋城垣2.json @@ -0,0 +1,220 @@ +{ + "info": { + "name": "薄荷B53-沉玉谷-赤璋城垣2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2323.8623046875, + "y": 1605.01416015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 2274.3974609375, + "y": 1602.42626953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2244.703125, + "y": 1590.73291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2235.3095703125, + "y": 1589.7900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2226.7333984375, + "y": 1589.48486328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2220.2822265625, + "y": 1587.00244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2222.9326171875, + "y": 1560.80859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2214.8740234375, + "y": 1541.89013671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2323.8623046875, + "y": 1605.01416015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2331.935546875, + "y": 1599.181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2358.724609375, + "y": 1563.43896484375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2344.1337890625, + "y": 1541.0244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2355.123046875, + "y": 1527.947265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2375.740234375, + "y": 1520.373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2364.673828125, + "y": 1492.99169921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2363.791015625, + "y": 1476.3876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2410.828125, + "y": 1441.30810546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1800" + }, + { + "id": 18, + "x": 2401.3681640625, + "y": 1414.748046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2384.55078125, + "y": 1400.10498046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2350.0576171875, + "y": 1381.81787109375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2336.919921875, + "y": 1387.990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2318.31640625, + "y": 1410.25634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2316.3896484375, + "y": 1419.04052734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B54-沉玉谷-赤璋城垣3(运行4.5h).json b/repo/pathing/薄荷/薄荷全收集/薄荷B54-沉玉谷-赤璋城垣3(运行4.5h).json new file mode 100644 index 00000000..fe96b914 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B54-沉玉谷-赤璋城垣3(运行4.5h).json @@ -0,0 +1,471 @@ +{ + "info": { + "name": "薄荷B54-沉玉谷-赤璋城垣3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2207.12890625, + "y": 1253.1572265625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2212.6591796875, + "y": 1229.44775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2229.2880859375, + "y": 1198.62939453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2245.2578125, + "y": 1188.37841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2262.646484375, + "y": 1176.853515625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "j,wait(0.1)" + }, + { + "id": 6, + "x": 2292.52734375, + "y": 1205.46630859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": 2305.337890625, + "y": 1164.1962890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 2328.5263671875, + "y": 1176.29833984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": 2342.763671875, + "y": 1194.560546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2341.0771484375, + "y": 1213.90380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2303.0751953125, + "y": 1251.7890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2294.546875, + "y": 1269.5712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2311.5078125, + "y": 1246.58935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2344.02734375, + "y": 1213.54345703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2361.5869140625, + "y": 1205.87548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2360.490234375, + "y": 1181.27392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2360.2587890625, + "y": 1164.0556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2361.59375, + "y": 1120.31298828125, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2362.955078125, + "y": 1103.08837890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2363.501953125, + "y": 1094.37548828125, + "type": "target", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2207.056640625, + "y": 1253.21484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2183.9775390625, + "y": 1231.94873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2137.1435546875, + "y": 1227.1630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 2104.18359375, + "y": 1230.56787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2096.1298828125, + "y": 1228.84130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2125.8408203125, + "y": 1219.2119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2143.283203125, + "y": 1213.640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2154.08203125, + "y": 1198.17431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2176.6689453125, + "y": 1150.31298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2190.9287109375, + "y": 1108.505859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 2198.859375, + "y": 1063.50634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 2172.16015625, + "y": 1050.90576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 2178.59765625, + "y": 1033.18017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 2185.21875, + "y": 1003.7109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 2184.7763671875, + "y": 985.48046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 2152.1748046875, + "y": 980.86474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 2122.9697265625, + "y": 953.09619140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 2111.46875, + "y": 943.513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 2087.677734375, + "y": 928.05126953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 2081.97265625, + "y": 923.3115234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 2072.169921875, + "y": 931.82470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 2065.443359375, + "y": 937.5810546875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 2058.4453125, + "y": 935.580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 2051.8486328125, + "y": 923.544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 2025.654296875, + "y": 931.916015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 1999.1884765625, + "y": 928.7001953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 47, + "x": 2013.97265625, + "y": 932.3837890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 2024.7119140625, + "y": 959.53759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 2013.298828125, + "y": 1009.9189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 1999.6357421875, + "y": 1035.45458984375, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 1998.4453125, + "y": 1036.96435546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B55-沉玉谷-悬练山(收集850).json b/repo/pathing/薄荷/薄荷全收集/薄荷B55-沉玉谷-悬练山(收集850).json new file mode 100644 index 00000000..02f9587c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B55-沉玉谷-悬练山(收集850).json @@ -0,0 +1,255 @@ +{ + "info": { + "name": "薄荷B55-沉玉谷-悬练山", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 1904.513671875, + "y": 1196.8974609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 1907.9228515625, + "y": 1211.39892578125, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 1926.5185546875, + "y": 1243.53759765625, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "2200", + "type": "path" + }, + { + "id": 4, + "x": 1933.8203125, + "y": 1265.6123046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 1904.185546875, + "y": 1307.14453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 1862.7646484375, + "y": 1303.7841796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 1861.71875, + "y": 1316.32666015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 1847.5537109375, + "y": 1333.36865234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 1829.7744140625, + "y": 1342.2646484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 1802.673828125, + "y": 1347.31103515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 1779.328125, + "y": 1335.48681640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 1757.955078125, + "y": 1330.98486328125, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 1733.94921875, + "y": 1313.876953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 1723.482421875, + "y": 1289.8798828125, + "action": "", + "move_mode": "run", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 1718.525390625, + "y": 1274.9384765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 1708.6650390625, + "y": 1269.33203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 1707.3076171875, + "y": 1259.9814453125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 1707.2958984375, + "y": 1246.31103515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 1708.21484375, + "y": 1235.05224609375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 1703.1962890625, + "y": 1220.3154296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 1706.505859375, + "y": 1202.8251953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 1723.1328125, + "y": 1197.80712890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 23, + "x": 1904.4853515625, + "y": 1196.96142578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 1861.0322265625, + "y": 1188.21826171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3000" + }, + { + "id": 25, + "x": 1862.248046875, + "y": 1160.15869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 1887.166015625, + "y": 1112.369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 1919.3740234375, + "y": 1082.3759765625, + "type": "path", + "move_mode": "swim", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B56-沉玉谷-遗珑埠.json b/repo/pathing/薄荷/薄荷全收集/薄荷B56-沉玉谷-遗珑埠.json new file mode 100644 index 00000000..966d414b --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B56-沉玉谷-遗珑埠.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "薄荷B56-沉玉谷-遗珑埠", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2145.6640625, + "y": 2412.943359375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2140.6533203125, + "y": 2419.8525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2142.4599609375, + "y": 2455.251220703125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2145.578125, + "y": 2476.467529296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 2143.4375, + "y": 2461.505859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2117.7626953125, + "y": 2447.118408203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2114.4482421875, + "y": 2466.866455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2108.62890625, + "y": 2471.459716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2115.13671875, + "y": 2487.358642578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2124.990234375, + "y": 2513.1533203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2139.412109375, + "y": 2506.49365234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2149.0390625, + "y": 2523.28076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2161.82421875, + "y": 2544.644775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2225.7783203125, + "y": 2533.686767578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 15, + "x": 2230.33984375, + "y": 2531.129150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B57-沉玉谷-暝垣山.json b/repo/pathing/薄荷/薄荷全收集/薄荷B57-沉玉谷-暝垣山.json new file mode 100644 index 00000000..b2600e41 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B57-沉玉谷-暝垣山.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "薄荷B57-沉玉谷-暝垣山", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2614.5107421875, + "y": 2375.412841796875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2657.87109375, + "y": 2362.294677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2737.900390625, + "y": 2357.708251953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3800" + }, + { + "id": 4, + "x": 2738.7587890625, + "y": 2352.693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2753.259765625, + "y": 2295.065185546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 6, + "x": 2753.232421875, + "y": 2291.9873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2615.03515625, + "y": 2375.6494140625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2646.345703125, + "y": 2387.564697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2644.890625, + "y": 2418.783203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2595.494140625, + "y": 2506.393310546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3000" + }, + { + "id": 11, + "x": 2585.2744140625, + "y": 2522.0361328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2619.5205078125, + "y": 2527.23046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2655.9873046875, + "y": 2527.945556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2622.4384765625, + "y": 2539.213623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2571.5810546875, + "y": 2570.54638671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2533.220703125, + "y": 2615.704833984375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2614.9873046875, + "y": 2375.628662109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2583.087890625, + "y": 2357.79541015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1800" + }, + { + "id": 19, + "x": 2528.623046875, + "y": 2330.101806640625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2509.8095703125, + "y": 2307.590087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2446.6494140625, + "y": 2245.314208984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "4000" + }, + { + "id": 22, + "x": 2450.1259765625, + "y": 2241.736083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B58-沉玉谷-宝玦口.json b/repo/pathing/薄荷/薄荷全收集/薄荷B58-沉玉谷-宝玦口.json new file mode 100644 index 00000000..4c4df65c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B58-沉玉谷-宝玦口.json @@ -0,0 +1,292 @@ +{ + "info": { + "name": "薄荷B58-沉玉谷-宝玦口", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2614.99609375, + "y": 2050.85595703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 2590.3212890625, + "y": 2049.962158203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2574.5244140625, + "y": 2036.62548828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 2570.541015625, + "y": 2032.62841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2614.99609375, + "y": 2050.85595703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2630.8720703125, + "y": 2035.98291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2718.58984375, + "y": 1988.30419921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 2720.0576171875, + "y": 1979.21826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2462.8125, + "y": 1801.62451171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2437.8359375, + "y": 1827.201171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1700" + }, + { + "id": 11, + "x": 2467.5771484375, + "y": 1865.283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2510.2724609375, + "y": 1861.046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2522.9033203125, + "y": 1866.322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2520.2412109375, + "y": 1869.40478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2466.4814453125, + "y": 1880.0146484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 16, + "x": 2453.8349609375, + "y": 1888.27490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2429.3583984375, + "y": 1893.5029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2435.619140625, + "y": 1909.7587890625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2462.6728515625, + "y": 1801.59765625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2458.765625, + "y": 1797.0087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2384.529296875, + "y": 1729.984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2357.6875, + "y": 1727.11962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2325.96484375, + "y": 1731.9130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 2321.6875, + "y": 1736.7998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2311.7529296875, + "y": 1752.43310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2300.560546875, + "y": 1760.24609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2282.91015625, + "y": 1767.57763671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2269.15234375, + "y": 1800.67236328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 29, + "x": 2281.3642578125, + "y": 1801.216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2338.626953125, + "y": 1780.171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 31, + "x": 2343.11328125, + "y": 1778.61962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B59-沉玉谷-赤望台1.json b/repo/pathing/薄荷/薄荷全收集/薄荷B59-沉玉谷-赤望台1.json new file mode 100644 index 00000000..a317800b --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B59-沉玉谷-赤望台1.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷B59-沉玉谷-赤望台1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2628.1103515625, + "y": 1528.55859375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2630.9580078125, + "y": 1535.16796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2644.1748046875, + "y": 1585.46728515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 2657.2568359375, + "y": 1596.37841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2662.455078125, + "y": 1617.85693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2668.3837890625, + "y": 1616.896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2647.1435546875, + "y": 1639.783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2636.9794921875, + "y": 1673.0595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2644.1611328125, + "y": 1684.24072265625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2628.1044921875, + "y": 1528.54296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2617.5732421875, + "y": 1499.36767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2627.609375, + "y": 1467.80908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2630.494140625, + "y": 1435.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2657.408203125, + "y": 1441.130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2686.9072265625, + "y": 1447.6357421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2660.70703125, + "y": 1440.34912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2645.125, + "y": 1439.02734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2627.921875, + "y": 1423.6162109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2620.4638671875, + "y": 1416.1025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2639.8232421875, + "y": 1400.6630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2645.869140625, + "y": 1396.28369140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2654.1572265625, + "y": 1388.69921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2619.6376953125, + "y": 1350.17333984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 24, + "x": 2612.755859375, + "y": 1350.75390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2596.9091796875, + "y": 1360.66455078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 26, + "x": 2597.9990234375, + "y": 1350.2255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2601.501953125, + "y": 1342.470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2609.6708984375, + "y": 1325.8583984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2618.546875, + "y": 1312.22119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B60-沉玉谷-赤望台2(收集900).json b/repo/pathing/薄荷/薄荷全收集/薄荷B60-沉玉谷-赤望台2(收集900).json new file mode 100644 index 00000000..2c04ca23 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B60-沉玉谷-赤望台2(收集900).json @@ -0,0 +1,399 @@ +{ + "info": { + "name": "薄荷B60-沉玉谷-赤望台2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2628.111328125, + "y": 1528.5341796875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2619.3994140625, + "y": 1533.56103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2590.5888671875, + "y": 1535.27587890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 2585.609375, + "y": 1517.6962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2579.0478515625, + "y": 1501.3046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2584.6064453125, + "y": 1487.609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2576.6005859375, + "y": 1456.14697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2535.130859375, + "y": 1430.6064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2529.4521484375, + "y": 1413.61962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2542.9619140625, + "y": 1390.51318359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2544.19140625, + "y": 1372.63525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2550.80078125, + "y": 1357.28076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2556.505859375, + "y": 1341.62646484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2575.9892578125, + "y": 1326.93212890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2587.1416015625, + "y": 1307.17626953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2614.4482421875, + "y": 1296.89794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2619.708984375, + "y": 1288.86865234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2652.2392578125, + "y": 1276.6337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2680.0830078125, + "y": 1268.44580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2709.50390625, + "y": 1250.5126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2726.25, + "y": 1227.62646484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2737.5732421875, + "y": 1217.947265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2743.5244140625, + "y": 1210.5859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 2730.1572265625, + "y": 1225.32080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2722.484375, + "y": 1235.8681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2706.5654296875, + "y": 1252.71875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2684.806640625, + "y": 1272.998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2701.4775390625, + "y": 1297.4482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2726.1123046875, + "y": 1315.16845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2734.943359375, + "y": 1309.41015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 2744.546875, + "y": 1306.51025390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 2753.3193359375, + "y": 1312.140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 33, + "x": 2761.740234375, + "y": 1315.66064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 2796.775390625, + "y": 1327.76806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 35, + "x": 2809.857421875, + "y": 1322.61572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 2830.9794921875, + "y": 1313.44580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 2856.009765625, + "y": 1303.30126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 2856.228515625, + "y": 1335.9892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 2835.7578125, + "y": 1337.529296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 2870.69140625, + "y": 1324.7392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 2926.626953125, + "y": 1334.42431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 2979.6337890625, + "y": 1317.638671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 2993.4140625, + "y": 1333.328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B61-沉玉谷-赤望台3.json b/repo/pathing/薄荷/薄荷全收集/薄荷B61-沉玉谷-赤望台3.json new file mode 100644 index 00000000..06bb9d3c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B61-沉玉谷-赤望台3.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷B61-沉玉谷-赤望台3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2870.0380859375, + "y": 1503.326171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2878.55078125, + "y": 1505.59326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2896.7978515625, + "y": 1523.07373046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 4, + "x": 2922.748046875, + "y": 1528.916015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 2930.404296875, + "y": 1555.8955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2936.7001953125, + "y": 1552.9580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3006.376953125, + "y": 1519.13525390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3008.6494140625, + "y": 1512.466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3008.5625, + "y": 1500.70263671875, + "type": "target", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2984.912109375, + "y": 1543.60009765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2979.4736328125, + "y": 1567.25341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2982.1767578125, + "y": 1589.1923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2970.7451171875, + "y": 1647.50732421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2940.9912109375, + "y": 1695.28857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2938.7265625, + "y": 1717.18310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2974.072265625, + "y": 1713.71923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2869.0400390625, + "y": 1503.01953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2877.640625, + "y": 1505.7099609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2899.212890625, + "y": 1523.49609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 20, + "x": 2890.3583984375, + "y": 1521.52490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2873.873046875, + "y": 1519.53955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2866.7783203125, + "y": 1517.6748046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2849.642578125, + "y": 1500.29248046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 2836.6611328125, + "y": 1505.61279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2831.0595703125, + "y": 1508.84228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2815.322265625, + "y": 1503.93798828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2795.943359375, + "y": 1511.69384765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2772.458984375, + "y": 1526.298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2743.748046875, + "y": 1532.34716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2733.34765625, + "y": 1471.36865234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 31, + "x": 2740.908203125, + "y": 1465.42333984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷B62-沉玉谷-赤望台4.json b/repo/pathing/薄荷/薄荷全收集/薄荷B62-沉玉谷-赤望台4.json new file mode 100644 index 00000000..6a6aef86 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷B62-沉玉谷-赤望台4.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷B62-沉玉谷-赤望台4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2870.0478515625, + "y": 1503.328125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 2845.7578125, + "y": 1493.43603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2830.1640625, + "y": 1509.04443359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2823.1025390625, + "y": 1510.9111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2804.1396484375, + "y": 1507.62255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2784.1591796875, + "y": 1504.7431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2792.2998046875, + "y": 1517.98291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2786.6201171875, + "y": 1518.09423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2786.041015625, + "y": 1526.8291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2784.4248046875, + "y": 1531.1201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2786.7998046875, + "y": 1532.48388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2786.06640625, + "y": 1541.99462890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2784.9326171875, + "y": 1547.07177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2783.30078125, + "y": 1565.716796875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2782.8564453125, + "y": 1574.07421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2787.5849609375, + "y": 1582.52392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2794.7177734375, + "y": 1595.228515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 2816.4365234375, + "y": 1597.61669921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": 2840.994140625, + "y": 1651.66455078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 20, + "x": 2831.8154296875, + "y": 1642.5546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2790.578125, + "y": 1653.03515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2769.8828125, + "y": 1657.36279296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 2734.6103515625, + "y": 1654.42138671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 24, + "x": 2736.5126953125, + "y": 1627.07275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 2726.25390625, + "y": 1619.88623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 2729.70703125, + "y": 1599.8662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 2732.0986328125, + "y": 1582.103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 2734.1474609375, + "y": 1568.4326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 2744.6845703125, + "y": 1556.4443359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 2758.921875, + "y": 1564.66845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 2765.80859375, + "y": 1564.92919921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 2767.904296875, + "y": 1565.689453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C01-稻妻-鸣神岛-离岛.json b/repo/pathing/薄荷/薄荷全收集/薄荷C01-稻妻-鸣神岛-离岛.json new file mode 100644 index 00000000..2b3d4c3c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C01-稻妻-鸣神岛-离岛.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷C01-稻妻-鸣神岛-离岛", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3902.9765625, + "y": -2432.48046875, + "action_params": "" + }, + { + "id": 2, + "x": -3877.1318359375, + "y": -2476.3310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3870.416015625, + "y": -2490.8779296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3874.765625, + "y": -2494.533203125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3812.666015625, + "y": -2546.5546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3816.080078125, + "y": -2549.9755859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3825.5703125, + "y": -2543.25390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3840.0498046875, + "y": -2537.4658203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3849.0185546875, + "y": -2552.3447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3849.3046875, + "y": -2572.8369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3865.501953125, + "y": -2584.291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3866.3828125, + "y": -2595.4306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3866.8837890625, + "y": -2601.572265625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3874.4970703125, + "y": -2607.0986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C02-稻妻-鸣神岛-荒海1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C02-稻妻-鸣神岛-荒海1.json new file mode 100644 index 00000000..8234e0de --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C02-稻妻-鸣神岛-荒海1.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "薄荷C02-稻妻-鸣神岛-荒海1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4217.91015625, + "y": -2397.8837890625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4221.171875, + "y": -2387.8818359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4245.556640625, + "y": -2398.6484375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "300" + }, + { + "id": 4, + "x": -4217.890625, + "y": -2397.80078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4181.74609375, + "y": -2361.9228515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 6, + "x": -4186.388671875, + "y": -2352.7099609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4195.970703125, + "y": -2320.5302734375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4217.703125, + "y": -2301.025390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": -4245.134765625, + "y": -2282.8984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4287.95703125, + "y": -2274.3994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4294.69921875, + "y": -2253.6875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4285.712890625, + "y": -2214.228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4241.115234375, + "y": -2233.9970703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4226.59765625, + "y": -2244.951171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 15, + "x": -4230.76171875, + "y": -2248.9541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4194.37109375, + "y": -2282.0986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -4167.283203125, + "y": -2297.8818359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C03-稻妻-鸣神岛-荒海2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C03-稻妻-鸣神岛-荒海2.json new file mode 100644 index 00000000..59770b05 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C03-稻妻-鸣神岛-荒海2.json @@ -0,0 +1,121 @@ +{ + "info": { + "name": "薄荷C03-稻妻-鸣神岛-荒海2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4217.90234375, + "y": -2397.8720703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -4220.23828125, + "y": -2402.259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4226.2578125, + "y": -2490.2705078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": -4225.400390625, + "y": -2494.3486328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4181.474609375, + "y": -2534.6630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4167.642578125, + "y": -2553.6982421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4161.23046875, + "y": -2573.3525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4217.90234375, + "y": -2397.8720703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4135.876953125, + "y": -2454.19140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "300" + }, + { + "id": 10, + "x": -4130.107421875, + "y": -2462.46484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4121.314453125, + "y": -2469.677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4099.78125, + "y": -2486.6904296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C04-稻妻-鸣神岛-绀田村.json b/repo/pathing/薄荷/薄荷全收集/薄荷C04-稻妻-鸣神岛-绀田村.json new file mode 100644 index 00000000..1adf075a --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C04-稻妻-鸣神岛-绀田村.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "薄荷C04-稻妻-鸣神岛-绀田村", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4124.560546875, + "y": -2759.9189453125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4135.544921875, + "y": -2731.5400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4145.33203125, + "y": -2733.0888671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4149.96484375, + "y": -2734.9951171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4171.576171875, + "y": -2730.333984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4188.1875, + "y": -2736.283203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4206.119140625, + "y": -2742.8017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4216.423828125, + "y": -2752.3056640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4217.845703125, + "y": -2728.248046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4223.169921875, + "y": -2713.3740234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4203.400390625, + "y": -2691.267578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4187.09765625, + "y": -2665.787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4161.6953125, + "y": -2663.6787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4131.8203125, + "y": -2674.048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4112.859375, + "y": -2680.83984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4095.5009765625, + "y": -2691.0576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -4074.064453125, + "y": -2666.4765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -4083.1728515625, + "y": -2652.7744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -4096.146484375, + "y": -2626.14453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -4105.470703125, + "y": -2620.6298828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C05-稻妻-鸣神岛-神樱大社.json b/repo/pathing/薄荷/薄荷全收集/薄荷C05-稻妻-鸣神岛-神樱大社.json new file mode 100644 index 00000000..058d8175 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C05-稻妻-鸣神岛-神樱大社.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "薄荷C05-稻妻-鸣神岛-神樱大社", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4408.919921875, + "y": -2395.353515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4411.3046875, + "y": -2385.650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4395.8046875, + "y": -2376.080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4400.240234375, + "y": -2370.7802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4412.669921875, + "y": -2353.2568359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4424.146484375, + "y": -2337.845703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": -4430.525390625, + "y": -2329.767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C06-稻妻-鸣神岛-神里屋敷.json b/repo/pathing/薄荷/薄荷全收集/薄荷C06-稻妻-鸣神岛-神里屋敷.json new file mode 100644 index 00000000..0bb7d5e4 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C06-稻妻-鸣神岛-神里屋敷.json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "薄荷C06-稻妻-鸣神岛-神里屋敷", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4578.78125, + "y": -2577.68359375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4584.326171875, + "y": -2591.416015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4601.2421875, + "y": -2601.037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4635.328125, + "y": -2594.2763671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4639.900390625, + "y": -2592.6875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4641.93359375, + "y": -2581.9130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4641.25390625, + "y": -2560.888671875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4646.677734375, + "y": -2551.576171875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4644.833984375, + "y": -2529.3193359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4640.482421875, + "y": -2524.830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4632.869140625, + "y": -2516.1455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4624.91015625, + "y": -2517.0244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4619.328125, + "y": -2515.375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4610.587890625, + "y": -2515.50390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4602.982421875, + "y": -2510.5478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4552.560546875, + "y": -2468.4443359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 17, + "x": -4528.265625, + "y": -2454.61328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -4511.501953125, + "y": -2441.658203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -4503.4453125, + "y": -2439.7080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -4497.09765625, + "y": -2438.3291015625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -4489.85546875, + "y": -2437.6640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -4480.048828125, + "y": -2423.6865234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -4469.47265625, + "y": -2436.6494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C07-稻妻-鸣神岛-白狐之野(运行5h).json b/repo/pathing/薄荷/薄荷全收集/薄荷C07-稻妻-鸣神岛-白狐之野(运行5h).json new file mode 100644 index 00000000..ce61bd85 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C07-稻妻-鸣神岛-白狐之野(运行5h).json @@ -0,0 +1,184 @@ +{ + "info": { + "name": "薄荷C07-稻妻-鸣神岛-白狐之野", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4232.00390625, + "y": -3001.9775390625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -4225.638671875, + "y": -3018.5380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4214.7734375, + "y": -3024.8994140625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4224.263671875, + "y": -3025.0302734375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4262.517578125, + "y": -3047.154296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4277.00390625, + "y": -3073.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4232.00390625, + "y": -3001.9775390625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4231.970703125, + "y": -2995.7060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4215.37890625, + "y": -2974.642578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4193.91796875, + "y": -2944.939453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4176.23046875, + "y": -2920.3291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4133.8203125, + "y": -2915.9375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4157.052734375, + "y": -2891.52734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4194.357421875, + "y": -2875.5771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4211.208984375, + "y": -2876.5654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4229.73046875, + "y": -2889.9375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -4226.72265625, + "y": -2874.322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -4213.82421875, + "y": -2847.875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -4208.8671875, + "y": -2832.3720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C08-稻妻-鸣神岛-稻妻城1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C08-稻妻-鸣神岛-稻妻城1.json new file mode 100644 index 00000000..6c8a218e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C08-稻妻-鸣神岛-稻妻城1.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷C08-稻妻-鸣神岛-稻妻城1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4492.015625, + "y": -3208.1552734375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4506.59375, + "y": -3219.400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4515.9609375, + "y": -3221.9892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4521.421875, + "y": -3220.8779296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4535.837890625, + "y": -3217.646484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 6, + "x": -4548.375, + "y": -3218.6083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4563.826171875, + "y": -3212.8369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4579.236328125, + "y": -3214.6142578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4592.787109375, + "y": -3223.3193359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4614.87109375, + "y": -3241.6962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4682.916015625, + "y": -3234.40625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1700" + }, + { + "id": 12, + "x": -4713.4921875, + "y": -3229.18359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4746.515625, + "y": -3226.35546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4739.173828125, + "y": -3248.6640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4722.625, + "y": -3280.2109375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4402.478515625, + "y": -3053.05859375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -4408.48046875, + "y": -3053.662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -4419.66015625, + "y": -3045.2080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -4442.810546875, + "y": -3026.947265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -4470.748046875, + "y": -3005.3701171875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -4486.69921875, + "y": -3002.0263671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C09-稻妻-鸣神岛-稻妻城2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C09-稻妻-鸣神岛-稻妻城2.json new file mode 100644 index 00000000..ce494251 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C09-稻妻-鸣神岛-稻妻城2.json @@ -0,0 +1,345 @@ +{ + "info": { + "name": "薄荷C09-稻妻-鸣神岛-稻妻城2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4492.017578125, + "y": -3208.16015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4467.98046875, + "y": -3231.0068359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4462.71484375, + "y": -3245.5400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4455.46484375, + "y": -3248.2666015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4445.37890625, + "y": -3257.4072265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4424.478515625, + "y": -3251.724609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4422.70703125, + "y": -3253.2021484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4424.751953125, + "y": -3259.548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4422.923828125, + "y": -3267.8154296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4418.96875, + "y": -3279.5078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4413.552734375, + "y": -3288.232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4426.322265625, + "y": -3307.2392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4437.58203125, + "y": -3323.3935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4447.568359375, + "y": -3335.0771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4459.80859375, + "y": -3349.3662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4476.5390625, + "y": -3364.62890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -4482.388671875, + "y": -3372.0029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -4497.998046875, + "y": -3390.4541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -4509.927734375, + "y": -3397.345703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 20, + "x": -4524.9375, + "y": -3413.5029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -4547.466796875, + "y": -3443.3037109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 22, + "x": -4541.55859375, + "y": -3441.236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -4583.8671875, + "y": -3464.8818359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -4561.1796875, + "y": -3353.7529296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -4560.134765625, + "y": -3349.97265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -4538.763671875, + "y": -3325.294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -4516.197265625, + "y": -3337.2109375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -4507.9609375, + "y": -3344.361328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -4490.53515625, + "y": -3350.064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -4497.353515625, + "y": -3365.3935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -4507.9921875, + "y": -3377.9921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -4517.7734375, + "y": -3382.5888671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -4524.703125, + "y": -3385.76953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": -4547.138671875, + "y": -3413.1708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": -4573.9296875, + "y": -3416.6845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": -4618.099609375, + "y": -3447.7197265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": -4636.9296875, + "y": -3439.6279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C10-稻妻-鸣神岛-堇色之庭(收集950).json b/repo/pathing/薄荷/薄荷全收集/薄荷C10-稻妻-鸣神岛-堇色之庭(收集950).json new file mode 100644 index 00000000..6c2f96d7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C10-稻妻-鸣神岛-堇色之庭(收集950).json @@ -0,0 +1,166 @@ +{ + "info": { + "name": "薄荷C10-稻妻-鸣神岛-堇色之庭", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3931.201171875, + "y": -3202.8125, + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -3912.4658203125, + "y": -3211.619140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3895.1611328125, + "y": -3226.880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3869.2392578125, + "y": -3243.4267578125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3931.201171875, + "y": -3202.8125, + "action_params": "" + }, + { + "id": 6, + "x": -3941.1640625, + "y": -3193.9677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3952.642578125, + "y": -3191.626953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3967.1083984375, + "y": -3194.4296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3968.318359375, + "y": -3201.0419921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3983.98828125, + "y": -3218.16015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3990.111328125, + "y": -3228.529296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3989.482421875, + "y": -3231.783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3986.3408203125, + "y": -3235.6865234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3987.2314453125, + "y": -3235.9541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3984.84375, + "y": -3245.47265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3984.62109375, + "y": -3235.998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3984.41796875, + "y": -3235.9521484375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C11-稻妻-神无冢-九条阵屋1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C11-稻妻-神无冢-九条阵屋1.json new file mode 100644 index 00000000..714e83ca --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C11-稻妻-神无冢-九条阵屋1.json @@ -0,0 +1,255 @@ +{ + "info": { + "name": "薄荷C11-稻妻-神无冢-九条阵屋1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3437.0478515625, + "y": -3319.7646484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3428.375, + "y": -3310.6533203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3401.052734375, + "y": -3307.2578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": -3384.453125, + "y": -3309.173828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3371.080078125, + "y": -3298.2021484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 6, + "x": -3374.8046875, + "y": -3297.2294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3356.9033203125, + "y": -3258.3486328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3333.041015625, + "y": -3231.7724609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3347.330078125, + "y": -3222.857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3386.0400390625, + "y": -3233.138671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3401.7734375, + "y": -3224.8466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3400.4462890625, + "y": -3213.5830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3410.46875, + "y": -3203.7314453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3426.259765625, + "y": -3180.6416015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3460.7626953125, + "y": -3161.5078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3516.478515625, + "y": -3161.62109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3542.115234375, + "y": -3162.06640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -3553.59765625, + "y": -3173.03515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -3562.322265625, + "y": -3191.923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -3569.578125, + "y": -3199.28515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -3571.240234375, + "y": -3207.0234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -3570.3916015625, + "y": -3214.0244140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -3580.228515625, + "y": -3232.115234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -3594.109375, + "y": -3243.2216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -3592.7451171875, + "y": -3280.1787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -3598.7001953125, + "y": -3285.4033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -3615.802734375, + "y": -3283.7275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C12-稻妻-神无冢-九条阵屋2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C12-稻妻-神无冢-九条阵屋2.json new file mode 100644 index 00000000..c4392d3e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C12-稻妻-神无冢-九条阵屋2.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "薄荷C12-稻妻-神无冢-九条阵屋2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3437.0166015625, + "y": -3319.7431640625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3448.0576171875, + "y": -3321.5361328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3461.8056640625, + "y": -3325.0556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3466.328125, + "y": -3329.740234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3470.0556640625, + "y": -3335.162109375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3474.07421875, + "y": -3342.6123046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3471.9423828125, + "y": -3355.39453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3473.1953125, + "y": -3375.33203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "300" + }, + { + "id": 9, + "x": -3458.9814453125, + "y": -3410.189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3445.099609375, + "y": -3448.9150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3436.1982421875, + "y": -3454.76953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3410.7958984375, + "y": -3454.1357421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3399.0107421875, + "y": -3447.14453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C13-稻妻-神无冢-无相之火.json b/repo/pathing/薄荷/薄荷全收集/薄荷C13-稻妻-神无冢-无相之火.json new file mode 100644 index 00000000..493cce89 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C13-稻妻-神无冢-无相之火.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "薄荷C13-稻妻-神无冢-无相之火", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3234.03125, + "y": -3155.2626953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3236.2939453125, + "y": -3159.1318359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3236.6923828125, + "y": -3174.712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3231.7177734375, + "y": -3169.17578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3220.9814453125, + "y": -3159.1845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3228.12109375, + "y": -3134.8212890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3200.3134765625, + "y": -3100.8818359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3157.0654296875, + "y": -3089.4990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3154.939453125, + "y": -3086.388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C14-稻妻-神无冢-踏鞴砂1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C14-稻妻-神无冢-踏鞴砂1.json new file mode 100644 index 00000000..8a386289 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C14-稻妻-神无冢-踏鞴砂1.json @@ -0,0 +1,255 @@ +{ + "info": { + "name": "薄荷C14-稻妻-神无冢-踏鞴砂1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3393.1533203125, + "y": -3556.0380859375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3400.1728515625, + "y": -3557.5263671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3414.99609375, + "y": -3541.203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3409.5224609375, + "y": -3525.3740234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": -3406.37890625, + "y": -3527.046875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3471.8203125, + "y": -3755.1904296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3447.91015625, + "y": -3745.447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3432.65234375, + "y": -3753.697265625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3288.1796875, + "y": -3652.578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3313.958984375, + "y": -3696.9814453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 11, + "x": -3310.384765625, + "y": -3698.548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3291.2763671875, + "y": -3741.2470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3287.34375, + "y": -3747.400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3281.962890625, + "y": -3747.951171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3269.1533203125, + "y": -3748.1669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3269.0078125, + "y": -3746.1357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3233.283203125, + "y": -3534.17578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -3233.3583984375, + "y": -3522.5224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -3233.2646484375, + "y": -3492.0537109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 20, + "x": -3239.0595703125, + "y": -3513.091796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -3246.4990234375, + "y": -3520.7783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -3251.3662109375, + "y": -3526.111328125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -3271.32421875, + "y": -3530.35546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -3283.1943359375, + "y": -3537.353515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -3286.90625, + "y": -3551.3466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -3288.2490234375, + "y": -3566.646484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -3280.9853515625, + "y": -3590.05859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C15-稻妻-神无冢-踏鞴砂2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C15-稻妻-神无冢-踏鞴砂2.json new file mode 100644 index 00000000..00ad3ee3 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C15-稻妻-神无冢-踏鞴砂2.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "薄荷C15-稻妻-神无冢-踏鞴砂2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3233.283203125, + "y": -3534.1875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3236.2255859375, + "y": -3559.0732421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3234.9326171875, + "y": -3571.19140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3235.8955078125, + "y": -3580.515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3228.123046875, + "y": -3589.4130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3223.4765625, + "y": -3585.3583984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3208.4208984375, + "y": -3582.5244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3174.6552734375, + "y": -3581.623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3164.052734375, + "y": -3585.279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3145.4921875, + "y": -3585.1337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3133.9189453125, + "y": -3601.2314453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3090.298828125, + "y": -3621.7099609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3088.9365234375, + "y": -3622.0888671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C16-稻妻-神无冢-踏鞴砂3.json b/repo/pathing/薄荷/薄荷全收集/薄荷C16-稻妻-神无冢-踏鞴砂3.json new file mode 100644 index 00000000..b474c3b8 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C16-稻妻-神无冢-踏鞴砂3.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "薄荷C16-稻妻-神无冢-踏鞴砂3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3016.8017578125, + "y": -3623.6171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3016.2021484375, + "y": -3630.2197265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3018.693359375, + "y": -3619.630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3025.5927734375, + "y": -3574.8779296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": -3034.49609375, + "y": -3567.650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3070.021484375, + "y": -3556.701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3090.634765625, + "y": -3550.1005859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3086.5947265625, + "y": -3527.1455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3082.0458984375, + "y": -3505.33203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3075.19921875, + "y": -3490.685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3063.4912109375, + "y": -3465.7158203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3051.2080078125, + "y": -3449.5791015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3044.2255859375, + "y": -3449.3701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3059.60546875, + "y": -3438.693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3071.677734375, + "y": -3429.625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3076.3623046875, + "y": -3423.9765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3066.9140625, + "y": -3413.923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -3051.71875, + "y": -3403.96484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C17-稻妻-神无冢-踏鞴砂4.json b/repo/pathing/薄荷/薄荷全收集/薄荷C17-稻妻-神无冢-踏鞴砂4.json new file mode 100644 index 00000000..7e0f2ad8 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C17-稻妻-神无冢-踏鞴砂4.json @@ -0,0 +1,381 @@ +{ + "info": { + "name": "薄荷C17-稻妻-神无冢-踏鞴砂4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3156.56640625, + "y": -3886.12109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3136.353515625, + "y": -3885.494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3049.6806640625, + "y": -3964.8046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "4500" + }, + { + "id": 4, + "x": -3042.4296875, + "y": -3963.9658203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3043.82421875, + "y": -3975.4384765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3025.5224609375, + "y": -3985.33203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3013.28125, + "y": -3990.068359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2997.7333984375, + "y": -3978.7890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2984.072265625, + "y": -3958.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2967.4130859375, + "y": -3961.3525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2948.6396484375, + "y": -3967.3603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2917.6513671875, + "y": -3990.7001953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2909.3544921875, + "y": -3994.40234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2904.0888671875, + "y": -3981.669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2895.3583984375, + "y": -3950.3876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2882.2744140625, + "y": -3936.45703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2879.7392578125, + "y": -3907.9580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2894.6142578125, + "y": -3889.732421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2901.251953125, + "y": -3899.517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2916.5322265625, + "y": -3875.4677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2942.1171875, + "y": -3839.994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -2953.0830078125, + "y": -3832.40625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -2963.0498046875, + "y": -3828.462890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -2973.8408203125, + "y": -3786.8046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -2983.8359375, + "y": -3787.3447265625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -2987.9267578125, + "y": -3786.9833984375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -3156.572265625, + "y": -3886.123046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -3142.2255859375, + "y": -3877.1005859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -3126.125, + "y": -3863.9521484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -3112.1142578125, + "y": -3840.013671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -3112.2783203125, + "y": -3834.4326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -3118.81640625, + "y": -3813.3369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -3113.9892578125, + "y": -3802.1044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": -3104.7333984375, + "y": -3798.1982421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": -3095.5458984375, + "y": -3800.1630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": -3134.162109375, + "y": -3787.9365234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": -3184.1533203125, + "y": -3806.9365234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2500" + }, + { + "id": 38, + "x": -3184.2548828125, + "y": -3811.4697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": -3233.080078125, + "y": -3870.7275390625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": -3255.375, + "y": -3867.6875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": -3258.6201171875, + "y": -3859.869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C18-稻妻-神无冢-名椎滩.json b/repo/pathing/薄荷/薄荷全收集/薄荷C18-稻妻-神无冢-名椎滩.json new file mode 100644 index 00000000..dab58cfc --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C18-稻妻-神无冢-名椎滩.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "薄荷C18-稻妻-神无冢-名椎滩", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2738.2255859375, + "y": -3415.0283203125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2744.103515625, + "y": -3448.6845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2775.228515625, + "y": -3487.85546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2786.7265625, + "y": -3528.439453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2776.3779296875, + "y": -3537.98828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2744.8154296875, + "y": -3553.29296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2720.1767578125, + "y": -3577.3291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2715.634765625, + "y": -3584.822265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2721.720703125, + "y": -3573.3701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2762.201171875, + "y": -3557.92578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2821.380859375, + "y": -3584.0751953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2838.5068359375, + "y": -3576.73828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2872.310546875, + "y": -3569.357421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2888.1845703125, + "y": -3579.765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2902.6806640625, + "y": -3616.3798828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2908.3359375, + "y": -3634.896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2914.6533203125, + "y": -3643.587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2913.6181640625, + "y": -3663.2685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2913.140625, + "y": -3687.9287109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2897.4365234375, + "y": -3690.5791015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2880.4482421875, + "y": -3703.4990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -2858.5341796875, + "y": -3709.009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -2810.9462890625, + "y": -3714.26953125, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -2812.240234375, + "y": -3721.4111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C19-稻妻-八酝岛-无想刃狭间.json b/repo/pathing/薄荷/薄荷全收集/薄荷C19-稻妻-八酝岛-无想刃狭间.json new file mode 100644 index 00000000..29d5f428 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C19-稻妻-八酝岛-无想刃狭间.json @@ -0,0 +1,202 @@ +{ + "info": { + "name": "薄荷C19-稻妻-八酝岛-无想刃狭间", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2533.3564453125, + "y": -3539.6015625, + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -2565.2607421875, + "y": -3525.0185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2572.1220703125, + "y": -3533.08984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2592.783203125, + "y": -3528.6982421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2636.4736328125, + "y": -3503.7763671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2624.748046875, + "y": -3498.2021484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2621.9306640625, + "y": -3486.3544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2618.2314453125, + "y": -3477.3935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2616.9130859375, + "y": -3454.173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2615.1669921875, + "y": -3427.6708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2625.9189453125, + "y": -3425.861328125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2533.3564453125, + "y": -3539.6015625, + "action_params": "" + }, + { + "id": 13, + "x": -2530.1337890625, + "y": -3560.8232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2535.3251953125, + "y": -3605.3505859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2524.7431640625, + "y": -3589.619140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2508.9033203125, + "y": -3572.552734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2489.3408203125, + "y": -3575.7158203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2461.1875, + "y": -3585.490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2451.2724609375, + "y": -3611.6005859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2447.54296875, + "y": -3628.5068359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2442.4853515625, + "y": -3634.548828125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C20-稻妻-八酝岛-藤兜砦1(收集1000).json b/repo/pathing/薄荷/薄荷全收集/薄荷C20-稻妻-八酝岛-藤兜砦1(收集1000).json new file mode 100644 index 00000000..e81a8a34 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C20-稻妻-八酝岛-藤兜砦1(收集1000).json @@ -0,0 +1,282 @@ +{ + "info": { + "name": "薄荷C20-稻妻-八酝岛-藤兜砦1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2193.69140625, + "y": -3485.55859375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2183.3798828125, + "y": -3472.6845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2179.77734375, + "y": -3456.1240234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2173.1337890625, + "y": -3433.2724609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2151.9345703125, + "y": -3476.6533203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2138.11328125, + "y": -3475.66015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2143.83984375, + "y": -3488.779296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2157.58203125, + "y": -3489.955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2138.80859375, + "y": -3516.22265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2118.3486328125, + "y": -3543.578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2113.4189453125, + "y": -3548.7802734375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2089.697265625, + "y": -3567.7109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2057.2451171875, + "y": -3573.34375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2082.5595703125, + "y": -3573.8291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2132.310546875, + "y": -3574.9150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2151.021484375, + "y": -3563.255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2155.734375, + "y": -3553.849609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2167.4189453125, + "y": -3574.8447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2180.30078125, + "y": -3587.8486328125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2204.7900390625, + "y": -3583.8291015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2209.9921875, + "y": -3572.7431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -2230.5419921875, + "y": -3553.259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -2238.79296875, + "y": -3536.71484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -2260.8447265625, + "y": -3514.634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -2275.4453125, + "y": -3524.6279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -2290.15625, + "y": -3530.4853515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -2320.140625, + "y": -3540.134765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -2341.3037109375, + "y": -3550.0537109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -2446.0126953125, + "y": -3489.7275390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -2477.7509765625, + "y": -3477.2109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C21-稻妻-八酝岛-藤兜砦2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C21-稻妻-八酝岛-藤兜砦2.json new file mode 100644 index 00000000..0c5ce876 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C21-稻妻-八酝岛-藤兜砦2.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷C21-稻妻-八酝岛-藤兜砦2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1964.0732421875, + "y": -3576.44921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1973.4619140625, + "y": -3569.5869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2006.373046875, + "y": -3580.7880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1994.48828125, + "y": -3587.990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1992.8828125, + "y": -3625.8544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1989.7626953125, + "y": -3655.3759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2001.0546875, + "y": -3662.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2016.001953125, + "y": -3671.6962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2043.7587890625, + "y": -3676.6904296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2041.923828125, + "y": -3686.880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2015.34765625, + "y": -3683.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1999.083984375, + "y": -3685.7705078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1978.291015625, + "y": -3694.1005859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": -1976.97265625, + "y": -3683.826171875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C22-稻妻-八酝岛-绯木村.json b/repo/pathing/薄荷/薄荷全收集/薄荷C22-稻妻-八酝岛-绯木村.json new file mode 100644 index 00000000..f6043aba --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C22-稻妻-八酝岛-绯木村.json @@ -0,0 +1,203 @@ +{ + "info": { + "name": "薄荷C22-稻妻-八酝岛-绯木村", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2215.9990234375, + "y": -3709.49609375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -2215.0390625, + "y": -3722.9912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2203.3154296875, + "y": -3737.513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2187.5634765625, + "y": -3742.49609375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2180.671875, + "y": -3741.1416015625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2215.9990234375, + "y": -3709.49609375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 7, + "x": -2227.5732421875, + "y": -3695.7529296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2255.26171875, + "y": -3670.68359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2272.74609375, + "y": -3635.2216796875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2294, + "y": -3621.458984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2294.326171875, + "y": -3638.2294921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 12, + "x": -2280.884765625, + "y": -3642.939453125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2215.9990234375, + "y": -3709.49609375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2226.2314453125, + "y": -3697.3984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2255.193359375, + "y": -3692.96875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2305.5830078125, + "y": -3680.005859375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2317.6748046875, + "y": -3664.99609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2315.314453125, + "y": -3693.3203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2311.2373046875, + "y": -3709.416015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2309.595703125, + "y": -3725.728515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2300.830078125, + "y": -3739.8798828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C23-稻妻-八酝岛-蛇神之首1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C23-稻妻-八酝岛-蛇神之首1.json new file mode 100644 index 00000000..446296e7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C23-稻妻-八酝岛-蛇神之首1.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "薄荷C23-稻妻-八酝岛-蛇神之首1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2366.0732421875, + "y": -3769.888671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2361.265625, + "y": -3757.1455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2357.5625, + "y": -3740.56640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2360.3291015625, + "y": -3719.498046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2341.6982421875, + "y": -3741.20703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2322.17578125, + "y": -3761.798828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2330.6865234375, + "y": -3766.171875, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2339.1796875, + "y": -3804.2275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2333.859375, + "y": -3810.1474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2296.130859375, + "y": -3846.02734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": -2284.623046875, + "y": -3847.224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C24-稻妻-八酝岛-蛇神之首2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C24-稻妻-八酝岛-蛇神之首2.json new file mode 100644 index 00000000..b50208a7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C24-稻妻-八酝岛-蛇神之首2.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "薄荷C24-稻妻-八酝岛-蛇神之首2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2221.0888671875, + "y": -4006.884765625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2211.234375, + "y": -3993.7099609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2220.6640625, + "y": -3972.134765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2262.41796875, + "y": -3962.73828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2261.7109375, + "y": -3980.9560546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2225.9169921875, + "y": -3978.4794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2192.1259765625, + "y": -3954.126953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2142.94921875, + "y": -3918.4404296875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": -2124.533203125, + "y": -3929.34375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2129.1240234375, + "y": -3911.0224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2118.5390625, + "y": -3902.46875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2106.623046875, + "y": -3899.6943359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2094.943359375, + "y": -3893.3427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2087.85546875, + "y": -3886.87109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2072.7109375, + "y": -3867.7734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C25-稻妻-八酝岛-蛇骨矿洞1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C25-稻妻-八酝岛-蛇骨矿洞1.json new file mode 100644 index 00000000..588de3d1 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C25-稻妻-八酝岛-蛇骨矿洞1.json @@ -0,0 +1,157 @@ +{ + "info": { + "name": "薄荷C25-稻妻-八酝岛-蛇骨矿洞1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2399.69921875, + "y": -4123.8623046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2405.7802734375, + "y": -4116.7421875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2405.79296875, + "y": -3912.970703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 4, + "x": -2392.5634765625, + "y": -3938.46875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": -2388.87109375, + "y": -4018.34375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3500" + }, + { + "id": 6, + "x": -2371.4423828125, + "y": -4006.4501953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2378.8515625, + "y": -4052.76953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2398.2568359375, + "y": -4054.5244140625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2405.79296875, + "y": -3912.970703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2334.8251953125, + "y": -3992.375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2296.8154296875, + "y": -4039.716796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2271.8642578125, + "y": -4073.8447265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": -2289.712890625, + "y": -4082.62109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2351.8310546875, + "y": -4100.3857421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 15, + "x": -2316.5078125, + "y": -4116.171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2280.8134765625, + "y": -4118.9404296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": " 500" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C26-稻妻-八酝岛-蛇骨矿洞2(运行5.5h).json b/repo/pathing/薄荷/薄荷全收集/薄荷C26-稻妻-八酝岛-蛇骨矿洞2(运行5.5h).json new file mode 100644 index 00000000..6f3401c4 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C26-稻妻-八酝岛-蛇骨矿洞2(运行5.5h).json @@ -0,0 +1,175 @@ +{ + "info": { + "name": "薄荷C26-稻妻-八酝岛-蛇骨矿洞2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2405.783203125, + "y": -3912.88671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -2409.171875, + "y": -3897.568359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2415.099609375, + "y": -3865.869140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": -2391.3408203125, + "y": -3851.6494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2410.66796875, + "y": -3852.72265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2431.42578125, + "y": -3860.8955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2435.9609375, + "y": -3865.71875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2461.1767578125, + "y": -3812.3251953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": -2491.3037109375, + "y": -3757.458984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2524.6787109375, + "y": -3721.3720703125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2405.783203125, + "y": -3912.88671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2409.8857421875, + "y": -3943.3125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2448.8857421875, + "y": -3954.595703125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2470.953125, + "y": -4013.6123046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3000" + }, + { + "id": 15, + "x": -2501.3427734375, + "y": -4029.083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2534.181640625, + "y": -4013.173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2521.3974609375, + "y": -4004.9384765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2514.642578125, + "y": -4008.7080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C27-稻妻-八酝岛-蛇骨矿洞3(收集1050).json b/repo/pathing/薄荷/薄荷全收集/薄荷C27-稻妻-八酝岛-蛇骨矿洞3(收集1050).json new file mode 100644 index 00000000..09228b06 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C27-稻妻-八酝岛-蛇骨矿洞3(收集1050).json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "薄荷C27-稻妻-八酝岛-蛇骨矿洞3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2405.783203125, + "y": -3912.88671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2409.8857421875, + "y": -3943.3125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2448.8857421875, + "y": -3954.595703125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2461.43359375, + "y": -3981.603515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2300" + }, + { + "id": 5, + "x": -2474.6416015625, + "y": -3968.435546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2477.8642578125, + "y": -3959.66015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2488.44921875, + "y": -3948.2802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2498.5302734375, + "y": -3937.693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2503.37890625, + "y": -3916.6279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2518.197265625, + "y": -3898.5830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2497.681640625, + "y": -3888.8359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2493.7822265625, + "y": -3867.01953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2529.2578125, + "y": -3871.8671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2539.943359375, + "y": -3879.2060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2552.888671875, + "y": -3870.43359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2556.1943359375, + "y": -3862.8408203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2556.4560546875, + "y": -3825.78515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2516.294921875, + "y": -3824.2470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2515.5546875, + "y": -3830.1708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2528.9072265625, + "y": -3807.7998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2558.5029296875, + "y": -3797.234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -2575.4287109375, + "y": -3792.2490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -2617.244140625, + "y": -3774.087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -2631.8662109375, + "y": -3795.1787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C28-稻妻-海祇岛-水月池1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C28-稻妻-海祇岛-水月池1.json new file mode 100644 index 00000000..82a6332e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C28-稻妻-海祇岛-水月池1.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "薄荷C28-稻妻-海祇岛-水月池1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1134.408203125, + "y": -3605.2275390625, + "action_params": "" + }, + { + "id": 2, + "x": -1139.1650390625, + "y": -3597.98046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(F),wait(0.3),keypress(T),wait(0.8),keypress(T),wait(0.8),keypress(T)" + }, + { + "id": 3, + "x": -1150.646484375, + "y": -3593.2060546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": -1155.8974609375, + "y": -3589.7490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1167.2431640625, + "y": -3578.2822265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1178.296875, + "y": -3566.443359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1190.8759765625, + "y": -3553.314453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1193.23828125, + "y": -3524.1416015625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1183.9580078125, + "y": -3511.4599609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C29-稻妻-海祇岛-水月池2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C29-稻妻-海祇岛-水月池2.json new file mode 100644 index 00000000..0958070b --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C29-稻妻-海祇岛-水月池2.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "薄荷C29-稻妻-海祇岛-水月池2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -765.9541015625, + "y": -3557.349609375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -780.9599609375, + "y": -3554.7734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -801.2509765625, + "y": -3543.0595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -829.486328125, + "y": -3549.09765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -847.6083984375, + "y": -3561.9111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -864.443359375, + "y": -3568.9970703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -882.0966796875, + "y": -3576.638671875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -907.0498046875, + "y": -3588.5419921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -928.033203125, + "y": -3597.3388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -937.064453125, + "y": -3601.5185546875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -945.6337890625, + "y": -3609.353515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -958.896484375, + "y": -3622.0234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -969.7890625, + "y": -3630.1064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -992.6298828125, + "y": -3653.3056640625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -996.7626953125, + "y": -3667.5703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C30-稻妻-海祇岛-曚云神社.json b/repo/pathing/薄荷/薄荷全收集/薄荷C30-稻妻-海祇岛-曚云神社.json new file mode 100644 index 00000000..b06de387 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C30-稻妻-海祇岛-曚云神社.json @@ -0,0 +1,237 @@ +{ + "info": { + "name": "薄荷C30-稻妻-海祇岛-曚云神社", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -575.20703125, + "y": -3832.17578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -577.412109375, + "y": -3839.380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -584.541015625, + "y": -3848.6611328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -612.591796875, + "y": -3881.560546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": -624.2060546875, + "y": -3878.3896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -666.876953125, + "y": -3842.291015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2700" + }, + { + "id": 7, + "x": -669.1416015625, + "y": -3834.244140625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -575.23828125, + "y": -3832.1806640625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -569.2265625, + "y": -3826.4521484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -563.5146484375, + "y": -3822.6689453125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -553.06640625, + "y": -3821.3330078125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -525.0498046875, + "y": -3813.2880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -527.337890625, + "y": -3796.80859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -554.0830078125, + "y": -3675.693359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 15, + "x": -554.6787109375, + "y": -3671.6064453125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -575.2119140625, + "y": -3832.1640625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -564.279296875, + "y": -3832.880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -546.595703125, + "y": -3837.0830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -521.048828125, + "y": -3842.8994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -505.5634765625, + "y": -3830.6181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -472.3935546875, + "y": -3827.1083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -306.330078125, + "y": -3758.833984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 23, + "x": -314.4638671875, + "y": -3742.267578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -319.6650390625, + "y": -3723.4306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -324.0634765625, + "y": -3710.0498046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C31-稻妻-海祇岛-珊瑚宫.json b/repo/pathing/薄荷/薄荷全收集/薄荷C31-稻妻-海祇岛-珊瑚宫.json new file mode 100644 index 00000000..ce6e7a3e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C31-稻妻-海祇岛-珊瑚宫.json @@ -0,0 +1,246 @@ +{ + "info": { + "name": "薄荷C31-稻妻-海祇岛-珊瑚宫", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -757.9541015625, + "y": -3815.1337890625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -823.8125, + "y": -3780.283203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": -831.341796875, + "y": -3796.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -832.673828125, + "y": -3808.337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -839.287109375, + "y": -3821.7001953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -850.9462890625, + "y": -3842.8955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -890.04296875, + "y": -3847.1064453125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -905.7666015625, + "y": -3851.11328125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -917.7451171875, + "y": -3833.7451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -917.474609375, + "y": -3816.50390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -917.9853515625, + "y": -3798.5810546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -917.5908203125, + "y": -3817.96875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -930.109375, + "y": -3826.15234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -937.6328125, + "y": -3824.2294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -936.6552734375, + "y": -3836.73828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -935.9306640625, + "y": -3859.41015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -920.158203125, + "y": -3863.892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -909.40234375, + "y": -3883.076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -882.1123046875, + "y": -3890.2470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -866.994140625, + "y": -3894.9208984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -913.1767578125, + "y": -3896.375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -940.9951171875, + "y": -3897.4072265625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -957.9462890625, + "y": -3888.759765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -962.8330078125, + "y": -3891.0908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -966.37109375, + "y": -3896.326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -968.681640625, + "y": -3903.57421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C32-稻妻-海祇岛-望泷村1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C32-稻妻-海祇岛-望泷村1.json new file mode 100644 index 00000000..0c5c1155 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C32-稻妻-海祇岛-望泷村1.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "薄荷C32-稻妻-海祇岛-望泷村1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -755.6025390625, + "y": -4001.0576171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -756.48828125, + "y": -3962.0009765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "600" + }, + { + "id": 3, + "x": -766.6376953125, + "y": -3883.85546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": -761.5732421875, + "y": -3883.1455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -757.4052734375, + "y": -3876.2177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -756.654296875, + "y": -3872.423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -756.822265625, + "y": -3879.5888671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -759.3984375, + "y": -3922.490234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 9, + "x": -764.740234375, + "y": -3922.6962890625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -755.59765625, + "y": -4001.0634765625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -850.4169921875, + "y": -3946.466796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 12, + "x": -873.54296875, + "y": -3950.30859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -884.15625, + "y": -3953.26171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -898.466796875, + "y": -3960.037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -906.48828125, + "y": -3963.794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -918.76171875, + "y": -3966.982421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -927.3037109375, + "y": -3965.4990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -935.1611328125, + "y": -3969.2177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -943.1396484375, + "y": -3972.3173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -943.578125, + "y": -3977.1533203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -944.3408203125, + "y": -3984.857421875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -944.9296875, + "y": -3989.8046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -957.7080078125, + "y": -3985.771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -967.5615234375, + "y": -3971.5703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C33-稻妻-海祇岛-望泷村2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C33-稻妻-海祇岛-望泷村2.json new file mode 100644 index 00000000..7b1cc18c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C33-稻妻-海祇岛-望泷村2.json @@ -0,0 +1,309 @@ +{ + "info": { + "name": "薄荷C33-稻妻-海祇岛-望泷村2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1057.76953125, + "y": -3946.087890625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1067.919921875, + "y": -3948.3359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1084.00390625, + "y": -3956.55859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1101.27734375, + "y": -3955.7685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1138.5146484375, + "y": -3925.041015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1151.6748046875, + "y": -3908.3388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1175.353515625, + "y": -3885.4794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1182.4169921875, + "y": -3868.3408203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1207.5322265625, + "y": -3854.1953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1207.140625, + "y": -3842.560546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1215.5048828125, + "y": -3821.2001953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1237.5615234375, + "y": -3775.9033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1266.65234375, + "y": -3813.2705078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -1273.7060546875, + "y": -3828.7490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -1275.013671875, + "y": -3831.458984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -1243.6884765625, + "y": -3848.599609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -1226.1826171875, + "y": -3872.91015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -1221.220703125, + "y": -3893.623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -1251.01171875, + "y": -3930.962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -1267.671875, + "y": -3963.2734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -1274.3212890625, + "y": -3995.0048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -1253.4404296875, + "y": -4005.62890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -1233.4560546875, + "y": -4014.1083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -1225.2041015625, + "y": -4065.041015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -1211.44140625, + "y": -4071.8603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -1189.34765625, + "y": -4096.8984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -1179.3857421875, + "y": -4070.2900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -1176.0732421875, + "y": -4060.81640625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -1194.4853515625, + "y": -4051.5380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -1201.34765625, + "y": -4048.1220703125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -1208.23046875, + "y": -4048.7724609375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -1227.734375, + "y": -4050.771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -1233.5419921875, + "y": -4051.5302734375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C34-稻妻-清籁岛-越石村.json b/repo/pathing/薄荷/薄荷全收集/薄荷C34-稻妻-清籁岛-越石村.json new file mode 100644 index 00000000..2c94378e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C34-稻妻-清籁岛-越石村.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "薄荷C34-稻妻-清籁岛-越石村", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3684.80078125, + "y": -4278.6181640625, + "action_params": "" + }, + { + "id": 2, + "x": -3730.048828125, + "y": -4292.53515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3769.396484375, + "y": -4311.41015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3770.7109375, + "y": -4318.841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3803.634765625, + "y": -4326.5048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3822.2392578125, + "y": -4305.01953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3846.9755859375, + "y": -4317.748046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3871.4775390625, + "y": -4316.3173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3888.4384765625, + "y": -4316.6435546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3898.544921875, + "y": -4304.2880859375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3902.8681640625, + "y": -4304.7177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3902.7451171875, + "y": -4295.6806640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3889, + "y": -4276.5244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3873.3408203125, + "y": -4255.7158203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3838.9443359375, + "y": -4249.5859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3802.765625, + "y": -4258.8125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3807.2177734375, + "y": -4230.6337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -3809.0419921875, + "y": -4216.9306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -3809.4248046875, + "y": -4182.849609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -3811.109375, + "y": -4170.4765625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -3815.3232421875, + "y": -4170.5166015625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -3815.361328125, + "y": -4167.3408203125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C35-稻妻-清籁岛-平海砦.json b/repo/pathing/薄荷/薄荷全收集/薄荷C35-稻妻-清籁岛-平海砦.json new file mode 100644 index 00000000..5e7f68f4 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C35-稻妻-清籁岛-平海砦.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "薄荷C35-稻妻-清籁岛-平海砦", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4184.90234375, + "y": -4244.5654296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4169.0390625, + "y": -4230.4267578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4154.841796875, + "y": -4224.9873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4141.984375, + "y": -4231.1552734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4131.857421875, + "y": -4235.7509765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4128.349609375, + "y": -4236.26953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4121.568359375, + "y": -4242.5087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4108.375, + "y": -4259.009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4104.09375, + "y": -4262.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4097.984375, + "y": -4258.767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C36-稻妻-清籁岛-天云峠1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C36-稻妻-清籁岛-天云峠1.json new file mode 100644 index 00000000..7375cc9f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C36-稻妻-清籁岛-天云峠1.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "薄荷C36-稻妻-清籁岛-天云峠1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4251.87890625, + "y": -4785.451171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4235.798828125, + "y": -4843.4775390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4213.748046875, + "y": -5014.572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4212.259765625, + "y": -5092.5615234375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "6000" + }, + { + "id": 5, + "x": -4197.126953125, + "y": -5094.796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4164.876953125, + "y": -5090.455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4163.021484375, + "y": -5078.4912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4168.9609375, + "y": -5072.4833984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4169.583984375, + "y": -5063.044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4178.744140625, + "y": -5047.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4179.296875, + "y": -5040.744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4184.150390625, + "y": -5022.1689453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": -4184.791015625, + "y": -5019.26171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C37-稻妻-清籁岛-天云峠2(收集1100).json b/repo/pathing/薄荷/薄荷全收集/薄荷C37-稻妻-清籁岛-天云峠2(收集1100).json new file mode 100644 index 00000000..e0dd16e1 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C37-稻妻-清籁岛-天云峠2(收集1100).json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "薄荷C37-稻妻-清籁岛-天云峠2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4251.884765625, + "y": -4785.46484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4110.447265625, + "y": -4803.943359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "9000" + }, + { + "id": 3, + "x": -4107.728515625, + "y": -4794.7880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4081.443359375, + "y": -4770.9853515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4081.4404296875, + "y": -4750.0517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4059.36328125, + "y": -4739.17578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4054.76953125, + "y": -4726.3173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4063.3505859375, + "y": -4716.2734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4052.0712890625, + "y": -4721.0302734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4033.2783203125, + "y": -4740.3515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4022.51953125, + "y": -4764.1591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4012.421875, + "y": -4761.3916015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4023.5478515625, + "y": -4800.697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4018.732421875, + "y": -4809.935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4010.029296875, + "y": -4818.8935546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4009.1572265625, + "y": -4823.9541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3998.6513671875, + "y": -4813.7548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -3992.43359375, + "y": -4821.10546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -3989.1982421875, + "y": -4831.4873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -3968.2890625, + "y": -4856.8203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -3969.7138671875, + "y": -4873.9560546875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -3985.01171875, + "y": -4891.6318359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C38-稻妻-清籁岛-浅濑神社.json b/repo/pathing/薄荷/薄荷全收集/薄荷C38-稻妻-清籁岛-浅濑神社.json new file mode 100644 index 00000000..5bca2f7c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C38-稻妻-清籁岛-浅濑神社.json @@ -0,0 +1,328 @@ +{ + "info": { + "name": "薄荷C38-稻妻-清籁岛-浅濑神社", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3704.0859375, + "y": -4694.5673828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -3706.9404296875, + "y": -4679.6201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3706.4580078125, + "y": -4670.5341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3717.3173828125, + "y": -4636.876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3739.900390625, + "y": -4630.5634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3765.6181640625, + "y": -4596.734375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3704.0859375, + "y": -4694.5673828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3673.408203125, + "y": -4687.693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3668.6787109375, + "y": -4695.259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3659.0537109375, + "y": -4703.736328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3647.4892578125, + "y": -4698.2822265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3619.1591796875, + "y": -4700.7744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3618.5341796875, + "y": -4700.853515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3629.3125, + "y": -4710.3427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3648.88671875, + "y": -4723.7607421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3681.044921875, + "y": -4730.322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3696.869140625, + "y": -4731.4619140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -3682.0615234375, + "y": -4736.4658203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -3687.244140625, + "y": -4753.970703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -3690.2763671875, + "y": -4764.0615234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -3713.3212890625, + "y": -4765.2216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -3738.8525390625, + "y": -4762.20703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -3743.8994140625, + "y": -4749.8798828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 24, + "x": -3735.3642578125, + "y": -4748.7060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -3754.8349609375, + "y": -4743.1845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -3750.388671875, + "y": -4737.189453125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -3769.3818359375, + "y": -4737.7568359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -3764.2060546875, + "y": -4729.908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -3762.076171875, + "y": -4710.0048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -3737.046875, + "y": -4703.73828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -3760.5400390625, + "y": -4723.294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -3775.533203125, + "y": -4735.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -3792.2177734375, + "y": -4749.0302734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 34, + "x": -3776.8779296875, + "y": -4743.0185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": -3766.4892578125, + "y": -4739.4638671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C39-稻妻-鹤观-知比山.json b/repo/pathing/薄荷/薄荷全收集/薄荷C39-稻妻-鹤观-知比山.json new file mode 100644 index 00000000..7bf55221 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C39-稻妻-鹤观-知比山.json @@ -0,0 +1,194 @@ +{ + "info": { + "name": "薄荷C39-稻妻-鹤观-知比山", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2556.3955078125, + "y": -6007.484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -2550.7626953125, + "y": -5998.1181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2491.7177734375, + "y": -6005.126953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 4, + "x": -2484.990234375, + "y": -5993.1728515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2480.3603515625, + "y": -5980.2421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2481.6533203125, + "y": -5971.22265625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2556.3955078125, + "y": -6007.484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2567.68359375, + "y": -6002.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2612.95703125, + "y": -5977.796875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2664.6962890625, + "y": -5953.76953125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 11, + "x": -2659.6259765625, + "y": -5946.2783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2556.3955078125, + "y": -6007.484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 13, + "x": -2566.46875, + "y": -6002.796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2610.0791015625, + "y": -5979.5068359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2603.1689453125, + "y": -5924.1328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2575.1953125, + "y": -5891.638671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 17, + "x": -2578.2373046875, + "y": -5870.958984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2584.033203125, + "y": -5829.443359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2570.3505859375, + "y": -5810.1044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2543.005859375, + "y": -5824.8720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C40-稻妻-鹤观-笈名海滨.json b/repo/pathing/薄荷/薄荷全收集/薄荷C40-稻妻-鹤观-笈名海滨.json new file mode 100644 index 00000000..e903d9e7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C40-稻妻-鹤观-笈名海滨.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "薄荷C40-稻妻-鹤观-笈名海滨", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2606.25390625, + "y": -6216.26953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2597.8837890625, + "y": -6191.529296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2588.2724609375, + "y": -6175.4326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2573.8623046875, + "y": -6168.5205078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2549.7724609375, + "y": -6153.927734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2531.5859375, + "y": -6146.4580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2515.50390625, + "y": -6157.7373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2481.5341796875, + "y": -6177.9287109375, + "type": "target", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2811.1513671875, + "y": -6048.8408203125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2834.1884765625, + "y": -6084.1875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2869.8740234375, + "y": -6102.2001953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2878.44921875, + "y": -6097.4521484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2876.046875, + "y": -6106.4052734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2880.5029296875, + "y": -6129.9677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2871.638671875, + "y": -6132.802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2859.1298828125, + "y": -6143.0498046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2808.638671875, + "y": -6127.9521484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2772.908203125, + "y": -6100.0361328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2754.998046875, + "y": -6107.5986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2749.884765625, + "y": -6099.7919921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2741.3720703125, + "y": -6106.583984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -2723.490234375, + "y": -6085.251953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -2718.8525390625, + "y": -6079.421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -2671.333984375, + "y": -6072.6279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C41-稻妻-鹤观-茂知祭场1.json b/repo/pathing/薄荷/薄荷全收集/薄荷C41-稻妻-鹤观-茂知祭场1.json new file mode 100644 index 00000000..b0854ff4 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C41-稻妻-鹤观-茂知祭场1.json @@ -0,0 +1,193 @@ +{ + "info": { + "name": "薄荷C41-稻妻-鹤观-茂知祭场1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3268.6123046875, + "y": -6136.7109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -3279.6455078125, + "y": -6137.3955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3314.3369140625, + "y": -6120.2158203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": -3295.388671875, + "y": -6122.90625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3280.9443359375, + "y": -6113.07421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3266.4482421875, + "y": -6104.3681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3261.57421875, + "y": -6089.548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3241.1787109375, + "y": -6061.75390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3227.6259765625, + "y": -6049.7763671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3220.82421875, + "y": -6041.998046875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3224.9462890625, + "y": -6036.859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3242.828125, + "y": -6027.591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3257.099609375, + "y": -6020.9013671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3278.875, + "y": -6030.9296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3295.2265625, + "y": -6056.5625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3268.6123046875, + "y": -6136.7109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3271.259765625, + "y": -6166.9189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -3258.6455078125, + "y": -6157.6826171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -3234.236328125, + "y": -6156.5751953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -3234.1171875, + "y": -6145.1513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C42-稻妻-鹤观-茂知祭场2.json b/repo/pathing/薄荷/薄荷全收集/薄荷C42-稻妻-鹤观-茂知祭场2.json new file mode 100644 index 00000000..f8acde69 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C42-稻妻-鹤观-茂知祭场2.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷C42-稻妻-鹤观-茂知祭场2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3103.81640625, + "y": -6268.5810546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3099.9853515625, + "y": -6257.509765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3091.3408203125, + "y": -6245.75390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3107.603515625, + "y": -6247.279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3123.802734375, + "y": -6256.7958984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3136.3818359375, + "y": -6269.3974609375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3148.5947265625, + "y": -6269.130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3167.9189453125, + "y": -6263.169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3174.353515625, + "y": -6257.5791015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3176.685546875, + "y": -6259.720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3180.49609375, + "y": -6262.6298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3184.642578125, + "y": -6276.6552734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3185.830078125, + "y": -6283.83984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3181.6708984375, + "y": -6299.298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C43-稻妻-鹤观-茂知祭场3(收集1150,运行6h).json b/repo/pathing/薄荷/薄荷全收集/薄荷C43-稻妻-鹤观-茂知祭场3(收集1150,运行6h).json new file mode 100644 index 00000000..64869a89 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C43-稻妻-鹤观-茂知祭场3(收集1150,运行6h).json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "薄荷C43-稻妻-鹤观-茂知祭场3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2836.8203125, + "y": -6287.5126953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2841.6796875, + "y": -6291.052734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2857.7841796875, + "y": -6297.259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2870.021484375, + "y": -6314.7841796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2888.236328125, + "y": -6308.7587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2898.4345703125, + "y": -6305.267578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2914.1640625, + "y": -6299.57421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2920.6953125, + "y": -6291.5966796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2941.7509765625, + "y": -6286.662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2952.9169921875, + "y": -6281.666015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2964.58203125, + "y": -6281.357421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2977.2666015625, + "y": -6271.54296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2986.5693359375, + "y": -6278.546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2996.7734375, + "y": -6292.814453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3007.302734375, + "y": -6296.541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2985.6669921875, + "y": -6323.5634765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 17, + "x": -2975.984375, + "y": -6336.0546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2946.8037109375, + "y": -6338.2607421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2935.8759765625, + "y": -6355.8671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2904.5908203125, + "y": -6369.2783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2887.857421875, + "y": -6390.7705078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -2860.2294921875, + "y": -6387.283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -2831.9951171875, + "y": -6383.189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C44-稻妻-鹤观-茂知祭场4.json b/repo/pathing/薄荷/薄荷全收集/薄荷C44-稻妻-鹤观-茂知祭场4.json new file mode 100644 index 00000000..54efc230 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C44-稻妻-鹤观-茂知祭场4.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "薄荷C44-稻妻-鹤观-茂知祭场4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2836.8291015625, + "y": -6287.4892578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2818.20703125, + "y": -6244.84375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": -2811.630859375, + "y": -6237.50390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2811.775390625, + "y": -6221.7236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2823.96875, + "y": -6200.7216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2846.595703125, + "y": -6204.1474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2853.2255859375, + "y": -6209.5068359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2863.2568359375, + "y": -6207.296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2878.869140625, + "y": -6201.2880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2894.001953125, + "y": -6195.609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C45-稻妻-鹤观-惑饲滩.json b/repo/pathing/薄荷/薄荷全收集/薄荷C45-稻妻-鹤观-惑饲滩.json new file mode 100644 index 00000000..7ec2ef77 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C45-稻妻-鹤观-惑饲滩.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "薄荷C45-稻妻-鹤观-惑饲滩", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2612.3212890625, + "y": -6508.251953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2633.5009765625, + "y": -6505.12890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2643.580078125, + "y": -6495.861328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1200" + }, + { + "id": 4, + "x": -2637.8818359375, + "y": -6490.775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -2658.0498046875, + "y": -6484.2978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2674.7783203125, + "y": -6466.2822265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2694.994140625, + "y": -6457.37890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2723.310546875, + "y": -6457.2265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2746.806640625, + "y": -6466.97265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2777.0224609375, + "y": -6474.955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2800.2783203125, + "y": -6482.89453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2811.99609375, + "y": -6479.025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷C46-稻妻-鸣神岛-镇守之森.json b/repo/pathing/薄荷/薄荷全收集/薄荷C46-稻妻-鸣神岛-镇守之森.json new file mode 100644 index 00000000..93145afd --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷C46-稻妻-鸣神岛-镇守之森.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "薄荷C46-稻妻-鸣神岛-镇守之森", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4429.916015625, + "y": -2798.498046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4454.51171875, + "y": -2801.326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4490.0859375, + "y": -2787.9384765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4505.462890625, + "y": -2778.3310546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4508.544921875, + "y": -2778.474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4502.912109375, + "y": -2789.7080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4500.48046875, + "y": -2794.42578125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4489.564453125, + "y": -2805.2314453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4489.98828125, + "y": -2826.482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4483.2109375, + "y": -2833.4541015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": -4481.443359375, + "y": -2831.6181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E01-枫丹-海露港.json b/repo/pathing/薄荷/薄荷全收集/薄荷E01-枫丹-海露港.json new file mode 100644 index 00000000..11fbd53c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E01-枫丹-海露港.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "薄荷E01-枫丹-海露港", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4984.18896484375, + "y": 1699.791015625, + "action_params": "" + }, + { + "id": 2, + "x": 4977.69970703125, + "y": 1712.12548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4981.21875, + "y": 1735.72265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4969.58544921875, + "y": 1817.54638671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 4953.99365234375, + "y": 1819.2978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4916.28466796875, + "y": 1802.65478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4903.10888671875, + "y": 1792.3671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4893.7958984375, + "y": 1747.2373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4885.5126953125, + "y": 1776.16259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4859.14599609375, + "y": 1785.04248046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4827.43359375, + "y": 1780.99169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E02-枫丹-厄里那斯1.json b/repo/pathing/薄荷/薄荷全收集/薄荷E02-枫丹-厄里那斯1.json new file mode 100644 index 00000000..d50f798f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E02-枫丹-厄里那斯1.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "薄荷E02-枫丹-厄里那斯1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4625.865234375, + "y": 2182.688720703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4570.5595703125, + "y": 2236.6875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4525.56396484375, + "y": 2283.653076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4506.11962890625, + "y": 2280.9931640625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4625.7333984375, + "y": 2181.958984375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4559.45849609375, + "y": 2195.29443359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4512.0908203125, + "y": 2183.5615234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4496.59912109375, + "y": 2176.062744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4472.8818359375, + "y": 2165.9912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4469.07275390625, + "y": 2149.92236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4477.7138671875, + "y": 2140.664794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4505.99560546875, + "y": 2104.48046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4512.33740234375, + "y": 2077.497314453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4513.205078125, + "y": 2038.44775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4539.07275390625, + "y": 2045.46923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4609.060546875, + "y": 2047.80859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4630.19140625, + "y": 2057.357666015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4654.74169921875, + "y": 2057.752197265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4688.32080078125, + "y": 2052.30517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E03-枫丹-厄里那斯2.json b/repo/pathing/薄荷/薄荷全收集/薄荷E03-枫丹-厄里那斯2.json new file mode 100644 index 00000000..d28ce5ca --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E03-枫丹-厄里那斯2.json @@ -0,0 +1,363 @@ +{ + "info": { + "name": "薄荷E03-枫丹-厄里那斯2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4876.5576171875, + "y": 2255.205078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4856.44482421875, + "y": 2256.41748046875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4852.4931640625, + "y": 2254.96728515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4823.85009765625, + "y": 2247.295166015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4829.60693359375, + "y": 2247.7275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4859.36767578125, + "y": 2228.99853515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4854.7646484375, + "y": 2217.603759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4851.7646484375, + "y": 2208.382080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4851.04931640625, + "y": 2201.60009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4848.38916015625, + "y": 2197.47021484375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4850.3896484375, + "y": 2182.23388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4846.06787109375, + "y": 2166.6962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4844.8955078125, + "y": 2149.6201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4853.6455078125, + "y": 2137.07080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4857.279296875, + "y": 2130.028564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4877.38525390625, + "y": 2124.193359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4898.2705078125, + "y": 2112.695556640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4971.12646484375, + "y": 2097.218994140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 19, + "x": 4975.12158203125, + "y": 2106.476318359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4967.22509765625, + "y": 2128.027587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4959.44091796875, + "y": 2144.01904296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4952.55322265625, + "y": 2159.27392578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4941.5751953125, + "y": 2184.193603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4927.73486328125, + "y": 2187.596435546875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4953.19140625, + "y": 2192.154541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4960.3564453125, + "y": 2205.53662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 5009.70751953125, + "y": 2233.0810546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 28, + "x": 5016.3857421875, + "y": 2294.266357421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 5006.38232421875, + "y": 2308.878173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 5005.619140625, + "y": 2334.523681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 5024.46728515625, + "y": 2346.047607421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 5025.59716796875, + "y": 2352.90283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 4997.66259765625, + "y": 2357.2392578125, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 4987.47607421875, + "y": 2356.768798828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 4974.87939453125, + "y": 2353.15625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 4962.24658203125, + "y": 2357.524169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 4955.583984375, + "y": 2366.5400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 4939.076171875, + "y": 2396.105224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 4906.037109375, + "y": 2413.927490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E04-枫丹-厄里那斯3.json b/repo/pathing/薄荷/薄荷全收集/薄荷E04-枫丹-厄里那斯3.json new file mode 100644 index 00000000..fafe3553 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E04-枫丹-厄里那斯3.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "薄荷E04-枫丹-厄里那斯3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4689.4326171875, + "y": 2429.441650390625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4705.5, + "y": 2429.541015625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4709.8466796875, + "y": 2415.99169921875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 4749.56591796875, + "y": 2636.22607421875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4742.26806640625, + "y": 2634.981201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4730.31640625, + "y": 2607.3876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4693.82177734375, + "y": 2563.931884765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4666.11669921875, + "y": 2558.705322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4644.2021484375, + "y": 2552.33642578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4635.75634765625, + "y": 2558.07861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4628.19091796875, + "y": 2572.80224609375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 12, + "x": 4749.56494140625, + "y": 2636.219970703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4747.33203125, + "y": 2660.655029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4744.64453125, + "y": 2682.0302734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4741.9912109375, + "y": 2695.8994140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4737.30712890625, + "y": 2711.2470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4735.15185546875, + "y": 2725.724609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4730.74609375, + "y": 2731.744140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4722.5029296875, + "y": 2741.083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4714.4052734375, + "y": 2743.497802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4713.24755859375, + "y": 2776.701416015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4695.49951171875, + "y": 2790.287109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4688.59912109375, + "y": 2804.5830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4646.04296875, + "y": 2812.473388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4608.69580078125, + "y": 2814.254638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 5117.44287109375, + "y": 2543.38720703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 5106.40966796875, + "y": 2555.96044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 5086.06103515625, + "y": 2579.30712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 5073.81884765625, + "y": 2588.091064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 5051.63037109375, + "y": 2580.134033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 5040.34228515625, + "y": 2565.1103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 5022.13232421875, + "y": 2569.12353515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 5008.453125, + "y": 2571.053955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 5003.81787109375, + "y": 2576.05029296875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 4954.98193359375, + "y": 2760.1103515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 4982.00634765625, + "y": 2680.11572265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3800" + }, + { + "id": 37, + "x": 4928.37841796875, + "y": 2674.89501953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 4909.28466796875, + "y": 2695.0009765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 4903.30224609375, + "y": 2702.597900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 4897.79736328125, + "y": 2698.905029296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E05-枫丹-厄里那斯4.json b/repo/pathing/薄荷/薄荷全收集/薄荷E05-枫丹-厄里那斯4.json new file mode 100644 index 00000000..f512e52f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E05-枫丹-厄里那斯4.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "薄荷E05-枫丹-厄里那斯4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4954.97119140625, + "y": 2760.106201171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4922.3037109375, + "y": 2886.52783203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2000" + }, + { + "id": 3, + "x": 4901.87890625, + "y": 2888.7998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4868.6611328125, + "y": 2882.9912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4818.5146484375, + "y": 2852.75439453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 6, + "x": 4824.4306640625, + "y": 2851.573974609375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4828.83251953125, + "y": 2852.0595703125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4705.5341796875, + "y": 2951.564697265625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4714.1962890625, + "y": 2945.561767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4779.61083984375, + "y": 2931.82861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4804.01220703125, + "y": 2946.87060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4812.677734375, + "y": 2960.660400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4810.28515625, + "y": 2989.837158203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4818.29541015625, + "y": 2973.781494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4839.83984375, + "y": 2974.461669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4871.984375, + "y": 2990.612060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4912.85205078125, + "y": 3010.8193359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E06-枫丹-厄里那斯5.json b/repo/pathing/薄荷/薄荷全收集/薄荷E06-枫丹-厄里那斯5.json new file mode 100644 index 00000000..750e9b30 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E06-枫丹-厄里那斯5.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "薄荷E06-枫丹-厄里那斯5", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4954.96142578125, + "y": 2760.06494140625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4956.5693359375, + "y": 2773.498779296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 5102.79296875, + "y": 2831.802001953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1800" + }, + { + "id": 4, + "x": 5117.56982421875, + "y": 2828.78173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 5135.0927734375, + "y": 2836.428466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 5161.3681640625, + "y": 2840.304443359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 5277.3642578125, + "y": 2838.040771484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 5293.66064453125, + "y": 2834.673095703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 5298.2353515625, + "y": 2889.547607421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 5286.26611328125, + "y": 2919.197021484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 5294.98974609375, + "y": 2953.82568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 5113.58837890625, + "y": 2998.220703125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 5119.21875, + "y": 3029.952880859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": 5107.8447265625, + "y": 3033.275634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 5065.65869140625, + "y": 3062.11181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 5011.31982421875, + "y": 3103.376708984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4988.68408203125, + "y": 3131.14404296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 5002.61083984375, + "y": 3179.65087890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": 5008.9345703125, + "y": 3196.28125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E07-枫丹-秋分山西侧.json b/repo/pathing/薄荷/薄荷全收集/薄荷E07-枫丹-秋分山西侧.json new file mode 100644 index 00000000..ad6302be --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E07-枫丹-秋分山西侧.json @@ -0,0 +1,273 @@ +{ + "info": { + "name": "薄荷E07-枫丹-秋分山西侧", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4146.7939453125, + "y": 2606.3642578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 4158.0205078125, + "y": 2583.79443359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 4156.4345703125, + "y": 2572.126953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 4147.642578125, + "y": 2551.832275390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 4160.08642578125, + "y": 2495.91943359375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 4190.28466796875, + "y": 2449.256591796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 4194.94091796875, + "y": 2451.293701171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": 4146.7802734375, + "y": 2606.251220703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 9, + "x": 4285.51806640625, + "y": 2658.178955078125, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 4261.82861328125, + "y": 2674.483642578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 4231.45751953125, + "y": 2701.920166015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 4225.8818359375, + "y": 2706.350341796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 4231.9619140625, + "y": 2722.837890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 4237.76416015625, + "y": 2741.7763671875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 4220.50146484375, + "y": 2738.022216796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 4143.51123046875, + "y": 2749.1279296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 4134.60791015625, + "y": 2746.617431640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 4123.58935546875, + "y": 2735.0078125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 4148.40673828125, + "y": 2784.14306640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 4169.01904296875, + "y": 2815.43310546875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 4174.76123046875, + "y": 2833.981201171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 4190.41552734375, + "y": 2830.275146484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 4226.88525390625, + "y": 2809.1064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4252.11572265625, + "y": 2805.7099609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4281.70263671875, + "y": 2787.6494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4298.7119140625, + "y": 2788.34033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4335.2490234375, + "y": 2813.015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4337.2724609375, + "y": 2818.284912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4343.86767578125, + "y": 2825.752685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E08-枫丹-秋分山东侧(收集1200).json b/repo/pathing/薄荷/薄荷全收集/薄荷E08-枫丹-秋分山东侧(收集1200).json new file mode 100644 index 00000000..bea08d29 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E08-枫丹-秋分山东侧(收集1200).json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "薄荷E08-枫丹-秋分山东侧", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3917.171875, + "y": 2576.343017578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3925.4658203125, + "y": 2597.033447265625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 3927.744140625, + "y": 2604.61181640625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3932.822265625, + "y": 2597.8017578125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3956.4384765625, + "y": 2606.664794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3981.45703125, + "y": 2606.3955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3990.5439453125, + "y": 2608.21826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3984.52734375, + "y": 2615.726318359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E09-枫丹-枫丹廷1.json b/repo/pathing/薄荷/薄荷全收集/薄荷E09-枫丹-枫丹廷1.json new file mode 100644 index 00000000..9156d4cc --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E09-枫丹-枫丹廷1.json @@ -0,0 +1,255 @@ +{ + "info": { + "name": "薄荷E09-枫丹-枫丹廷1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4823.59814453125, + "y": 3628.760498046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4816.3876953125, + "y": 3642.2333984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4796.52001953125, + "y": 3657.0478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4797.72412109375, + "y": 3680.046630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4813.16064453125, + "y": 3750.449462890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4838.52294921875, + "y": 3739.707763671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4877.11767578125, + "y": 3700.868408203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4892.15966796875, + "y": 3695.5029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4902.70263671875, + "y": 3679.796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4934.8369140625, + "y": 3696.40380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4953.33837890625, + "y": 3701.916259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4981.2421875, + "y": 3703.4267578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4991.42626953125, + "y": 3711.125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4998.32666015625, + "y": 3715.946533203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 5026.91357421875, + "y": 3714.501708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 5089.404296875, + "y": 3731.2060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 5087.77783203125, + "y": 3746.23583984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 5071.5478515625, + "y": 3755.39892578125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4865.400390625, + "y": 3913.07666015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4889.69091796875, + "y": 3915.24462890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4913.69091796875, + "y": 3901.230224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4906.38134765625, + "y": 3907.53369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4904.73828125, + "y": 3928.507080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4925.38623046875, + "y": 3931.262939453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4979.6357421875, + "y": 3953.56787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 5012.79443359375, + "y": 3971.872802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 5017.587890625, + "y": 4008.16845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E10-枫丹-枫丹廷2.json b/repo/pathing/薄荷/薄荷全收集/薄荷E10-枫丹-枫丹廷2.json new file mode 100644 index 00000000..69533b0f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E10-枫丹-枫丹廷2.json @@ -0,0 +1,264 @@ +{ + "info": { + "name": "薄荷E10-枫丹-枫丹廷2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4599.63525390625, + "y": 4023.545654296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4608.32666015625, + "y": 4021.201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4648.0546875, + "y": 3978.915283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4651.06591796875, + "y": 3986.64892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4640.39453125, + "y": 3977.064208984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4606.28369140625, + "y": 3984.4111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4581.90087890625, + "y": 3971.37548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4537.8798828125, + "y": 3960.8046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4528.40771484375, + "y": 3933.55126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4527.4892578125, + "y": 3900.437744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4503.6064453125, + "y": 3877.379638671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4491.52880859375, + "y": 3865.3349609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4488.92919921875, + "y": 3850.224609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4455.96630859375, + "y": 3804.994384765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4414.8271484375, + "y": 3778.798583984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4366.8154296875, + "y": 3767.973876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4353.42529296875, + "y": 3750.369873046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4417.5068359375, + "y": 3788.80078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4469.2158203125, + "y": 3804.73388671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4540.36669921875, + "y": 3785.731201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4568.69482421875, + "y": 3790.881591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4602.716796875, + "y": 3803.885986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4597.97119140625, + "y": 3786.968994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4625.80712890625, + "y": 3775.378662109375, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4633.3076171875, + "y": 3776.41748046875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4642.02685546875, + "y": 3775.713134765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4661.7412109375, + "y": 3738.73779296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 28, + "x": 4675.92822265625, + "y": 3717.43505859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E11-枫丹-芒索斯山东麓.json b/repo/pathing/薄荷/薄荷全收集/薄荷E11-枫丹-芒索斯山东麓.json new file mode 100644 index 00000000..8b07f449 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E11-枫丹-芒索斯山东麓.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "薄荷E11-枫丹-芒索斯山东麓", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4984.7822265625, + "y": 4462.951171875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4992.94580078125, + "y": 4466.4228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 5051.97314453125, + "y": 4526.91845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 5074.5751953125, + "y": 4545.025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 5089.8212890625, + "y": 4568.1298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 5078.80712890625, + "y": 4593.49755859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E12-枫丹-新枫丹科学院1.json b/repo/pathing/薄荷/薄荷全收集/薄荷E12-枫丹-新枫丹科学院1.json new file mode 100644 index 00000000..56cf0356 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E12-枫丹-新枫丹科学院1.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷E12-枫丹-新枫丹科学院1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4624.4111328125, + "y": 4951.6748046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4596.326171875, + "y": 4974.72314453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4574.94189453125, + "y": 4970.6484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4625.2587890625, + "y": 4969.3564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4640.62939453125, + "y": 4977.19189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4631.88720703125, + "y": 4985.81298828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4647.734375, + "y": 5008.1044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4665.81982421875, + "y": 5030.56787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4636.5029296875, + "y": 5056.4365234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4624.6396484375, + "y": 5060.1787109375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4609.29345703125, + "y": 5064.7431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4549.45556640625, + "y": 5053.4169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4519.00244140625, + "y": 5039.484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4509.328125, + "y": 5079.6884765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E13-枫丹-新枫丹科学院2(运行6.5h).json b/repo/pathing/薄荷/薄荷全收集/薄荷E13-枫丹-新枫丹科学院2(运行6.5h).json new file mode 100644 index 00000000..e97cf362 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E13-枫丹-新枫丹科学院2(运行6.5h).json @@ -0,0 +1,354 @@ +{ + "info": { + "name": "薄荷E13-枫丹-新枫丹科学院2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4434.32763671875, + "y": 5091.73046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4431.26123046875, + "y": 5100.5126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4420.58984375, + "y": 5107.08544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4406.14208984375, + "y": 5119.021484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4393.5859375, + "y": 5111.1337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4330.39697265625, + "y": 5067.068359375, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4302.94921875, + "y": 5049.51904296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4286.4189453125, + "y": 5038.3330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4244.33837890625, + "y": 5046.8623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4234.88037109375, + "y": 5049.70751953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4151.52392578125, + "y": 5065.900390625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4097.82666015625, + "y": 5035.5986328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2800" + }, + { + "id": 13, + "x": 4093.275390625, + "y": 5036.427734375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4434.36279296875, + "y": 5091.7373046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4435.0830078125, + "y": 5070.9423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4438.58447265625, + "y": 5052.71630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4437.6845703125, + "y": 5028.650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4451.90380859375, + "y": 4994.22802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4455.474609375, + "y": 4984.3759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4466.04931640625, + "y": 4968.4775390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4470.85888671875, + "y": 4946.38525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4462.33544921875, + "y": 4922.2978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4451.75146484375, + "y": 4898.9755859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4446.68115234375, + "y": 4884.10595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4435.697265625, + "y": 4889.88671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4428.34326171875, + "y": 4888.99365234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4420.81787109375, + "y": 4885.7724609375, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4417.1123046875, + "y": 4888.08544921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4411.3603515625, + "y": 4890.705078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 4415.73046875, + "y": 4892.29443359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 4421.86181640625, + "y": 4904.07861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 4405.373046875, + "y": 4908.15478515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 4400.04833984375, + "y": 4909.29833984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 4399.56787109375, + "y": 4911.33447265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 4396.47509765625, + "y": 4914.5244140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 4392.6015625, + "y": 4913.1650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 4386.96142578125, + "y": 4916.72265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 4385.94482421875, + "y": 4928.201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E14-枫丹-新枫丹科学院3.json b/repo/pathing/薄荷/薄荷全收集/薄荷E14-枫丹-新枫丹科学院3.json new file mode 100644 index 00000000..6fe8bdce --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E14-枫丹-新枫丹科学院3.json @@ -0,0 +1,507 @@ +{ + "info": { + "name": "薄荷E14-枫丹-新枫丹科学院3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4498.1298828125, + "y": 4710.787109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4504.22119140625, + "y": 4727.705078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4511.64697265625, + "y": 4735.15625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 4520.10791015625, + "y": 4743.8115234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4534.08740234375, + "y": 4759.20703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4559.328125, + "y": 4785.71435546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4571.1337890625, + "y": 4813.4912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4575.7099609375, + "y": 4813.537109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4577.5849609375, + "y": 4809.740234375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4498.16796875, + "y": 4710.7861328125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4481.98974609375, + "y": 4688.603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4463.720703125, + "y": 4663.0390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4464.7734375, + "y": 4654.60546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4471.3974609375, + "y": 4612.654296875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4488.2998046875, + "y": 4614.70654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4487.337890625, + "y": 4587.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4476.99462890625, + "y": 4572.6181640625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4301.29638671875, + "y": 4764.9912109375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4316.64208984375, + "y": 4774.380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4338.84375, + "y": 4787.8623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4355.548828125, + "y": 4792.43896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4373.623046875, + "y": 4792.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4365.92333984375, + "y": 4799.1650390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4348.46875, + "y": 4813.0576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4368.5234375, + "y": 4822.681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4380.18359375, + "y": 4835.56396484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4386.07666015625, + "y": 4837.19384765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4389.4326171875, + "y": 4831.54345703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4392.8359375, + "y": 4817.86962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 4399.43212890625, + "y": 4802.54150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 4401.53662109375, + "y": 4797.7802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 4396.41845703125, + "y": 4781.85791015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 4395.626953125, + "y": 4766.60888671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 4392.806640625, + "y": 4756.6494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 4398.27197265625, + "y": 4743.47900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 4387.4658203125, + "y": 4729.81298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 4381.6416015625, + "y": 4719.748046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 4380.05029296875, + "y": 4704.5732421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 4387.3916015625, + "y": 4681.48046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 4396.5419921875, + "y": 4679.4248046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 4396.11572265625, + "y": 4679.970703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 4382.4921875, + "y": 4678.53125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 4367.51708984375, + "y": 4673.7265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 4352.25244140625, + "y": 4663.806640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 4343.79150390625, + "y": 4658.0771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 4319.984375, + "y": 4661.17431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 4300.6083984375, + "y": 4633.64013671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 4292.31787109375, + "y": 4600.9189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 4304.5244140625, + "y": 4612.4208984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 50, + "x": 4310.33837890625, + "y": 4620.125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 51, + "x": 4334.92529296875, + "y": 4622.880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 52, + "x": 4341.1923828125, + "y": 4612.87451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 53, + "x": 4366.77099609375, + "y": 4598.53662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 54, + "x": 4368.6728515625, + "y": 4586.52685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 55, + "x": 4369.1416015625, + "y": 4578.0869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E15-枫丹-新枫丹科学院4(收集1250).json b/repo/pathing/薄荷/薄荷全收集/薄荷E15-枫丹-新枫丹科学院4(收集1250).json new file mode 100644 index 00000000..36e4d783 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E15-枫丹-新枫丹科学院4(收集1250).json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "薄荷E15-枫丹-新枫丹科学院4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4301.27978515625, + "y": 4765.05810546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4316.0380859375, + "y": 4773.32861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4305.93701171875, + "y": 4785.38525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4287.01708984375, + "y": 4791.61474609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4256.01220703125, + "y": 4802.923828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4239.2255859375, + "y": 4807.6875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4219.76123046875, + "y": 4821.1103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4165.15576171875, + "y": 4839.08544921875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4001.05078125, + "y": 4878.4296875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4010.779296875, + "y": 4830.87158203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4013.634765625, + "y": 4819.32373046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4029.0908203125, + "y": 4822.458984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4052.208984375, + "y": 4824.8525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4001.064453125, + "y": 4878.39501953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3999.513671875, + "y": 4902.2861328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3997.2177734375, + "y": 4943.087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4002.482421875, + "y": 4973.8720703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 18, + "x": 3982.49609375, + "y": 4956.2900390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3970.1904296875, + "y": 4948.24609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3961.48828125, + "y": 4932.826171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3952.751953125, + "y": 4925.10009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3929.5009765625, + "y": 4895.625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3918.1552734375, + "y": 4865.9130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3912.7392578125, + "y": 4851.55908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E16-枫丹-新枫丹科学院5.json b/repo/pathing/薄荷/薄荷全收集/薄荷E16-枫丹-新枫丹科学院5.json new file mode 100644 index 00000000..9031723a --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E16-枫丹-新枫丹科学院5.json @@ -0,0 +1,238 @@ +{ + "info": { + "name": "薄荷E16-枫丹-新枫丹科学院5", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3811.7255859375, + "y": 4952.5078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 3811.080078125, + "y": 4958.89111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3812.205078125, + "y": 4982.095703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3839.3623046875, + "y": 4959.759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3841.7802734375, + "y": 4943.44091796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3866.4658203125, + "y": 4960.1591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3879.9091796875, + "y": 4978.68701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3909.5986328125, + "y": 5002.0341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3915.0576171875, + "y": 4989.70263671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3811.7255859375, + "y": 4952.5078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3800.595703125, + "y": 4940.79541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3799.2373046875, + "y": 4921.8994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3789.4990234375, + "y": 4922.19287109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3782.220703125, + "y": 4918.0390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3764.0498046875, + "y": 4943.00830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3758.88671875, + "y": 4964.2978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3729.85546875, + "y": 4958.685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3700.83984375, + "y": 4950.92919921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3693.0791015625, + "y": 4932.19482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3679.5146484375, + "y": 4943.2939453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3646.5009765625, + "y": 4956.3994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3649.6337890625, + "y": 4934.05419921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3653.8134765625, + "y": 4896.78955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3621.71875, + "y": 4889.8076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3595.384765625, + "y": 4869.572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E17-枫丹-中央实验室遗址1.json b/repo/pathing/薄荷/薄荷全收集/薄荷E17-枫丹-中央实验室遗址1.json new file mode 100644 index 00000000..bf687831 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E17-枫丹-中央实验室遗址1.json @@ -0,0 +1,221 @@ +{ + "info": { + "name": "薄荷E17-枫丹-中央实验室遗址1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3636.08203125, + "y": 4796.14501953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 3615.625, + "y": 4775.6005859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3592.5234375, + "y": 4779.9853515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3569.18359375, + "y": 4778.0693359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3636.08203125, + "y": 4796.14501953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3675.048828125, + "y": 4807.74169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3705.32421875, + "y": 4804.50927734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3728.275390625, + "y": 4825.93359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3765.111328125, + "y": 4812.63671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3785.09765625, + "y": 4797.11279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3817.2822265625, + "y": 4782.5751953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3822.8896484375, + "y": 4760.78515625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3636.08203125, + "y": 4796.14501953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 14, + "x": 3652.6845703125, + "y": 4740.66015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3682.583984375, + "y": 4730.427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3697.064453125, + "y": 4723.7587890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3704.05859375, + "y": 4715.494140625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3717.5498046875, + "y": 4715.70947265625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3729.4326171875, + "y": 4710.52978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3757.2333984375, + "y": 4704.2060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3772.6494140625, + "y": 4678.07177734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3804.4755859375, + "y": 4673.30712890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 23, + "x": 3822.03515625, + "y": 4670.96142578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E18-枫丹-中央实验室遗址2.json b/repo/pathing/薄荷/薄荷全收集/薄荷E18-枫丹-中央实验室遗址2.json new file mode 100644 index 00000000..79b00c2c --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E18-枫丹-中央实验室遗址2.json @@ -0,0 +1,454 @@ +{ + "info": { + "name": "薄荷E18-枫丹-中央实验室遗址2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3846.9296875, + "y": 4652.86669921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3841.650390625, + "y": 4642.662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3845.177734375, + "y": 4610.50732421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3822.138671875, + "y": 4616.28515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3804.0673828125, + "y": 4628.05029296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3843.0361328125, + "y": 4601.18017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3857.5810546875, + "y": 4591.4990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3868.482421875, + "y": 4578.8349609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3871.6982421875, + "y": 4574.5869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3883.193359375, + "y": 4569.9951171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3894.4306640625, + "y": 4567.857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3920.470703125, + "y": 4564.24462890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3964.0185546875, + "y": 4549.9677734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": 3968.1083984375, + "y": 4548.24609375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3865.1357421875, + "y": 4492.2978515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3869.064453125, + "y": 4489.306640625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3911.5322265625, + "y": 4485.0849609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 18, + "x": 3916.755859375, + "y": 4483.970703125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3865.1357421875, + "y": 4492.30419921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3839.517578125, + "y": 4463.21875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3816.73828125, + "y": 4476.6171875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3865.12890625, + "y": 4492.3173828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3854.28125, + "y": 4477.287109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3862.1298828125, + "y": 4463.2216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3859.083984375, + "y": 4450.8466796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3872.59765625, + "y": 4432.4072265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3883.6220703125, + "y": 4430.2802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3889.6513671875, + "y": 4429.19677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3904.6494140625, + "y": 4417.1630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3914.0419921875, + "y": 4423.3076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3963.0478515625, + "y": 4432.876953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 32, + "x": 3968.2392578125, + "y": 4433.7490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 3628.4853515625, + "y": 4447.57666015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 34, + "x": 3653.23046875, + "y": 4477.52294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 3660.419921875, + "y": 4486.04443359375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 3672.4248046875, + "y": 4499.5966796875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 3628.4853515625, + "y": 4447.57666015625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 3619.2783203125, + "y": 4447.037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 3612.794921875, + "y": 4429.6572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 3612.5, + "y": 4386.703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 41, + "x": 3617.6767578125, + "y": 4354.81298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 42, + "x": 3617.0283203125, + "y": 4339.1708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 43, + "x": 3610.259765625, + "y": 4330.50048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 44, + "x": 3620.765625, + "y": 4323.548828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 45, + "x": 3647.4765625, + "y": 4320.63232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 46, + "x": 3664.6259765625, + "y": 4325.5654296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 47, + "x": 3686.62890625, + "y": 4330.46630859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 48, + "x": 3730.619140625, + "y": 4323.619140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 49, + "x": 3753.404296875, + "y": 4305.93701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E19-枫丹-中央实验室遗址3.json b/repo/pathing/薄荷/薄荷全收集/薄荷E19-枫丹-中央实验室遗址3.json new file mode 100644 index 00000000..e19c3c3e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E19-枫丹-中央实验室遗址3.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷E19-枫丹-中央实验室遗址3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3923.0908203125, + "y": 4233.85498046875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3950.0712890625, + "y": 4251.712890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4035.3310546875, + "y": 4261.40283203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 4, + "x": 4083.068359375, + "y": 4260.36328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4097.8447265625, + "y": 4268.1689453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4115.5107421875, + "y": 4267.2783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4133.9638671875, + "y": 4274.9423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4154.00732421875, + "y": 4273.119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4182.71533203125, + "y": 4271.0537109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4210.8564453125, + "y": 4267.81201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4227.6953125, + "y": 4262.8544921875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4287.1298828125, + "y": 4277.5986328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 13, + "x": 4292.38818359375, + "y": 4278.00830078125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3923.0751953125, + "y": 4233.876953125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3928.5224609375, + "y": 4234.62451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3984.361328125, + "y": 4236.21728515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4011.2685546875, + "y": 4184.36083984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4032.6943359375, + "y": 4012.64501953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "800" + }, + { + "id": 19, + "x": 4043.6748046875, + "y": 4015.56787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4063.833984375, + "y": 4030.492431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4080.595703125, + "y": 4041.9423828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E20-枫丹-优兰尼娅湖(收集1300).json b/repo/pathing/薄荷/薄荷全收集/薄荷E20-枫丹-优兰尼娅湖(收集1300).json new file mode 100644 index 00000000..1561e27d --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E20-枫丹-优兰尼娅湖(收集1300).json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷E20-枫丹-优兰尼娅湖", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3618.2568359375, + "y": 4057.9853515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3634.6884765625, + "y": 4064.506103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3672.34765625, + "y": 4064.025146484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3695.5693359375, + "y": 4049.059814453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3702.015625, + "y": 4040.90185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3724.5341796875, + "y": 4047.0634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3751.6494140625, + "y": 4020.486572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3754.12109375, + "y": 4012.21044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3764.28515625, + "y": 3968.169189453125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3759.615234375, + "y": 3953.51025390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 3765.478515625, + "y": 3938.905517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3764.2392578125, + "y": 3928.06298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3770.056640625, + "y": 3903.811767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3785.1015625, + "y": 3909.860595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3814.8984375, + "y": 3920.11328125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3618.2255859375, + "y": 4057.919677734375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3604.7900390625, + "y": 4079.25048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3593.3603515625, + "y": 4092.707275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3576.251953125, + "y": 4084.384033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3579.21875, + "y": 4106.58056640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3529.2060546875, + "y": 4101.91064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3528.689453125, + "y": 4118.42578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3519.0068359375, + "y": 4152.25244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3528.876953125, + "y": 4151.7255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3550.2900390625, + "y": 4149.984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3553.6953125, + "y": 4146.025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3551.728515625, + "y": 4157.43896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3549.2373046875, + "y": 4192.53564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3609.51953125, + "y": 4165.78662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3636.8544921875, + "y": 4160.3671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3625.7314453125, + "y": 4133.67431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E21-枫丹-茉洁站.json b/repo/pathing/薄荷/薄荷全收集/薄荷E21-枫丹-茉洁站.json new file mode 100644 index 00000000..597af3c5 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E21-枫丹-茉洁站.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "薄荷E21-枫丹-茉洁站", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3635.5517578125, + "y": 3801.353271484375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3616.1962890625, + "y": 3869.81103515625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3611.7734375, + "y": 3882.927734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3579.939453125, + "y": 3903.029541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3569.29296875, + "y": 3921.608154296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3554.5595703125, + "y": 3895.806884765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3527.7744140625, + "y": 3897.809326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3516.068359375, + "y": 3897.736572265625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3499.8720703125, + "y": 3898.860595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3500.64453125, + "y": 3874.07275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3516.28125, + "y": 3826.423828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3524.216796875, + "y": 3814.275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3535.3310546875, + "y": 3820.552490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3541.5107421875, + "y": 3835.134765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3542.68359375, + "y": 3825.415283203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3566.9892578125, + "y": 3787.5703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3556.265625, + "y": 3770.156982421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3504.435546875, + "y": 3734.662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3500.916015625, + "y": 3716.546142578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3493.5048828125, + "y": 3710.722412109375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3490.142578125, + "y": 3698.530517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3487.4267578125, + "y": 3676.667236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3489.1083984375, + "y": 3659.665771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3489.4873046875, + "y": 3635.3544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3538.0380859375, + "y": 3637.80224609375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3773.9736328125, + "y": 3784.02685546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3796.62890625, + "y": 3779.85986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3803.5224609375, + "y": 3778.08251953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3821.0712890625, + "y": 3773.33056640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3845.4521484375, + "y": 3752.57470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3873.9140625, + "y": 3728.166748046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 32, + "x": 3879.6533203125, + "y": 3722.572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E22-枫丹-幽林雾道1.json b/repo/pathing/薄荷/薄荷全收集/薄荷E22-枫丹-幽林雾道1.json new file mode 100644 index 00000000..9c34cae8 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E22-枫丹-幽林雾道1.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "薄荷E22-枫丹-幽林雾道1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3469.95703125, + "y": 3551.998291015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3492.9873046875, + "y": 3532.657470703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3499.2490234375, + "y": 3528.780029296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3505.3603515625, + "y": 3509.2373046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 3491.6953125, + "y": 3482.416259765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 3480.859375, + "y": 3476.987548828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3473.4140625, + "y": 3463.21533203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3461.66015625, + "y": 3454.1337890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 3468.0986328125, + "y": 3446.912841796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 3487.6162109375, + "y": 3448.1220703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 3508.9296875, + "y": 3462.55419921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 3513.2578125, + "y": 3461.85888671875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 3524.34375, + "y": 3477.260986328125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 3527.349609375, + "y": 3466.23876953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 3533.1279296875, + "y": 3445.57421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 16, + "x": 3595.76953125, + "y": 3254.351806640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 17, + "x": 3593.0732421875, + "y": 3264.64404296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 3579, + "y": 3336.699951171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 3599.7236328125, + "y": 3363.217041015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 20, + "x": 3367.1923828125, + "y": 3294.16650390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 21, + "x": 3377.427734375, + "y": 3294.478271484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 3381.01171875, + "y": 3287.103515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 3388.2421875, + "y": 3282.590576171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 3391.8505859375, + "y": 3276.58642578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 3416.69140625, + "y": 3280.855712890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 3427.9912109375, + "y": 3257.50244140625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 3432.876953125, + "y": 3241.0498046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 3425.099609375, + "y": 3239.58740234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 3387.57421875, + "y": 3233.10107421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 3335.6064453125, + "y": 3224.61376953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 3338.4521484375, + "y": 3209.706787109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 32, + "x": 3469.5927734375, + "y": 3551.060546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 3454.181640625, + "y": 3560.197998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 3430.8408203125, + "y": 3565.05712890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 3423.216796875, + "y": 3573.5908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 3418.171875, + "y": 3582.663330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 3404.2548828125, + "y": 3610.3603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 3387.951171875, + "y": 3610.27783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 3377.2431640625, + "y": 3666.531494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 3383.1162109375, + "y": 3700.9580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E23-枫丹-幽林雾道2.json b/repo/pathing/薄荷/薄荷全收集/薄荷E23-枫丹-幽林雾道2.json new file mode 100644 index 00000000..cd9821da --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E23-枫丹-幽林雾道2.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "薄荷E23-枫丹-幽林雾道2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3199.82421875, + "y": 3433.900390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3212.1865234375, + "y": 3432.423828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3218.865234375, + "y": 3429.46337890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3230.705078125, + "y": 3424.8916015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 3257.2734375, + "y": 3421.66650390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 3265.3017578125, + "y": 3421.470703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3303.9609375, + "y": 3407.221923828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3292.2412109375, + "y": 3372.8037109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 3264.5361328125, + "y": 3398.67578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 3241.888671875, + "y": 3383.505859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 3216.876953125, + "y": 3403.029296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 3210.09375, + "y": 3399.526123046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 3181.9423828125, + "y": 3366.760009765625, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E24-枫丹-湖中垂柳.json b/repo/pathing/薄荷/薄荷全收集/薄荷E24-枫丹-湖中垂柳.json new file mode 100644 index 00000000..1d4d55d6 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E24-枫丹-湖中垂柳.json @@ -0,0 +1,336 @@ +{ + "info": { + "name": "薄荷E24-枫丹-湖中垂柳", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3258.037109375, + "y": 3672.810546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3251.75390625, + "y": 3690.613037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3259.2060546875, + "y": 3695.078369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3266.0244140625, + "y": 3692.069580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3247.60546875, + "y": 3696.789794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3235.701171875, + "y": 3693.532958984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3223.634765625, + "y": 3687.010009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3217.869140625, + "y": 3691.443603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3196.66015625, + "y": 3698.10205078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3172.3095703125, + "y": 3694.464599609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3166.443359375, + "y": 3702.755126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3163.0390625, + "y": 3712.340087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3159.666015625, + "y": 3717.40380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3141.9697265625, + "y": 3720.18017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3136.068359375, + "y": 3736.209228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3129.77734375, + "y": 3745.51123046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3111.6083984375, + "y": 3774.488037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3105.3349609375, + "y": 3810.2802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3097.7783203125, + "y": 3826.213623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3095.361328125, + "y": 3842.765380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3103.9365234375, + "y": 3847.126708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3109.6328125, + "y": 3863.80712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3124.705078125, + "y": 3869.44482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3137.6416015625, + "y": 3876.0087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3153.8857421875, + "y": 3880.409912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3162.0517578125, + "y": 3884.9306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3167.1845703125, + "y": 3880.114501953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3199.3759765625, + "y": 3871.015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3206.6591796875, + "y": 3871.26513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3214.453125, + "y": 3858.878173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3234.04296875, + "y": 3851.023681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 3259.10546875, + "y": 3822.711181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 3264.06640625, + "y": 3807.551513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 3269.712890625, + "y": 3795.66455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 3279.642578125, + "y": 3772.0771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 3292.67578125, + "y": 3738.007080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E25-枫丹-卡布狄斯堡遗迹(收集1350,运行7h).json b/repo/pathing/薄荷/薄荷全收集/薄荷E25-枫丹-卡布狄斯堡遗迹(收集1350,运行7h).json new file mode 100644 index 00000000..10463f8d --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E25-枫丹-卡布狄斯堡遗迹(收集1350,运行7h).json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "薄荷E25-枫丹-卡布狄斯堡遗迹", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3252.48828125, + "y": 2963.612060546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3261.953125, + "y": 2959.1787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3285.96484375, + "y": 2950.781982421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3309.4619140625, + "y": 2956.48095703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3368.83203125, + "y": 2982.48828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3384.8115234375, + "y": 3009.881103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3394.435546875, + "y": 3016.6171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3398.2138671875, + "y": 3010.64306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3397.2158203125, + "y": 3022.986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3378.427734375, + "y": 3030.913330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3358.376953125, + "y": 3030.318115234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3350.9833984375, + "y": 3025.0986328125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3383.255859375, + "y": 2692.281494140625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3380.1083984375, + "y": 2689.381103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3328.8720703125, + "y": 2633.456298828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3283.6591796875, + "y": 2584.664794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3243.5185546875, + "y": 2540.7333984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3216.515625, + "y": 2473.52392578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 19, + "x": 3226.7998046875, + "y": 2463.792236328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3243.80859375, + "y": 2460.523193359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷E26-枫丹-佩特莉可镇.json b/repo/pathing/薄荷/薄荷全收集/薄荷E26-枫丹-佩特莉可镇.json new file mode 100644 index 00000000..d3c43843 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷E26-枫丹-佩特莉可镇.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷E26-枫丹-佩特莉可镇", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4322.158203125, + "y": 1172.81298828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4330.75537109375, + "y": 1187.048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4327.44580078125, + "y": 1203.20263671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4322.21484375, + "y": 1208.1259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4317.19482421875, + "y": 1207.98828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4311.01025390625, + "y": 1209.69189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4305.1083984375, + "y": 1204.02001953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4298.470703125, + "y": 1211.33984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4292.0888671875, + "y": 1216.13720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4291.7412109375, + "y": 1220.28662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4291.5146484375, + "y": 1223.3427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4293.80810546875, + "y": 1229.16064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4300.12744140625, + "y": 1235.40380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4306.42529296875, + "y": 1236.9931640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4310.6416015625, + "y": 1241.3525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4322.62060546875, + "y": 1236.697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4328.6591796875, + "y": 1239.03857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4328.29638671875, + "y": 1233.232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4331.84130859375, + "y": 1228.37353515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4329.345703125, + "y": 1223.00390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4333.54931640625, + "y": 1217.9150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4348.82763671875, + "y": 1204.2119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4345.7197265625, + "y": 1208.60546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4355.92431640625, + "y": 1215.265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4367.3046875, + "y": 1220.669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4378.14208984375, + "y": 1214.677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4381.943359375, + "y": 1204.8154296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4384.97021484375, + "y": 1197.85986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4383.373046875, + "y": 1196.40576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 4388.18310546875, + "y": 1194.92431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 4399.005859375, + "y": 1197.546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F01-纳塔-回声之子.json b/repo/pathing/薄荷/薄荷全收集/薄荷F01-纳塔-回声之子.json new file mode 100644 index 00000000..0f6cc156 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F01-纳塔-回声之子.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "薄荷F01-纳塔-回声之子", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 7234.33, + "y": -1433.29, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 7229.36, + "y": -1419.08, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 7254.17, + "y": -1393.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 7303.35, + "y": -1373.92, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 7353.04, + "y": -1346.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F02-纳塔-流泉之众1.json b/repo/pathing/薄荷/薄荷全收集/薄荷F02-纳塔-流泉之众1.json new file mode 100644 index 00000000..bc91cff7 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F02-纳塔-流泉之众1.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "薄荷F02-纳塔-流泉之众1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8940.37, + "y": -2306.54, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 8964.97, + "y": -2347.88, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 8980.17, + "y": -2370.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 8989.47, + "y": -2396.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 8994.71, + "y": -2408.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 8988.1, + "y": -2415.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F03-纳塔-流泉之众2.json b/repo/pathing/薄荷/薄荷全收集/薄荷F03-纳塔-流泉之众2.json new file mode 100644 index 00000000..cc5fcb42 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F03-纳塔-流泉之众2.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "薄荷F03-纳塔-流泉之众2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8918.96, + "y": -2679.1, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 8885.73, + "y": -2673.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 8856.26, + "y": -2645.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 8856.16, + "y": -2622.72, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 8849.99, + "y": -2619.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 8870.86, + "y": -2568.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F04-纳塔-流泉之众3.json b/repo/pathing/薄荷/薄荷全收集/薄荷F04-纳塔-流泉之众3.json new file mode 100644 index 00000000..5972abbf --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F04-纳塔-流泉之众3.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "薄荷F04-纳塔-流泉之众3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8581.96, + "y": -2675.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 8550.77, + "y": -2680.36, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 8542.66, + "y": -2688.59, + "action": "stop_flying", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F05-纳塔-流泉之众4.json b/repo/pathing/薄荷/薄荷全收集/薄荷F05-纳塔-流泉之众4.json new file mode 100644 index 00000000..6ea57235 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F05-纳塔-流泉之众4.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "薄荷F05-纳塔-流泉之众4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 8291.72, + "y": -2922.47, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 8223.16, + "y": -2963.49, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 8211.91, + "y": -2981.35, + "type": "path", + "move_mode": "walk", + "action": "pick_around", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F06-纳塔-流泉之众5.json b/repo/pathing/薄荷/薄荷全收集/薄荷F06-纳塔-流泉之众5.json new file mode 100644 index 00000000..55fd09af --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F06-纳塔-流泉之众5.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "薄荷F06-纳塔-流泉之众5", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9038.75, + "y": -2429.34, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 9058.71, + "y": -2435.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 9060.26, + "y": -2446.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9070.39, + "y": -2450.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 9070.71, + "y": -2459.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F07-纳塔-烟密主1.json b/repo/pathing/薄荷/薄荷全收集/薄荷F07-纳塔-烟密主1.json new file mode 100644 index 00000000..9c72930a --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F07-纳塔-烟密主1.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "薄荷F07-纳塔-烟密主1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9396.56, + "y": -1810.51, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 9384.06, + "y": -1824.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 9382.92, + "y": -1847.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9327.85, + "y": -1807.82, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 9319.83, + "y": -1803.08, + "type": "path", + "move_mode": "walk", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F08-纳塔-烟密主2.json b/repo/pathing/薄荷/薄荷全收集/薄荷F08-纳塔-烟密主2.json new file mode 100644 index 00000000..cec4da2f --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F08-纳塔-烟密主2.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "薄荷F08-纳塔-烟密主2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9471.2, + "y": -1673.55, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 9499.67, + "y": -1638.29, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 9482.24, + "y": -1603.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9461.35, + "y": -1576.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 9438.95, + "y": -1562.17, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 9422.84, + "y": -1570.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 9475.4, + "y": -1533.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F09-纳塔-烟密主3.json b/repo/pathing/薄荷/薄荷全收集/薄荷F09-纳塔-烟密主3.json new file mode 100644 index 00000000..97292466 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F09-纳塔-烟密主3.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "薄荷F09-纳塔-烟密主3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9540.71, + "y": -1784.63, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 9557.16, + "y": -1785.62, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 9565.23, + "y": -1782.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9646.71, + "y": -1711.95, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F10-纳塔-烟密主4.json b/repo/pathing/薄荷/薄荷全收集/薄荷F10-纳塔-烟密主4.json new file mode 100644 index 00000000..a90398bf --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F10-纳塔-烟密主4.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "薄荷F10-纳塔-烟密主4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9782.41, + "y": -1764.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 9803.54, + "y": -1763.86, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 9827.73, + "y": -1764.32, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 4, + "x": 9989.43, + "y": -1607.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 5, + "x": 9968.27, + "y": -1590.47, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 9909.45, + "y": -1590.67, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 9881.22, + "y": -1609.62, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 9854.49, + "y": -1575.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 9784.05, + "y": -1481.07, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 9788.14, + "y": -1490.15, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F11-纳塔-花语会1.json b/repo/pathing/薄荷/薄荷全收集/薄荷F11-纳塔-花语会1.json new file mode 100644 index 00000000..c215f5da --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F11-纳塔-花语会1.json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "薄荷F11-纳塔-花语会1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9548.26, + "y": -1116.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 9557.24, + "y": -1105.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 9665.11, + "y": -1123.71, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 9684.42, + "y": -1112.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 9723.97, + "y": -1056.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 9736.88, + "y": -1042.79, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 9746.91, + "y": -1017.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 9755.59, + "y": -999.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 9798.9, + "y": -945.04, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 9797.33, + "y": -936.55, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 9812.15, + "y": -906.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 9821.15, + "y": -899.53, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 9830.49, + "y": -885.32, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 9856.34, + "y": -825.75, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 9857.59, + "y": -821.25, + "type": "path", + "move_mode": "climb", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 9860.48, + "y": -816.73, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 9870.03, + "y": -805.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 9880.25, + "y": -769.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 9875.89, + "y": -767.42, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F12-纳塔-花语会2.json b/repo/pathing/薄荷/薄荷全收集/薄荷F12-纳塔-花语会2.json new file mode 100644 index 00000000..5c70d9b3 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F12-纳塔-花语会2.json @@ -0,0 +1,211 @@ +{ + "info": { + "name": "薄荷F12-纳塔-花语会2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9719.22, + "y": -852.02, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 9741.48, + "y": -836.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 9742.26, + "y": -827.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9759.26, + "y": -812.4, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 9764.58, + "y": -800.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 9771.9, + "y": -795.05, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 9719.22, + "y": -852.02, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 9705.01, + "y": -864.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 9680.67, + "y": -884.43, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 9674.0, + "y": -894.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 9659.39, + "y": -902.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 9617.83, + "y": -907.93, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 9604.87, + "y": -918.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 9581.57, + "y": -935.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 9569.52, + "y": -943.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 9559.09, + "y": -964.22, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 9550.58, + "y": -955.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 9554.17, + "y": -961.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 9534.86, + "y": -979.53, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 9517.63, + "y": -984.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 9495.56, + "y": -1010.34, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 9473.68, + "y": -1011.47, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F13-纳塔-花语会3.json b/repo/pathing/薄荷/薄荷全收集/薄荷F13-纳塔-花语会3.json new file mode 100644 index 00000000..a6d3be96 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F13-纳塔-花语会3.json @@ -0,0 +1,237 @@ +{ + "info": { + "name": "薄荷F13-纳塔-花语会3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9757.88, + "y": -613.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 9765.57, + "y": -606.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 9769.01, + "y": -597.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 9802.98, + "y": -583.21, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 9821.24, + "y": -553.87, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "target" + }, + { + "id": 6, + "x": 9757.88, + "y": -613.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 7, + "x": 9763.4, + "y": -608.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 9765.33, + "y": -602.3, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 9758.51, + "y": -600.86, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 9752.9, + "y": -601.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 9743.43, + "y": -604.26, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 9741.99, + "y": -609.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 9740.55, + "y": -617.09, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 9739.01, + "y": -626.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 9733.23, + "y": -639.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 9609.98, + "y": -735.63, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 9594.84, + "y": -751.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 9581.39, + "y": -753.43, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 9544.13, + "y": -787.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 9540.58, + "y": -787.82, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 9535.45, + "y": -787.38, + "action": "", + "move_mode": "climb", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 9513.25, + "y": -804.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 9481.13, + "y": -801.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 9478.88, + "y": -792.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 9459.94, + "y": -756.6, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F14-纳塔-花语会4.json b/repo/pathing/薄荷/薄荷全收集/薄荷F14-纳塔-花语会4.json new file mode 100644 index 00000000..f944c134 --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F14-纳塔-花语会4.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷F14-纳塔-花语会4", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9813.47, + "y": -372.15, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 9789.96, + "y": -376.33, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 9780.75, + "y": -404.38, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9875.59, + "y": -401.01, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 9882.03, + "y": -431.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 9906.8, + "y": -427.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 9910.69, + "y": -417.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 9917.19, + "y": -413.29, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 9918.43, + "y": -409.43, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 9910.99, + "y": -418.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 9906.64, + "y": -399.68, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 9898.88, + "y": -381.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 9911.67, + "y": -367.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 9923.47, + "y": -373.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F15-纳塔-花语会5.json b/repo/pathing/薄荷/薄荷全收集/薄荷F15-纳塔-花语会5.json new file mode 100644 index 00000000..fa0f6b5d --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F15-纳塔-花语会5.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "薄荷F15-纳塔-花语会5", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9424.36, + "y": -354.53, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 9595.46, + "y": -396.19, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 9594.72, + "y": -390.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 9580.17, + "y": -416.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 9583.24, + "y": -454.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 9583.82, + "y": -425.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 9601.81, + "y": -423.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 9625.78, + "y": -424.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 9646.68, + "y": -417.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 9653.59, + "y": -456.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 9634.05, + "y": -471.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 9609.61, + "y": -501.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷全收集/薄荷F16-纳塔-花语会6(收集1396,运行7.35h).json b/repo/pathing/薄荷/薄荷全收集/薄荷F16-纳塔-花语会6(收集1396,运行7.35h).json new file mode 100644 index 00000000..10d4580e --- /dev/null +++ b/repo/pathing/薄荷/薄荷全收集/薄荷F16-纳塔-花语会6(收集1396,运行7.35h).json @@ -0,0 +1,142 @@ +{ + "info": { + "name": "薄荷F16-纳塔-花语会6", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 9959.38, + "y": -218.77, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 9819.63, + "y": -250.56, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 9810.58, + "y": -248.57, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 9802.32, + "y": -251.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 5, + "x": 9800.32, + "y": -251.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 9808.5, + "y": -263.11, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": 9959.38, + "y": -218.77, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 8, + "x": 9948.62, + "y": -215.88, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 9, + "x": 9808.15, + "y": -191.36, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 10, + "x": 9700.29, + "y": -172.52, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path", + "locked": false + }, + { + "id": 11, + "x": 9609.31, + "y": -156.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 9566.87, + "y": -149.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 9537.05, + "y": -146.74, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": 9553.3, + "y": -144.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率01-枫丹-佩特莉可镇.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率01-枫丹-佩特莉可镇.json new file mode 100644 index 00000000..f47dc101 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率01-枫丹-佩特莉可镇.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷效率01-枫丹-佩特莉可镇", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 4322.158203125, + "y": 1172.81298828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 4330.75537109375, + "y": 1187.048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 4327.44580078125, + "y": 1203.20263671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4322.21484375, + "y": 1208.1259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 4317.19482421875, + "y": 1207.98828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4311.01025390625, + "y": 1209.69189453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 4305.1083984375, + "y": 1204.02001953125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 4298.470703125, + "y": 1211.33984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 4292.0888671875, + "y": 1216.13720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 4291.7412109375, + "y": 1220.28662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 4291.5146484375, + "y": 1223.3427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 4293.80810546875, + "y": 1229.16064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 4300.12744140625, + "y": 1235.40380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 4306.42529296875, + "y": 1236.9931640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 4310.6416015625, + "y": 1241.3525390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 4322.62060546875, + "y": 1236.697265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 4328.6591796875, + "y": 1239.03857421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 4328.29638671875, + "y": 1233.232421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 4331.84130859375, + "y": 1228.37353515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 4329.345703125, + "y": 1223.00390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 4333.54931640625, + "y": 1217.9150390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 4348.82763671875, + "y": 1204.2119140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 4345.7197265625, + "y": 1208.60546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 4355.92431640625, + "y": 1215.265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 4367.3046875, + "y": 1220.669921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 4378.14208984375, + "y": 1214.677734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 4381.943359375, + "y": 1204.8154296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 4384.97021484375, + "y": 1197.85986328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 4383.373046875, + "y": 1196.40576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 4388.18310546875, + "y": 1194.92431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 4399.005859375, + "y": 1197.546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率02-枫丹-秋分山东侧.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率02-枫丹-秋分山东侧.json new file mode 100644 index 00000000..66e7fd07 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率02-枫丹-秋分山东侧.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "薄荷效率02-枫丹-秋分山东侧", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3917.171875, + "y": 2576.343017578125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3925.4658203125, + "y": 2597.033447265625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": 3927.744140625, + "y": 2604.61181640625, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3932.822265625, + "y": 2597.8017578125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3956.4384765625, + "y": 2606.664794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3981.45703125, + "y": 2606.3955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3990.5439453125, + "y": 2608.21826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3984.52734375, + "y": 2615.726318359375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率03-枫丹-幽林雾道2.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率03-枫丹-幽林雾道2.json new file mode 100644 index 00000000..666a665e --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率03-枫丹-幽林雾道2.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "薄荷效率03-枫丹-幽林雾道2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3199.82421875, + "y": 3433.900390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3212.1865234375, + "y": 3432.423828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3218.865234375, + "y": 3429.46337890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3230.705078125, + "y": 3424.8916015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 3257.2734375, + "y": 3421.66650390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 3265.3017578125, + "y": 3421.470703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3303.9609375, + "y": 3407.221923828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3292.2412109375, + "y": 3372.8037109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 3264.5361328125, + "y": 3398.67578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 3241.888671875, + "y": 3383.505859375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 3216.876953125, + "y": 3403.029296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 3210.09375, + "y": 3399.526123046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 3181.9423828125, + "y": 3366.760009765625, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率04-雪山-近郊2.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率04-雪山-近郊2.json new file mode 100644 index 00000000..157f4838 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率04-雪山-近郊2.json @@ -0,0 +1,399 @@ +{ + "info": { + "name": "薄荷效率04-雪山-近郊2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -486.43, + "y": 860.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -466.02, + "y": 858.1, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -465.58, + "y": 851.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -439.0, + "y": 835.21, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -433.96, + "y": 813.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -440.37, + "y": 798.38, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -423.68, + "y": 791.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -409.93, + "y": 802.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -390.83, + "y": 772.16, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -386.24, + "y": 749.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -388.53, + "y": 799.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -400.02, + "y": 842.78, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": -384.68, + "y": 847.71, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": -338.48, + "y": 882.92, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": -368.09, + "y": 886.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": -383.8, + "y": 889.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": -385.98, + "y": 908.59, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": -365.43, + "y": 928.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": -386.09, + "y": 937.61, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": -385.39, + "y": 955.29, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": -360.18, + "y": 988.31, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": -350.9, + "y": 998.46, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": -368.26, + "y": 998.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": -384.33, + "y": 1003.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": -384.63, + "y": 1013.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": -366.95, + "y": 1039.41, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": -373.48, + "y": 1046.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": -370.74, + "y": 1058.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": -362.48, + "y": 1082.81, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": -346.45, + "y": 1087.82, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": -373.54, + "y": 1096.19, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 32, + "x": -386.25, + "y": 1109.68, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 33, + "x": -398.23, + "y": 1126.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 34, + "x": -403.45, + "y": 1143.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 35, + "x": -414.29, + "y": 1147.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 36, + "x": -417.78, + "y": 1166.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 37, + "x": -407.03, + "y": 1185.3, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 38, + "x": -414.07, + "y": 1189.01, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 39, + "x": -420.67, + "y": 1192.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 40, + "x": -425.65, + "y": 1201.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 41, + "x": -398.52, + "y": 1198.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 42, + "x": -377.85, + "y": 1205.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 43, + "x": -362.92, + "y": 1181.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率05-雪山-近郊1.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率05-雪山-近郊1.json new file mode 100644 index 00000000..1c0c92b9 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率05-雪山-近郊1.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "薄荷效率05-雪山-近郊1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -486.43, + "y": 860.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": -505.49, + "y": 878.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": -495.7, + "y": 875.03, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": -475.51, + "y": 875.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": -471.69, + "y": 883.43, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": -475.59, + "y": 885.83, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": -459.0, + "y": 914.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": -441.56, + "y": 923.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": -431.46, + "y": 942.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": -438.68, + "y": 974.76, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": -448.79, + "y": 979.91, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": -477.19, + "y": 990.89, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率06-稻妻-清籁岛-浅濑神社.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率06-稻妻-清籁岛-浅濑神社.json new file mode 100644 index 00000000..6050a6c5 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率06-稻妻-清籁岛-浅濑神社.json @@ -0,0 +1,328 @@ +{ + "info": { + "name": "薄荷效率06-稻妻-清籁岛-浅濑神社", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3704.0859375, + "y": -4694.5673828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": -3706.9404296875, + "y": -4679.6201171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3706.4580078125, + "y": -4670.5341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3717.3173828125, + "y": -4636.876953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3739.900390625, + "y": -4630.5634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3765.6181640625, + "y": -4596.734375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3704.0859375, + "y": -4694.5673828125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3673.408203125, + "y": -4687.693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3668.6787109375, + "y": -4695.259765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3659.0537109375, + "y": -4703.736328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3647.4892578125, + "y": -4698.2822265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3619.1591796875, + "y": -4700.7744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3618.5341796875, + "y": -4700.853515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3629.3125, + "y": -4710.3427734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -3648.88671875, + "y": -4723.7607421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -3681.044921875, + "y": -4730.322265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -3696.869140625, + "y": -4731.4619140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -3682.0615234375, + "y": -4736.4658203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -3687.244140625, + "y": -4753.970703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -3690.2763671875, + "y": -4764.0615234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -3713.3212890625, + "y": -4765.2216796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -3738.8525390625, + "y": -4762.20703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -3743.8994140625, + "y": -4749.8798828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 24, + "x": -3735.3642578125, + "y": -4748.7060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -3754.8349609375, + "y": -4743.1845703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -3750.388671875, + "y": -4737.189453125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": -3769.3818359375, + "y": -4737.7568359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": -3764.2060546875, + "y": -4729.908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": -3762.076171875, + "y": -4710.0048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": -3737.046875, + "y": -4703.73828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": -3760.5400390625, + "y": -4723.294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": -3775.533203125, + "y": -4735.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": -3792.2177734375, + "y": -4749.0302734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 34, + "x": -3776.8779296875, + "y": -4743.0185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": -3766.4892578125, + "y": -4739.4638671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率07-枫丹-湖中垂柳.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率07-枫丹-湖中垂柳.json new file mode 100644 index 00000000..7b6a9b11 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率07-枫丹-湖中垂柳.json @@ -0,0 +1,336 @@ +{ + "info": { + "name": "薄荷效率07-枫丹-湖中垂柳", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3258.037109375, + "y": 3672.810546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3251.75390625, + "y": 3690.613037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3259.2060546875, + "y": 3695.078369140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3266.0244140625, + "y": 3692.069580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3247.60546875, + "y": 3696.789794921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3235.701171875, + "y": 3693.532958984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3223.634765625, + "y": 3687.010009765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3217.869140625, + "y": 3691.443603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3196.66015625, + "y": 3698.10205078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3172.3095703125, + "y": 3694.464599609375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3166.443359375, + "y": 3702.755126953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3163.0390625, + "y": 3712.340087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3159.666015625, + "y": 3717.40380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3141.9697265625, + "y": 3720.18017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3136.068359375, + "y": 3736.209228515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3129.77734375, + "y": 3745.51123046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3111.6083984375, + "y": 3774.488037109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3105.3349609375, + "y": 3810.2802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3097.7783203125, + "y": 3826.213623046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3095.361328125, + "y": 3842.765380859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3103.9365234375, + "y": 3847.126708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3109.6328125, + "y": 3863.80712890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3124.705078125, + "y": 3869.44482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3137.6416015625, + "y": 3876.0087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3153.8857421875, + "y": 3880.409912109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3162.0517578125, + "y": 3884.9306640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3167.1845703125, + "y": 3880.114501953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3199.3759765625, + "y": 3871.015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3206.6591796875, + "y": 3871.26513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3214.453125, + "y": 3858.878173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3234.04296875, + "y": 3851.023681640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 3259.10546875, + "y": 3822.711181640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 3264.06640625, + "y": 3807.551513671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 3269.712890625, + "y": 3795.66455078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 3279.642578125, + "y": 3772.0771484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 3292.67578125, + "y": 3738.007080078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率08-璃月-归离原1.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率08-璃月-归离原1.json new file mode 100644 index 00000000..372bb6af --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率08-璃月-归离原1.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "薄荷效率08-璃月-归离原1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 341.33, + "y": 548.49, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 334.27, + "y": 567.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 328.13, + "y": 577.41, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 325.78, + "y": 584.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 311.18, + "y": 598.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 291.67, + "y": 612.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 277.02, + "y": 590.49, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 279.08, + "y": 583.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 266.86, + "y": 559.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 259.0, + "y": 541.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 236.93, + "y": 557.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 210.95, + "y": 562.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 190.33, + "y": 553.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 168.25, + "y": 574.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 164.9, + "y": 590.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 140.23, + "y": 566.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 123.39, + "y": 556.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 80.97, + "y": 571.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 53.66, + "y": 561.79, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 72.35, + "y": 528.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 110.67, + "y": 514.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率09-稻妻-海祇岛-珊瑚宫.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率09-稻妻-海祇岛-珊瑚宫.json new file mode 100644 index 00000000..d7d1362d --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率09-稻妻-海祇岛-珊瑚宫.json @@ -0,0 +1,246 @@ +{ + "info": { + "name": "薄荷效率09-稻妻-海祇岛-珊瑚宫", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -757.9541015625, + "y": -3815.1337890625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -823.8125, + "y": -3780.283203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 3, + "x": -831.341796875, + "y": -3796.5185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -832.673828125, + "y": -3808.337890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -839.287109375, + "y": -3821.7001953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -850.9462890625, + "y": -3842.8955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -890.04296875, + "y": -3847.1064453125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -905.7666015625, + "y": -3851.11328125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -917.7451171875, + "y": -3833.7451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -917.474609375, + "y": -3816.50390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -917.9853515625, + "y": -3798.5810546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -917.5908203125, + "y": -3817.96875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -930.109375, + "y": -3826.15234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -937.6328125, + "y": -3824.2294921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -936.6552734375, + "y": -3836.73828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -935.9306640625, + "y": -3859.41015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -920.158203125, + "y": -3863.892578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -909.40234375, + "y": -3883.076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -882.1123046875, + "y": -3890.2470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -866.994140625, + "y": -3894.9208984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -913.1767578125, + "y": -3896.375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -940.9951171875, + "y": -3897.4072265625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -957.9462890625, + "y": -3888.759765625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -962.8330078125, + "y": -3891.0908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": -966.37109375, + "y": -3896.326171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": -968.681640625, + "y": -3903.57421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率10-蒙德-风起地2.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率10-蒙德-风起地2.json new file mode 100644 index 00000000..ac2014af --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率10-蒙德-风起地2.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "薄荷效率10-蒙德-风起地2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.0" + }, + "positions": [ + { + "id": 1, + "x": -1167.72, + "y": 2133.23, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1139.6, + "y": 2114.31, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -1226.62, + "y": 2109.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1221.12, + "y": 2101.54, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1218.8, + "y": 2095.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1223.98, + "y": 2097.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -1278.98, + "y": 2093.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -1297.43, + "y": 2096.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -1319.77, + "y": 2076.99, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -1329.79, + "y": 2085.02, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -1373.63, + "y": 2072.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1366.96, + "y": 2087.98, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1373.15, + "y": 2090.77, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率11-稻妻-八酝岛-蛇骨矿洞3.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率11-稻妻-八酝岛-蛇骨矿洞3.json new file mode 100644 index 00000000..4f430e1d --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率11-稻妻-八酝岛-蛇骨矿洞3.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "薄荷效率11-稻妻-八酝岛-蛇骨矿洞3", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -2405.783203125, + "y": -3912.88671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -2409.8857421875, + "y": -3943.3125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2448.8857421875, + "y": -3954.595703125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -2461.43359375, + "y": -3981.603515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "2300" + }, + { + "id": 5, + "x": -2474.6416015625, + "y": -3968.435546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -2477.8642578125, + "y": -3959.66015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2488.44921875, + "y": -3948.2802734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2498.5302734375, + "y": -3937.693359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2503.37890625, + "y": -3916.6279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2518.197265625, + "y": -3898.5830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2497.681640625, + "y": -3888.8359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -2493.7822265625, + "y": -3867.01953125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -2529.2578125, + "y": -3871.8671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -2539.943359375, + "y": -3879.2060546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -2552.888671875, + "y": -3870.43359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -2556.1943359375, + "y": -3862.8408203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -2556.4560546875, + "y": -3825.78515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -2516.294921875, + "y": -3824.2470703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -2515.5546875, + "y": -3830.1708984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -2528.9072265625, + "y": -3807.7998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": -2558.5029296875, + "y": -3797.234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": -2575.4287109375, + "y": -3792.2490234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": -2617.244140625, + "y": -3774.087890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": -2631.8662109375, + "y": -3795.1787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率12-稻妻-鸣神岛-绀田村.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率12-稻妻-鸣神岛-绀田村.json new file mode 100644 index 00000000..03242500 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率12-稻妻-鸣神岛-绀田村.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "薄荷效率12-稻妻-鸣神岛-绀田村", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -4124.560546875, + "y": -2759.9189453125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -4135.544921875, + "y": -2731.5400390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -4145.33203125, + "y": -2733.0888671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -4149.96484375, + "y": -2734.9951171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -4171.576171875, + "y": -2730.333984375, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -4188.1875, + "y": -2736.283203125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -4206.119140625, + "y": -2742.8017578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -4216.423828125, + "y": -2752.3056640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -4217.845703125, + "y": -2728.248046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -4223.169921875, + "y": -2713.3740234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -4203.400390625, + "y": -2691.267578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -4187.09765625, + "y": -2665.787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -4161.6953125, + "y": -2663.6787109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -4131.8203125, + "y": -2674.048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": -4112.859375, + "y": -2680.83984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": -4095.5009765625, + "y": -2691.0576171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": -4074.064453125, + "y": -2666.4765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": -4083.1728515625, + "y": -2652.7744140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": -4096.146484375, + "y": -2626.14453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": -4105.470703125, + "y": -2620.6298828125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率13-枫丹-优兰尼娅湖.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率13-枫丹-优兰尼娅湖.json new file mode 100644 index 00000000..ab30d473 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率13-枫丹-优兰尼娅湖.json @@ -0,0 +1,291 @@ +{ + "info": { + "name": "薄荷效率13-枫丹-优兰尼娅湖", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3618.2568359375, + "y": 4057.9853515625, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 3634.6884765625, + "y": 4064.506103515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3672.34765625, + "y": 4064.025146484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3695.5693359375, + "y": 4049.059814453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3702.015625, + "y": 4040.90185546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3724.5341796875, + "y": 4047.0634765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3751.6494140625, + "y": 4020.486572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3754.12109375, + "y": 4012.21044921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3764.28515625, + "y": 3968.169189453125, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3759.615234375, + "y": 3953.51025390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 3765.478515625, + "y": 3938.905517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3764.2392578125, + "y": 3928.06298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3770.056640625, + "y": 3903.811767578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3785.1015625, + "y": 3909.860595703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3814.8984375, + "y": 3920.11328125, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3618.2255859375, + "y": 4057.919677734375, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3604.7900390625, + "y": 4079.25048828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3593.3603515625, + "y": 4092.707275390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3576.251953125, + "y": 4084.384033203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3579.21875, + "y": 4106.58056640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3529.2060546875, + "y": 4101.91064453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3528.689453125, + "y": 4118.42578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3519.0068359375, + "y": 4152.25244140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3528.876953125, + "y": 4151.7255859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3550.2900390625, + "y": 4149.984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 3553.6953125, + "y": 4146.025390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 3551.728515625, + "y": 4157.43896484375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 3549.2373046875, + "y": 4192.53564453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 3609.51953125, + "y": 4165.78662109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 3636.8544921875, + "y": 4160.3671875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 3625.7314453125, + "y": 4133.67431640625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率14-稻妻-八酝岛-藤兜砦2.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率14-稻妻-八酝岛-藤兜砦2.json new file mode 100644 index 00000000..a495ff71 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率14-稻妻-八酝岛-藤兜砦2.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷效率14-稻妻-八酝岛-藤兜砦2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -1964.0732421875, + "y": -3576.44921875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -1973.4619140625, + "y": -3569.5869140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -2006.373046875, + "y": -3580.7880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -1994.48828125, + "y": -3587.990234375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -1992.8828125, + "y": -3625.8544921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -1989.7626953125, + "y": -3655.3759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -2001.0546875, + "y": -3662.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -2016.001953125, + "y": -3671.6962890625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -2043.7587890625, + "y": -3676.6904296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -2041.923828125, + "y": -3686.880859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -2015.34765625, + "y": -3683.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -1999.083984375, + "y": -3685.7705078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -1978.291015625, + "y": -3694.1005859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": -1976.97265625, + "y": -3683.826171875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率15-枫丹-新枫丹科学院5.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率15-枫丹-新枫丹科学院5.json new file mode 100644 index 00000000..1bb2109a --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率15-枫丹-新枫丹科学院5.json @@ -0,0 +1,238 @@ +{ + "info": { + "name": "薄荷效率15-枫丹-新枫丹科学院5", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3811.7255859375, + "y": 4952.5078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "", + "locked": false + }, + { + "id": 2, + "x": 3811.080078125, + "y": 4958.89111328125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3812.205078125, + "y": 4982.095703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3839.3623046875, + "y": 4959.759765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3841.7802734375, + "y": 4943.44091796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3866.4658203125, + "y": 4960.1591796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3879.9091796875, + "y": 4978.68701171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3909.5986328125, + "y": 5002.0341796875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3915.0576171875, + "y": 4989.70263671875, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3811.7255859375, + "y": 4952.5078125, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3800.595703125, + "y": 4940.79541015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3799.2373046875, + "y": 4921.8994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3789.4990234375, + "y": 4922.19287109375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3782.220703125, + "y": 4918.0390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3764.0498046875, + "y": 4943.00830078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3758.88671875, + "y": 4964.2978515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3729.85546875, + "y": 4958.685546875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3700.83984375, + "y": 4950.92919921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3693.0791015625, + "y": 4932.19482421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3679.5146484375, + "y": 4943.2939453125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 3646.5009765625, + "y": 4956.3994140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 3649.6337890625, + "y": 4934.05419921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 3653.8134765625, + "y": 4896.78955078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 3621.71875, + "y": 4889.8076171875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 3595.384765625, + "y": 4869.572265625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率16-稻妻-鹤观-茂知祭场2.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率16-稻妻-鹤观-茂知祭场2.json new file mode 100644 index 00000000..b430ab2a --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率16-稻妻-鹤观-茂知祭场2.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "薄荷效率16-稻妻-鹤观-茂知祭场2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": -3103.81640625, + "y": -6268.5810546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": -3099.9853515625, + "y": -6257.509765625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": -3091.3408203125, + "y": -6245.75390625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": -3107.603515625, + "y": -6247.279296875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": -3123.802734375, + "y": -6256.7958984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": -3136.3818359375, + "y": -6269.3974609375, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": -3148.5947265625, + "y": -6269.130859375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": -3167.9189453125, + "y": -6263.169921875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": -3174.353515625, + "y": -6257.5791015625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": -3176.685546875, + "y": -6259.720703125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": -3180.49609375, + "y": -6262.6298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": -3184.642578125, + "y": -6276.6552734375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": -3185.830078125, + "y": -6283.83984375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": -3181.6708984375, + "y": -6299.298828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率17-枫丹-幽林雾道1.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率17-枫丹-幽林雾道1.json new file mode 100644 index 00000000..d53334c5 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率17-枫丹-幽林雾道1.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "薄荷效率17-枫丹-幽林雾道1", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3469.95703125, + "y": 3551.998291015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3492.9873046875, + "y": 3532.657470703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3499.2490234375, + "y": 3528.780029296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3505.3603515625, + "y": 3509.2373046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 3491.6953125, + "y": 3482.416259765625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 3480.859375, + "y": 3476.987548828125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3473.4140625, + "y": 3463.21533203125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3461.66015625, + "y": 3454.1337890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 3468.0986328125, + "y": 3446.912841796875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 3487.6162109375, + "y": 3448.1220703125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 3508.9296875, + "y": 3462.55419921875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 3513.2578125, + "y": 3461.85888671875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 3524.34375, + "y": 3477.260986328125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 3527.349609375, + "y": 3466.23876953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 3533.1279296875, + "y": 3445.57421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 16, + "x": 3595.76953125, + "y": 3254.351806640625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 17, + "x": 3593.0732421875, + "y": 3264.64404296875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 3579, + "y": 3336.699951171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 3599.7236328125, + "y": 3363.217041015625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 20, + "x": 3367.1923828125, + "y": 3294.16650390625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 21, + "x": 3377.427734375, + "y": 3294.478271484375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 22, + "x": 3381.01171875, + "y": 3287.103515625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 3388.2421875, + "y": 3282.590576171875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 3391.8505859375, + "y": 3276.58642578125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 3416.69140625, + "y": 3280.855712890625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 3427.9912109375, + "y": 3257.50244140625, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 3432.876953125, + "y": 3241.0498046875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 3425.099609375, + "y": 3239.58740234375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 29, + "x": 3387.57421875, + "y": 3233.10107421875, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 30, + "x": 3335.6064453125, + "y": 3224.61376953125, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 31, + "x": 3338.4521484375, + "y": 3209.706787109375, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 32, + "x": 3469.5927734375, + "y": 3551.060546875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 3454.181640625, + "y": 3560.197998046875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 3430.8408203125, + "y": 3565.05712890625, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 35, + "x": 3423.216796875, + "y": 3573.5908203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 36, + "x": 3418.171875, + "y": 3582.663330078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 37, + "x": 3404.2548828125, + "y": 3610.3603515625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 38, + "x": 3387.951171875, + "y": 3610.27783203125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 39, + "x": 3377.2431640625, + "y": 3666.531494140625, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 40, + "x": 3383.1162109375, + "y": 3700.9580078125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率18-璃月-归离原2.json b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率18-璃月-归离原2.json new file mode 100644 index 00000000..c5521f75 --- /dev/null +++ b/repo/pathing/薄荷/薄荷效率(半小时200个,每天刷新)/薄荷效率18-璃月-归离原2.json @@ -0,0 +1,318 @@ +{ + "info": { + "name": "薄荷效率18-璃月-归离原2", + "type": "collect", + "author": "Tool_tingsu", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 341.24, + "y": 548.07, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 358.93, + "y": 537.76, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 397.53, + "y": 523.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 406.69, + "y": 557.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 445.98, + "y": 572.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 469.03, + "y": 587.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 468.39, + "y": 621.85, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 502.04, + "y": 633.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 521.52, + "y": 644.15, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 10, + "x": 509.79, + "y": 658.71, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 498.08, + "y": 672.52, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 475.79, + "y": 677.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 445.63, + "y": 711.03, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 431.94, + "y": 684.08, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 426.22, + "y": 678.25, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 413.23, + "y": 619.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 405.86, + "y": 614.07, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 397.56, + "y": 647.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 371.49, + "y": 652.84, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 358.97, + "y": 676.67, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 352.32, + "y": 683.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 316.56, + "y": 680.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 23, + "x": 281.71, + "y": 660.81, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 24, + "x": 249.37, + "y": 656.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 25, + "x": 248.57, + "y": 705.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 26, + "x": 268.46, + "y": 709.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 27, + "x": 266.6, + "y": 777.87, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 28, + "x": 242.43, + "y": 779.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 29, + "x": 230.82, + "y": 774.09, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 30, + "x": 174.01, + "y": 765.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 31, + "x": 149.69, + "y": 761.45, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 32, + "x": 134.66, + "y": 767.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 33, + "x": 131.83, + "y": 752.74, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 34, + "x": 128.41, + "y": 698.14, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/隙境原体/隙境原体5只.json b/repo/pathing/隙境原体/隙境原体5只.json new file mode 100644 index 00000000..da7f38a2 --- /dev/null +++ b/repo/pathing/隙境原体/隙境原体5只.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "隙境原体5只", + "type": "collect", + "author": "Vicissitude", + "version": "1.0", + "description": "枫丹隙境原体,建议使用水神或者火神队伍,效率较快", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 5113.599609375, + "y": 2998.223388671875, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 2, + "x": 5095.6220703125, + "y": 2981.7578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 5088.24609375, + "y": 2956.089599609375, + "type": "target", + "move_mode": "run", + "action": "fight", + "action_params": "" + }, + { + "id": 4, + "x": 5110.15869140625, + "y": 2933.2607421875, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 5131.90869140625, + "y": 2897.601318359375, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 5118.822265625, + "y": 2884.780517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 5079.6044921875, + "y": 2865.289794921875, + "type": "target", + "move_mode": "fly", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/隙境原体/隙境原体6只.json b/repo/pathing/隙境原体/隙境原体6只.json new file mode 100644 index 00000000..b00f0bbf --- /dev/null +++ b/repo/pathing/隙境原体/隙境原体6只.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "隙境原体6只", + "type": "collect", + "author": "Vicissitude", + "version": "1.0", + "description": "枫丹隙境原体,建议使用水神或者火神队伍,效率较快", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 5113.63525390625, + "y": 2998.2333984375, + "action_params": "" + }, + { + "id": 2, + "x": 5087.75830078125, + "y": 3013.80322265625, + "type": "target", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 3, + "x": 5084.35888671875, + "y": 3053.546630859375, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 5091.2138671875, + "y": 3103.682373046875, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 5083.40234375, + "y": 3145.29833984375, + "type": "target", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/隙境原体/隙境原体7只.json b/repo/pathing/隙境原体/隙境原体7只.json new file mode 100644 index 00000000..38588734 --- /dev/null +++ b/repo/pathing/隙境原体/隙境原体7只.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "隙境原体7只", + "type": "collect", + "author": "Vicissitude", + "version": "1.0", + "description": "枫丹隙境原体,建议使用水神或者火神队伍,效率较快", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4954.96630859375, + "y": 2760.095458984375, + "action_params": "" + }, + { + "id": 2, + "x": 4908.6787109375, + "y": 2718.13232421875, + "type": "target", + "move_mode": "fly", + "action": "fight", + "action_params": "" + }, + { + "id": 3, + "x": 4917.509765625, + "y": 2689.30810546875, + "type": "path", + "move_mode": "run", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 4924.38525390625, + "y": 2660.27490234375, + "type": "target", + "move_mode": "walk", + "action": "fight", + "action_params": "" + }, + { + "id": 5, + "x": 4950.9228515625, + "y": 2637.503173828125, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 4995.8505859375, + "y": 2622.120849609375, + "type": "target", + "move_mode": "walk", + "action": "fight", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-善见地-8个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-善见地-8个.json new file mode 100644 index 00000000..5166d8e0 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-善见地-8个.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "香辛果-二净甸-善见地-8个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3067.76, + "y": -714.04, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3082.62, + "y": -730.05, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3118.84, + "y": -760.31, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3120.92, + "y": -761.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 3067.79, + "y": -714, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 6, + "x": 3063.5, + "y": -734.6, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3053.69, + "y": -756.94, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3052.18, + "y": -760.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 9, + "x": 3048.07, + "y": -775.39, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 3027.05, + "y": -776.95, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 2982.2, + "y": -775.85, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 12, + "x": 2982.18, + "y": -782.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 2985.23, + "y": -787.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 2964.49, + "y": -828.95, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 3026.93, + "y": -870.91, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 3031.1, + "y": -876.12, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 17, + "x": 3032.43, + "y": -888.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 3046.24, + "y": -886.04, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_SPACE),wait(0.5),keypress(VK_SPACE)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-天臂池-8个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-天臂池-8个.json new file mode 100644 index 00000000..ae46ead2 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-天臂池-8个.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "香辛果-二净甸-天臂池-8个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3252.84, + "y": -591.32, + "action_params": "" + }, + { + "id": 2, + "x": 3184.08, + "y": -594.59, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3130.32, + "y": -539.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3049.24, + "y": -540.36, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3016.09, + "y": -573.51, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2995.19, + "y": -596.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2974.74, + "y": -608.81, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3252.82, + "y": -591.33, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3221.56, + "y": -546.6, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3175.33, + "y": -488.93, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3173.49, + "y": -467.73, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 12, + "x": 3169.38, + "y": -465.04, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3171.93, + "y": -464.13, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3173.56, + "y": -465.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(1)-4个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(1)-4个.json new file mode 100644 index 00000000..7148b001 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(1)-4个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "香辛果-二净甸-觉王之殿(1)-4个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3591.57, + "y": -787.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3642.15, + "y": -725.0, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3651.15, + "y": -713.75, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3667.58, + "y": -693.98, + "action": "up_down_grab_leaf", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 3682.96, + "y": -688.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3685.5, + "y": -683.0, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3670.83, + "y": -675.44, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 3675.52, + "y": -676.6, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(2)-4个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(2)-4个.json new file mode 100644 index 00000000..cb7e554e --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(2)-4个.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "香辛果-二净甸-觉王之殿(2)-4个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3705.54, + "y": -497.47, + "action_params": "" + }, + { + "id": 2, + "x": 3699.89, + "y": -528.66, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 3, + "x": 3698.18, + "y": -530.62, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3676.12, + "y": -493.24, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3656.91, + "y": -471.93, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 6, + "x": 3654.61, + "y": -468.63, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(3)-8个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(3)-8个.json new file mode 100644 index 00000000..f6ab0c16 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-二净甸-觉王之殿(3)-8个.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "香辛果-二净甸-觉王之殿(3)-8个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3252.83, + "y": -591.31, + "action_params": "" + }, + { + "id": 2, + "x": 3274.48, + "y": -567.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3278.99, + "y": -554.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3286.72, + "y": -517.32, + "type": "path", + "move_mode": "walk", + "action": "up_down_grab_leaf", + "action_params": "" + }, + { + "id": 5, + "x": 3286.27, + "y": -518.27, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3282.04, + "y": -468.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3341.64, + "y": -473.86, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3353.06, + "y": -475.26, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3437.41, + "y": -484.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3505.49, + "y": -492.46, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3505.71, + "y": -549.89, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-有顶塔-4个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-有顶塔-4个.json new file mode 100644 index 00000000..f938b935 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-有顶塔-4个.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "香辛果-善见地-有顶塔-4个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?p=5", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3466.84, + "y": -1747.01, + "action_params": "" + }, + { + "id": 2, + "x": 3475.64, + "y": -1717.99, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3486.18, + "y": -1692.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3467.12, + "y": -1695.19, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3453.82, + "y": -1679.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-水天丛林-14个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-水天丛林-14个.json new file mode 100644 index 00000000..ae81a340 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-水天丛林-14个.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "香辛果-善见地-水天丛林-14个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2806.47, + "y": -1790.44, + "action_params": "" + }, + { + "id": 2, + "x": 2837.1, + "y": -1801.61, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2841.76, + "y": -1821.84, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2852.29, + "y": -1832.36, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2877.13, + "y": -1845.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2895.71, + "y": -1785.65, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2904.73, + "y": -1776.9, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2883.06, + "y": -1735.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2882.9, + "y": -1731.1, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3028.63, + "y": -1680.12, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 3034.78, + "y": -1681.57, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3038.53, + "y": -1685.24, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3024.81, + "y": -1705.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3012.48, + "y": -1751.94, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3034.94, + "y": -1787.81, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 3058.74, + "y": -1768.0, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3056.89, + "y": -1765.55, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-水天丛林-6个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-水天丛林-6个.json new file mode 100644 index 00000000..63b937e4 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-水天丛林-6个.json @@ -0,0 +1,121 @@ +{ + "info": { + "name": "香辛果-善见地-水天丛林-6个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?p=5", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3128.57, + "y": -1734.64, + "action_params": "" + }, + { + "id": 2, + "x": 3128.24, + "y": -1725.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 3103.96, + "y": -1714.53, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3130.37, + "y": -1692.54, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 5, + "x": 3136.03, + "y": -1695.19, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3147.24, + "y": -1699.97, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3231.3, + "y": -1651.2, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "3000", + "locked": false + }, + { + "id": 8, + "x": 3231.37, + "y": -1651.17, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3128.66, + "y": -1734.63, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3166.22, + "y": -1763.09, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "4500" + }, + { + "id": 11, + "x": 3167.08, + "y": -1766.52, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3168.04, + "y": -1777.1, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-河谷的黯道-18个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-河谷的黯道-18个.json new file mode 100644 index 00000000..087d9270 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-河谷的黯道-18个.json @@ -0,0 +1,192 @@ +{ + "info": { + "name": "香辛果-善见地-河谷的黯道-18个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2965.45, + "y": -1452.86, + "action_params": "" + }, + { + "id": 2, + "x": 2968.79, + "y": -1445.59, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2979.68, + "y": -1422.12, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 3017.02, + "y": -1425.87, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3019.15, + "y": -1422.56, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 3047.79, + "y": -1407.5, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 3049.98, + "y": -1384.72, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 3005.12, + "y": -1332.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2999.88, + "y": -1329.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2977.28, + "y": -1298.53, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 11, + "x": 2958.25, + "y": -1298.65, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2978.82, + "y": -1302.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2992.88, + "y": -1303.71, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 14, + "x": 2997.89, + "y": -1303.7, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 3012.0, + "y": -1292.85, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 16, + "x": 3072.47, + "y": -1308.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 3090.11, + "y": -1326.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 18, + "x": 3106.44, + "y": -1317.29, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 3128.91, + "y": -1336.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 3126.97, + "y": -1350.64, + "type": "target", + "move_mode": "fly", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-禅那园后山-10个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-禅那园后山-10个.json new file mode 100644 index 00000000..48f75cc9 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-禅那园后山-10个.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "香辛果-善见地-禅那园后山-10个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3204.6, + "y": -911.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3191.71, + "y": -912.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3165.65, + "y": -897.57, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 4, + "x": 3217.94, + "y": -837.63, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 3204.65, + "y": -911.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 6, + "x": 3258.87, + "y": -905.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 3468.2, + "y": -844.41, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 3471.06, + "y": -836.17, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 9, + "x": 3455.65, + "y": -803.44, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3424.61, + "y": -789.86, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 11, + "x": 3399.43, + "y": -774.88, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3399.23, + "y": -733.07, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 3393.85, + "y": -734.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3387.86, + "y": -711.7, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 15, + "x": 3377.21, + "y": -709.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-谒颂幽境(善见地神像)-4个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-谒颂幽境(善见地神像)-4个.json new file mode 100644 index 00000000..3dc266c5 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-谒颂幽境(善见地神像)-4个.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "香辛果-善见地-谒颂幽境(善见地神像)-4个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3397.6, + "y": -1174.45, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3431.64, + "y": -1168.46, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3525.61, + "y": -1190.39, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3516.67, + "y": -1202.83, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 3526.44, + "y": -1216.82, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-谒颂幽境-4个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-谒颂幽境-4个.json new file mode 100644 index 00000000..958ac976 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-善见地-谒颂幽境-4个.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "香辛果-善见地-谒颂幽境-4个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 3993.9, + "y": -989.49, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 3971.76, + "y": -1007.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 3829.6, + "y": -1028.38, + "action": "", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 3687.45, + "y": -1049.03, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "2500", + "type": "path" + }, + { + "id": 5, + "x": 3691.56, + "y": -1044.51, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 6, + "x": 3695.6, + "y": -1041.42, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": 3591.61, + "y": -787.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-护世森-卡萨扎莱宫-10个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-护世森-卡萨扎莱宫-10个.json new file mode 100644 index 00000000..ad989d4f --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-护世森-卡萨扎莱宫-10个.json @@ -0,0 +1,147 @@ +{ + "info": { + "name": "香辛果-护世森-卡萨扎莱宫-10个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2531.95, + "y": -144.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2578.63, + "y": -136.32, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 2590.66, + "y": -134.68, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 2603.35, + "y": -123.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 5, + "x": 2531.97, + "y": -144.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 6, + "x": 2529.8, + "y": -113.62, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 2497.82, + "y": -88.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 8, + "x": 2505.61, + "y": -79.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 2504.06, + "y": -73.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 2504.43, + "y": -39.42, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 2498.59, + "y": -13.76, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 2496.8, + "y": -16.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 13, + "x": 2478.01, + "y": -23.83, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 2477.58, + "y": -28.1, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 15, + "x": 2447.33, + "y": -100.32, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-护世森-卡萨扎莱宫-6个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-护世森-卡萨扎莱宫-6个.json new file mode 100644 index 00000000..89c072d2 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-护世森-卡萨扎莱宫-6个.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "香辛果-护世森-卡萨扎莱宫-6个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2399.9, + "y": 143.53, + "action_params": "" + }, + { + "id": 2, + "x": 2419.82, + "y": 137.39, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2436.47, + "y": 122.41, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1000" + }, + { + "id": 4, + "x": 2439.48, + "y": 119.89, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2441.02, + "y": 108.89, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2438.29, + "y": 35.26, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 7, + "x": 2435.61, + "y": 31.46, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2482.91, + "y": 6.2, + "type": "teleport", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2555.68, + "y": 81.95, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2553.61, + "y": 100.93, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-离渡谷-14个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-离渡谷-14个.json new file mode 100644 index 00000000..c366a021 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-离渡谷-14个.json @@ -0,0 +1,210 @@ +{ + "info": { + "name": "香辛果-道成林-离渡谷-14个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2220.22, + "y": -431.17, + "action_params": "" + }, + { + "id": 2, + "x": 2276.14, + "y": -390.59, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "1500" + }, + { + "id": 3, + "x": 2284.2, + "y": -383.99, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2280.82, + "y": -356.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2278.26, + "y": -328.45, + "type": "path", + "move_mode": "walk", + "action": "up_down_grab_leaf", + "action_params": "" + }, + { + "id": 6, + "x": 2278.21, + "y": -290.25, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2334.63, + "y": -267.94, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2351.04, + "y": -274.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2358.18, + "y": -306.21, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 10, + "x": 2361.36, + "y": -310.18, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 2349.61, + "y": -390.55, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 2386.89, + "y": -394.48, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 2432.24, + "y": -390.05, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 2437.81, + "y": -394.58, + "type": "path", + "move_mode": "jump", + "action": "", + "action_params": "" + }, + { + "id": 15, + "x": 2463.26, + "y": -376.36, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 16, + "x": 2461.95, + "y": -369.69, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 17, + "x": 2457.59, + "y": -361.52, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 18, + "x": 2462.21, + "y": -365.96, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 19, + "x": 2425.91, + "y": -296.3, + "type": "path", + "move_mode": "fly", + "action": "", + "action_params": "" + }, + { + "id": 20, + "x": 2432.34, + "y": -273.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 21, + "x": 2429.68, + "y": -253.28, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 22, + "x": 2429.61, + "y": -253.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(1)-4个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(1)-4个.json new file mode 100644 index 00000000..73602043 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(1)-4个.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "香辛果-道成林-维摩庄(1)-4个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2631.89, + "y": -1016.94, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2645.52, + "y": -1009.37, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 2672.56, + "y": -1004.96, + "action": "up_down_grab_leaf", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 2725.34, + "y": -994.81, + "action": "stop_flying", + "move_mode": "fly", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 2728.31, + "y": -1006.26, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 2740.35, + "y": -1039.07, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": 2729.35, + "y": -1034.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 2702.38, + "y": -1024.49, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 2700.65, + "y": -1025.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 2631.92, + "y": -1016.95, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(2)-12个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(2)-12个.json new file mode 100644 index 00000000..1ae2ddb6 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(2)-12个.json @@ -0,0 +1,265 @@ +{ + "info": { + "name": "香辛果-道成林-维摩庄(2)-12个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2631.93, + "y": -1016.86, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2634.92, + "y": -1042.11, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 3, + "x": 2637.79, + "y": -1054.32, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 2647.44, + "y": -1081.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 2652.72, + "y": -1095.41, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 2648.77, + "y": -1101.4, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 7, + "x": 2646.61, + "y": -1109.21, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 2624.88, + "y": -1116.73, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 9, + "x": 2612.23, + "y": -1152.0, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 10, + "x": 2611.89, + "y": -1165.55, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 2605.89, + "y": -1167.17, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 12, + "x": 2653.17, + "y": -1200.08, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 2659.13, + "y": -1249.72, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 2661.53, + "y": -1286.8, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 15, + "x": 2631.92, + "y": -1017.3, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 16, + "x": 2610.41, + "y": -987.25, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "orientation", + "locked": false + }, + { + "id": 17, + "x": 2610.41, + "y": -987.25, + "action": "up_down_grab_leaf", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 2521.9, + "y": -958.64, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 2533.42, + "y": -985.75, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 20, + "x": 2497.91, + "y": -962.15, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 21, + "x": 2473.82, + "y": -950.86, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 22, + "x": 2472.03, + "y": -960.65, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 23, + "x": 2469.45, + "y": -967.61, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 24, + "x": 2464.82, + "y": -977.69, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 25, + "x": 2444.88, + "y": -959.79, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 26, + "x": 2430.69, + "y": -963.59, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 27, + "x": 2407.23, + "y": -963.24, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 28, + "x": 2368.61, + "y": -963.07, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(3)-10个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(3)-10个.json new file mode 100644 index 00000000..f4a87139 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-维摩庄(3)-10个.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "香辛果-道成林-维摩庄(3)-10个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?&p=10", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "x": 2701.61, + "y": -761.84, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "teleport" + }, + { + "id": 2, + "x": 2764.91, + "y": -798.5, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 3, + "x": 2810.28, + "y": -831.71, + "action": "", + "move_mode": "dash", + "action_params": "", + "type": "path" + }, + { + "id": 4, + "x": 2854.86, + "y": -839.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 5, + "x": 2855.75, + "y": -845.69, + "action": "", + "move_mode": "jump", + "action_params": "", + "type": "path" + }, + { + "id": 6, + "x": 2851.78, + "y": -877.26, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 7, + "x": 2867.87, + "y": -854.96, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 8, + "x": 2885.61, + "y": -852.13, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 9, + "x": 2890.16, + "y": -853.66, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 10, + "x": 2895.64, + "y": -854.11, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 11, + "x": 2907.2, + "y": -880.87, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 12, + "x": 2894.64, + "y": -911.2, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 13, + "x": 2868.28, + "y": -939.9, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 14, + "x": 2871.17, + "y": -986.93, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 15, + "x": 2835.45, + "y": -987.97, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 16, + "x": 2830.83, + "y": -983.28, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 17, + "x": 2800.6, + "y": -1004.74, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 18, + "x": 2787.36, + "y": -980.18, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 19, + "x": 2759.36, + "y": -949.22, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + }, + { + "id": 20, + "x": 2761.97, + "y": -932.56, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "target" + }, + { + "id": 21, + "x": 2746.0, + "y": -920.23, + "action": "", + "move_mode": "walk", + "action_params": "", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-缘觉塔-2个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-缘觉塔-2个.json new file mode 100644 index 00000000..a8f5bb34 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-缘觉塔-2个.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "香辛果-道成林-缘觉塔-2个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2217.07, + "y": -564.27, + "action_params": "" + }, + { + "id": 2, + "x": 2228.06, + "y": -578.46, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2209.85, + "y": -607.04, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2204.42, + "y": -600.2, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2199.63, + "y": -593.57, + "type": "path", + "move_mode": "jump", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2200.35, + "y": -581.1, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-须弥城-2个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-须弥城-2个.json new file mode 100644 index 00000000..0048bcd3 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-须弥城-2个.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "香辛果-道成林-须弥城-2个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2651.36, + "y": -564.45, + "action_params": "" + }, + { + "id": 2, + "x": 2654.18, + "y": -530.63, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2638.27, + "y": -518.58, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2630.77, + "y": -485.05, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2618.37, + "y": -486.47, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-香醉坡-2个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-香醉坡-2个.json new file mode 100644 index 00000000..6cb15be5 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-香醉坡-2个.json @@ -0,0 +1,30 @@ +{ + "info": { + "name": "香辛果-道成林-香醉坡-2个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2466.9, + "y": -623.86, + "action_params": "" + }, + { + "id": 2, + "x": 2480.36, + "y": -613.85, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-香醉坡-4个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-香醉坡-4个.json new file mode 100644 index 00000000..0346bed2 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-道成林-香醉坡-4个.json @@ -0,0 +1,102 @@ +{ + "info": { + "name": "香辛果-道成林-香醉坡-4个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2220.18, + "y": -431.11, + "action_params": "" + }, + { + "id": 2, + "x": 2187.44, + "y": -394.16, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2146.18, + "y": -357.42, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2098.19, + "y": -317.74, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2094.41, + "y": -316.28, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2145.47, + "y": -290.26, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2167.84, + "y": -309.96, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 8, + "x": 2168.86, + "y": -319.27, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 2168.15, + "y": -323.35, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 2197.8, + "y": -293.33, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-阿陀河谷-禅那园-8个.json b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-阿陀河谷-禅那园-8个.json new file mode 100644 index 00000000..3fe2ff71 --- /dev/null +++ b/repo/pathing/香辛果/香辛果@起个名字好难的喵/香辛果-阿陀河谷-禅那园-8个.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "香辛果-阿陀河谷-禅那园-8个", + "type": "collect", + "author": "起个名字好难的喵", + "version": "1.0", + "description": "https://www.bilibili.com/video/BV1Yd4y1J74x/?p=8", + "bgiVersion": "0.42.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2794.23, + "y": -1216.45, + "action_params": "" + }, + { + "id": 2, + "x": 2800.72, + "y": -1219.06, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 3, + "x": 2874.54, + "y": -1210.11, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 4, + "x": 2909.67, + "y": -1212.04, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 5, + "x": 2909.76, + "y": -1193.86, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 6, + "x": 2932.4, + "y": -1174.1, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 7, + "x": 2990.16, + "y": -1143.04, + "type": "target", + "move_mode": "fly", + "action": "stop_flying", + "action_params": "" + }, + { + "id": 8, + "x": 3014.35, + "y": -1149.7, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 9, + "x": 3054.5, + "y": -1172.02, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 10, + "x": 3036.57, + "y": -1186.01, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 11, + "x": 3028.01, + "y": -1206.43, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 12, + "x": 3038.19, + "y": -1226.59, + "type": "path", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 13, + "x": 3024.05, + "y": -1231.51, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + }, + { + "id": 14, + "x": 3008.84, + "y": -1216.04, + "type": "target", + "move_mode": "walk", + "action": "", + "action_params": "" + } + ] +} \ No newline at end of file