diff --git a/.gitignore b/.gitignore index 9ddfcf1c..bda5afd3 100644 --- a/.gitignore +++ b/.gitignore @@ -26,5 +26,5 @@ coverage *.njsproj *.sln *.sw? - +.vs/ *.tsbuildinfo \ No newline at end of file diff --git a/README.md b/README.md index d8faca50..0f2b2d8f 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,10 @@ 作者Q群:764972801 (非作者请勿加入) -[如何提交到本仓库?(谁都能看懂的 GitHub Pull Request 使用指南)](https://bgi.huiyadan.com/pr.html) +[如何提交到本仓库?(谁都能看懂的 GitHub Pull Request 使用指南)](https://bgi.huiyadan.com/dev/pr.html) + +## 相关源码 + +脚本仓库页面的源码:[bettergi-scripts-web](https://github.com/huiyadanli/bettergi-scripts-web) + +地图路径追踪的源码:[bettergi-map](https://github.com/huiyadanli/bettergi-map) diff --git a/build/build.js b/build/build.js index ecc5f84b..1b3524cf 100644 --- a/build/build.js +++ b/build/build.js @@ -2,6 +2,9 @@ const fs = require('fs'); const path = require('path'); const crypto = require('crypto'); +// 在文件开头添加全局变量 +const pathingDirsWithoutIcon = new Set(); + function calculateSHA1(filePath) { const fileBuffer = fs.readFileSync(filePath); const hashSum = crypto.createHash('sha1'); @@ -54,18 +57,34 @@ function extractInfoFromJSFolder(folderPath) { } function extractInfoFromPathingFile(filePath, parentFolders) { - const content = JSON.parse(fs.readFileSync(filePath, 'utf8')); - let tags = parentFolders.slice(2) // 从第三个元素开始,跳过 'pathing' 和下一级目录 - .filter(tag => !tag.includes('@')) // 跳过包含 @ 的标签 - .filter((tag, index, self) => self.indexOf(tag) === index); // 去重 + // 读取文件内容 + 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}`); + } catch (error) { + console.error(`移除BOM标记时出错 ${filePath}:`, error); + } + } + + const contentObj = JSON.parse(content); + + let tags = parentFolders.slice(2) + .filter(tag => !tag.includes('@')) + .filter((tag, index, self) => self.indexOf(tag) === index); // 检查positions数组中是否存在特定动作 - if (content.positions && Array.isArray(content.positions)) { - const hasNahidaCollect = content.positions.some(pos => pos.action === 'nahida_collect'); - const hasHydroCollect = content.positions.some(pos => pos.action === 'hydro_collect'); - const hasAnemoCollect = content.positions.some(pos => pos.action === 'anemo_collect'); - const hasElectroCollect = content.positions.some(pos => pos.action === 'electro_collect'); - const hasUpDownGrabLeaf = content.positions.some(pos => pos.action === 'up_down_grab_leaf'); + 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('纳西妲'); } @@ -84,8 +103,8 @@ function extractInfoFromPathingFile(filePath, parentFolders) { } return { - author: content.info && content.info.author ? content.info.author : '', - description: convertNewlines(content.info && content.info.description ? content.info.description : ''), + author: contentObj.info && contentObj.info.author ? contentObj.info.author : '', + description: convertNewlines(contentObj.info && contentObj.info.description ? contentObj.info.description : ''), tags: tags }; } @@ -120,6 +139,19 @@ function generateDirectoryTree(dir, currentDepth = 0, parentFolders = []) { }; if (stats.isDirectory()) { + // 修改检查pathing目录图标的逻辑 + if (parentFolders[0] === 'pathing') { + const hasIcon = fs.readdirSync(dir).some(file => + file.toLowerCase() === 'icon.ico' + ); + if (!hasIcon) { + // 使用 path.join 来确保正确的路径分隔符 + const relativePath = path.join('pathing', path.basename(dir)); + pathingDirsWithoutIcon.add(relativePath); + // console.log(`未找到icon.ico的pathing目录: ${relativePath}`); + } + } + if (parentFolders[0] === 'js' && currentDepth === 1) { // 对于 js 文件夹下的直接子文件夹,不再递归 const manifestPath = path.join(dir, 'manifest.json'); @@ -186,7 +218,31 @@ const result = folderOrder .filter(folder => topLevelFolders.includes(folder)) .map(folder => { const folderPath = path.join(repoPath, folder); - return generateDirectoryTree(folderPath, 0, [folder]); + const tree = generateDirectoryTree(folderPath, 0, [folder]); + + // 如果是pathing目录,对其子目录进行排序 + if (folder === 'pathing' && tree.children) { + tree.children.sort((a, b) => { + const aPath = path.join('pathing', a.name); + const bPath = path.join('pathing', b.name); + const aHasNoIcon = pathingDirsWithoutIcon.has(aPath); + const bHasNoIcon = pathingDirsWithoutIcon.has(bPath); + + // 如果两个目录的图标状态不同,则按照有无图标排序 + if (aHasNoIcon !== bHasNoIcon) { + return aHasNoIcon ? 1 : -1; + } + + // 使用拼音排序 + return a.name.localeCompare(b.name, 'zh-CN', { + numeric: true, + sensitivity: 'accent', + caseFirst: false + }); + }); + } + + return tree; }); const repoJson = { diff --git a/build/icon/1.filter.js b/build/icon/1.filter.js index 409583cc..cfe481b7 100644 --- a/build/icon/1.filter.js +++ b/build/icon/1.filter.js @@ -1,3 +1,5 @@ +// 这个脚本每次原神更新使用一次 + const fs = require('fs'); const path = require('path'); @@ -18,16 +20,20 @@ if (!fs.existsSync(targetDir)) { fs.readdirSync(sourceDir).forEach(file => { const fileName = path.parse(file).name; // 获取文件名(不含扩展名) - // 在JSON数据中查找匹配项 - const matchedItem = jsonData.find(item => item.Icon === fileName); + // 查找所有匹配项 + const matchedItems = jsonData.filter(item => item.Icon === fileName); - if (matchedItem) { + if (matchedItems.length > 0) { const sourcePath = path.join(sourceDir, file); - const targetPath = path.join(targetDir, `${matchedItem.Name}.png`); - // 复制并重命名文件 - fs.copyFileSync(sourcePath, targetPath); - console.log(`已复制并重命名: ${file} -> ${matchedItem.Name}.png`); + // 为每个匹配项创建文件 + matchedItems.forEach(matchedItem => { + const targetPath = path.join(targetDir, `${matchedItem.Name}.png`); + + // 复制并重命名文件 + fs.copyFileSync(sourcePath, targetPath); + console.log(`已复制并重命名: ${file} -> ${matchedItem.Name}.png`); + }); } }); diff --git a/build/icon/2.match.js b/build/icon/2.match.js index 5b27828f..f5c5aa68 100644 --- a/build/icon/2.match.js +++ b/build/icon/2.match.js @@ -1,3 +1,5 @@ +// 这个脚本,有新的脚本目录就要使用 + const fs = require('fs'); const path = require('path'); diff --git a/build/icon/3.icon.js b/build/icon/3.icon.js index 7e31ed2b..e0d60013 100644 --- a/build/icon/3.icon.js +++ b/build/icon/3.icon.js @@ -1,3 +1,5 @@ +// 用于给每个脚本目录添加icon + const fs = require('fs'); const path = require('path'); const { exec } = require('child_process'); diff --git a/build/icon/4.new_transfer.js b/build/icon/4.new_transfer.js index 628de3fa..2edc2be8 100644 --- a/build/icon/4.new_transfer.js +++ b/build/icon/4.new_transfer.js @@ -1,3 +1,5 @@ +// 只找新的png文件,然后复制到diffPng目录 + const fs = require('fs'); const path = require('path'); @@ -33,3 +35,4 @@ unmatchedPng.forEach(filename => { console.log(`找到并复制了 ${unmatchedPng.length} 个不匹配的 PNG 文件到: ${outputDir}`); +// 然后去 https://offlineconverter.com/ 转换为ico \ No newline at end of file diff --git a/repo.json b/repo.json index 99d751aa..d0755254 100644 --- a/repo.json +++ b/repo.json @@ -1,5 +1,5 @@ { - "time": "20241203111204", + "time": "20241230000753", "url": "https://github.com/babalae/bettergi-scripts-list/archive/refs/heads/main.zip", "file": "repo.json", "indexes": [ @@ -7,6 +7,2451 @@ "name": "pathing", "type": "directory", "children": [ + { + "name": "沉玉仙茗", + "type": "directory", + "children": [ + { + "name": "沉玉仙茗-灵濛山(一)-璃月1个.json", + "type": "file", + "hash": "fb67804389921e58c0e37f2be521d8ad0c5cfb45", + "version": "fb67804", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-灵濛山(二)-璃月1个.json", + "type": "file", + "hash": "a6f7c9bbe95fad9f674ebef2369f3af50bd8fa76", + "version": "a6f7c9b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-翘英庄-璃月9个.json", + "type": "file", + "hash": "4311b792beb12afdd05c00fb94644a4d38daa25a", + "version": "4311b79", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-翘英庄-璃月X个.json", + "type": "file", + "hash": "d77e5446206edf98ba1abbedd352e527e625710a", + "version": "d77e544", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-药蝶谷-璃月2个.json", + "type": "file", + "hash": "15a7c15116c5175fbde6a8334b88fcbcb46c6d5c", + "version": "15a7c15", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-遗珑埠(上)-璃月3个.json", + "type": "file", + "hash": "37454a2a5d4b093c00aae966dcff59b87069600f", + "version": "37454a2", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-遗珑埠(下)-璃月6个.json", + "type": "file", + "hash": "4e52aba63f01cb195ccfce6c200301c765193d51", + "version": "4e52aba", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + } + ] + }, + { + "name": "赤念果", + "type": "directory", + "children": [ + { + "name": "赤念果.json", + "type": "file", + "hash": "ca194dc53420f8459e0c7206a70e0aa7a6542ebf", + "version": "ca194dc", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果10.json", + "type": "file", + "hash": "e114a6d0185faec48afb372c03eda59498816775", + "version": "e114a6d", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果11.json", + "type": "file", + "hash": "742e81756f16ae6cd0158d95f86489a84665e373", + "version": "742e817", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果12.json", + "type": "file", + "hash": "d7d66630f13f0397f4aa37fd4d20ac947342b916", + "version": "d7d6663", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果13.json", + "type": "file", + "hash": "058d31042227e426668ef11286bb284dc012f0a5", + "version": "058d310", + "author": "½", + "description": "", + "tags": [ + "赤念果", + "纳西妲", + "四叶印" + ] + }, + { + "name": "赤念果14.json", + "type": "file", + "hash": "e9f30f209c4ef4c9e4068d3e5165361d87002a39", + "version": "e9f30f2", + "author": "½", + "description": "", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果15.json", + "type": "file", + "hash": "0e0afbff0f7eaf5079c3af9c15cd2e48ffe957ce", + "version": "0e0afbf", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果16.json", + "type": "file", + "hash": "0ab27a5943effcc9540d9769ba74be386b94d525", + "version": "0ab27a5", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果2.json", + "type": "file", + "hash": "57e22ecd87edbbb7ae111cdc7cc5b1364b5891b5", + "version": "57e22ec", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果3.json", + "type": "file", + "hash": "074524a2fd3ca35600ad146efefa7c03cfc8f1da", + "version": "074524a", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果4.json", + "type": "file", + "hash": "a9ffa0c10476f7de006c562d57a8b83aa6607a1e", + "version": "a9ffa0c", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果5.json", + "type": "file", + "hash": "97dc4843e5422aa9acfa2fd10500d884971b055a", + "version": "97dc484", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果6.json", + "type": "file", + "hash": "6830322f6bdff405255fd04983762d899cb796e7", + "version": "6830322", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果7.json", + "type": "file", + "hash": "7f9916009a9d9d95abcb07d87be0edc52661054c", + "version": "7f99160", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果8.json", + "type": "file", + "hash": "248de2f2e34d568c74be4ad6b39e146d566f0a2d", + "version": "248de2f", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + }, + { + "name": "赤念果9.json", + "type": "file", + "hash": "67b45027aea5a60b5f5176ff8e014997f40a359f", + "version": "67b4502", + "author": "½", + "description": "需要纳西妲", + "tags": [ + "赤念果", + "纳西妲" + ] + } + ] + }, + { + "name": "萃凝晶", + "type": "directory", + "children": [ + { + "name": "中央实验室基地东.json", + "type": "file", + "hash": "a57263b7df8f0d13f4210e8a1475f5dc838403c0", + "version": "a57263b", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "中央实验室基地东北.json", + "type": "file", + "hash": "c4fa6d542203cd39520a46fab78db402020812a3", + "version": "c4fa6d5", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "中央实验室基地东南.json", + "type": "file", + "hash": "8e0d90143792d5334fbe636c391f54aca2027f47", + "version": "8e0d901", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "仓晶区南.json", + "type": "file", + "hash": "dbaf84b77817ea401a581592a920362128002d82", + "version": "dbaf84b", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "仓晶区南2.json", + "type": "file", + "hash": "1cff7ee4dfe1f64792e312ea8e2f9215ca58e102", + "version": "1cff7ee", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "仓晶区南3.json", + "type": "file", + "hash": "d5d82200284a49c65d214425452b0403f2b8397c", + "version": "d5d8220", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "优兰尼娅湖北.json", + "type": "file", + "hash": "ec4735bde7b87efbe2b0e8e0a5c753b57c2a60ba", + "version": "ec4735b", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "卡布狄斯堡1.json", + "type": "file", + "hash": "60448cd4c1c4fd44e3beaef28f04336a2ba5b587", + "version": "60448cd", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "幽林雾道北.json", + "type": "file", + "hash": "4264865c4e3b514edaca98e7af3aed8b3b7c5762", + "version": "4264865", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "新枫丹科学院东北.json", + "type": "file", + "hash": "26fcebfbccee4b3f9cf33a6bbb35f9b9f52ffbda", + "version": "26fcebf", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "新枫丹科学院东南.json", + "type": "file", + "hash": "2922df137b5a2aa119a80d010583c202ddaa67c0", + "version": "2922df1", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "新枫丹科学院西北.json", + "type": "file", + "hash": "f770840e142cc4aa7f0f12545aafbeaf343fd00b", + "version": "f770840", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "枫丹厅西北.json", + "type": "file", + "hash": "d3926b78705840e6c32e1f3ef64b6a8e528afc45", + "version": "d3926b7", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "枫丹厅西北2.json", + "type": "file", + "hash": "7707a99ac6e5b61aed8d1b9f4a9ee7c5a265e542", + "version": "7707a99", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "枫丹厅西北下.json", + "type": "file", + "hash": "fd55c670c9c653b4ba3fb8124db5ed9dce93d38d", + "version": "fd55c67", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "猎人本南.json", + "type": "file", + "hash": "2359dca6e8b6bd3e1472dac422d8dd19a31c7397", + "version": "2359dca", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "秋分山西侧北.json", + "type": "file", + "hash": "593a76ad7a2b9216e45adfbaf956be9242b50763", + "version": "593a76a", + "author": "cy", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔万火之欧01.json", + "type": "file", + "hash": "1ac19d0821d35d189f577679d4a679d81ec73e55", + "version": "1ac19d0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔万火之欧02.json", + "type": "file", + "hash": "4cd032f15b29ce34e81bc53ee71c0d5280f82b48", + "version": "4cd032f", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔万火之欧03 (1).json", + "type": "file", + "hash": "8bd7d99c5713d8578ba866999982128670dab558", + "version": "8bd7d99", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔坚岩缢谷01.json", + "type": "file", + "hash": "5419f3a6feb68ac79311e0d2e41f0805440820d4", + "version": "5419f3a", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔坚岩缢谷02.json", + "type": "file", + "hash": "3f964bb9d1252caeee57bc00d2751702c0950158", + "version": "3f964bb", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔坚岩缢谷03.json", + "type": "file", + "hash": "7ff989eda0df8bb64245f88a55e01e8e10a0d5d5", + "version": "7ff989e", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔坚岩缢谷04.json", + "type": "file", + "hash": "0bae4378612524bf226abb4a78428413620328e2", + "version": "0bae437", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔坚岩缢谷七天神像 (1).json", + "type": "file", + "hash": "2ccccf858a25418dcd9523a416b96396e6656372", + "version": "2ccccf8", + "author": "", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔坚岩缢谷七天神像 2 (1).json", + "type": "file", + "hash": "2a6553ba9d191896ea2f14150454ee950239faef", + "version": "2a6553b", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔奥奇卡纳塔下01.json", + "type": "file", + "hash": "9849c6f0eb859f6e5f1b17bdb027ed14e28f9a45", + "version": "9849c6f", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔奥奇卡纳塔右边小岛01.json", + "type": "file", + "hash": "011510d41215fb1fb34de22f4e0e49719a695d8d", + "version": "011510d", + "author": "mfkvfhdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔彩石顶01.json", + "type": "file", + "hash": "1da30fa8098e6c400137f5464e59876eb46139a0", + "version": "1da30fa", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔柴薪之丘01.json", + "type": "file", + "hash": "a71c29bcdefea22b0cdef3189d5eb91bfc6b4979", + "version": "a71c29b", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔涌流地01 (1).json", + "type": "file", + "hash": "462e5f6ff3ff3523c9037cf1d1a03efc1d8677eb", + "version": "462e5f6", + "author": "", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔深渊古瞭望所01.json", + "type": "file", + "hash": "8b2e87a622799c78b24af63a00e2de1b6c6170c3", + "version": "8b2e87a", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔深渊古瞭望所02.json", + "type": "file", + "hash": "25e59cd5f4ce17623d504de704862617edfbdfeb", + "version": "25e59cd", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔溶水域01 (1).json", + "type": "file", + "hash": "3d679b76245368b9330e5f116d84cc86db38b011", + "version": "3d679b7", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔溶水域02.json", + "type": "file", + "hash": "33e0f7e94f46d7ccde17d858084038ec5b8a5c83", + "version": "33e0f7e", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔烟迷主.json", + "type": "file", + "hash": "03c6543e0204677f044776b09a8a372693b69a36", + "version": "03c6543", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔翘枝崖 (1).json", + "type": "file", + "hash": "ba75b44288832e47f0ffbb48369ab055fd6c32c1", + "version": "ba75b44", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔花羽会.json", + "type": "file", + "hash": "90df7c0d51af8ee4a23f437b03da1c876c3a624c", + "version": "90df7c0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔花羽会003.json", + "type": "file", + "hash": "d08c862cdc639a1e2cf682643b7597de75d70a01", + "version": "d08c862", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔花羽会004.json", + "type": "file", + "hash": "ccdccd83a08a64ca4657a3bbcb22dd8beb832368", + "version": "ccdccd8", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔花羽会02 (1).json", + "type": "file", + "hash": "8f72c3cce9c5dfe0ddac90818efca1cffd8c9790", + "version": "8f72c3c", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔蕴火的废墟.json", + "type": "file", + "hash": "6f74585cc76d80185c26fc66355b149b6762d46b", + "version": "6f74585", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔虹灵净土.json", + "type": "file", + "hash": "ec1c1fa2a23afe5b5d79f5efb17b71e91331b459", + "version": "ec1c1fa", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔踞石山01.json", + "type": "file", + "hash": "7ad24dff4b417edd8f32dd3434ffa6b5db4c1661", + "version": "7ad24df", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔踞石山02.json", + "type": "file", + "hash": "41ea4c6290ac878d4c8db877031baa41ace57f74", + "version": "41ea4c6", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔踞石山03 (1).json", + "type": "file", + "hash": "390c3887cd6a695086d16f1c7e8a6431628d571a", + "version": "390c388", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔镜壁山.json", + "type": "file", + "hash": "1f6e4e321c512f3e70d091fb469be7df341f59b4", + "version": "1f6e4e3", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔镜壁山七天神像 (1).json", + "type": "file", + "hash": "035ee41d69f9901317a5bec3dd39abfc2e8fb825", + "version": "035ee41", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + }, + { + "name": "纳塔镜壁山七天神像02 (1).json", + "type": "file", + "hash": "da21b1fcbf31a6aa45bc144d0a13b61b873f35c0", + "version": "da21b1f", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "萃凝晶" + ] + } + ] + }, + { + "name": "悼灵花", + "type": "directory", + "children": [ + { + "name": "悼灵花-铁穆山-21个.json", + "type": "file", + "hash": "dd5bc7fb35dc39a30518a0f14afb2c2feb3dca38", + "version": "dd5bc7f", + "author": "曦", + "description": "", + "tags": [ + "悼灵花" + ] + }, + { + "name": "悼灵花-锋刃林泽上侧-4个.json", + "type": "file", + "hash": "921d44fc34fab3096e66b28482d5bc57096f9113", + "version": "921d44f", + "author": "曦", + "description": "完成对应世界任务后可运行", + "tags": [ + "悼灵花" + ] + }, + { + "name": "悼灵花-锋刃林泽上侧02-10个.json", + "type": "file", + "hash": "6409488058ed9e6fd4b1435735c7c45650f766c2", + "version": "6409488", + "author": "曦", + "description": "", + "tags": [ + "悼灵花" + ] + }, + { + "name": "悼灵花-锋刃林泽右侧-12个.json", + "type": "file", + "hash": "e138e8d5c1f4fbad1fe02d159a1f091101ffbf96", + "version": "e138e8d", + "author": "曦", + "description": "请带血牛", + "tags": [ + "悼灵花" + ] + } + ] + }, + { + "name": "嘟嘟莲", + "type": "directory", + "children": [ + { + "name": "嘟嘟莲1-清泉镇-11个.json", + "type": "file", + "hash": "716718bdf0e0ee3a04c55e834411e060acc3cbff", + "version": "716718b", + "author": "yulalaa&不瘦五十斤不改名", + "description": "", + "tags": [ + "嘟嘟莲", + "纳西妲" + ] + }, + { + "name": "嘟嘟莲2-达达乌帕谷-7个.json", + "type": "file", + "hash": "df7bb546d915ba00280536517177647f269d7242", + "version": "df7bb54", + "author": "yulalaa&不瘦五十斤不改名", + "description": "", + "tags": [ + "嘟嘟莲", + "纳西妲" + ] + }, + { + "name": "嘟嘟莲3-晨曦酒庄-3个.json", + "type": "file", + "hash": "6c22e44177ae3a737b68ea89cd4fbc630d0e7157", + "version": "6c22e44", + "author": "yulalaa&不瘦五十斤不改名", + "description": "", + "tags": [ + "嘟嘟莲", + "纳西妲" + ] + }, + { + "name": "嘟嘟莲4-奔狼领-4个.json", + "type": "file", + "hash": "c480078260ad4e4a1eb7e78d834d0843b4996b56", + "version": "c480078", + "author": "yulalaa&不瘦五十斤不改名", + "description": "", + "tags": [ + "嘟嘟莲", + "纳西妲" + ] + }, + { + "name": "嘟嘟莲5-千风神殿-3个.json", + "type": "file", + "hash": "12feeea1d40eaeefe1c3d6438c8882defb8987b7", + "version": "12feeea", + "author": "yulalaa&不瘦五十斤不改名", + "description": "", + "tags": [ + "嘟嘟莲", + "纳西妲" + ] + }, + { + "name": "嘟嘟莲6-星落湖-2个.json", + "type": "file", + "hash": "48f37a5479a312e4b667677bffa4749dae075ea8", + "version": "48f37a5", + "author": "yulalaa&不瘦五十斤不改名", + "description": "", + "tags": [ + "嘟嘟莲", + "纳西妲" + ] + } + ] + }, + { + "name": "墩墩桃", + "type": "directory", + "children": [ + { + "name": "墩墩桃1.json", + "type": "file", + "hash": "2806de48fcc4a404772c82f7f39a68a815ecb124", + "version": "2806de4", + "author": "风埠", + "description": "卡萨扎莱宫左边墩墩桃20个", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃10.json", + "type": "file", + "hash": "cfad5b074dc681046ae3578e22c627735e24698b", + "version": "cfad5b0", + "author": "风埠", + "description": "墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃11.json", + "type": "file", + "hash": "165290fb61d56df703d193e04f71dcde0c409bef", + "version": "165290f", + "author": "风埠", + "description": "墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃14.json", + "type": "file", + "hash": "0b30365e952674d8ed0a03165d69516895715ec4", + "version": "0b30365", + "author": "风埠", + "description": "", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃16.json", + "type": "file", + "hash": "6ac6282355661540d134b14e42d7f236c5360e81", + "version": "6ac6282", + "author": "风埠", + "description": "", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃18.json", + "type": "file", + "hash": "810b3d3fc882adb6979153dccbf30b5befcca779", + "version": "810b3d3", + "author": "风埠", + "description": "", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃19.json", + "type": "file", + "hash": "de9078fb87cb9c7dd928f0971914916dfecf6a2b", + "version": "de9078f", + "author": "风埠", + "description": "", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃2.json", + "type": "file", + "hash": "a1398398b62f23339d79a2b3151540dd64ea87d3", + "version": "a139839", + "author": "风埠", + "description": "卡萨扎莱宫右下4个墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃20 .json", + "type": "file", + "hash": "6c9e59fde6a387a4ac6031d7950862f9dbe6bf32", + "version": "6c9e59f", + "author": "风埠", + "description": "", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃3.json", + "type": "file", + "hash": "8dbecce0a620815484b6344b76a790b39e34099a", + "version": "8dbecce", + "author": "风埠", + "description": "4个墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃4.json", + "type": "file", + "hash": "59edaad5ee669bcfdf8d14bb6be4c93bca4f0055", + "version": "59edaad", + "author": "风埠", + "description": "4个墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃5.json", + "type": "file", + "hash": "11c8d85b827124f131491b7cc3af45a17843c86d", + "version": "11c8d85", + "author": "墩墩桃5", + "description": "4个墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃7.json", + "type": "file", + "hash": "38a4e044c59de505a7e29ad984abeda0b7ca6a4b", + "version": "38a4e04", + "author": "风埠", + "description": "", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃8.json", + "type": "file", + "hash": "7febef44e5b097c898f1d8e5fa06d43400d88fcc", + "version": "7febef4", + "author": "风埠", + "description": "墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃9.json", + "type": "file", + "hash": "2a03746b8ab512268453ad13378ca08a9a569f37", + "version": "2a03746", + "author": "风埠", + "description": "", + "tags": [ + "墩墩桃" + ] + } + ] + }, + { + "name": "绯樱绣球", + "type": "directory", + "children": [ + { + "name": "01绯樱绣球-白狐之野-5个.json", + "type": "file", + "hash": "0c7ed9d4c25633a9a416e5f2f74e96f2ce3097ae", + "version": "0c7ed9d", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "02绯樱绣球-绀田村-3个.json", + "type": "file", + "hash": "9146083c93314d62486c3a5f028c8ed01119607c", + "version": "9146083", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "03绯樱绣球-荒海-7个.json", + "type": "file", + "hash": "5c5a98e723695cbf60206a25c83390ceb8391ba0", + "version": "5c5a98e", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "04绯樱绣球-稻妻城-4个(途经一个半空的不采).json", + "type": "file", + "hash": "18aab98468dd74bcfb093edf64f45ecb64eb2315", + "version": "18aab98", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "05绯樱绣球-鸣神大社-3个(地图缩放1.8).json", + "type": "file", + "hash": "f4f98b09e734d2e2552978b0ae78adaad0f74c2e", + "version": "f4f98b0", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "06绯樱绣球-镇守之森-4个.json", + "type": "file", + "hash": "5035afae058f7af2cd4b1c9698d62eb9214df87f", + "version": "5035afa", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "07绯樱绣球-鸣神大社神樱-3个(地图缩放1.8).json", + "type": "file", + "hash": "29c7c2fef757488bbcc3e7f58211b9c92b426355", + "version": "29c7c2f", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "08绯樱绣球-影向山山顶-3个(地图缩放1.8).json", + "type": "file", + "hash": "7951f8f7191a7a087d399d31e43d88c4489fc2f0", + "version": "7951f8f", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "09绯樱绣球-荒海(砂流)-2个.json", + "type": "file", + "hash": "192f0d603f9147fc02d9265225199c2785e9aca1", + "version": "192f0d6", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "10绯樱绣球-神里屋敷-10个.json", + "type": "file", + "hash": "0cf5ee8e7fdf1dc906590b9ab41dd8f1c992c3cb", + "version": "0cf5ee8", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + }, + { + "name": "11绯樱绣球-影向山-7个(地图缩放1.8).json", + "type": "file", + "hash": "971a13e1ceb16860bbb0c8c5f467abf49846c569", + "version": "971a13e", + "author": "起个名字好难", + "description": "", + "tags": [ + "绯樱绣球", + "雷元素力收集" + ] + } + ] + }, + { + "name": "风车菊", + "type": "directory", + "children": [ + { + "name": "风车11.json", + "type": "file", + "hash": "9831ce0f415bad20a7e3d780c5af6fec41d28d63", + "version": "9831ce0", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车2.json", + "type": "file", + "hash": "21e0328e814a01495714773d87ee186c36e65001", + "version": "21e0328", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车3.json", + "type": "file", + "hash": "01423ea23e2c5c77dee3aeb5808e670c9913a775", + "version": "01423ea", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车4 (2).json", + "type": "file", + "hash": "fb4806129905ebe73e10d6302c014e96b5e5088b", + "version": "fb48061", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车4.json", + "type": "file", + "hash": "8426a5bc6ca0463d1eff9cf6a1f66e77f01e081b", + "version": "8426a5b", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车5.json", + "type": "file", + "hash": "83610b826c7c73eb7fc169bdbf9e6b73fa6cf834", + "version": "83610b8", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车6.json", + "type": "file", + "hash": "93bd0b8d98c4ad16e96da90d93befa0be75312d4", + "version": "93bd0b8", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车8.json", + "type": "file", + "hash": "33c769547dae21f74749c0fd65ef00b7ea31bbac", + "version": "33c7695", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车9 (2).json", + "type": "file", + "hash": "a4782b29184074b1ebe35a6b1c0f17f92c948ce6", + "version": "a4782b2", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车9.json", + "type": "file", + "hash": "12697fd14d839bed087f41db478fe0c3ccd3c332", + "version": "12697fd", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车菊" + ] + }, + { + "name": "风车菊_蒙德_8个.json", + "type": "file", + "hash": "bc9c55a55bbbc923798d68f80de603311ad0346e", + "version": "bc9c55a", + "author": "tignioj", + "description": "", + "tags": [ + "风车菊" + ] + } + ] + }, + { + "name": "钩钩果", + "type": "directory", + "children": [ + { + "name": "钩钩果-30个(有几率卡树洞里).json", + "type": "file", + "hash": "b7c74a9406f446a530ea7537bd578659ff9abc73", + "version": "b7c74a9", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "钩钩果" + ] + }, + { + "name": "钩钩果-奔狼岭-蒙德30个-需纳西妲.json", + "type": "file", + "hash": "b3b7d6fe9620b5617bf0ef64375c3a38d21f24fe", + "version": "b3b7d6f", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "钩钩果", + "纳西妲" + ] + } + ] + }, + { + "name": "鬼兜虫", + "type": "directory", + "children": [ + { + "name": "鬼兜虫03-踏鞴砂(东北侧)-2个.json", + "type": "file", + "hash": "c30260aaa293f6b115304c2c3a2fa04a874756c0", + "version": "c30260a", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫05-踏鞴砂(西北侧)-7个(中途会引怪).json", + "type": "file", + "hash": "9fd89544374186d2854047c54c80874b24efa470", + "version": "9fd8954", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫06-踏鞴砂(北侧)-2个(会引怪).json", + "type": "file", + "hash": "a4ede66151fcdc0cfed91b63cd1abfe260799ad9", + "version": "a4ede66", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫08-无想刀狭间(东侧)-1个.json", + "type": "file", + "hash": "6695ccb35f58503d53fe604f34feca10f6c92584", + "version": "6695ccb", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫09-八酝岛(东南侧)-2个.json", + "type": "file", + "hash": "6ea46e033e8b6e26c4517d50f0ba51c6dcb6386b", + "version": "6ea46e0", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫10-八酝岛(西南侧)-1个.json", + "type": "file", + "hash": "6767ef974fbe5e1d937f036d99130fe45d0223c2", + "version": "6767ef9", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫11-八酝岛(中部)-1个 .json", + "type": "file", + "hash": "d549c02cc5b3612f77debd8956ca638a6b79f189", + "version": "d549c02", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫12-八酝岛(西北侧龙骨南)-1个.json", + "type": "file", + "hash": "40e273502f1fcb9a394cafe13891d2d914676c02", + "version": "40e2735", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫13-八酝岛(西北侧龙骨北)-1个.json", + "type": "file", + "hash": "363d2d78410a36f993e1f2ebd5c79596702da346", + "version": "363d2d7", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫" + ] + }, + { + "name": "鬼兜虫(纳西妲采集)@起个名字好难", + "type": "directory", + "children": [ + { + "name": "鬼兜虫01-稻妻城山洞-6个(纳西妲).json", + "type": "file", + "hash": "ee2869b8dc1f626510152fd22cb635b05ef9ce0e", + "version": "ee2869b", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + }, + { + "name": "鬼兜虫02-鸣神大社-6个(纳西妲、地图缩放1.8).json", + "type": "file", + "hash": "b71853c67e7eb9296a17e3b9d4bb8daa5b22d0d4", + "version": "b71853c", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + }, + { + "name": "鬼兜虫03-砂流之庭-1个(纳西妲).json", + "type": "file", + "hash": "ef35b4acc73bd9afe9d30991c3ae146e09aef60d", + "version": "ef35b4a", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + }, + { + "name": "鬼兜虫04-九条阵屋-4个(纳西妲).json", + "type": "file", + "hash": "72ec02fb5a8dfbf343d299bbac18436308c53a19", + "version": "72ec02f", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + }, + { + "name": "鬼兜虫05-踏鞴砂(东北侧)-1个(纳西妲).json", + "type": "file", + "hash": "ab5c5b6fcee49a69b22af5c36c21f7744eec263e", + "version": "ab5c5b6", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + }, + { + "name": "鬼兜虫06-踏鞴砂(公义)-1个(纳西妲).json", + "type": "file", + "hash": "935538f6e1d4d389fbedb1f601f5703726c987b1", + "version": "935538f", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + }, + { + "name": "鬼兜虫07-踏鞴砂(中部)-4个(纳西妲).json", + "type": "file", + "hash": "1af781ad90f76aaa98d36d4e90917867eebc3010", + "version": "1af781a", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + } + ] + } + ] + }, + { + "name": "海草", + "type": "directory", + "children": [ + { + "name": "海草01-绀田村-稻妻6个.json", + "type": "file", + "hash": "ed8fb611872b082e5b26d93d25f38b5c9e7f22a9", + "version": "ed8fb61", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草02-荒海-稻妻3个.json", + "type": "file", + "hash": "993f99ce531fbfe9330e7c27dccdd650b6f41926", + "version": "993f99c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草03-荒海-稻妻5个.json", + "type": "file", + "hash": "7fca07db30056bfd2f71d4db8bb03827967b0551", + "version": "7fca07d", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草04-离岛-稻妻4个.json", + "type": "file", + "hash": "aea86754f3548f9698d02c3f83a2a82c356a2656", + "version": "aea8675", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草05-白狐之野-稻妻3个.json", + "type": "file", + "hash": "43e8ad088024d1b4dd011434e1015b05e8afe167", + "version": "43e8ad0", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草06-白狐之野-稻妻4个.json", + "type": "file", + "hash": "89fc0e3195145061a38e4c464b77ef1708608f5e", + "version": "89fc0e3", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草07-堇色之庭-稻妻2个.json", + "type": "file", + "hash": "1a4bdfbca76e155c146d67bb1cb6a40d75b2b06e", + "version": "1a4bdfb", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草08-九条阵屋-稻妻4个.json", + "type": "file", + "hash": "95686337ef840af8c65ff888f28f72c5d815849d", + "version": "9568633", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草09-鞳鞴砂-稻妻4个.json", + "type": "file", + "hash": "9c8592050ff188c1c3498c07291606b635731d72", + "version": "9c85920", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草10-鞳鞴砂(无危)-稻妻7个.json", + "type": "file", + "hash": "56c4850398c489cb9da5b38c30e38c0b48f6f57e", + "version": "56c4850", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草10-鞳鞴砂(高危)-稻妻11个.json", + "type": "file", + "hash": "4e4ac697643974aff2c3816710fc1af5dba9d009", + "version": "4e4ac69", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草11-无想刃狭间(中危)-稻妻5个.json", + "type": "file", + "hash": "4e4109bca38a7e69e23aae4128b36017172352f3", + "version": "4e4109b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草12-海祇岛-稻妻4个.json", + "type": "file", + "hash": "6115b5d37f8cdcf391db4763b4cab3c2be5ed180", + "version": "6115b5d", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草13-千来神祠-稻妻2个.json", + "type": "file", + "hash": "f162b85d12d5fb27f12e2d6178923fa338567dc5", + "version": "f162b85", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草14-鹤观神像-稻妻2个.json", + "type": "file", + "hash": "055d798a3d04b88fe201f4cd27e18a46b47fcfb0", + "version": "055d798", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草15-鹤观神像-稻妻3个.json", + "type": "file", + "hash": "3e414f48ec9bce9ef44dd2398caf86bc33553fb3", + "version": "3e414f4", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草16-天云峠-稻妻4个.json", + "type": "file", + "hash": "ce8c9b4ae01caa4ab147a4176cfe4dae120be0e8", + "version": "ce8c9b4", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + }, + { + "name": "海草17-越石村-稻妻4个.json", + "type": "file", + "hash": "400d34f8ae412ef55bd56a6f852a4d7d6d7cdae7", + "version": "400d34f", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "海草", + "纳西妲" + ] + } + ] + }, + { + "name": "海灵芝", + "type": "directory", + "children": [ + { + "name": "海灵芝_九条阵屋下_稻妻_7个.json", + "type": "file", + "hash": "9eb679340b59f6cb4a405a8106ba3e565c942d8a", + "version": "9eb6793", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_九条阵屋右_稻妻_7个.json", + "type": "file", + "hash": "b0bcd6b3a1fe52f0a1e0f8ef036211edb3234ec6", + "version": "b0bcd6b", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_九条阵屋左_稻妻_2个.json", + "type": "file", + "hash": "39b8e589d52ea62e563f9931a73afdceef3076e9", + "version": "39b8e58", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_天云峠北方_稻妻_3个.json", + "type": "file", + "hash": "d3bde41b316abe9768f7931af46a511ebdde7c9d", + "version": "d3bde41", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_曚云神社西_稻妻_6个.json", + "type": "file", + "hash": "002801a3fef6007cc0c1815df99e0ae952e4f0ca", + "version": "002801a", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_望泷村东_稻妻_3个.json", + "type": "file", + "hash": "66263792f88d8f89918e009263daef3417be9ad1", + "version": "6626379", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_望泷村西南_稻妻_3个.json", + "type": "file", + "hash": "a4bb07706f898055110e2a2889cc453f7991aa74", + "version": "a4bb077", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_水月池东南远处离岛_稻妻_2个.json", + "type": "file", + "hash": "2c7acf16a4050f0cb7fb10a2ff0ed22252da76b4", + "version": "2c7acf1", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_浅濑神社_稻妻_4个.json", + "type": "file", + "hash": "ab427b2b13a8b826c859c27ede914bf6e821e5d4", + "version": "ab427b2", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_清籁丸西北_稻妻_4个.json", + "type": "file", + "hash": "54f38cee1321c89ba27d82eaebf86a1b3a169825", + "version": "54f38ce", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_珊瑚宫西北_稻妻_5个.json", + "type": "file", + "hash": "2d4215e06221f5ef6fa405b47b82aad5dd4b4cfd", + "version": "2d4215e", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_绀田村左上角_稻妻_5个.json", + "type": "file", + "hash": "a9dbdcdc8f127c4dc34586f87385a1fa26fe6a5a", + "version": "a9dbdcd", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_蛇神之首右_稻妻_5个.json", + "type": "file", + "hash": "c97094f77b0d8e6d9f1d5f962ad304fc4f94a5e6", + "version": "c97094f", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_越石村东北_稻妻_8个.json", + "type": "file", + "hash": "0853bd7089ecbfaf6bdbdc295c74488f4a0118a4", + "version": "0853bd7", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_踏鞴沙右下_稻妻_6个.json", + "type": "file", + "hash": "77c44bf0c6ce2bd587be3531e358f9c55c523fb3", + "version": "77c44bf", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_踏鞴沙左上_稻妻_9个.json", + "type": "file", + "hash": "757b08b004d02248bfc83994649b19d2629cc0e2", + "version": "757b08b", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + } + ] + }, + { + "name": "海露花", + "type": "directory", + "children": [ + { + "name": "海露花-中央实验室右侧-2个.json", + "type": "file", + "hash": "34b356ea10447ad0c4015008a29ef376122059cb", + "version": "34b356e", + "author": "曦", + "description": "", + "tags": [ + "海露花", + "水元素力收集" + ] + }, + { + "name": "海露花-厄里那斯上侧-4个.json", + "type": "file", + "hash": "a85ea88c1e100e7e79150a4b43d4deda716edc01", + "version": "a85ea88", + "author": "曦", + "description": "", + "tags": [ + "海露花", + "水元素力收集" + ] + }, + { + "name": "海露花-厄里那斯右下角-6个.json", + "type": "file", + "hash": "143c7cc28377061cb411fd141e6be75b1bb22581", + "version": "143c7cc", + "author": "曦", + "description": "", + "tags": [ + "海露花", + "水元素力收集" + ] + }, + { + "name": "海露花-幽林雾道-5个.json", + "type": "file", + "hash": "58c7f8463e40ef78007b4a70bf14291c65194702", + "version": "58c7f84", + "author": "曦", + "description": "", + "tags": [ + "海露花", + "水元素力收集" + ] + }, + { + "name": "海露花-柔灯港-10个.json", + "type": "file", + "hash": "9c7fff6f7c535ec57a1a6d7f5f6366bf5bf444e4", + "version": "9c7fff6", + "author": "曦", + "description": "", + "tags": [ + "海露花", + "水元素力收集" + ] + }, + { + "name": "海露花-茉洁站-6个.json", + "type": "file", + "hash": "3c34514cebee12b80aaf553d31e1283159d8aa1a", + "version": "3c34514", + "author": "曦", + "description": "", + "tags": [ + "海露花", + "水元素力收集" + ] + } + ] + }, + { + "name": "虹彩蔷薇", + "type": "directory", + "children": [ + { + "name": "虹彩蔷薇-中央实验室遗址下方-4个.json", + "type": "file", + "hash": "87a70e193ecc05bed040c34c96c6077a383d067a", + "version": "87a70e1", + "author": "曦", + "description": "", + "tags": [ + "虹彩蔷薇" + ] + }, + { + "name": "虹彩蔷薇-厄里那斯左下角-11个.json", + "type": "file", + "hash": "21758e2f9719ee59791926be8ba74ed27a8e32c7", + "version": "21758e2", + "author": "曦", + "description": "", + "tags": [ + "虹彩蔷薇" + ] + }, + { + "name": "虹彩蔷薇-枫丹廷左上角-14个.json", + "type": "file", + "hash": "5fb80ab60c7ee6db6f8b773b674df18123b87ac1", + "version": "5fb80ab", + "author": "曦", + "description": "", + "tags": [ + "虹彩蔷薇" + ] + }, + { + "name": "虹彩蔷薇-枫丹廷左侧-15个.json", + "type": "file", + "hash": "733f2ce4c8a3755a3c365cae227968f953e86ebd", + "version": "733f2ce", + "author": "曦", + "description": "", + "tags": [ + "虹彩蔷薇" + ] + }, + { + "name": "虹彩蔷薇-秋分山西侧-5个.json", + "type": "file", + "hash": "8e9ed091ab791bbae622d018a48da9cdc71031fe", + "version": "8e9ed09", + "author": "曦", + "description": "", + "tags": [ + "虹彩蔷薇" + ] + }, + { + "name": "虹彩蔷薇-秋分山西侧海岛-11个.json", + "type": "file", + "hash": "a8e5bae92b3fa4762304f5f2c7f115e1c735e538", + "version": "a8e5bae", + "author": "曦", + "description": "", + "tags": [ + "虹彩蔷薇" + ] + }, + { + "name": "虹彩蔷薇-茉洁站-5个.json", + "type": "file", + "hash": "2d40fb975acdd82bd4ce89796a341a329a119fba", + "version": "2d40fb9", + "author": "曦", + "description": "", + "tags": [ + "虹彩蔷薇" + ] + }, + { + "name": "虹彩蔷薇-露景泉-9个.json", + "type": "file", + "hash": "5bf6c88ae8ef05b288af067a75397e851af39192", + "version": "5bf6c88", + "author": "曦", + "description": "", + "tags": [ + "虹彩蔷薇" + ] + } + ] + }, + { + "name": "胡萝卜", + "type": "directory", + "children": [ + { + "name": "胡萝卜-奔狼岭(上)-蒙德8个.json", + "type": "file", + "hash": "5fbf44ae58569da003a1f54cead26cd8bc9c48d0", + "version": "5fbf44a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-奔狼岭(右)-蒙德4个.json", + "type": "file", + "hash": "905beaa647dbd4a1f7bd404929c257a553f858bf", + "version": "905beaa", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-归离原-璃月4个.json", + "type": "file", + "hash": "37572836ec1951be4611b5abfdb752d57dee549e", + "version": "3757283", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-无相火-稻妻2个.json", + "type": "file", + "hash": "19a6d6b2e68791a2c7ec8c779b3caa3203f355bc", + "version": "19a6d6b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-明冠峡-蒙德4个.json", + "type": "file", + "hash": "8c981ad0f9fb3aa179cc6975330ffc7874c31c5b", + "version": "8c981ad", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-晨曦酒庄-蒙德12个.json", + "type": "file", + "hash": "e56a79c418a8234aa1ce7efa5411efa5edb960a9", + "version": "e56a79c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-望泷村-稻妻5个.json", + "type": "file", + "hash": "917055525fcc56766fb030d99e2043b80c4d4894", + "version": "9170555", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-望风山地-蒙德-4个.json", + "type": "file", + "hash": "58cd0c8cc06e156e7b155fe17f998a21c7e2a47c", + "version": "58cd0c8", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-枫丹廷(上)-枫丹3个.json", + "type": "file", + "hash": "d831be365c2b133a3dd7b1fbd62fc828a673e53a", + "version": "d831be3", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-清泉镇-蒙德-8个.json", + "type": "file", + "hash": "d3ee0e9784ebd6f7655043f837b47e0283b7b386", + "version": "d3ee0e9", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-绯木村-稻妻3个.json", + "type": "file", + "hash": "2ca4d6713f74361f31bb9241b1ab01139465eaad", + "version": "2ca4d67", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-蛇骨矿洞-稻妻3个.json", + "type": "file", + "hash": "4aa50fea0ef05f1ae44eb4060d12dfaad5cb55af", + "version": "4aa50fe", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-越石村-稻妻4个.json", + "type": "file", + "hash": "4be5c377ed82397b5402554028c763f1b231b498", + "version": "4be5c37", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-风龙废墟(上)-蒙德-7个.json", + "type": "file", + "hash": "c0c5f377d8165f66cc075e30138426aa7bbffc13", + "version": "c0c5f37", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-风龙废墟(下)-蒙德-4个.json", + "type": "file", + "hash": "012bb96eb4f2e907391ac40c15ad0c7db4e758e4", + "version": "012bb96", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + } + ] + }, + { + "name": "湖光铃兰", + "type": "directory", + "children": [ + { + "name": "湖光铃兰-优兰尼娅湖-9个.json", + "type": "file", + "hash": "b2585d47d15eb59dc673a79791db8e3c6db4440d", + "version": "b2585d4", + "author": "曦", + "description": "", + "tags": [ + "湖光铃兰" + ] + }, + { + "name": "湖光铃兰-优兰尼娅湖左上角-3个.json", + "type": "file", + "hash": "c3807b7c3d9091922f34163e2061bb01c9370379", + "version": "c3807b7", + "author": "曦", + "description": "", + "tags": [ + "湖光铃兰" + ] + }, + { + "name": "湖光铃兰-优兰尼娅湖左下角-3个.json", + "type": "file", + "hash": "7b3a7376b35c6f0f2f52c65b395509e475154536", + "version": "7b3a737", + "author": "曦", + "description": "", + "tags": [ + "湖光铃兰" + ] + }, + { + "name": "湖光铃兰-枫丹-幽林雾道-10个.json", + "type": "file", + "hash": "7f7bb6301eb7e2dd7ffc4386b522dd60265333ad", + "version": "7f7bb63", + "author": "曦", + "description": "", + "tags": [ + "湖光铃兰" + ] + }, + { + "name": "湖光铃兰-枫丹-湖中垂柳右下角-3个.json", + "type": "file", + "hash": "5f36571322ee352bf8e9ba99a7f04c070ab2257c", + "version": "5f36571", + "author": "曦", + "description": "", + "tags": [ + "湖光铃兰" + ] + }, + { + "name": "湖光铃兰-枫丹-湖中垂柳(未净化23个,净化37个).json", + "type": "file", + "hash": "bb13f38bdec61b8c597f62802d828dd04149b3b5", + "version": "bb13f38", + "author": "曦", + "description": "", + "tags": [ + "湖光铃兰" + ] + }, + { + "name": "湖光铃兰-湖中垂柳左下-6个.json", + "type": "file", + "hash": "8227557b3c186fed9c3abeb0837fcf92f5c834c7", + "version": "8227557", + "author": "曦", + "description": "", + "tags": [ + "湖光铃兰" + ] + } + ] + }, { "name": "劫波莲", "type": "directory", @@ -258,80 +2703,3618 @@ ] }, { - "name": "嘟嘟莲", + "name": "金鱼草", "type": "directory", "children": [ { - "name": "嘟嘟莲1-清泉镇-11个.json", + "name": "金鱼草-南天门-1个.json", "type": "file", - "hash": "716718bdf0e0ee3a04c55e834411e060acc3cbff", - "version": "716718b", - "author": "yulalaa&不瘦五十斤不改名", + "hash": "430773f71de073240a13eaa19c6d34a2403a37e9", + "version": "430773f", + "author": "曦", "description": "", "tags": [ - "嘟嘟莲", + "金鱼草" + ] + }, + { + "name": "金鱼草-古茶树坡右侧-3个.json", + "type": "file", + "hash": "ab58d0e7e28e69f18255d7bb7c0338d58519f293", + "version": "ab58d0e", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-地中之盐-3个.json", + "type": "file", + "hash": "c0cecf07ae74d54aefb8bd8915f44a7ee97a8381", + "version": "c0cecf0", + "author": "曦", + "description": "完成钟离传说任务后可用", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-奔狼岭右上角-1个.json", + "type": "file", + "hash": "f64aef3bfdad0adb61ae2fa4b4b81db3f82a545f", + "version": "f64aef3", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-奥藏山右上角-15个.json", + "type": "file", + "hash": "31632e9fa9cbb6848eba95f6a78c3cd28cdc2eee", + "version": "31632e9", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-奥藏山右下角-4个.json", + "type": "file", + "hash": "c316c85cf666eb4af7484ffc69d33fb2fb16c6c5", + "version": "c316c85", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-宝玦口左侧-2个.json", + "type": "file", + "hash": "24fe4995aa3abc1b9c404ab62458a9651a648046", + "version": "24fe499", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-庆云顶右侧-5个.json", + "type": "file", + "hash": "56a5893ffcdbee5ce8adc48fbb88c066b7267c68", + "version": "56a5893", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-归离原-1个.json", + "type": "file", + "hash": "709e88fda020157b7f43866dd9923de2002dc87c", + "version": "709e88f", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-归离原左侧-1个.json", + "type": "file", + "hash": "c5fd37666cc2c738dc66862866736bba4f8cf302", + "version": "c5fd376", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-无妄坡-2个.json", + "type": "file", + "hash": "3c92493eb35fe80b7e3021b098adf0e735f34d2e", + "version": "3c92493", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-无妄坡左下角-9个.json", + "type": "file", + "hash": "2d3d83cd4c1141aa8fa7db084862fa582d2c7f08", + "version": "2d3d83c", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-无妄坡左侧-1个.json", + "type": "file", + "hash": "785e65c1c962e0609c879a01c4f5ce26dfeda237", + "version": "785e65c", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-望风山地-6个.json", + "type": "file", + "hash": "3a13e4b07d8915eda825277e2bdbf5a5c890fd2a", + "version": "3a13e4b", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-清泉镇左上角-1个.json", + "type": "file", + "hash": "fb6a3bd469e215a7bf39ed5a5bba5725e27f72af", + "version": "fb6a3bd", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-渌华池-2个.json", + "type": "file", + "hash": "0fddc867ae32450a622e88343fba5d7b6f65419c", + "version": "0fddc86", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-湖中垂柳右侧-1个.json", + "type": "file", + "hash": "5a7e1ac3b36d78bb428799ab253c1d52b44ebd35", + "version": "5a7e1ac", + "author": "曦", + "description": "由于地下小地图不可用少1个", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-石门右上角-3个.json", + "type": "file", + "hash": "b7ec7497ec8fe7c18d4c1ac04c7705d5b3d12c06", + "version": "b7ec749", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-绝云间-4个.json", + "type": "file", + "hash": "e0732886bf29f3ceffb28758175588f0c1bef7a2", + "version": "e073288", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-药蝶谷右侧-4个.json", + "type": "file", + "hash": "36e27a2bcaf5be8352bebb7110ffea3dac5b3dba", + "version": "36e27a2", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-荻花洲-10个.json", + "type": "file", + "hash": "08989b1eaac6be1d1ad0cd1cc7ca161c80a2c39f", + "version": "08989b1", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-荻花洲过河左侧-2个.json", + "type": "file", + "hash": "334571c8b9ab84a78f6d390660c051dd0a131f1a", + "version": "334571c", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-赤璋城桓01-1个.json", + "type": "file", + "hash": "1edc039d31874c3f96ce3b7ec072d52fc781ae9a", + "version": "1edc039", + "author": "曦", + "description": "由于小地图无法识别少1个", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-赤璋城桓02-2个.json", + "type": "file", + "hash": "5118f84d1fe6d9415e28a97e43db1506a28eb6c0", + "version": "5118f84", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-赤璋城桓03-3个.json", + "type": "file", + "hash": "f03650cbc01255a6830e4836943c989494dbc870", + "version": "f03650c", + "author": "曦", + "description": "action中缺少T交互少1个", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-雪葬之都·近郊-2个.json", + "type": "file", + "hash": "359971d2f26aa85c9d11cfff38134c40613c43b0", + "version": "359971d", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-风起地-14个.json", + "type": "file", + "hash": "eb3503325f6f7dd46c803542ab24d3d01d3558d3", + "version": "eb35033", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + }, + { + "name": "金鱼草-风起地左上角-3个.json", + "type": "file", + "hash": "a12abe1de91a813a32c130bfbf802797acda6af8", + "version": "a12abe1", + "author": "曦", + "description": "", + "tags": [ + "金鱼草" + ] + } + ] + }, + { + "name": "晶化骨髓", + "type": "directory", + "children": [ + { + "name": "晶化骨髓01-无想刃狭间-5个.json", + "type": "file", + "hash": "ff3d572b0ec88d0192ca5c2f0d39b0a29141ab75", + "version": "ff3d572", + "author": "起个名字好难", + "description": "", + "tags": [ + "晶化骨髓" + ] + }, + { + "name": "晶化骨髓02-藤兜砦-4个.json", + "type": "file", + "hash": "ea8132abcbd11102c5a59345a0fad058081719c8", + "version": "ea8132a", + "author": "起个名字好难", + "description": "", + "tags": [ + "晶化骨髓" + ] + }, + { + "name": "晶化骨髓03-藤兜砦-3个.json", + "type": "file", + "hash": "4711583b525c2151c19a5431678e09b02f024465", + "version": "4711583", + "author": "起个名字好难", + "description": "", + "tags": [ + "晶化骨髓" + ] + }, + { + "name": "晶化骨髓04-藤兜砦-5个.json", + "type": "file", + "hash": "18bdd2a6a99966d86018d1e8a2751a7df0210921", + "version": "18bdd2a", + "author": "起个名字好难", + "description": "", + "tags": [ + "晶化骨髓" + ] + }, + { + "name": "晶化骨髓05-踏鞴砂-10个.json", + "type": "file", + "hash": "3021ffa88aa076b8231672d57da6197cb5c60d5e", + "version": "3021ffa", + "author": "起个名字好难", + "description": "", + "tags": [ + "晶化骨髓" + ] + }, + { + "name": "晶化骨髓06-八酝岛-11个.json", + "type": "file", + "hash": "6dbce62d6ee5dca0891007fe4b7f2bf5a3bdddcb", + "version": "6dbce62", + "author": "起个名字好难", + "description": "", + "tags": [ + "晶化骨髓" + ] + } + ] + }, + { + "name": "绝云椒椒", + "type": "directory", + "children": [ + { + "name": "绝云椒椒@jbcaaa", + "type": "directory", + "children": [ + { + "name": "绝云椒椒_地中之盐上方.json", + "type": "file", + "hash": "655bc26eabcd9595d6290e5856ab03928e946d45", + "version": "655bc26", + "author": "jbcaaa", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒_绝云间上方.json", + "type": "file", + "hash": "690fd9084d1bf8d6bd4c5b416e4e8f5cb46b7be0", + "version": "690fd90", + "author": "jbcaaa", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒_轻策庄.json", + "type": "file", + "hash": "3f718193a5978388bf04c7e1bcfe6d3d9f9e84af", + "version": "3f71819", + "author": "jbcaaa", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒_轻策庄左侧.json", + "type": "file", + "hash": "02013feb97fcaa045df97b54cc7b02a707c3c977", + "version": "02013fe", + "author": "jbcaaa", + "description": "", + "tags": [ + "绝云椒椒" + ] + } + ] + }, + { + "name": "绝云椒椒@不瘦五十斤不改名", + "type": "directory", + "children": [ + { + "name": "绝云椒椒-奥藏山(一)-璃月1×3个.json", + "type": "file", + "hash": "c1ba4a6b96964ecb08a19556011db4d6073770fc", + "version": "c1ba4a6", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-奥藏山(二)-璃月6×3个.json", + "type": "file", + "hash": "5e50bee3df069d929a690a00197f0db101e9f332", + "version": "5e50bee", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-宗室本-璃月4×3个.json", + "type": "file", + "hash": "6121853f58efbfd2da2b460f4d837be7cb6232b2", + "version": "6121853", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-苍白本-璃月7×3个.json", + "type": "file", + "hash": "42fd102f24ab486920f40b7116b49054d973a0f7", + "version": "42fd102", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-轻策庄(一)-璃月1×3个.json", + "type": "file", + "hash": "6ffb99454fb1f65f19aa4e966a1f2635fdbafc72", + "version": "6ffb994", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-轻策庄(三)-璃月1×3个.json", + "type": "file", + "hash": "910d7711ff91a31e20297c8b0baca05b221b2232", + "version": "910d771", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-轻策庄(二)-璃月7×3个.json", + "type": "file", + "hash": "15598e7a2e3fe300a3340a86dc88ce5c1800e151", + "version": "15598e7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + } + ] + } + ] + }, + { + "name": "颗粒果", + "type": "directory", + "children": [ + { + "name": "颗粒果01-回声之子-纳塔5个.json", + "type": "file", + "hash": "cdc1fd5d000d1d7c8be280f347c69eea2e2f6eae", + "version": "cdc1fd5", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果02-隆崛坡-纳塔6个.json", + "type": "file", + "hash": "48c8677c9bd54360e68de6766228cc21b28d0219", + "version": "48c8677", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果03-祖遗庙宇-纳塔3个.json", + "type": "file", + "hash": "c0dd729cb176bcf0152bd4b56486e71550fd710f", + "version": "c0dd729", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果04-悬木人-纳塔26个.json", + "type": "file", + "hash": "2c5d9ee2eb2ad183057d039fce4a9c00622252d8", + "version": "2c5d9ee", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果05-圣火竞技场-纳塔6个.json", + "type": "file", + "hash": "cb3a8e5006bfd0ba0c05364a353ac10e42bd6fa1", + "version": "cb3a8e5", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果06-悬木人-纳塔13个.json", + "type": "file", + "hash": "844c56b3206c72b603f4c246d0cda1e6cc857b0b", + "version": "844c56b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果07-圣火竞技场-纳塔3个.json", + "type": "file", + "hash": "6f25de3452c812a40e6c8694e1697f8d508f83a8", + "version": "6f25de3", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果08-柴薪之丘(中危)-纳塔10个.json", + "type": "file", + "hash": "f434683828075c23b9e133e2f6bb2aa5e5bb80fc", + "version": "f434683", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果09-柴薪之丘(高危)-纳塔18个.json", + "type": "file", + "hash": "f7be1c50cf74ee221a7932cf665e05dda8d32175", + "version": "f7be1c5", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果10-烟谜主-纳塔10个.json", + "type": "file", + "hash": "6de37e54bbdafa557e1a4467cd9a121a5d7a0f51", + "version": "6de37e5", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + }, + { + "name": "颗粒果11-花羽会-纳塔6个.json", + "type": "file", + "hash": "5c9921a7b85ef37c35762afd9ccc52663699196e", + "version": "5c9921a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "颗粒果" + ] + } + ] + }, + { + "name": "枯叶紫英", + "type": "directory", + "children": [ + { + "name": "枯叶紫英-天蛇船下方-11个.json", + "type": "file", + "hash": "6bf53a86c158018ca12cd43b306e297dfbb6ec74", + "version": "6bf53a8", + "author": "曦", + "description": "", + "tags": [ + "枯叶紫英" + ] + }, + { + "name": "枯叶紫英-奥奇卡纳塔右01-1个.json", + "type": "file", + "hash": "b7ba50919a37ee92f172ad99775262a15559c3bb", + "version": "b7ba509", + "author": "曦", + "description": "有神瞳标识可能影响识别,建议先拿", + "tags": [ + "枯叶紫英" + ] + }, + { + "name": "枯叶紫英-奥奇卡纳塔神像右-7个.json", + "type": "file", + "hash": "05d47c6c59e86d41219b1f186313104e2b9a4e9f", + "version": "05d47c6", + "author": "曦", + "description": "", + "tags": [ + "枯叶紫英" + ] + }, + { + "name": "枯叶紫英-奥斯卡纳塔左02-11个.json", + "type": "file", + "hash": "700e8f1623757e90725d155931cd9dd3b02c1eec", + "version": "700e8f1", + "author": "曦", + "description": "", + "tags": [ + "枯叶紫英" + ] + }, + { + "name": "枯叶紫英-奥斯卡纳塔神像左-5个.json", + "type": "file", + "hash": "8a4e8975f1e87bd1c5b5b5c5ce9edcd29158ef9e", + "version": "8a4e897", + "author": "曦", + "description": "需要盾位", + "tags": [ + "枯叶紫英" + ] + }, + { + "name": "枯叶紫英-托佐兹之岛-2个.json", + "type": "file", + "hash": "513471e5929b7c0c4f8ee88b9d791d5d8eda3bc2", + "version": "513471e", + "author": "曦", + "description": "有一个解密,剩余1个枯叶紫英", + "tags": [ + "枯叶紫英" + ] + }, + { + "name": "枯叶紫英-火鹦之塔-18个.json", + "type": "file", + "hash": "0def3a2f927388e934ded37f30178e0b23fc6a88", + "version": "0def3a2", + "author": "曦", + "description": "", + "tags": [ + "枯叶紫英" + ] + }, + { + "name": "枯叶紫英-空梦的起始-11个.json", + "type": "file", + "hash": "7ae1868b38e4c9dcb2a0728cc844766805886759", + "version": "7ae1868", + "author": "曦", + "description": "该处有首杀宝箱,9个枯叶紫英", + "tags": [ + "枯叶紫英" + ] + } + ] + }, + { + "name": "苦种", + "type": "directory", + "children": [ + { + "name": "苦种01-隆崛坡-纳塔3个.json", + "type": "file", + "hash": "c48452bbedd4bb6294f5909b8d26be73136fbc1c", + "version": "c48452b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种02-硫晶支脉-纳塔2个.json", + "type": "file", + "hash": "0a368d9a7636af43957b46c101af1b1891b4f891", + "version": "0a368d9", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种03-硫晶支脉-纳塔6个.json", + "type": "file", + "hash": "f2fb0549e34181c127d09074fd68b13c7206da2d", + "version": "f2fb054", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种04-硫晶支脉-纳塔8个.json", + "type": "file", + "hash": "2c7ca42a99b933f6bb96202c9c38d5332a84ca4a", + "version": "2c7ca42", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种05-硫晶支脉-纳塔2个.json", + "type": "file", + "hash": "b0205d189e2cc1f3125e6781b8c233caa8d8d9c9", + "version": "b0205d1", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种06-回声之子-纳塔10个.json", + "type": "file", + "hash": "cbfaefd015169b11073744c1a994319856835cc5", + "version": "cbfaefd", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种07-悬木人-纳塔5个.json", + "type": "file", + "hash": "aaf4fca8a22e1ee703b52ea94f5822f5528c66b0", + "version": "aaf4fca", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种08-彩石顶-纳塔7个.json", + "type": "file", + "hash": "1323ed065ec2f68c6ff2daa9c04621e86176279c", + "version": "1323ed0", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种09-溶水域-纳塔2个.json", + "type": "file", + "hash": "a0367bf5a406ab3f788a358c9d0238faa66f1cb9", + "version": "a0367bf", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种10-溶水域-纳塔2个.json", + "type": "file", + "hash": "8327d37b19b86a866249fa4b996a89c1f85243b0", + "version": "8327d37", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种11-悬木人(高危)-纳塔13个.json", + "type": "file", + "hash": "59ae906e90a5ffbcd93789c91f1d6bcc3dc05cf6", + "version": "59ae906", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种12-柴薪之丘-纳塔4个.json", + "type": "file", + "hash": "7ef68926ae884064a646560163bd6c07605a8c9a", + "version": "7ef6892", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种13-花羽会-纳塔2个.json", + "type": "file", + "hash": "118ab3ff47bc88245c203445c85f3c8977d17efd", + "version": "118ab3f", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种14-花羽会-纳塔4个.json", + "type": "file", + "hash": "4036461284e738a882de197a787973d4459b73ca", + "version": "4036461", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种15-花羽会-纳塔2个.json", + "type": "file", + "hash": "d7e7ee9ad5edcf70fc62cfff8eaa175f964652ec", + "version": "d7e7ee9", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种16-花羽会-纳塔3个.json", + "type": "file", + "hash": "a5b4d473500f3f791d8b574c3a4a00681045c953", + "version": "a5b4d47", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种17-烟谜主-纳塔8个.json", + "type": "file", + "hash": "cfd1bdd5c7631edfcefac2c66c36bb1c85302580", + "version": "cfd1bdd", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + } + ] + }, + { + "name": "浪沫羽鳃", + "type": "directory", + "children": [ + { + "name": "浪沫羽鳃1-流泉之众上-11个.json", + "type": "file", + "hash": "9d89514979df0906def126ca5ae435795348f142", + "version": "9d89514", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + }, + { + "name": "浪沫羽鳃2-溶水域七天神像下-8个.json", + "type": "file", + "hash": "17134559b174055b434f7fa24c374a9b438f10a3", + "version": "1713455", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + }, + { + "name": "浪沫羽鳃3-溶水域七天神像左-14个.json", + "type": "file", + "hash": "f468c281d3295e51aa93215a6c80e62e19ffbe57", + "version": "f468c28", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + }, + { + "name": "浪沫羽鳃4-溶水域七天神像右-12个.json", + "type": "file", + "hash": "4dc06575058ba4c97320fdbe9935f911a8553f9a", + "version": "4dc0657", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + }, + { + "name": "浪沫羽鳃5-溶水域右上-9个.json", + "type": "file", + "hash": "bcc7304bd3ecf0478e7870e4b85af6c8cf3e1e9c", + "version": "bcc7304", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + } + ] + }, + { + "name": "莲蓬", + "type": "directory", + "children": [ + { + "name": "莲蓬1-狄花州-璃月2个.json", + "type": "file", + "hash": "abbf3e5e5485a6135b999289b158e9b8d7389c94", + "version": "abbf3e5", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "莲蓬", "纳西妲" ] }, { - "name": "嘟嘟莲2-达达乌帕谷-7个.json", + "name": "莲蓬2-宗室本-璃月4个.json", "type": "file", - "hash": "df7bb546d915ba00280536517177647f269d7242", - "version": "df7bb54", - "author": "yulalaa&不瘦五十斤不改名", + "hash": "f1dfe053f483f4675e42c7b2a07486ee989f64c8", + "version": "f1dfe05", + "author": "不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲", + "莲蓬", "纳西妲" ] }, { - "name": "嘟嘟莲3-晨曦酒庄-3个.json", + "name": "莲蓬3-若陀周本-璃月3个.json", "type": "file", - "hash": "6c22e44177ae3a737b68ea89cd4fbc630d0e7157", - "version": "6c22e44", - "author": "yulalaa&不瘦五十斤不改名", + "hash": "cbdd43e1706db6ddf934c432331367bba535b320", + "version": "cbdd43e", + "author": "不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲", + "莲蓬", "纳西妲" ] }, { - "name": "嘟嘟莲4-奔狼领-4个.json", + "name": "莲蓬4-归离原(一)-璃月3个.json", "type": "file", - "hash": "c480078260ad4e4a1eb7e78d834d0843b4996b56", - "version": "c480078", - "author": "yulalaa&不瘦五十斤不改名", + "hash": "778a56242c4225971fe4ea38453ef0ee9596bcac", + "version": "778a562", + "author": "不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲", + "莲蓬", "纳西妲" ] }, { - "name": "嘟嘟莲5-千风神殿-3个.json", + "name": "莲蓬5-归离原(二)-璃月2个.json", "type": "file", - "hash": "12feeea1d40eaeefe1c3d6438c8882defb8987b7", - "version": "12feeea", - "author": "yulalaa&不瘦五十斤不改名", + "hash": "dd9bafbd9873418247e1bd3c9cd2070c9c8f8e32", + "version": "dd9bafb", + "author": "不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲", + "莲蓬", "纳西妲" ] }, { - "name": "嘟嘟莲6-星落湖-2个.json", + "name": "莲蓬6-归离原(三)-璃月2个.json", "type": "file", - "hash": "48f37a5479a312e4b667677bffa4749dae075ea8", - "version": "48f37a5", - "author": "yulalaa&不瘦五十斤不改名", + "hash": "19ada4eae8d9dd214358ef59f0af5e3b5684a2f8", + "version": "19ada4e", + "author": "不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲", + "莲蓬", "纳西妲" ] + }, + { + "name": "莲蓬7-渌华池-璃月12个.json", + "type": "file", + "hash": "64cd881ba12cc6cf1022acb795dbf0fbfda5137d", + "version": "64cd881", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "莲蓬", + "纳西妲" + ] + }, + { + "name": "莲蓬8-遁玉陵-璃月7个.json", + "type": "file", + "hash": "44eda3163c164131b60dca0a4e3a3073a8de1e37", + "version": "44eda31", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "莲蓬", + "纳西妲" + ] + }, + { + "name": "莲蓬9-天衡山-璃月3个.json", + "type": "file", + "hash": "17753893ee5d5a52d934589a7ae59fa7e2cf1f27", + "version": "1775389", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "莲蓬", + "纳西妲" + ] + } + ] + }, + { + "name": "琉璃百合", + "type": "directory", + "children": [ + { + "name": "琉璃百合1-璃月港右-3个.json", + "type": "file", + "hash": "019ab6fe304a05fe09821e63737452faac30b8b2", + "version": "019ab6f", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合2-璃月港左-7个+霓裳花4x2个.json", + "type": "file", + "hash": "e3038c5d51de3c4a712b30ca927de41303d26f1c", + "version": "e3038c5", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合3-璃月港左-11个+霓裳花3x2个.json", + "type": "file", + "hash": "7aadbe311be509151da6403f905f3b2210c2b819", + "version": "7aadbe3", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合4-轻策庄下-2个+绝云椒椒2x3个.json", + "type": "file", + "hash": "b3bce444691bb241ef3eb8ca96a8e27f44d5e44a", + "version": "b3bce44", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合5-轻策庄右-1个+绝云椒椒1x3个.json", + "type": "file", + "hash": "c07af023cc59fd19e0a96bed3c8d6692f4fbc201", + "version": "c07af02", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合6-轻策庄下-1个+绝云椒椒1x3个.json", + "type": "file", + "hash": "91d2021828c42cdfd0a49809c9c91bfb19f4de73", + "version": "91d2021", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合7-轻策庄左-5个+绝云椒椒1x3个.json", + "type": "file", + "hash": "8115cc8cbb573bb434fa90f912d81174cdbbaaa5", + "version": "8115cc8", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合8-轻策庄上-11个+绝云椒椒1x3个.json", + "type": "file", + "hash": "8a51f5537c3fc2029569dee8e7897c9da30c83c4", + "version": "8a51f55", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + } + ] + }, + { + "name": "琉璃袋", + "type": "directory", + "children": [ + { + "name": "琉璃袋-天工峡-2个.json", + "type": "file", + "hash": "b9dc09bbae63fce1f0ca274564f5926cea452468", + "version": "b9dc09b", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + }, + { + "name": "琉璃袋-天遒谷-2个.json", + "type": "file", + "hash": "2058ede5d685e63a4db272a863d9f4f63420ef68", + "version": "2058ede", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + }, + { + "name": "琉璃袋-孤云阁-2个.json", + "type": "file", + "hash": "7aca33caeee550cc50b309f73fe051f34af2db7f", + "version": "7aca33c", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + }, + { + "name": "琉璃袋-层岩巨渊-4个.json", + "type": "file", + "hash": "90d3565826c54bb741b2fc866b0038cdc68d6351", + "version": "90d3565", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + }, + { + "name": "琉璃袋-无妄坡-3个.json", + "type": "file", + "hash": "735020144eee7d557e29aad51abe3ae93b34a5f9", + "version": "7350201", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + }, + { + "name": "琉璃袋-无妄坡2-6个.json", + "type": "file", + "hash": "1f4b645de488611b63872bed1f99adb5ce21709c", + "version": "1f4b645", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + }, + { + "name": "琉璃袋-明蕴镇-6个.json", + "type": "file", + "hash": "14a471d849121dbf0381f788d7468963fda68c2d", + "version": "14a471d", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + }, + { + "name": "琉璃袋-池中盐水-5个.json", + "type": "file", + "hash": "3a9ebfb3841172f94ef839a1b2a024af70db0a46", + "version": "3a9ebfb", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + }, + { + "name": "琉璃袋-灵矩关-6个.json", + "type": "file", + "hash": "69d6cdb9150720590da8b3d875c5e296cd27001f", + "version": "69d6cdb", + "author": "yulalaa", + "description": "", + "tags": [ + "琉璃袋", + "纳西妲" + ] + } + ] + }, + { + "name": "落落莓", + "type": "directory", + "children": [ + { + "name": "望风山地1x24.json", + "type": "file", + "hash": "113131274b932057cf7ba6327c9ef6ed10fa4a3e", + "version": "1131312", + "author": "yulalaa", + "description": "", + "tags": [ + "落落莓" + ] + }, + { + "name": "望风山地2x28.json", + "type": "file", + "hash": "d447b3278f23c56409ee8240b1953ec780931c7c", + "version": "d447b32", + "author": "yulalaa", + "description": "", + "tags": [ + "落落莓" + ] + }, + { + "name": "望风山地3x16.json", + "type": "file", + "hash": "5fba71d9c038b5eefd77778c2fcd809b4c0e793c", + "version": "5fba71d", + "author": "yulalaa", + "description": "", + "tags": [ + "落落莓" + ] + } + ] + }, + { + "name": "马尾", + "type": "directory", + "children": [ + { + "name": "马尾1.json", + "type": "file", + "hash": "33192aec3c2ab55270793c40fb7670a485e4a88b", + "version": "33192ae", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "马尾", + "纳西妲" + ] + }, + { + "name": "马尾2.json", + "type": "file", + "hash": "13d30fc5c49b75f3a4592d172affd884d1e4c2dc", + "version": "13d30fc", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "马尾", + "纳西妲" + ] + }, + { + "name": "马尾3.json", + "type": "file", + "hash": "9ea1090a6cf31546716a738ce7a8627339dbc2af", + "version": "9ea1090", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "马尾", + "纳西妲" + ] + } + ] + }, + { + "name": "鳗肉", + "type": "directory", + "children": [ + { + "name": "1沙漠合集-17.json", + "type": "file", + "hash": "92cc1718193fa0cb2e18ac94174e5f625dab4071", + "version": "92cc171", + "author": "", + "description": "", + "tags": [ + "鳗肉" + ] + }, + { + "name": "2珊瑚宫北-9.json", + "type": "file", + "hash": "96115c29d7d7befc2bf5b1f59c72dcb8439eadf0", + "version": "96115c2", + "author": "MOMO", + "description": "", + "tags": [ + "鳗肉" + ] + }, + { + "name": "3曚云神社-6.json", + "type": "file", + "hash": "41e2a1733eb3f44afa0a019a1c9715fd12f9cee7", + "version": "41e2a17", + "author": "MOMO", + "description": "", + "tags": [ + "鳗肉" + ] + }, + { + "name": "4望泷村南-3.json", + "type": "file", + "hash": "d372038993aa086c664ea942afe30b334f14eb9d", + "version": "d372038", + "author": "MOMO", + "description": "", + "tags": [ + "鳗肉" + ] + }, + { + "name": "5望泷村东-6.json", + "type": "file", + "hash": "1880d1cd5a6d570c93185fe2984e1ded34c60b29", + "version": "1880d1c", + "author": "MOMO", + "description": "", + "tags": [ + "鳗肉" + ] + }, + { + "name": "6水月池南-4.json", + "type": "file", + "hash": "7be5a05ea3c60b2e4157710aa8e6115f964a2955", + "version": "7be5a05", + "author": "MOMO", + "description": "", + "tags": [ + "鳗肉" + ] + } + ] + }, + { + "name": "鸣草", + "type": "directory", + "children": [ + { + "name": "鸣草_九条阵屋_3个.json", + "type": "file", + "hash": "405fe41ab05f7aad40f79e9b8a4ff356464dab2d", + "version": "405fe41", + "author": "花见木易", + "description": "鸣草_九条阵屋_3个 的初始点类型修改为“传送”", + "tags": [ + "鸣草" + ] + }, + { + "name": "鸣草_越石村1号线_7个.json", + "type": "file", + "hash": "9ce203c68d76da2fb473c2d92d4ace475366e2cd", + "version": "9ce203c", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + }, + { + "name": "鸣草_越石村2号线_6个.json", + "type": "file", + "hash": "eddb84a7a088684ee1c50eb9034ff68d83b1a8fe", + "version": "eddb84a", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + }, + { + "name": "鸣草_踏鞴砂1号线_15个.json", + "type": "file", + "hash": "53d8f871e9f0d26378517faf988cad3a1056cea9", + "version": "53d8f87", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + }, + { + "name": "鸣草_踏鞴砂2号线_6个.json", + "type": "file", + "hash": "ff010d6299cc7e5fa98892c4cad795ac891b1481", + "version": "ff010d6", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + } + ] + }, + { + "name": "茉洁草", + "type": "directory", + "children": [ + { + "name": "茉洁草01-猎人本-枫丹3个.json", + "type": "file", + "hash": "ddbaab7cfb4361bd2f764fbe092a1e9e6e22479a", + "version": "ddbaab7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草02-猎人本-枫丹5个.json", + "type": "file", + "hash": "9f0a8a8b021ebc64727f915c89f62677007a00de", + "version": "9f0a8a8", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草03-厄里那斯左下-枫丹12个.json", + "type": "file", + "hash": "89816a921cda372f5d7ebfb0058d58e81edfdd1f", + "version": "89816a9", + "author": "曦", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草04-厄里那斯左下-枫丹4个.json", + "type": "file", + "hash": "b7cbf74fc899c34078b52f47551971fea9e46e8e", + "version": "b7cbf74", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草05-厄里那斯左下-枫丹9个.json", + "type": "file", + "hash": "f30b81b604c308248bfb92b7091a0f3909819cd9", + "version": "f30b81b", + "author": "曦", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草06-厄里那斯右下-枫丹6个.json", + "type": "file", + "hash": "b738720be29ea223b31a62df8b975d345829818a", + "version": "b738720", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草07-厄里那斯右下-枫丹4个.json", + "type": "file", + "hash": "3e40c315bf3afbe1547c54e07eeb9f198c97673d", + "version": "3e40c31", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草08-厄里那斯神像-枫丹13个.json", + "type": "file", + "hash": "ca98bc4c562a7d99b1fc254fcf411905b3e141e2", + "version": "ca98bc4", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草09-厄里那斯左-枫丹5个.json", + "type": "file", + "hash": "755650155ce426b762728e28aacc65695cbb5681", + "version": "7556501", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草10-厄里那斯左-枫丹4个.json", + "type": "file", + "hash": "d76c28578c7e5784e2e049e11990385be340c5e3", + "version": "d76c285", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草11-枫丹廷左-枫丹5个.json", + "type": "file", + "hash": "e28038cdb49b59106e39b4bebefb4b0d0132f47e", + "version": "e28038c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草12-枫丹廷左-枫丹4个.json", + "type": "file", + "hash": "c0d485a21e629ce960ad48897e671ea01596be82", + "version": "c0d485a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草13-枫丹廷左上-枫丹4个.json", + "type": "file", + "hash": "75d33caf4bd962653f6d2b566216e24f95f7144c", + "version": "75d33ca", + "author": "曦", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草14-枫丹廷左上-枫丹4个.json", + "type": "file", + "hash": "502df9de8eacb5395198a0f0610679fb8db0bd8f", + "version": "502df9d", + "author": "曦", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草15-枫丹廷左上-枫丹6个.json", + "type": "file", + "hash": "c758e7f3530eb8479d772fb15e5f5bce1dd61e33", + "version": "c758e7f", + "author": "曦", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草16-枫丹廷左上-枫丹8个.json", + "type": "file", + "hash": "59aad97b586b9a19d584c06779b20463808f65f8", + "version": "59aad97", + "author": "曦", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草17-枫丹廷左上-枫丹4个.json", + "type": "file", + "hash": "b8f45c2037c278ce35335d053ee0a76b48d7939a", + "version": "b8f45c2", + "author": "曦", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草18-枫丹廷上-枫丹5个.json", + "type": "file", + "hash": "662b544f79cc0e1f282d5dc47b5061f6b7fff86a", + "version": "662b544", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草19-枫丹科学院-枫丹4个.json", + "type": "file", + "hash": "c0d180d30165319eebf9a0f868d6b87d769ff8f9", + "version": "c0d180d", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草20-枫丹科学院-枫丹5个.json", + "type": "file", + "hash": "e65a2b925e761248785f7d3f4e19146572ffa358", + "version": "e65a2b9", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草21-枫丹科学院-枫丹5个.json", + "type": "file", + "hash": "3643ffcc0efb5228b47817d4a3c2de1c2f80deba", + "version": "3643ffc", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草22-中央实验室遗址-枫丹7个.json", + "type": "file", + "hash": "39c501215cfe17d1374067f70b1a6b9f1d4115f5", + "version": "39c5012", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草23-中央实验室遗址西-枫丹3个.json", + "type": "file", + "hash": "cf2586c85ad026e53ae6351fae6fbf27d2d5c4df", + "version": "cf2586c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草24-中央实验室遗址西-枫丹6个.json", + "type": "file", + "hash": "4bfcdd280d1d7913e07e8f004fb5cadae9391a6c", + "version": "4bfcdd2", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草25-中央实验室遗址西-枫丹4个.json", + "type": "file", + "hash": "6d366aaa0e18939fba8d6ace7d32a99b579164b5", + "version": "6d366aa", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草26-优兰尼娅湖-枫丹3个.json", + "type": "file", + "hash": "c1cbc9447a6ff9ea8f18a5093db7b38b57fd8e11", + "version": "c1cbc94", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草27-茉洁站-枫丹6个.json", + "type": "file", + "hash": "094ff501dcd14b1afe4e9bc20ec4d61ecd56e910", + "version": "094ff50", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草28-湖中垂柳-枫丹12个.json", + "type": "file", + "hash": "77b3ff0b65abe773379ee2a0577e6ce84df3a39d", + "version": "77b3ff0", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草29-湖中垂柳-枫丹3个.json", + "type": "file", + "hash": "5301e1a0c4eb750a1ba0bb51c795d02505750118", + "version": "5301e1a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草30-湖中垂柳-枫丹3个.json", + "type": "file", + "hash": "ffb1c57fe08d5d7155708d34335d2bcd85d7c2e7", + "version": "ffb1c57", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草31-湖中垂柳-枫丹4个.json", + "type": "file", + "hash": "a972a05680a083ff630e1df3326be6a8010d391d", + "version": "a972a05", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草32-幽林雾道-枫丹9个.json", + "type": "file", + "hash": "a4f369d125ecd69492ed77d35e7847f394c57e8d", + "version": "a4f369d", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草33-幽林雾道-枫丹16个.json", + "type": "file", + "hash": "16eadfaaee178245264a4dd4df13efec3039ca80", + "version": "16eadfa", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草34-幽林雾道-枫丹3个.json", + "type": "file", + "hash": "4ac41caea163a2ecaef8fee90b8a541b25f7563f", + "version": "4ac41ca", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草35-欧庇克莱歌剧院-枫丹2个.json", + "type": "file", + "hash": "2ffa090b9c371e1e33c777116c949f89e0849000", + "version": "2ffa090", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草36-欧庇克莱歌剧院-枫丹15个.json", + "type": "file", + "hash": "f3739cdda848f73654914abd5db0be9558938638", + "version": "f3739cd", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草37-莫尔泰区-枫丹7个.json", + "type": "file", + "hash": "fe5783c66615881502a41acbfdba6989332f3211", + "version": "fe5783c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草38-卡布狄斯堡遗迹-枫丹11个.json", + "type": "file", + "hash": "a0cd70a7e14a70b9b009440611aa1e773575a138", + "version": "a0cd70a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草39-秋分山西侧-枫丹2个.json", + "type": "file", + "hash": "d8fa0a4756682df5d12aa901336bfb701107a730", + "version": "d8fa0a4", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + }, + { + "name": "茉洁草40-秋分山西侧-枫丹4个.json", + "type": "file", + "hash": "58c0a7de7ef301bedc43bef23399a9ae88347c18", + "version": "58c0a7d", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "茉洁草" + ] + } + ] + }, + { + "name": "慕风蘑菇", + "type": "directory", + "children": [ + { + "name": "慕风蘑菇1-清泉镇-15个.json", + "type": "file", + "hash": "b689184c5b666269908e6b7d5ce5a2a0dcb03f84", + "version": "b689184", + "author": "yulalaa", + "description": "", + "tags": [ + "慕风蘑菇", + "纳西妲" + ] + }, + { + "name": "慕风蘑菇2-清泉镇-2个.json", + "type": "file", + "hash": "ef2a43ba20d552d6383192509fc247c3b0c06447", + "version": "ef2a43b", + "author": "yulalaa", + "description": "", + "tags": [ + "慕风蘑菇", + "纳西妲" + ] + }, + { + "name": "慕风蘑菇3-晨曦酒庄-6个.json", + "type": "file", + "hash": "83818e7b7efdef56ad673bfdbeff658fc42a9c2f", + "version": "83818e7", + "author": "yulalaa", + "description": "", + "tags": [ + "慕风蘑菇", + "纳西妲" + ] + } + ] + }, + { + "name": "霓裳花", + "type": "directory", + "children": [ + { + "name": "霓裳花_望舒客栈_璃月_7个.json", + "type": "file", + "hash": "581b46d47e0df1d595396867d751420a0f03b84e", + "version": "581b46d", + "author": "tignioj", + "description": "", + "tags": [ + "霓裳花" + ] + } + ] + }, + { + "name": "鸟蛋", + "type": "directory", + "children": [ + { + "name": "鸟蛋-云来海-璃月2个.json", + "type": "file", + "hash": "20f950cbc6e4e19b45dd76bdde4b9785b78fd1ee", + "version": "20f950c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋" + ] + }, + { + "name": "鸟蛋-地中之盐-璃月2个.json", + "type": "file", + "hash": "0c81f3189bc9b253178a5710bac0c109513b7490", + "version": "0c81f31", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-奥藏山-璃月8个.json", + "type": "file", + "hash": "e3f32b7ad80220c805e9c649d1d094aeab3ff5fe", + "version": "e3f32b7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋" + ] + }, + { + "name": "鸟蛋-孤云阁-璃月2个.json", + "type": "file", + "hash": "99bc5ea9fe25f86788a47307da61208adae6d1ae", + "version": "99bc5ea", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-明蕴镇(神像)-璃月2个.json", + "type": "file", + "hash": "9d259e3aed309e9a8c6241b6c5415db5f609d6cd", + "version": "9d259e3", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-明蕴镇-璃月2个.json", + "type": "file", + "hash": "8c70516155fa0529236012af2fd059888ad28617", + "version": "8c70516", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-清泉镇-蒙德2个.json", + "type": "file", + "hash": "9bc20e76089e7e54815091da4b7c7ed467c9671e", + "version": "9bc20e7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-珉林-璃月2个.json", + "type": "file", + "hash": "1b688e61d409629aa258fef70c885cf0b8e77ace", + "version": "1b688e6", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-瑶光滩-璃月2个.json", + "type": "file", + "hash": "41d8c6ae22e6601ec6bd2a3cd2b4f586c54b1b78", + "version": "41d8c6a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-纳塔-回声之子下方锚点-2个.json", + "type": "file", + "hash": "d3f92135522eb954c48832641be8f7a7f9b2960c", + "version": "d3f9213", + "author": "起个名字好难", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-绝云间上-璃月2个.json", + "type": "file", + "hash": "078492918a3434270bc5b19f6ae9200e4948d84a", + "version": "0784929", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-荻花洲-璃月2个.json", + "type": "file", + "hash": "d5be00999f4a56225a0193bf078835e49babd1b6", + "version": "d5be009", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + }, + { + "name": "鸟蛋-震雷连山密宫-璃月2个.json", + "type": "file", + "hash": "63a5d6797826e02aa946530892e1d5bbd595fd41", + "version": "63a5d67", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "鸟蛋", + "纳西妲" + ] + } + ] + }, + { + "name": "帕蒂沙兰", + "type": "directory", + "children": [ + { + "name": "帕蒂沙兰 卡萨扎莱宫.json", + "type": "file", + "hash": "a6d0d4f3dc248dab19d1aaab23cb68738f653bd5", + "version": "a6d0d4f", + "author": "jbcaaa", + "description": "", + "tags": [ + "帕蒂沙兰" + ] + }, + { + "name": "帕蒂沙兰 桓那兰那.json", + "type": "file", + "hash": "f278820cc4388566dc31c16486852cf5515d7a55", + "version": "f278820", + "author": "jbcaaa", + "description": "", + "tags": [ + "帕蒂沙兰" + ] + }, + { + "name": "帕蒂沙兰 桓那兰那右上.json", + "type": "file", + "hash": "11f578949b4c2831da59824fb6743ccd7aaec0a2", + "version": "11f5789", + "author": "jbcaaa", + "description": "", + "tags": [ + "帕蒂沙兰" + ] + }, + { + "name": "帕蒂沙兰 桓那兰那右下.json", + "type": "file", + "hash": "253d30cac8a1028c54ba2de826a3e5e2a7fea898", + "version": "253d30c", + "author": "jbcaaa", + "description": "", + "tags": [ + "帕蒂沙兰" + ] + }, + { + "name": "帕蒂沙兰 禅那园.json", + "type": "file", + "hash": "213115dc62198316366d0ebfcfa0ec2a08e72bcd", + "version": "213115d", + "author": "jbcaaa", + "description": "", + "tags": [ + "帕蒂沙兰" + ] + }, + { + "name": "帕蒂沙兰 须弥城1.json", + "type": "file", + "hash": "c222acd361c4d5f333593bbe277f5479bb49afce", + "version": "c222acd", + "author": "jbcaaa", + "description": "", + "tags": [ + "帕蒂沙兰" + ] + }, + { + "name": "帕蒂沙兰 须弥城右下.json", + "type": "file", + "hash": "93201e8407303ff9e83fabdc1276b4f7113f357f", + "version": "93201e8", + "author": "jbcaaa", + "description": "", + "tags": [ + "帕蒂沙兰" + ] + }, + { + "name": "帕蒂沙兰 须弥城左上.json", + "type": "file", + "hash": "a1fc39d67fc24a916fa00c4726f02cb56fda3790", + "version": "a1fc39d", + "author": "jbcaaa", + "description": "", + "tags": [ + "帕蒂沙兰" + ] + } + ] + }, + { + "name": "泡泡桔", + "type": "directory", + "children": [ + { + "name": "泡泡桔01-厄里纳斯-枫丹6个.json", + "type": "file", + "hash": "a432b4264bc3bd55acf3504de66afdac5af3267c", + "version": "a432b42", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔02-厄里纳斯-枫丹9个.json", + "type": "file", + "hash": "1fc724adba3f4af811f191d77319905dcfae9cb6", + "version": "1fc724a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔03-厄里纳斯-枫丹6个.json", + "type": "file", + "hash": "deb93b25c59028247cc8755fdedd38ab83119b44", + "version": "deb93b2", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔04-枫丹廷-枫丹18个.json", + "type": "file", + "hash": "a0ce934a547fe8b2eaeede2f34393e830b41d855", + "version": "a0ce934", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔05-枫丹廷(高危)-枫丹20个.json", + "type": "file", + "hash": "08836ae383a27d556fce50c316766e0661b78887", + "version": "08836ae", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔06-枫丹科学院-枫丹4个.json", + "type": "file", + "hash": "0bd1f05ae5d98774b95a71530309d7d6e04384db", + "version": "0bd1f05", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔07-中央实验室遗址-枫丹3个.json", + "type": "file", + "hash": "0559ef508e5cda1d64bd82d339bb754448db8231", + "version": "0559ef5", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔08-茉洁站上-枫丹5个.json", + "type": "file", + "hash": "a3dfe1196f918b780d3d703a4df66eddb0ec301e", + "version": "a3dfe11", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔09-优兰尼娅湖-枫丹3个.json", + "type": "file", + "hash": "8e79408af3a425ad312a6ca05d9a6771fa87809b", + "version": "8e79408", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + }, + { + "name": "泡泡桔10-茉洁站-枫丹3个.json", + "type": "file", + "hash": "e27d8375aa5f326a1a04b1a337674f03aa8a5660", + "version": "e27d837", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔" + ] + }, + { + "name": "泡泡桔11-茉洁站-枫丹9个.json", + "type": "file", + "hash": "32baacae1084dbff6014d383a998c16f57bfb4f1", + "version": "32baaca", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "泡泡桔", + "纳西妲" + ] + } + ] + }, + { + "name": "苹果", + "type": "directory", + "children": [ + { + "name": "苹果01-低语森林-蒙德7个.json", + "type": "file", + "hash": "9d48ac817094145557304e62a47139ffafce7749", + "version": "9d48ac8", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果02-清泉镇-蒙德5个.json", + "type": "file", + "hash": "d68449b9e302fa5ba62ffea3c63462adc8dabb53", + "version": "d68449b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果03-晨曦酒庄-蒙德7个.json", + "type": "file", + "hash": "7b9bfc8154105bce954faca554e36134f27a89c9", + "version": "7b9bfc8", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果04-奔狼岭-蒙德3个.json", + "type": "file", + "hash": "1ff8e6363dba433c05db7accd61b87d6edb97b7b", + "version": "1ff8e63", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果05-奔狼岭-蒙德3个.json", + "type": "file", + "hash": "e9ac1fceb10bfa9d0513780a5aa372b0f51e1061", + "version": "e9ac1fc", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果06-地中之盐-璃月3个.json", + "type": "file", + "hash": "a4ff6cf61c97df03d602955a79e5299ab766432d", + "version": "a4ff6cf", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果07-归离原-璃月6个.json", + "type": "file", + "hash": "bf6e4ff4e233f0a7ffd473758ac17f19c9344586", + "version": "bf6e4ff", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果08-遁玉陵-璃月3个.json", + "type": "file", + "hash": "ac7e19d57b6e5fd3e7e34f813976b6d7fd59dc63", + "version": "ac7e19d", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果09-遁玉陵-璃月3个.json", + "type": "file", + "hash": "4f7eeb6cae75ea36420b83c72364114a8039f4ce", + "version": "4f7eeb6", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果10-卡萨扎莱宫-须弥3个.json", + "type": "file", + "hash": "9da551a98ab21c4477684c0c848a14b897620940", + "version": "9da551a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果11-化城郭-须弥6个.json", + "type": "file", + "hash": "b44c4939adc760bb1d1e6c270eae0a8818fcaeae", + "version": "b44c493", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果12-天臂池-须弥6个.json", + "type": "file", + "hash": "3836112ad59bafd07e8f8d154d2b4f27bfca507e", + "version": "3836112", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果13-禅那园(高危)-须弥5个.json", + "type": "file", + "hash": "ebf1dcc743438d94ea54ab167e99e43625966172", + "version": "ebf1dcc", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + }, + { + "name": "苹果14-谒颂幽境-须弥3个.json", + "type": "file", + "hash": "2ba7dc4da1fc28049c903ff7f0e5b1a60d049ba2", + "version": "2ba7dc4", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苹果", + "纳西妲" + ] + } + ] + }, + { + "name": "蒲公英籽", + "type": "directory", + "children": [ + { + "name": "01-蒲公英-蒙德城门口9个.json", + "type": "file", + "hash": "637dd82aa694a3ac9f9c9d61b14f6d2a9368418e", + "version": "637dd82", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "02-蒲公英-山脊守望西10个.json", + "type": "file", + "hash": "9aee7361d37303f570819f2aacb130cc0c065002", + "version": "9aee736", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "03-蒲公英-西风庙宇东2个(有怪).json", + "type": "file", + "hash": "c8e9c0ca30adeef2dfbc781b53d5de697fa37a17", + "version": "c8e9c0c", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "04-蒲公英-星落湖南3个.json", + "type": "file", + "hash": "961f3f1304d42420b7f9e9676ca47d9c1fcc549f", + "version": "961f3f1", + "author": "秋云", + "description": "修复第二个蒲公英无法捡起来的情况。", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "05-蒲公英-仲夏庭园3个(有怪).json", + "type": "file", + "hash": "328398b7c155c83cd519124c086e099e852c782d", + "version": "328398b", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "06-蒲公英-誓言岬2个.json", + "type": "file", + "hash": "a633c0605060dd02326cd50e8a708536ac29dca9", + "version": "a633c06", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "07-蒲公英-达达乌帕谷3个(有怪).json", + "type": "file", + "hash": "93aa99827bbc9a7df97f33028f368fb3db95bad6", + "version": "93aa998", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "08-蒲公英-达达乌帕谷南3个(有怪).json", + "type": "file", + "hash": "570ce53fe374092fd8dcba351c9dfc9461a641f8", + "version": "570ce53", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "09-蒲公英-风起地南3个(有怪).json", + "type": "file", + "hash": "25cf5e4c5ba786d0cca7561e0c117032e9afdbb9", + "version": "25cf5e4", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "10-蒲公英-奔狼领北2个.json", + "type": "file", + "hash": "ba76bc8505103e66d8924a01f38a5c65cfa65149", + "version": "ba76bc8", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "11-蒲公英-晨曦酒庄东2个.json", + "type": "file", + "hash": "93e8c6b7e787bc280da8d155c6bae5dbdc93be14", + "version": "93e8c6b", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "12-蒲公英-晨曦酒庄北3个(路远,不建议).json", + "type": "file", + "hash": "284fdca85b33973d4d916a0e632f3bee653da089", + "version": "284fdca", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "13-蒲公英-清泉镇西1个(路远,不建议).json", + "type": "file", + "hash": "7a461b17b8d256923908146b4dbda03583ea32fa", + "version": "7a461b1", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "14-蒲公英-清泉镇1个(路远,不建议).json", + "type": "file", + "hash": "688b7e9086486d44e5feb397164a95d929c607d6", + "version": "688b7e9", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "15-蒲公英-望风角1个(路远,不建议).json", + "type": "file", + "hash": "208abd56c04946c21c67dc634e277c7d20576ff2", + "version": "208abd5", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "16-蒲公英-望风山地2个(路远,不建议).json", + "type": "file", + "hash": "6d609d4bbcabb879b182eb48de973a24626eb6d8", + "version": "6d609d4", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + }, + { + "name": "20-蒲公英-北风庙宇东3个(有怪,传送点缺失).json", + "type": "file", + "hash": "75ff5af900f06fd0a7d7213f8a3ead66111bf3c0", + "version": "75ff5af", + "author": "秋云", + "description": "", + "tags": [ + "蒲公英籽", + "风元素力收集" + ] + } + ] + }, + { + "name": "青蜜莓", + "type": "directory", + "children": [ + { + "name": "青蜜莓1-踞石山上-4x3个.json", + "type": "file", + "hash": "ca1846da4e4769b839bf09cf58de330b977fea22", + "version": "ca1846d", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓2-彩石顶右-2x3个.json", + "type": "file", + "hash": "7c48795352c50e4b6e2cd588ca45571c5a9becb2", + "version": "7c48795", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓3-彩石顶中-3x3个.json", + "type": "file", + "hash": "de0c8bc84c5154aca9f1c77051309abe77f7eab3", + "version": "de0c8bc", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓4-彩石顶中-1x3个.json", + "type": "file", + "hash": "e140237a806d7e3374dbe9743eb6aeadc5d99d74", + "version": "e140237", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓5-彩石顶上-4x3个.json", + "type": "file", + "hash": "7724aff2029331243a050c7c2256d661dc301dc3", + "version": "7724aff", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓6-悬木人-5x3个.json", + "type": "file", + "hash": "f60a66ccbd5afa69b8f6d794cee8fc3ddc883e8d", + "version": "f60a66c", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓7-坚岩隘谷-5x3个.json", + "type": "file", + "hash": "dc7800f3b535f985d73693a919ef9a5eaa699933", + "version": "dc7800f", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + } + ] + }, + { + "name": "清水玉", + "type": "directory", + "children": [ + { + "name": "1灵濛山.json", + "type": "file", + "hash": "90862c2fdc29dda24183cf3c70f8dc4e4396d5b3", + "version": "90862c2", + "author": "MOMO", + "description": "", + "tags": [ + "清水玉" + ] + }, + { + "name": "2古茶树坡.json", + "type": "file", + "hash": "390c7dba1cec7efeb45ce1eeef83f5baca84d45c", + "version": "390c7db", + "author": "MOMO", + "description": "", + "tags": [ + "清水玉" + ] + }, + { + "name": "3药蝶谷.json", + "type": "file", + "hash": "1df26099cbe58a85c50867b68cc961b521cb39a3", + "version": "1df2609", + "author": "MOMO", + "description": "", + "tags": [ + "清水玉" + ] + }, + { + "name": "4悬练山.json", + "type": "file", + "hash": "699a8abd8cabbc9379bdebb40a87e3e892d2ed8b", + "version": "699a8ab", + "author": "MOMO", + "description": "", + "tags": [ + "清水玉" + ] + }, + { + "name": "5沉玉谷南陵.json", + "type": "file", + "hash": "9961983d9ac0e5e59eba7ce8f3cc3de46abb1fa8", + "version": "9961983", + "author": "MOMO", + "description": "", + "tags": [ + "清水玉" + ] + } + ] + }, + { + "name": "鳅鳅宝玉", + "type": "directory", + "children": [ + { + "name": "狄花洲13.json", + "type": "file", + "hash": "5a1801c9198b2923c110416377c55f63fe959a66", + "version": "5a1801c", + "author": "MOMO", + "description": "带早柚或瑶瑶,实际上只能拿到6只左右", + "tags": [ + "鳅鳅宝玉" + ] + }, + { + "name": "石门2.json", + "type": "file", + "hash": "c5f47072987fa610f15ee2656cff3e528ab71fee", + "version": "c5f4707", + "author": "MOMO", + "description": "带早柚或瑶瑶", + "tags": [ + "鳅鳅宝玉" + ] + } + ] + }, + { + "name": "日落果", + "type": "directory", + "children": [ + { + "name": "日落果01-望风山地-蒙德3个.json", + "type": "file", + "hash": "c9a3866c0b1205f6597294663ac1d2b5b400b441", + "version": "c9a3866", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果02-蒙德城外-蒙德7个.json", + "type": "file", + "hash": "38370643113fd62bc30bd38da6fb8eaabd9c2ec6", + "version": "3837064", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果03-蒙德城外-蒙德6个.json", + "type": "file", + "hash": "cc1e77c59cbbba93c9adf4848ecdd2473ed0e997", + "version": "cc1e77c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果04-星落湖-蒙德36个.json", + "type": "file", + "hash": "a8fdcc2c2d0898aefdff4bbf5d09fa600b92f04f", + "version": "a8fdcc2", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果05-奔狼岭-蒙德3个.json", + "type": "file", + "hash": "ddfb3a336e706d2418cf504245ab5d22954dc884", + "version": "ddfb3a3", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果06-奔狼岭-蒙德6个.json", + "type": "file", + "hash": "709659c3bf78180d85152cc12456a951d71cea80", + "version": "709659c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果07-清泉镇-蒙德6个.json", + "type": "file", + "hash": "fffdb80d00a4073dba1ee0f9bb81b3aa0e951687", + "version": "fffdb80", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果08-南风之狮的庙宇-蒙德9个.json", + "type": "file", + "hash": "8a637852e920e87a92e9bf74c9f6b5683f5f661b", + "version": "8a63785", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果09-誓言岬-蒙德6个.json", + "type": "file", + "hash": "15ce47a57fe445c51030e94e07e34dd4178a6176", + "version": "15ce47a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果10-誓言岬-蒙德6个.json", + "type": "file", + "hash": "44ddf36301561d55d0e7efb6921629ecb64e5220", + "version": "44ddf36", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果11-达达乌帕谷-蒙德15个.json", + "type": "file", + "hash": "5054f7a9ee447ffb8bc8b1956b8f5322c44d8c90", + "version": "5054f7a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果12-鹰之门-蒙德9个.json", + "type": "file", + "hash": "212cd3ccec02599dea833a032b3e4afb355fe592", + "version": "212cd3c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果13-荻花洲-璃月5个.json", + "type": "file", + "hash": "d5be00999f4a56225a0193bf078835e49babd1b6", + "version": "d5be009", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果14-明蕴镇-璃月3个.json", + "type": "file", + "hash": "14fe2c7d42cd3e6bdfd62e59ee26f6b4325b15b1", + "version": "14fe2c7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果15-云来海-璃月6个.json", + "type": "file", + "hash": "09f0f456159222ed6fda5ff70eeddf2ccf5eca88", + "version": "09f0f45", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果16-云来海-璃月3个.json", + "type": "file", + "hash": "c0c5f810522fb35d666bab94e0e317c7056eeca4", + "version": "c0c5f81", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果17-归离原-璃月3个.json", + "type": "file", + "hash": "10f0a8861048d53aee71aa475a7d8aa47ee8afd5", + "version": "10f0a88", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果18-灵矩关-璃月3个.json", + "type": "file", + "hash": "d2754ee26654e56a9c4719a95cd0e3ce08f008d6", + "version": "d2754ee", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果19-化城郭-须弥4个.json", + "type": "file", + "hash": "6b4c17cb308b30ddec615265ed676b68364af679", + "version": "6b4c17c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + }, + { + "name": "日落果20-遏颂幽境-须弥6个.json", + "type": "file", + "hash": "af7541cee3fb9d6561280da1ea4fb34727b40c7d", + "version": "af7541c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "日落果", + "纳西妲" + ] + } + ] + }, + { + "name": "柔灯铃", + "type": "directory", + "children": [ + { + "name": "柔灯铃——1——12个.json", + "type": "file", + "hash": "5a56b79c732035daa5f5e00038e3d3084020021f", + "version": "5a56b79", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——2——9个.json", + "type": "file", + "hash": "35934126399c2d140250966fd02ed3d95c3104f5", + "version": "3593412", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——3——3个.json", + "type": "file", + "hash": "67040da62b88dd2c7fbd000f06b6de942f3a7957", + "version": "67040da", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——4——9个.json", + "type": "file", + "hash": "cd6057211b0d8f5af0580946c06df67d0a94eb06", + "version": "cd60572", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——5——6个.json", + "type": "file", + "hash": "251aa302033c0a56a35e635c37f6359b3e868a19", + "version": "251aa30", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——6——27个.json", + "type": "file", + "hash": "fb3c5409712595b061ae3b97f8718abb32bc5302", + "version": "fb3c540", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——7——6个.json", + "type": "file", + "hash": "d996f83ddb26bd4dbbb9d4a875ddbfe3fdb55b42", + "version": "d996f83", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——8——9个.json", + "type": "file", + "hash": "7d326ff85edceae0099631c07551d94b5891dc2e", + "version": "7d326ff", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——9——6个.json", + "type": "file", + "hash": "ef0200d998eaaf71c646d16d27cfa17a828c0d72", + "version": "ef0200d", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + } + ] + }, + { + "name": "肉龙掌", + "type": "directory", + "children": [ + { + "name": "肉龙掌1-坚岩隘谷上-2个.json", + "type": "file", + "hash": "229492d23cddaea6e6bc254f9768c7b7dae562f2", + "version": "229492d", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌2-坚岩隘谷上-18个.json", + "type": "file", + "hash": "8e796f725fe870ade1beaad7d3385da7f947166b", + "version": "8e796f7", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌3-坚岩隘谷右-14个.json", + "type": "file", + "hash": "050c8bd3396d97be8749d16d74c7615a6551f06a", + "version": "050c8bd", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌4-硫晶支脉左-2个.json", + "type": "file", + "hash": "56f3559b550c9136dc57ac240bded33eeec46faa", + "version": "56f3559", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌5-硫晶支脉左-5个.json", + "type": "file", + "hash": "6003693c3d35160fb9eebd4865b4667ed7036c68", + "version": "6003693", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌6-回血.json", + "type": "file", + "hash": "7eadfd0ced6802c764365381af98a0a2e53f02d0", + "version": "7eadfd0", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌7-隆崛坡-13个.json", + "type": "file", + "hash": "5bddab762717370f12b5bd7d5904351668904c7f", + "version": "5bddab7", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + } + ] + }, + { + "name": "塞西莉亚花", + "type": "directory", + "children": [ + { + "name": "塞西莉亚花37个.json", + "type": "file", + "hash": "86dc52e7d17722fc519f4495310a31a545ef1baf", + "version": "86dc52e", + "author": "yulalaa", + "description": "", + "tags": [ + "塞西莉亚花" + ] + } + ] + }, + { + "name": "珊瑚真珠", + "type": "directory", + "children": [ + { + "name": "珊瑚珍珠1-望泷村右上-9个.json", + "type": "file", + "hash": "65e5b1dbb7cc0ed12c08c081440ec8bb255c0e1b", + "version": "65e5b1d", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚真珠" + ] + }, + { + "name": "珊瑚珍珠2-珊瑚宫下-7个.json", + "type": "file", + "hash": "b723f30598d78f3fe1fd747ac3ef74ebb7f4226f", + "version": "b723f30", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚真珠" + ] + }, + { + "name": "珊瑚珍珠3-珊瑚宫右-3个.json", + "type": "file", + "hash": "92b6129deece6bab596bdadfcf9772936249a014", + "version": "92b6129", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚真珠" + ] + }, + { + "name": "珊瑚珍珠4-珊瑚宫上-12个.json", + "type": "file", + "hash": "999d957918b05b6dc13c9d68b6340f72f29b8e35", + "version": "999d957", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚真珠" + ] + }, + { + "name": "珊瑚珍珠5-水月池-5个.json", + "type": "file", + "hash": "9c84f0b6bef75a580ce1127d1ac87bc8e3996de2", + "version": "9c84f0b", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚真珠" + ] + }, + { + "name": "珊瑚珍珠6-水月池下-6个.json", + "type": "file", + "hash": "2e7ebd884934f5a2b351e7b4edfcd273dcd9ee7c", + "version": "2e7ebd8", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚真珠" + ] + } + ] + }, + { + "name": "圣金虫", + "type": "directory", + "children": [ + { + "name": "圣金虫_丰饶绿洲东南_4.json", + "type": "file", + "hash": "a101637c91d34857366f0cad32c01c6f2fed2bee", + "version": "a101637", + "author": "Tim", + "description": "少一个点要用四叶印", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_丰饶绿洲北_4.json", + "type": "file", + "hash": "0c4cef182c687999168c6ab98238552405aa2de7", + "version": "0c4cef1", + "author": "Tim", + "description": "", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_丰饶绿洲南_1.json", + "type": "file", + "hash": "6a295488031c719d196b8fb4d94c58f84868b5d0", + "version": "6a29548", + "author": "Tim", + "description": "", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_显圣厅西_4.json", + "type": "file", + "hash": "f325d2c0591200f2642e1ef82bc82473c6e3ed7a", + "version": "f325d2c", + "author": "Tim", + "description": "", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_秘仪圣殿北_1.json", + "type": "file", + "hash": "d17371d1809461dd57fc21fd31d0b66c6bdfd161", + "version": "d17371d", + "author": "Tim", + "description": "", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_荼诃落谷西_3.json", + "type": "file", + "hash": "c044a3c4b3c4122f0028247a3dfb65cc55d718ae", + "version": "c044a3c", + "author": "Tim", + "description": "少一个点要用四叶印", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_阿如村东_1.json", + "type": "file", + "hash": "f3a9fcf808f37e7a104dd0ea791060314d6c27e8", + "version": "f3a9fcf", + "author": "Tim", + "description": "", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_阿如村西北_5.json", + "type": "file", + "hash": "0d2978ba94e6063496c330f62817a49568f032b8", + "version": "0d2978b", + "author": "Tim", + "description": "", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_饱饮之丘西_5.json", + "type": "file", + "hash": "0d3e254f775f5d54c0c072f26834f37fc6660ae5", + "version": "0d3e254", + "author": "Tim", + "description": "", + "tags": [ + "圣金虫" + ] } ] }, @@ -831,8 +6814,8 @@ { "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json", "type": "file", - "hash": "b12f3315cb9b22fa84fbbc8acd29d7d190a55596", - "version": "b12f331", + "hash": "933ef61866fbf327b8989a9f888ba721170ea28e", + "version": "933ef61", "author": "Yang-z", "description": "", "tags": [ @@ -842,8 +6825,8 @@ { "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json", "type": "file", - "hash": "dde6098a8718e25f897925685a5fc6b80630fd6f", - "version": "dde6098", + "hash": "be4e4ee066c16b58c474aecc504c5fae281f9f34", + "version": "be4e4ee", "author": "Yang-z", "description": "", "tags": [ @@ -1387,8 +7370,8 @@ { "name": "狗粮-璃月-珉林-东北-9个.json", "type": "file", - "hash": "d0d7f3a43a9cf3d70f8ee3951ff70bb670f2f550", - "version": "d0d7f3a", + "hash": "5c254e3ed560a1046ee8e807b70cba28a7df44a6", + "version": "5c254e3", "author": "Yang-z", "description": "", "tags": [ @@ -1453,8 +7436,8 @@ { "name": "狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json", "type": "file", - "hash": "9e09a8c1fc60bdb69d327d1a43c83dc3091d618e", - "version": "9e09a8c", + "hash": "7e1f907da56c0233e2c37bb203aeabdbfb7535cb", + "version": "7e1f907", "author": "Yang-z", "description": "", "tags": [ @@ -1635,8 +7618,8 @@ { "name": "【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json", "type": "file", - "hash": "1b14fe4c9b0eb06a237a6e05b573674f74bd449e", - "version": "1b14fe4", + "hash": "27571698e318d71453b72951626de8aff579590b", + "version": "2757169", "author": "Yang-z", "description": "", "tags": [ @@ -1829,8 +7812,8 @@ { "name": "狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json", "type": "file", - "hash": "97077de07b1052052d8be514d278227270b25d9d", - "version": "97077de", + "hash": "46759289d2faefe3e044fa2abddf0e21aa063439", + "version": "4675928", "author": "Yang-z", "description": "", "tags": [ @@ -1862,8 +7845,8 @@ { "name": "狗粮-枫丹-研究院区-西北-6个/7个.json", "type": "file", - "hash": "9a83d36240a4ca0ffa2efd1e9910128dec7486c2", - "version": "9a83d36", + "hash": "75a6b84c2922ee15b84c25cf3179dc1a734be7c5", + "version": "75a6b84", "author": "Yang-z", "description": "", "tags": [ @@ -2145,1452 +8128,618 @@ ] }, { - "name": "圣金虫", + "name": "石珀", "type": "directory", - "children": [ - { - "name": "圣金虫_丰饶绿洲东南_4.json", - "type": "file", - "hash": "a101637c91d34857366f0cad32c01c6f2fed2bee", - "version": "a101637", - "author": "Tim", - "description": "少一个点要用四叶印", - "tags": [ - "圣金虫" - ] - }, - { - "name": "圣金虫_丰饶绿洲北_4.json", - "type": "file", - "hash": "0c4cef182c687999168c6ab98238552405aa2de7", - "version": "0c4cef1", - "author": "Tim", - "description": "", - "tags": [ - "圣金虫" - ] - }, - { - "name": "圣金虫_丰饶绿洲南_1.json", - "type": "file", - "hash": "6a295488031c719d196b8fb4d94c58f84868b5d0", - "version": "6a29548", - "author": "Tim", - "description": "", - "tags": [ - "圣金虫" - ] - }, - { - "name": "圣金虫_显圣厅西_4.json", - "type": "file", - "hash": "f325d2c0591200f2642e1ef82bc82473c6e3ed7a", - "version": "f325d2c", - "author": "Tim", - "description": "", - "tags": [ - "圣金虫" - ] - }, - { - "name": "圣金虫_秘仪圣殿北_1.json", - "type": "file", - "hash": "d17371d1809461dd57fc21fd31d0b66c6bdfd161", - "version": "d17371d", - "author": "Tim", - "description": "", - "tags": [ - "圣金虫" - ] - }, - { - "name": "圣金虫_荼诃落谷西_3.json", - "type": "file", - "hash": "c044a3c4b3c4122f0028247a3dfb65cc55d718ae", - "version": "c044a3c", - "author": "Tim", - "description": "少一个点要用四叶印", - "tags": [ - "圣金虫" - ] - }, - { - "name": "圣金虫_阿如村东_1.json", - "type": "file", - "hash": "f3a9fcf808f37e7a104dd0ea791060314d6c27e8", - "version": "f3a9fcf", - "author": "Tim", - "description": "", - "tags": [ - "圣金虫" - ] - }, - { - "name": "圣金虫_阿如村西北_5.json", - "type": "file", - "hash": "0d2978ba94e6063496c330f62817a49568f032b8", - "version": "0d2978b", - "author": "Tim", - "description": "", - "tags": [ - "圣金虫" - ] - }, - { - "name": "圣金虫_饱饮之丘西_5.json", - "type": "file", - "hash": "0d3e254f775f5d54c0c072f26834f37fc6660ae5", - "version": "0d3e254", - "author": "Tim", - "description": "", - "tags": [ - "圣金虫" - ] - } - ] + "children": [] }, { - "name": "塞西莉亚花", + "name": "树莓", "type": "directory", "children": [ { - "name": "塞西莉亚花37个.json", + "name": "树莓1.json", "type": "file", - "hash": "86dc52e7d17722fc519f4495310a31a545ef1baf", - "version": "86dc52e", - "author": "yulalaa", - "description": "", - "tags": [ - "塞西莉亚花" - ] - } - ] - }, - { - "name": "墩墩桃", - "type": "directory", - "children": [ - { - "name": "墩墩桃1.json", - "type": "file", - "hash": "2806de48fcc4a404772c82f7f39a68a815ecb124", - "version": "2806de4", + "hash": "a293c050b3c400e7c4c728e3d56c1b41f39607f2", + "version": "a293c05", "author": "风埠", - "description": "卡萨扎莱宫左边墩墩桃20个", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃10.json", + "name": "树莓10.json", "type": "file", - "hash": "cfad5b074dc681046ae3578e22c627735e24698b", - "version": "cfad5b0", + "hash": "e77c7290692c6b65b6ce97e68861754c2525b5ce", + "version": "e77c729", "author": "风埠", - "description": "墩墩桃", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃11.json", + "name": "树莓11.json", "type": "file", - "hash": "165290fb61d56df703d193e04f71dcde0c409bef", - "version": "165290f", + "hash": "571cbdf3e41dbd55688d99651084e2943ff00783", + "version": "571cbdf", "author": "风埠", - "description": "墩墩桃", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃14.json", + "name": "树莓12.json", "type": "file", - "hash": "0b30365e952674d8ed0a03165d69516895715ec4", - "version": "0b30365", + "hash": "69afa088d6f8728854591cc807f2a91a4d96dc3f", + "version": "69afa08", "author": "风埠", - "description": "", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃16.json", + "name": "树莓13.json", "type": "file", - "hash": "6ac6282355661540d134b14e42d7f236c5360e81", - "version": "6ac6282", + "hash": "b53ec861fe8a8516575b21a534bf69f749fb627a", + "version": "b53ec86", + "author": "", + "description": "树莓", + "tags": [ + "树莓" + ] + }, + { + "name": "树莓14.json", + "type": "file", + "hash": "28e506d6a874874a75507ec0aa320cf561d163bc", + "version": "28e506d", "author": "风埠", - "description": "", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃18.json", + "name": "树莓2.json", "type": "file", - "hash": "810b3d3fc882adb6979153dccbf30b5befcca779", - "version": "810b3d3", + "hash": "9aeb3007e8229e9736e75ffa2b1bc4d78c236d90", + "version": "9aeb300", "author": "风埠", - "description": "", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃19.json", + "name": "树莓3.json", "type": "file", - "hash": "de9078fb87cb9c7dd928f0971914916dfecf6a2b", - "version": "de9078f", + "hash": "d70e59da58540041d1b3c87e7efddc093ea5a14b", + "version": "d70e59d", "author": "风埠", - "description": "", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃2.json", + "name": "树莓4.json", "type": "file", - "hash": "a1398398b62f23339d79a2b3151540dd64ea87d3", - "version": "a139839", + "hash": "e784e3b54567b78887217af736bd648cd9613e0c", + "version": "e784e3b", "author": "风埠", - "description": "卡萨扎莱宫右下4个墩墩桃", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃20 .json", + "name": "树莓5.json", "type": "file", - "hash": "6c9e59fde6a387a4ac6031d7950862f9dbe6bf32", - "version": "6c9e59f", + "hash": "995f8a39b334f4857303d60b061d6964e74b0b62", + "version": "995f8a3", "author": "风埠", - "description": "", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃3.json", + "name": "树莓6.json", "type": "file", - "hash": "8dbecce0a620815484b6344b76a790b39e34099a", - "version": "8dbecce", + "hash": "1e739becf908fea82147fdeb9d80ebe1609f4648", + "version": "1e739be", "author": "风埠", - "description": "4个墩墩桃", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃4.json", + "name": "树莓7.json", "type": "file", - "hash": "59edaad5ee669bcfdf8d14bb6be4c93bca4f0055", - "version": "59edaad", + "hash": "7d20b885baa10ec2545242a05ee777fb4ab8d90c", + "version": "7d20b88", "author": "风埠", - "description": "4个墩墩桃", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃5.json", + "name": "树莓8.json", "type": "file", - "hash": "11c8d85b827124f131491b7cc3af45a17843c86d", - "version": "11c8d85", - "author": "墩墩桃5", - "description": "4个墩墩桃", - "tags": [ - "墩墩桃" - ] - }, - { - "name": "墩墩桃7.json", - "type": "file", - "hash": "38a4e044c59de505a7e29ad984abeda0b7ca6a4b", - "version": "38a4e04", + "hash": "b1385c1f8e01a977a901b686e5b8092ecc5e47b4", + "version": "b1385c1", "author": "风埠", - "description": "", + "description": "树莓", "tags": [ - "墩墩桃" + "树莓" ] }, { - "name": "墩墩桃8.json", + "name": "树莓9.json", "type": "file", - "hash": "7febef44e5b097c898f1d8e5fa06d43400d88fcc", - "version": "7febef4", + "hash": "cf9cd1765f748d7371ff9c1e4a5b934fbd12732c", + "version": "cf9cd17", "author": "风埠", - "description": "墩墩桃", + "description": "树莓", "tags": [ - "墩墩桃" - ] - }, - { - "name": "墩墩桃9.json", - "type": "file", - "hash": "2a03746b8ab512268453ad13378ca08a9a569f37", - "version": "2a03746", - "author": "风埠", - "description": "", - "tags": [ - "墩墩桃" + "树莓" ] } ] }, { - "name": "天云草实", + "name": "树王圣体菇", "type": "directory", "children": [ { - "name": "天云草实-天云峠02-10个.json", + "name": "1树王圣体菇 二净甸 2个.json", "type": "file", - "hash": "210fb8bee65e43403563dac64257af6ee49dc1df", - "version": "210fb8b", - "author": "曦", + "hash": "36acae145effe9f6d641f4cb2f6f8cfca6a948ff", + "version": "36acae1", + "author": "梓默", "description": "", "tags": [ - "天云草实" + "树王圣体菇" ] }, { - "name": "天云草实-天云峠左下角-26个.json", + "name": "2树王圣体菇 水天丛林① 7个.json", "type": "file", - "hash": "a6dd2c338fb2ac1c6604eaf59162ec628a6bcaff", - "version": "a6dd2c3", - "author": "曦", + "hash": "04e6df65f5c38b56819af0ebe63e706bad4dda42", + "version": "04e6df6", + "author": "梓默", "description": "", "tags": [ - "天云草实" + "树王圣体菇" ] }, { - "name": "天云草实-石越村-6个.json", + "name": "3树王圣体菇 水天丛林② 3个.json", "type": "file", - "hash": "7a74abab5288290c68ba579c33b11cfedaf39f27", - "version": "7a74aba", - "author": "曦", - "description": "", + "hash": "958e14b89f19f4aee6c96002fcf4fb544bef8cd8", + "version": "958e14b", + "author": "旋风破晓", + "description": "善见地-3个树王圣体姑", "tags": [ - "天云草实" + "树王圣体菇" ] }, { - "name": "天云草实-越石村右侧-6个.json", + "name": "4树王圣体菇 水天丛林③ 3个.json", "type": "file", - "hash": "ba2b622fe819c2cfdf531a65f7718a947fa7ec76", - "version": "ba2b622", - "author": "曦", + "hash": "c4dc120cb409096ae02befc051fd432942bf40f3", + "version": "c4dc120", + "author": "梓默", "description": "", "tags": [ - "天云草实" + "树王圣体菇" + ] + }, + { + "name": "5树王圣体菇 无郁稠林① 5个.json", + "type": "file", + "hash": "4344e3a76abc75515b86c3d386c82a9eeb6025d6", + "version": "4344e3a", + "author": "梓默", + "description": "", + "tags": [ + "树王圣体菇" + ] + }, + { + "name": "6树王圣体菇 无郁稠林② 5个 .json", + "type": "file", + "hash": "7d68d2491d045639de4bae6dd7c55e5c76342f95", + "version": "7d68d24", + "author": "梓默", + "description": "", + "tags": [ + "树王圣体菇" ] } ] }, { - "name": "子探测单元", + "name": "水晶块", "type": "directory", "children": [ { - "name": "子探测单元-1(共4个).json", + "name": "庆云顶01-12个(不稳定).json", "type": "file", - "hash": "df47fd583e3f5fbe6a9f4d09e99ae518f6c29cab", - "version": "df47fd5", - "author": "宇寒", + "hash": "9502fb28b3a1ac64ff8bc692a36a9b8f303b1f28", + "version": "9502fb2", + "author": "愚溪", "description": "", "tags": [ - "子探测单元" + "水晶块" ] }, { - "name": "子探测单元-2(共9个).json", + "name": "沉玉古南陵.json", "type": "file", - "hash": "da8af5c2cd7872a07550cb1da96609cef4af3d1f", - "version": "da8af5c", - "author": "宇寒", - "description": "修复历史:1.1:修复了飞行不下落的问题;1.2:修改了路径方案;1.3:避免了部分卡死;1.3.1:修复了已知问题", - "tags": [ - "子探测单元" - ] - }, - { - "name": "子探测单元-3(共6个).json", - "type": "file", - "hash": "cd0ca2e6fd7f64a586fa2ff45dfaf32e26d9fbc3", - "version": "cd0ca2e", - "author": "宇寒", - "description": "", - "tags": [ - "子探测单元" - ] - }, - { - "name": "子探测单元-4(共6个).json", - "type": "file", - "hash": "1fca9236acda03f95739aeebc6716328bf3c0cf1", - "version": "1fca923", - "author": "宇寒", - "description": "略", - "tags": [ - "子探测单元" - ] - }, - { - "name": "子探测单元-5(共3个).json", - "type": "file", - "hash": "0d5fe721e3e3c9b0975ddd64d962e1c2f3f50354", - "version": "0d5fe72", - "author": "宇寒", - "description": "略", - "tags": [ - "子探测单元" - ] - } - ] - }, - { - "name": "小灯草", - "type": "directory", - "children": [ - { - "name": "小灯草-仲夏庭院-蒙德2个.json", - "type": "file", - "hash": "8333c656131aeeb6c08babd8c27cee6556b43bf1", - "version": "8333c65", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "小灯草" - ] - }, - { - "name": "小灯草-低语森林-蒙德17个.json", - "type": "file", - "hash": "375f198853833dd02bafc73518ed762f696f5059", - "version": "375f198", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "小灯草" - ] - }, - { - "name": "小灯草-千风神殿-蒙德5个.json", - "type": "file", - "hash": "9893ed0190fb4c11977a73783bdcc6ba72e3a75d", - "version": "9893ed0", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "小灯草" - ] - }, - { - "name": "小灯草-塞西莉亚苗圃-蒙德4个.json", - "type": "file", - "hash": "47ab61834567ce59d1ee85615d8ad5c16ed565f6", - "version": "47ab618", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "小灯草" - ] - }, - { - "name": "小灯草-奔狼岭(一)-蒙德3个.json", - "type": "file", - "hash": "4bbf9afc122627a5478a8b5d98e8755fdeccca66", - "version": "4bbf9af", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "小灯草" - ] - }, - { - "name": "小灯草-奔狼岭(二)-蒙德4个.json", - "type": "file", - "hash": "4d7fd9d53ed1aa9119180da6c9ae1f21ea8d4748", - "version": "4d7fd9d", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "小灯草" - ] - }, - { - "name": "小灯草-晨曦酒庄-蒙德4个.json", - "type": "file", - "hash": "8b041e749219ddcf804785fffc87240e94a58dc9", - "version": "8b041e7", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "小灯草" - ] - }, - { - "name": "小灯草-风起地-蒙德6个.json", - "type": "file", - "hash": "382044a4a973ac79acdc58b68dc96466b86460f7", - "version": "382044a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "小灯草" - ] - } - ] - }, - { - "name": "帕蒂沙兰", - "type": "directory", - "children": [ - { - "name": "帕蒂沙兰 卡萨扎莱宫.json", - "type": "file", - "hash": "a6d0d4f3dc248dab19d1aaab23cb68738f653bd5", - "version": "a6d0d4f", - "author": "jbcaaa", + "hash": "8d372700cddf80827a65e9641e1920183d868e50", + "version": "8d37270", + "author": "mfkvfhpdx", "description": "", "tags": [ - "帕蒂沙兰" + "水晶块" ] }, { - "name": "帕蒂沙兰 桓那兰那.json", + "name": "沉玉古南陵2.json", "type": "file", - "hash": "f278820cc4388566dc31c16486852cf5515d7a55", - "version": "f278820", - "author": "jbcaaa", + "hash": "68ed20c6fd3ba1557e3e58c8dc4916cace88e745", + "version": "68ed20c", + "author": "mfkvfhpdx", "description": "", "tags": [ - "帕蒂沙兰" + "水晶块" ] }, { - "name": "帕蒂沙兰 桓那兰那右上.json", + "name": "沉玉谷上谷.json", "type": "file", - "hash": "11f578949b4c2831da59824fb6743ccd7aaec0a2", - "version": "11f5789", - "author": "jbcaaa", + "hash": "8027048f97d9d865b49f7d6af2d5ca30a9432933", + "version": "8027048", + "author": "mfkvfhpdx", "description": "", "tags": [ - "帕蒂沙兰" + "水晶块" ] }, { - "name": "帕蒂沙兰 桓那兰那右下.json", + "name": "沉玉谷上谷2.json", "type": "file", - "hash": "253d30cac8a1028c54ba2de826a3e5e2a7fea898", - "version": "253d30c", - "author": "jbcaaa", + "hash": "a14299deb35b39f2258c007f06480f0170b60f42", + "version": "a14299d", + "author": "mfkvfhpdx", "description": "", "tags": [ - "帕蒂沙兰" + "水晶块" ] }, { - "name": "帕蒂沙兰 禅那园.json", + "name": "沉玉谷上谷3.json", "type": "file", - "hash": "213115dc62198316366d0ebfcfa0ec2a08e72bcd", - "version": "213115d", - "author": "jbcaaa", + "hash": "3155a8cb088df9d4248dca00580bda306fe6bf08", + "version": "3155a8c", + "author": "mfkvfhpdx", "description": "", "tags": [ - "帕蒂沙兰" + "水晶块" ] }, { - "name": "帕蒂沙兰 须弥城1.json", + "name": "沉玉谷暝还山01.json", "type": "file", - "hash": "c222acd361c4d5f333593bbe277f5479bb49afce", - "version": "c222acd", - "author": "jbcaaa", + "hash": "5152e87dd0d408ebbf041439d764fc83da2583b1", + "version": "5152e87", + "author": "mfkvfhpdx", "description": "", "tags": [ - "帕蒂沙兰" + "水晶块" ] }, { - "name": "帕蒂沙兰 须弥城右下.json", + "name": "沉玉谷暝还山02.json", "type": "file", - "hash": "93201e8407303ff9e83fabdc1276b4f7113f357f", - "version": "93201e8", - "author": "jbcaaa", + "hash": "c752b4552de5281fea87e207218e8dde2745b6c4", + "version": "c752b45", + "author": "mfkvfhpdx", "description": "", "tags": [ - "帕蒂沙兰" + "水晶块" ] }, { - "name": "帕蒂沙兰 须弥城左上.json", + "name": "璃月-01-轻策庄南-6个.json", "type": "file", - "hash": "a1fc39d67fc24a916fa00c4726f02cb56fda3790", - "version": "a1fc39d", - "author": "jbcaaa", + "hash": "a396b3e2432130783b00ab51c8866b80831d3a52", + "version": "a396b3e", + "author": "愚溪", "description": "", "tags": [ - "帕蒂沙兰" - ] - } - ] - }, - { - "name": "幽光星星", - "type": "directory", - "children": [ - { - "name": "幽光星星@jbcaaa", - "type": "directory", - "children": [ - { - "name": "幽光星星1.json", - "type": "file", - "hash": "420250dc219c79bd34cdfd2e04143c0173cfbca5", - "version": "420250d", - "author": "jbcaaa", - "description": "", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星2.json", - "type": "file", - "hash": "4b4347ac0ac1496c9bf43f1a151da893e1f58984", - "version": "4b4347a", - "author": "jbcaaa", - "description": "", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星3.json", - "type": "file", - "hash": "503518a4e5ec1adc8b7d9584397edec766a702fb", - "version": "503518a", - "author": "jbcaaa", - "description": "", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星4.json", - "type": "file", - "hash": "2632bf6773fd1ed4cc9023190d5e575cce3b5f78", - "version": "2632bf6", - "author": "jbcaaa", - "description": "", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星5.json", - "type": "file", - "hash": "82239264b44e78f823f0e256cce18bfd60030410", - "version": "8223926", - "author": "jbcaaa", - "description": "", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星6.json", - "type": "file", - "hash": "9c2b66a12b007c17a0f964e9c378f82194cedf3f", - "version": "9c2b66a", - "author": "jbcaaa", - "description": "", - "tags": [ - "幽光星星" - ] - } + "水晶块" ] }, { - "name": "幽光星星@柠檬茶叶", - "type": "directory", - "children": [ - { - "name": "幽光星星4.json", - "type": "file", - "hash": "c60bd5e36c893a00761879c5936b502fb3a30911", - "version": "c60bd5e", - "author": "柠檬茶叶", - "description": "幽光星星", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星5--.json", - "type": "file", - "hash": "d30275ba2734afbadf3aa38555146755b50fe352", - "version": "d30275b", - "author": "柠檬茶叶", - "description": "幽光星星", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星5-.json", - "type": "file", - "hash": "d7e30fa180404d7850f5c7b7badfc5d4a81ff5bc", - "version": "d7e30fa", - "author": "柠檬茶叶", - "description": "幽光星星", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星5.json", - "type": "file", - "hash": "16c22741f88ab173f37623182029a03895c36476", - "version": "16c2274", - "author": "柠檬茶叶", - "description": "幽光星星", - "tags": [ - "幽光星星" - ] - }, - { - "name": "幽光星星6.json", - "type": "file", - "hash": "7fc8c1999ac223f9387cf44026591bfc34c7b951", - "version": "7fc8c19", - "author": "柠檬茶叶", - "description": "幽光星星", - "tags": [ - "幽光星星" - ] - } - ] - } - ] - }, - { - "name": "幽灯蕈", - "type": "directory", - "children": [ - { - "name": "幽灯蕈1-鹤观大门-8个.json", + "name": "璃月-02-奥藏山-8个.json", "type": "file", - "hash": "f6a95d98a0b81309d884e745d67b05307fc242a1", - "version": "f6a95d9", - "author": "黎歌", - "description": "", + "hash": "645b9c866ca141586571176fd44303c45ae476cf", + "version": "645b9c8", + "author": "愚溪", + "description": "刚需钟离", "tags": [ - "幽灯蕈" + "水晶块" ] }, { - "name": "幽灯蕈2-茂之祭场-6个.json", + "name": "璃月-03-宗室本北-2个.json", "type": "file", - "hash": "3cc500bf8a361139cb1335cf9ae1448deaaf8744", - "version": "3cc500b", - "author": "黎歌", + "hash": "534d3c15e69e737ef83b3c4e146b04adc1f2a32a", + "version": "534d3c1", + "author": "愚溪", "description": "", "tags": [ - "幽灯蕈" + "水晶块" ] }, { - "name": "幽灯蕈3-鹤观下-12个.json", + "name": "璃月-04-珉林中部-3个.json", "type": "file", - "hash": "93b11dc8789526a35863ff19d23fd57219ae023e", - "version": "93b11dc", - "author": "黎歌", + "hash": "8b479226a279f28757fab1e446973faaad9dbe8f", + "version": "8b47922", + "author": "愚溪", "description": "", "tags": [ - "幽灯蕈" + "水晶块" ] }, { - "name": "幽灯蕈4-笈名海滨-11个.json", + "name": "璃月-05-荻花洲西-1个.json", "type": "file", - "hash": "390c2c3cf02a70617b58761e79d7adcbee596c69", - "version": "390c2c3", - "author": "黎歌", + "hash": "1c4f12fdc8d700350cb37c4589637ae74092289f", + "version": "1c4f12f", + "author": "愚溪", "description": "", "tags": [ - "幽灯蕈" + "水晶块" ] }, { - "name": "幽灯蕈5-知比山外-9个.json", + "name": "璃月天衡山 (1).json", "type": "file", - "hash": "89bf6dafd38190f19606cf0524c8c7179a39ca8f", - "version": "89bf6da", - "author": "黎歌", + "hash": "e7d0df7e24678dee011cdb37458de22802cbedf6", + "version": "e7d0df7", + "author": "mfkvfhpdx", "description": "", "tags": [ - "幽灯蕈" + "水晶块" ] }, { - "name": "幽灯蕈6-知比山内-4个.json", + "name": "璃月天衡山2 (1).json", "type": "file", - "hash": "ab79c75d6962204279b080b45d1b535e353b1566", - "version": "ab79c75", - "author": "黎歌", + "hash": "58cb73c58923d71269f2e51cfca92f49e2e4bbd5", + "version": "58cb73c", + "author": "mfkvfhpdx", "description": "", "tags": [ - "幽灯蕈" - ] - } - ] - }, - { - "name": "微光角菌", - "type": "directory", - "children": [ - { - "name": "微光角菌-奥奇卡纳塔上-14个.json", - "type": "file", - "hash": "d3bd8d078e497975b866f3b6510b5939a818ad3c", - "version": "d3bd8d0", - "author": "曦", - "description": "", - "tags": [ - "微光角菌" + "水晶块" ] }, { - "name": "微光角菌-烟谜主01-27个.json", + "name": "璃月层岩01 (1).json", "type": "file", - "hash": "9d254a222f13c278815d85dace182aa07ffb0924", - "version": "9d254a2", - "author": "曦", + "hash": "1272b32c86584ebf29fa6010c5eb1c92c228a374", + "version": "1272b32", + "author": "mfkvfhpdx", "description": "", "tags": [ - "微光角菌" + "水晶块" ] }, { - "name": "微光角菌-烟谜主02-12个.json", + "name": "璃月层岩02.json", "type": "file", - "hash": "304281b70394f99737bf540347d7aa9b6757f105", - "version": "304281b", - "author": "曦", + "hash": "4d708746711061118d831941219450484d69d06c", + "version": "4d70874", + "author": "mfkvfhpdx", "description": "", "tags": [ - "微光角菌" + "水晶块" ] }, { - "name": "微光角菌-翘枝崖-5个.json", + "name": "璃月层岩03 (1).json", "type": "file", - "hash": "41d1ad7db1ee2e5cd9d5b492442f27a24be76df0", - "version": "41d1ad7", - "author": "曦", + "hash": "1926af541fd0c4e2af19cd6fcc60f783e9c8a27a", + "version": "1926af5", + "author": "mfkvfhpdx", "description": "", "tags": [ - "微光角菌" + "水晶块" ] }, { - "name": "微光角菌-镜壁山-2个.json", - "type": "file", - "hash": "b93ca3723b3526cb204ee2b8c4e01e259b8fbb6e", - "version": "b93ca37", - "author": "曦", - "description": "", - "tags": [ - "微光角菌" - ] - } - ] - }, - { - "name": "悼灵花", - "type": "directory", - "children": [ - { - "name": "悼灵花-铁穆山-21个.json", + "name": "璃月灵矩关1 (1).json", "type": "file", - "hash": "dd5bc7fb35dc39a30518a0f14afb2c2feb3dca38", - "version": "dd5bc7f", - "author": "曦", + "hash": "2793bb8a23633021f94aca766ae8663597b5ed6c", + "version": "2793bb8", + "author": "mfkvfhpdx", "description": "", "tags": [ - "悼灵花" - ] - }, - { - "name": "悼灵花-锋刃林泽上侧-4个.json", - "type": "file", - "hash": "921d44fc34fab3096e66b28482d5bc57096f9113", - "version": "921d44f", - "author": "曦", - "description": "完成对应世界任务后可运行", - "tags": [ - "悼灵花" + "水晶块" ] }, { - "name": "悼灵花-锋刃林泽上侧02-10个.json", + "name": "璃月璃沙郊.json", "type": "file", - "hash": "6409488058ed9e6fd4b1435735c7c45650f766c2", - "version": "6409488", - "author": "曦", + "hash": "10ed05823879e04112650de240911a8dbd384342", + "version": "10ed058", + "author": "mfkvfhpdx", "description": "", "tags": [ - "悼灵花" + "水晶块" ] }, { - "name": "悼灵花-锋刃林泽右侧-12个.json", + "name": "璃月遁玉陵1.json", "type": "file", - "hash": "e138e8d5c1f4fbad1fe02d159a1f091101ffbf96", - "version": "e138e8d", - "author": "曦", - "description": "请带血牛", - "tags": [ - "悼灵花" - ] - } - ] - }, - { - "name": "慕风蘑菇", - "type": "directory", - "children": [ - { - "name": "慕风蘑菇1-清泉镇-15个.json", - "type": "file", - "hash": "b689184c5b666269908e6b7d5ce5a2a0dcb03f84", - "version": "b689184", - "author": "yulalaa", + "hash": "56395a9f8ba6cb4b085797782b42db20d1e36531", + "version": "56395a9", + "author": "mfkvfhpdx", "description": "", "tags": [ - "慕风蘑菇", - "纳西妲" + "水晶块" ] }, { - "name": "慕风蘑菇2-清泉镇-2个.json", + "name": "蒙德-01-望风山地东-2个.json", "type": "file", - "hash": "ef2a43ba20d552d6383192509fc247c3b0c06447", - "version": "ef2a43b", - "author": "yulalaa", + "hash": "5dd967bf20ea1a05b4fed87fa5cb3be7ae7e8016", + "version": "5dd967b", + "author": "", "description": "", "tags": [ - "慕风蘑菇", - "纳西妲" + "水晶块" ] }, { - "name": "慕风蘑菇3-晨曦酒庄-6个.json", + "name": "蒙德-02-望风角西-1个.json", "type": "file", - "hash": "83818e7b7efdef56ad673bfdbeff658fc42a9c2f", - "version": "83818e7", - "author": "yulalaa", + "hash": "b0d9645b3b3d4482cb9e21a7277d942f5660b453", + "version": "b0d9645", + "author": "愚溪", "description": "", "tags": [ - "慕风蘑菇", - "纳西妲" - ] - } - ] - }, - { - "name": "日落果", - "type": "directory", - "children": [ - { - "name": "日落果01-望风山地-蒙德3个.json", - "type": "file", - "hash": "c9a3866c0b1205f6597294663ac1d2b5b400b441", - "version": "c9a3866", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" + "水晶块" ] }, { - "name": "日落果02-蒙德城外-蒙德7个.json", + "name": "蒙德-03-铭记之谷南-4个.json", "type": "file", - "hash": "38370643113fd62bc30bd38da6fb8eaabd9c2ec6", - "version": "3837064", - "author": "不瘦五十斤不改名", + "hash": "e38c82a76d9c7daf186f5d349e726bc0e49fabef", + "version": "e38c82a", + "author": "愚溪", "description": "", "tags": [ - "日落果", - "纳西妲" + "水晶块" ] }, { - "name": "日落果03-蒙德城外-蒙德6个.json", - "type": "file", - "hash": "cc1e77c59cbbba93c9adf4848ecdd2473ed0e997", - "version": "cc1e77c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果04-星落湖-蒙德36个.json", - "type": "file", - "hash": "a8fdcc2c2d0898aefdff4bbf5d09fa600b92f04f", - "version": "a8fdcc2", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果05-奔狼岭-蒙德3个.json", - "type": "file", - "hash": "ddfb3a336e706d2418cf504245ab5d22954dc884", - "version": "ddfb3a3", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果06-奔狼岭-蒙德6个.json", - "type": "file", - "hash": "709659c3bf78180d85152cc12456a951d71cea80", - "version": "709659c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果07-清泉镇-蒙德6个.json", - "type": "file", - "hash": "fffdb80d00a4073dba1ee0f9bb81b3aa0e951687", - "version": "fffdb80", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果08-南风之狮的庙宇-蒙德9个.json", - "type": "file", - "hash": "8a637852e920e87a92e9bf74c9f6b5683f5f661b", - "version": "8a63785", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果09-誓言岬-蒙德6个.json", - "type": "file", - "hash": "15ce47a57fe445c51030e94e07e34dd4178a6176", - "version": "15ce47a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果10-誓言岬-蒙德6个.json", - "type": "file", - "hash": "44ddf36301561d55d0e7efb6921629ecb64e5220", - "version": "44ddf36", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果11-达达乌帕谷-蒙德15个.json", - "type": "file", - "hash": "5054f7a9ee447ffb8bc8b1956b8f5322c44d8c90", - "version": "5054f7a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果12-鹰之门-蒙德9个.json", - "type": "file", - "hash": "212cd3ccec02599dea833a032b3e4afb355fe592", - "version": "212cd3c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果13-荻花洲-璃月5个.json", - "type": "file", - "hash": "d5be00999f4a56225a0193bf078835e49babd1b6", - "version": "d5be009", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果14-明蕴镇-璃月3个.json", - "type": "file", - "hash": "14fe2c7d42cd3e6bdfd62e59ee26f6b4325b15b1", - "version": "14fe2c7", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果15-云来海-璃月6个.json", - "type": "file", - "hash": "09f0f456159222ed6fda5ff70eeddf2ccf5eca88", - "version": "09f0f45", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果16-云来海-璃月3个.json", - "type": "file", - "hash": "c0c5f810522fb35d666bab94e0e317c7056eeca4", - "version": "c0c5f81", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果17-归离原-璃月3个.json", - "type": "file", - "hash": "10f0a8861048d53aee71aa475a7d8aa47ee8afd5", - "version": "10f0a88", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果18-灵矩关-璃月3个.json", - "type": "file", - "hash": "d2754ee26654e56a9c4719a95cd0e3ce08f008d6", - "version": "d2754ee", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果19-化城郭-须弥4个.json", - "type": "file", - "hash": "6b4c17cb308b30ddec615265ed676b68364af679", - "version": "6b4c17c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - }, - { - "name": "日落果20-遏颂幽境-须弥6个.json", - "type": "file", - "hash": "af7541cee3fb9d6561280da1ea4fb34727b40c7d", - "version": "af7541c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "日落果", - "纳西妲" - ] - } - ] - }, - { - "name": "星螺", - "type": "directory", - "children": [ - { - "name": "星螺12.json", - "type": "file", - "hash": "6494e744aa57da9f9fd58d8c80628db500502acc", - "version": "6494e74", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "星螺" - ] - }, - { - "name": "星螺14.json", - "type": "file", - "hash": "c84d4cc54f65a2cb4d267b5301f8e1d40e3adcb6", - "version": "c84d4cc", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "星螺" - ] - }, - { - "name": "星螺17.json", - "type": "file", - "hash": "f1055a18d145eb4349326919432ca9a53f5ebc25", - "version": "f1055a1", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "星螺" - ] - }, - { - "name": "星螺4.json", - "type": "file", - "hash": "2e3a338deeb95c753c37154e21e73787253c3f20", - "version": "2e3a338", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "星螺" - ] - }, - { - "name": "星螺9.json", - "type": "file", - "hash": "f1a5d11344009e4ae4a06ca93c6ab4cfd27d9558", - "version": "f1a5d11", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "星螺" - ] - } - ] - }, - { - "name": "晶化骨髓", - "type": "directory", - "children": [ - { - "name": "晶化骨髓01-无想刃狭间-5个.json", - "type": "file", - "hash": "ff3d572b0ec88d0192ca5c2f0d39b0a29141ab75", - "version": "ff3d572", - "author": "起个名字好难", - "description": "", - "tags": [ - "晶化骨髓" - ] - }, - { - "name": "晶化骨髓02-藤兜砦-4个.json", - "type": "file", - "hash": "ea8132abcbd11102c5a59345a0fad058081719c8", - "version": "ea8132a", - "author": "起个名字好难", - "description": "", - "tags": [ - "晶化骨髓" - ] - }, - { - "name": "晶化骨髓03-藤兜砦-3个.json", - "type": "file", - "hash": "4711583b525c2151c19a5431678e09b02f024465", - "version": "4711583", - "author": "起个名字好难", - "description": "", - "tags": [ - "晶化骨髓" - ] - }, - { - "name": "晶化骨髓04-藤兜砦-5个.json", - "type": "file", - "hash": "18bdd2a6a99966d86018d1e8a2751a7df0210921", - "version": "18bdd2a", - "author": "起个名字好难", - "description": "", - "tags": [ - "晶化骨髓" - ] - }, - { - "name": "晶化骨髓05-踏鞴砂-10个.json", - "type": "file", - "hash": "3021ffa88aa076b8231672d57da6197cb5c60d5e", - "version": "3021ffa", - "author": "起个名字好难", - "description": "", - "tags": [ - "晶化骨髓" - ] - }, - { - "name": "晶化骨髓06-八酝岛-11个.json", - "type": "file", - "hash": "6dbce62d6ee5dca0891007fe4b7f2bf5a3bdddcb", - "version": "6dbce62", - "author": "起个名字好难", - "description": "", - "tags": [ - "晶化骨髓" - ] - } - ] - }, - { - "name": "月莲", - "type": "directory", - "children": [ - { - "name": "月莲_卡扎莱宫_须弥_5个.json", + "name": "蒙德-04-苍风高地神像北-1个.json", "type": "file", - "hash": "ca10fd7a7ded29f9ee2dd90786253d4ae72c2373", - "version": "ca10fd7", - "author": "tignioj", + "hash": "411c80551e88000b5c397d664dda8619a125156c", + "version": "411c805", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_禅那园_须弥_4个.json", + "name": "蒙德-05-奔狼领-3个.json", "type": "file", - "hash": "0341155e99995e2a52c49f683ce14473c4ecf34c", - "version": "0341155", - "author": "tignioj", + "hash": "6345e0610ab9990b455b357b97065efd828a9e02", + "version": "6345e06", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_茸蕈窟_须弥_4个.json", + "name": "蒙德-06-奔狼岭东-1个.json", "type": "file", - "hash": "c6b8f40601881befa82342354d141e45e16240fd", - "version": "c6b8f40", - "author": "tignioj", + "hash": "8e8eff9eb7d5dc003be5be93627004b4575e7b6a", + "version": "8e8eff9", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_觉王之殿右上_须弥_2个.json", + "name": "蒙德-07-奔狼领北-1个.json", "type": "file", - "hash": "378b72a9ee01151feec63076a6be3483a4014960", - "version": "378b72a", - "author": "tignioj", + "hash": "949849804dea39e8d3665f544101ffd7154f4ed7", + "version": "9498498", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_须弥_护世森下_7个.json", + "name": "蒙德-08-塞西莉亚苗圃东-3个.json", "type": "file", - "hash": "f52a223b0772e31e02c1cefcab2338385e6e7042", - "version": "f52a223", - "author": "tignioj", + "hash": "231d4115f53eb7c7f180a81e7a1ea6db4cbcc39a", + "version": "231d411", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_须弥_护世森左_4个.json", + "name": "蒙德-09-明冠峡东北-1个.json", "type": "file", - "hash": "9e1f037b2217170d795564d3315907137bc15ec4", - "version": "9e1f037", - "author": "tignioj", + "hash": "bcc56dfcefc50428a3453cb22bb2e35b71766ee2", + "version": "bcc56df", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_须弥_维摩庄_6个.json", + "name": "蒙德-10-晨曦酒庄西-1个.json", "type": "file", - "hash": "302bc3c14a03e6a3b8ef9cbbf95d543113357376", - "version": "302bc3c", - "author": "tignioj", + "hash": "5d9e3113d4a869a3c2d95d061e9e464a0ab5308b", + "version": "5d9e311", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_须弥_维摩庄右_2个.json", + "name": "蒙德-11-风龙废墟入口-5个.json", "type": "file", - "hash": "a6497ac5d15eb19186e0fa3ba20c68ccb620f3c6", - "version": "a6497ac", - "author": "tignioj", + "hash": "dc6377d6b2d954293f36c0ae0a610fb2f6ac8d5d", + "version": "dc6377d", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_须弥_降魔山下_7个.json", + "name": "蒙德-12-风龙废墟西-8个.json", "type": "file", - "hash": "850eaaa180d7fc1c7091a3892dc2ee9ce8287bc1", - "version": "850eaaa", - "author": "tignioj", + "hash": "43dcd7f70345c1515091d5f19f9b3cec8a0f5480", + "version": "43dcd7f", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] }, { - "name": "月莲_须弥_降魔山左下_6个.json", + "name": "蒙德-13-风龙废墟神像-9个.json", "type": "file", - "hash": "14dc63413957109f0fc29321cbf58814a0d7c9ed", - "version": "14dc634", - "author": "tignioj", + "hash": "23941d80d446b52a5cafbe69c449a0283639034d", + "version": "23941d8", + "author": "愚溪", "description": "", "tags": [ - "月莲" + "水晶块" ] } ] @@ -4040,2061 +9189,51 @@ ] }, { - "name": "枣椰", + "name": "天云草实", "type": "directory", "children": [ { - "name": "枣椰01-活力之家(死域)-须弥4个.json", + "name": "天云草实-天云峠02-10个.json", "type": "file", - "hash": "1487601b8c3b47a51b2173893e2d161df6a92993", - "version": "1487601", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "枣椰", - "纳西妲" - ] - }, - { - "name": "枣椰02-活力之家-须弥5个.json", - "type": "file", - "hash": "18538415ec27b845720712ae8709f1d2b3288aa7", - "version": "1853841", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "枣椰", - "纳西妲" - ] - }, - { - "name": "枣椰03-阿如村-须弥2个.json", - "type": "file", - "hash": "b6fafcc45dbf655b171229bfb295026efb5188ed", - "version": "b6fafcc", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "枣椰", - "纳西妲" - ] - }, - { - "name": "枣椰04-阿如村-须弥2个.json", - "type": "file", - "hash": "69aacc415c6cd88098de0748b56aa692c8e7bf89", - "version": "69aacc4", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "枣椰", - "纳西妲" - ] - }, - { - "name": "枣椰05-饱饮之丘-须弥5个.json", - "type": "file", - "hash": "e95e6beb37f612b8080a9d3e704a982e72922ab2", - "version": "e95e6be", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "枣椰", - "纳西妲" - ] - }, - { - "name": "枣椰06-丰饶绿洲-须弥8个.json", - "type": "file", - "hash": "fc6daaaa84b6cdb5176255cca3c026c597980e71", - "version": "fc6daaa", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "枣椰", - "纳西妲" - ] - } - ] - }, - { - "name": "枯叶紫英", - "type": "directory", - "children": [ - { - "name": "枯叶紫英-天蛇船下方-11个.json", - "type": "file", - "hash": "6bf53a86c158018ca12cd43b306e297dfbb6ec74", - "version": "6bf53a8", + "hash": "210fb8bee65e43403563dac64257af6ee49dc1df", + "version": "210fb8b", "author": "曦", "description": "", "tags": [ - "枯叶紫英" + "天云草实" ] }, { - "name": "枯叶紫英-奥奇卡纳塔右01-1个.json", + "name": "天云草实-天云峠左下角-26个.json", "type": "file", - "hash": "b7ba50919a37ee92f172ad99775262a15559c3bb", - "version": "b7ba509", - "author": "曦", - "description": "有神瞳标识可能影响识别,建议先拿", - "tags": [ - "枯叶紫英" - ] - }, - { - "name": "枯叶紫英-奥奇卡纳塔神像右-7个.json", - "type": "file", - "hash": "05d47c6c59e86d41219b1f186313104e2b9a4e9f", - "version": "05d47c6", + "hash": "a6dd2c338fb2ac1c6604eaf59162ec628a6bcaff", + "version": "a6dd2c3", "author": "曦", "description": "", "tags": [ - "枯叶紫英" + "天云草实" ] }, { - "name": "枯叶紫英-奥斯卡纳塔左02-11个.json", + "name": "天云草实-石越村-6个.json", "type": "file", - "hash": "700e8f1623757e90725d155931cd9dd3b02c1eec", - "version": "700e8f1", + "hash": "7a74abab5288290c68ba579c33b11cfedaf39f27", + "version": "7a74aba", "author": "曦", "description": "", "tags": [ - "枯叶紫英" + "天云草实" ] }, { - "name": "枯叶紫英-奥斯卡纳塔神像左-5个.json", + "name": "天云草实-越石村右侧-6个.json", "type": "file", - "hash": "8a4e8975f1e87bd1c5b5b5c5ce9edcd29158ef9e", - "version": "8a4e897", - "author": "曦", - "description": "需要盾位", - "tags": [ - "枯叶紫英" - ] - }, - { - "name": "枯叶紫英-托佐兹之岛-2个.json", - "type": "file", - "hash": "513471e5929b7c0c4f8ee88b9d791d5d8eda3bc2", - "version": "513471e", - "author": "曦", - "description": "有一个解密,剩余1个枯叶紫英", - "tags": [ - "枯叶紫英" - ] - }, - { - "name": "枯叶紫英-火鹦之塔-18个.json", - "type": "file", - "hash": "0def3a2f927388e934ded37f30178e0b23fc6a88", - "version": "0def3a2", + "hash": "ba2b622fe819c2cfdf531a65f7718a947fa7ec76", + "version": "ba2b622", "author": "曦", "description": "", "tags": [ - "枯叶紫英" - ] - }, - { - "name": "枯叶紫英-空梦的起始-11个.json", - "type": "file", - "hash": "7ae1868b38e4c9dcb2a0728cc844766805886759", - "version": "7ae1868", - "author": "曦", - "description": "该处有首杀宝箱,9个枯叶紫英", - "tags": [ - "枯叶紫英" - ] - } - ] - }, - { - "name": "柔灯铃", - "type": "directory", - "children": [ - { - "name": "柔灯铃——1——12个.json", - "type": "file", - "hash": "5a56b79c732035daa5f5e00038e3d3084020021f", - "version": "5a56b79", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - }, - { - "name": "柔灯铃——2——9个.json", - "type": "file", - "hash": "35934126399c2d140250966fd02ed3d95c3104f5", - "version": "3593412", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - }, - { - "name": "柔灯铃——3——3个.json", - "type": "file", - "hash": "67040da62b88dd2c7fbd000f06b6de942f3a7957", - "version": "67040da", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - }, - { - "name": "柔灯铃——4——9个.json", - "type": "file", - "hash": "cd6057211b0d8f5af0580946c06df67d0a94eb06", - "version": "cd60572", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - }, - { - "name": "柔灯铃——5——6个.json", - "type": "file", - "hash": "251aa302033c0a56a35e635c37f6359b3e868a19", - "version": "251aa30", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - }, - { - "name": "柔灯铃——6——27个.json", - "type": "file", - "hash": "fb3c5409712595b061ae3b97f8718abb32bc5302", - "version": "fb3c540", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - }, - { - "name": "柔灯铃——7——6个.json", - "type": "file", - "hash": "d996f83ddb26bd4dbbb9d4a875ddbfe3fdb55b42", - "version": "d996f83", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - }, - { - "name": "柔灯铃——8——9个.json", - "type": "file", - "hash": "7d326ff85edceae0099631c07551d94b5891dc2e", - "version": "7d326ff", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - }, - { - "name": "柔灯铃——9——6个.json", - "type": "file", - "hash": "ef0200d998eaaf71c646d16d27cfa17a828c0d72", - "version": "ef0200d", - "author": "透明人", - "description": "", - "tags": [ - "柔灯铃" - ] - } - ] - }, - { - "name": "树王圣体菇", - "type": "directory", - "children": [ - { - "name": "1树王圣体菇 二净甸 2个.json", - "type": "file", - "hash": "36acae145effe9f6d641f4cb2f6f8cfca6a948ff", - "version": "36acae1", - "author": "梓默", - "description": "", - "tags": [ - "树王圣体菇" - ] - }, - { - "name": "2树王圣体菇 水天丛林① 7个.json", - "type": "file", - "hash": "04e6df65f5c38b56819af0ebe63e706bad4dda42", - "version": "04e6df6", - "author": "梓默", - "description": "", - "tags": [ - "树王圣体菇" - ] - }, - { - "name": "3树王圣体菇 水天丛林② 3个.json", - "type": "file", - "hash": "958e14b89f19f4aee6c96002fcf4fb544bef8cd8", - "version": "958e14b", - "author": "旋风破晓", - "description": "善见地-3个树王圣体姑", - "tags": [ - "树王圣体菇" - ] - }, - { - "name": "4树王圣体菇 水天丛林③ 3个.json", - "type": "file", - "hash": "c4dc120cb409096ae02befc051fd432942bf40f3", - "version": "c4dc120", - "author": "梓默", - "description": "", - "tags": [ - "树王圣体菇" - ] - }, - { - "name": "5树王圣体菇 无郁稠林① 5个.json", - "type": "file", - "hash": "4344e3a76abc75515b86c3d386c82a9eeb6025d6", - "version": "4344e3a", - "author": "梓默", - "description": "", - "tags": [ - "树王圣体菇" - ] - }, - { - "name": "6树王圣体菇 无郁稠林② 5个 .json", - "type": "file", - "hash": "7d68d2491d045639de4bae6dd7c55e5c76342f95", - "version": "7d68d24", - "author": "梓默", - "description": "", - "tags": [ - "树王圣体菇" - ] - } - ] - }, - { - "name": "树莓", - "type": "directory", - "children": [ - { - "name": "树莓1.json", - "type": "file", - "hash": "a293c050b3c400e7c4c728e3d56c1b41f39607f2", - "version": "a293c05", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓10.json", - "type": "file", - "hash": "e77c7290692c6b65b6ce97e68861754c2525b5ce", - "version": "e77c729", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓11.json", - "type": "file", - "hash": "571cbdf3e41dbd55688d99651084e2943ff00783", - "version": "571cbdf", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓12.json", - "type": "file", - "hash": "69afa088d6f8728854591cc807f2a91a4d96dc3f", - "version": "69afa08", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓13.json", - "type": "file", - "hash": "b53ec861fe8a8516575b21a534bf69f749fb627a", - "version": "b53ec86", - "author": "", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓14.json", - "type": "file", - "hash": "28e506d6a874874a75507ec0aa320cf561d163bc", - "version": "28e506d", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓2.json", - "type": "file", - "hash": "9aeb3007e8229e9736e75ffa2b1bc4d78c236d90", - "version": "9aeb300", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓3.json", - "type": "file", - "hash": "d70e59da58540041d1b3c87e7efddc093ea5a14b", - "version": "d70e59d", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓4.json", - "type": "file", - "hash": "e784e3b54567b78887217af736bd648cd9613e0c", - "version": "e784e3b", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓5.json", - "type": "file", - "hash": "995f8a39b334f4857303d60b061d6964e74b0b62", - "version": "995f8a3", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓6.json", - "type": "file", - "hash": "1e739becf908fea82147fdeb9d80ebe1609f4648", - "version": "1e739be", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓7.json", - "type": "file", - "hash": "7d20b885baa10ec2545242a05ee777fb4ab8d90c", - "version": "7d20b88", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓8.json", - "type": "file", - "hash": "b1385c1f8e01a977a901b686e5b8092ecc5e47b4", - "version": "b1385c1", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - }, - { - "name": "树莓9.json", - "type": "file", - "hash": "cf9cd1765f748d7371ff9c1e4a5b934fbd12732c", - "version": "cf9cd17", - "author": "风埠", - "description": "树莓", - "tags": [ - "树莓" - ] - } - ] - }, - { - "name": "水晶矿", - "type": "directory", - "children": [ - { - "name": "庆云顶01-12个(不稳定).json", - "type": "file", - "hash": "530bbd2aec135aa94790fadb8021e7b8f4fd2284", - "version": "530bbd2", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "沉玉古南陵.json", - "type": "file", - "hash": "8d372700cddf80827a65e9641e1920183d868e50", - "version": "8d37270", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "沉玉古南陵2.json", - "type": "file", - "hash": "68ed20c6fd3ba1557e3e58c8dc4916cace88e745", - "version": "68ed20c", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "沉玉谷上谷.json", - "type": "file", - "hash": "8027048f97d9d865b49f7d6af2d5ca30a9432933", - "version": "8027048", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "沉玉谷上谷2.json", - "type": "file", - "hash": "a14299deb35b39f2258c007f06480f0170b60f42", - "version": "a14299d", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "沉玉谷上谷3.json", - "type": "file", - "hash": "3155a8cb088df9d4248dca00580bda306fe6bf08", - "version": "3155a8c", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "沉玉谷暝还山01.json", - "type": "file", - "hash": "5152e87dd0d408ebbf041439d764fc83da2583b1", - "version": "5152e87", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "沉玉谷暝还山02.json", - "type": "file", - "hash": "c752b4552de5281fea87e207218e8dde2745b6c4", - "version": "c752b45", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "璃月-01-轻策庄南-6个.json", - "type": "file", - "hash": "e45b5a7ca4c82b5223b93b4d4e39da5b60b09d62", - "version": "e45b5a7", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "璃月-02-奥藏山-8个.json", - "type": "file", - "hash": "f7b8333e2c040ed8defc1e18c9dc7e745f5061c4", - "version": "f7b8333", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "璃月-03-宗室本北-2个.json", - "type": "file", - "hash": "b9ee7413f0c9833b4e6c87bb90ceaad533203f06", - "version": "b9ee741", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "璃月-04-珉林中部-3个.json", - "type": "file", - "hash": "cd3747a74174874ee8b03b8de74ff9a8025401fa", - "version": "cd3747a", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "璃月-05-荻花洲西-1个.json", - "type": "file", - "hash": "906b8a274486a80a7a7cb360444f09967feeb2ea", - "version": "906b8a2", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "璃月天衡山 (1).json", - "type": "file", - "hash": "e7d0df7e24678dee011cdb37458de22802cbedf6", - "version": "e7d0df7", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "璃月天衡山2 (1).json", - "type": "file", - "hash": "58cb73c58923d71269f2e51cfca92f49e2e4bbd5", - "version": "58cb73c", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "璃月层岩01 (1).json", - "type": "file", - "hash": "1272b32c86584ebf29fa6010c5eb1c92c228a374", - "version": "1272b32", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "璃月层岩02.json", - "type": "file", - "hash": "4d708746711061118d831941219450484d69d06c", - "version": "4d70874", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "璃月层岩03 (1).json", - "type": "file", - "hash": "1926af541fd0c4e2af19cd6fcc60f783e9c8a27a", - "version": "1926af5", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "璃月灵矩关1 (1).json", - "type": "file", - "hash": "2793bb8a23633021f94aca766ae8663597b5ed6c", - "version": "2793bb8", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "璃月璃沙郊.json", - "type": "file", - "hash": "10ed05823879e04112650de240911a8dbd384342", - "version": "10ed058", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "璃月遁玉陵1.json", - "type": "file", - "hash": "56395a9f8ba6cb4b085797782b42db20d1e36531", - "version": "56395a9", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "蒙德-01-望风山地东-2个.json", - "type": "file", - "hash": "5dd967bf20ea1a05b4fed87fa5cb3be7ae7e8016", - "version": "5dd967b", - "author": "", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "蒙德-02-望风角西-1个.json", - "type": "file", - "hash": "b0d9645b3b3d4482cb9e21a7277d942f5660b453", - "version": "b0d9645", - "author": "愚溪", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "蒙德-03-铭记之谷南-4个.json", - "type": "file", - "hash": "e38c82a76d9c7daf186f5d349e726bc0e49fabef", - "version": "e38c82a", - "author": "愚溪", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "蒙德-04-苍风高地神像北-1个.json", - "type": "file", - "hash": "aaa1c38f025e6d889fc040db54777c93f85e5058", - "version": "aaa1c38", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "蒙德-05-奔狼领-3个.json", - "type": "file", - "hash": "5ca35cefc9f28398225b46f5a7c420243895c187", - "version": "5ca35ce", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "蒙德-06-奔狼岭东-1个.json", - "type": "file", - "hash": "8e8eff9eb7d5dc003be5be93627004b4575e7b6a", - "version": "8e8eff9", - "author": "愚溪", - "description": "", - "tags": [ - "水晶矿" - ] - }, - { - "name": "蒙德-07-奔狼领北-1个.json", - "type": "file", - "hash": "ea8eb288d612c83e107a75500bdb97c4c315d414", - "version": "ea8eb28", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "蒙德-08-塞西莉亚苗圃东-3个.json", - "type": "file", - "hash": "a7db4670aa84818fbad7715d5b66a1b39183a5a8", - "version": "a7db467", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "蒙德-09-明冠峡东北-1个.json", - "type": "file", - "hash": "13932107a58125a8bf9f9e1cefecc623c098f71b", - "version": "1393210", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "蒙德-10-晨曦酒庄西-1个.json", - "type": "file", - "hash": "570eb1f8ce7acdb434b7b21333a5a7ac443f8a8d", - "version": "570eb1f", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "蒙德-11-风龙废墟入口-5个.json", - "type": "file", - "hash": "e341ab81d8e13b1c6ae7e975b03defa4a6f36b69", - "version": "e341ab8", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "蒙德-12-风龙废墟西-8个.json", - "type": "file", - "hash": "8b8e796c372f006e4185b9f5ef35b6ab94ec6270", - "version": "8b8e796", - "error": "Unexpected token  in JSON at position 0" - }, - { - "name": "蒙德-13-风龙废墟神像-9个.json", - "type": "file", - "hash": "bab40cda7669aa4e9e6d4e34eeba4aed10a832ab", - "version": "bab40cd", - "error": "Unexpected token  in JSON at position 0" - } - ] - }, - { - "name": "沉玉仙茗", - "type": "directory", - "children": [ - { - "name": "沉玉仙茗-灵濛山(一)-璃月1个.json", - "type": "file", - "hash": "fb67804389921e58c0e37f2be521d8ad0c5cfb45", - "version": "fb67804", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "沉玉仙茗" - ] - }, - { - "name": "沉玉仙茗-灵濛山(二)-璃月1个.json", - "type": "file", - "hash": "a6f7c9bbe95fad9f674ebef2369f3af50bd8fa76", - "version": "a6f7c9b", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "沉玉仙茗" - ] - }, - { - "name": "沉玉仙茗-翘英庄-璃月9个.json", - "type": "file", - "hash": "4311b792beb12afdd05c00fb94644a4d38daa25a", - "version": "4311b79", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "沉玉仙茗" - ] - }, - { - "name": "沉玉仙茗-翘英庄-璃月X个.json", - "type": "file", - "hash": "d77e5446206edf98ba1abbedd352e527e625710a", - "version": "d77e544", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "沉玉仙茗" - ] - }, - { - "name": "沉玉仙茗-药蝶谷-璃月2个.json", - "type": "file", - "hash": "15a7c15116c5175fbde6a8334b88fcbcb46c6d5c", - "version": "15a7c15", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "沉玉仙茗" - ] - }, - { - "name": "沉玉仙茗-遗珑埠(上)-璃月3个.json", - "type": "file", - "hash": "37454a2a5d4b093c00aae966dcff59b87069600f", - "version": "37454a2", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "沉玉仙茗" - ] - }, - { - "name": "沉玉仙茗-遗珑埠(下)-璃月6个.json", - "type": "file", - "hash": "4e52aba63f01cb195ccfce6c200301c765193d51", - "version": "4e52aba", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "沉玉仙茗" - ] - } - ] - }, - { - "name": "泡泡桔", - "type": "directory", - "children": [ - { - "name": "泡泡桔01-厄里纳斯-枫丹6个.json", - "type": "file", - "hash": "a432b4264bc3bd55acf3504de66afdac5af3267c", - "version": "a432b42", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔02-厄里纳斯-枫丹9个.json", - "type": "file", - "hash": "1fc724adba3f4af811f191d77319905dcfae9cb6", - "version": "1fc724a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔03-厄里纳斯-枫丹6个.json", - "type": "file", - "hash": "deb93b25c59028247cc8755fdedd38ab83119b44", - "version": "deb93b2", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔04-枫丹廷-枫丹18个.json", - "type": "file", - "hash": "a0ce934a547fe8b2eaeede2f34393e830b41d855", - "version": "a0ce934", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔05-枫丹廷(高危)-枫丹20个.json", - "type": "file", - "hash": "08836ae383a27d556fce50c316766e0661b78887", - "version": "08836ae", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔06-枫丹科学院-枫丹4个.json", - "type": "file", - "hash": "0bd1f05ae5d98774b95a71530309d7d6e04384db", - "version": "0bd1f05", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔07-中央实验室遗址-枫丹3个.json", - "type": "file", - "hash": "0559ef508e5cda1d64bd82d339bb754448db8231", - "version": "0559ef5", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔08-茉洁站上-枫丹5个.json", - "type": "file", - "hash": "a3dfe1196f918b780d3d703a4df66eddb0ec301e", - "version": "a3dfe11", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔09-优兰尼娅湖-枫丹3个.json", - "type": "file", - "hash": "8e79408af3a425ad312a6ca05d9a6771fa87809b", - "version": "8e79408", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - }, - { - "name": "泡泡桔10-茉洁站-枫丹3个.json", - "type": "file", - "hash": "e27d8375aa5f326a1a04b1a337674f03aa8a5660", - "version": "e27d837", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔" - ] - }, - { - "name": "泡泡桔11-茉洁站-枫丹9个.json", - "type": "file", - "hash": "32baacae1084dbff6014d383a998c16f57bfb4f1", - "version": "32baaca", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "泡泡桔", - "纳西妲" - ] - } - ] - }, - { - "name": "浪沫羽鳃", - "type": "directory", - "children": [ - { - "name": "浪沫羽鳃1-流泉之众上-11个.json", - "type": "file", - "hash": "9d89514979df0906def126ca5ae435795348f142", - "version": "9d89514", - "author": "黎歌", - "description": "", - "tags": [ - "浪沫羽鳃" - ] - }, - { - "name": "浪沫羽鳃2-溶水域七天神像下-8个.json", - "type": "file", - "hash": "17134559b174055b434f7fa24c374a9b438f10a3", - "version": "1713455", - "author": "黎歌", - "description": "", - "tags": [ - "浪沫羽鳃" - ] - }, - { - "name": "浪沫羽鳃3-溶水域七天神像左-14个.json", - "type": "file", - "hash": "f468c281d3295e51aa93215a6c80e62e19ffbe57", - "version": "f468c28", - "author": "黎歌", - "description": "", - "tags": [ - "浪沫羽鳃" - ] - }, - { - "name": "浪沫羽鳃4-溶水域七天神像右-12个.json", - "type": "file", - "hash": "4dc06575058ba4c97320fdbe9935f911a8553f9a", - "version": "4dc0657", - "author": "黎歌", - "description": "", - "tags": [ - "浪沫羽鳃" - ] - }, - { - "name": "浪沫羽鳃5-溶水域右上-9个.json", - "type": "file", - "hash": "bcc7304bd3ecf0478e7870e4b85af6c8cf3e1e9c", - "version": "bcc7304", - "author": "黎歌", - "description": "", - "tags": [ - "浪沫羽鳃" - ] - } - ] - }, - { - "name": "海灵芝", - "type": "directory", - "children": [ - { - "name": "海灵芝_九条阵屋下_稻妻_7个.json", - "type": "file", - "hash": "9eb679340b59f6cb4a405a8106ba3e565c942d8a", - "version": "9eb6793", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_九条阵屋右_稻妻_7个.json", - "type": "file", - "hash": "b0bcd6b3a1fe52f0a1e0f8ef036211edb3234ec6", - "version": "b0bcd6b", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_九条阵屋左_稻妻_2个.json", - "type": "file", - "hash": "39b8e589d52ea62e563f9931a73afdceef3076e9", - "version": "39b8e58", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_天云峠北方_稻妻_3个.json", - "type": "file", - "hash": "d3bde41b316abe9768f7931af46a511ebdde7c9d", - "version": "d3bde41", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_曚云神社西_稻妻_6个.json", - "type": "file", - "hash": "002801a3fef6007cc0c1815df99e0ae952e4f0ca", - "version": "002801a", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_望泷村东_稻妻_3个.json", - "type": "file", - "hash": "66263792f88d8f89918e009263daef3417be9ad1", - "version": "6626379", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_望泷村西南_稻妻_3个.json", - "type": "file", - "hash": "a4bb07706f898055110e2a2889cc453f7991aa74", - "version": "a4bb077", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_水月池东南远处离岛_稻妻_2个.json", - "type": "file", - "hash": "2c7acf16a4050f0cb7fb10a2ff0ed22252da76b4", - "version": "2c7acf1", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_浅濑神社_稻妻_4个.json", - "type": "file", - "hash": "ab427b2b13a8b826c859c27ede914bf6e821e5d4", - "version": "ab427b2", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_清籁丸西北_稻妻_4个.json", - "type": "file", - "hash": "54f38cee1321c89ba27d82eaebf86a1b3a169825", - "version": "54f38ce", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_珊瑚宫西北_稻妻_5个.json", - "type": "file", - "hash": "2d4215e06221f5ef6fa405b47b82aad5dd4b4cfd", - "version": "2d4215e", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_绀田村左上角_稻妻_5个.json", - "type": "file", - "hash": "a9dbdcdc8f127c4dc34586f87385a1fa26fe6a5a", - "version": "a9dbdcd", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_蛇神之首右_稻妻_5个.json", - "type": "file", - "hash": "c97094f77b0d8e6d9f1d5f962ad304fc4f94a5e6", - "version": "c97094f", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_越石村东北_稻妻_8个.json", - "type": "file", - "hash": "0853bd7089ecbfaf6bdbdc295c74488f4a0118a4", - "version": "0853bd7", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_踏鞴沙右下_稻妻_6个.json", - "type": "file", - "hash": "77c44bf0c6ce2bd587be3531e358f9c55c523fb3", - "version": "77c44bf", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_踏鞴沙左上_稻妻_9个.json", - "type": "file", - "hash": "757b08b004d02248bfc83994649b19d2629cc0e2", - "version": "757b08b", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - } - ] - }, - { - "name": "海草", - "type": "directory", - "children": [ - { - "name": "海草01-绀田村-稻妻6个.json", - "type": "file", - "hash": "ed8fb611872b082e5b26d93d25f38b5c9e7f22a9", - "version": "ed8fb61", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草02-荒海-稻妻3个.json", - "type": "file", - "hash": "993f99ce531fbfe9330e7c27dccdd650b6f41926", - "version": "993f99c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草03-荒海-稻妻5个.json", - "type": "file", - "hash": "7fca07db30056bfd2f71d4db8bb03827967b0551", - "version": "7fca07d", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草04-离岛-稻妻4个.json", - "type": "file", - "hash": "aea86754f3548f9698d02c3f83a2a82c356a2656", - "version": "aea8675", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草05-白狐之野-稻妻3个.json", - "type": "file", - "hash": "43e8ad088024d1b4dd011434e1015b05e8afe167", - "version": "43e8ad0", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草06-白狐之野-稻妻4个.json", - "type": "file", - "hash": "89fc0e3195145061a38e4c464b77ef1708608f5e", - "version": "89fc0e3", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草07-堇色之庭-稻妻2个.json", - "type": "file", - "hash": "1a4bdfbca76e155c146d67bb1cb6a40d75b2b06e", - "version": "1a4bdfb", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草08-九条阵屋-稻妻4个.json", - "type": "file", - "hash": "95686337ef840af8c65ff888f28f72c5d815849d", - "version": "9568633", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草09-鞳鞴砂-稻妻4个.json", - "type": "file", - "hash": "9c8592050ff188c1c3498c07291606b635731d72", - "version": "9c85920", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草10-鞳鞴砂(无危)-稻妻7个.json", - "type": "file", - "hash": "56c4850398c489cb9da5b38c30e38c0b48f6f57e", - "version": "56c4850", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草10-鞳鞴砂(高危)-稻妻11个.json", - "type": "file", - "hash": "4e4ac697643974aff2c3816710fc1af5dba9d009", - "version": "4e4ac69", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草11-无想刃狭间(中危)-稻妻5个.json", - "type": "file", - "hash": "4e4109bca38a7e69e23aae4128b36017172352f3", - "version": "4e4109b", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草12-海祇岛-稻妻4个.json", - "type": "file", - "hash": "6115b5d37f8cdcf391db4763b4cab3c2be5ed180", - "version": "6115b5d", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草13-千来神祠-稻妻2个.json", - "type": "file", - "hash": "f162b85d12d5fb27f12e2d6178923fa338567dc5", - "version": "f162b85", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草14-鹤观神像-稻妻2个.json", - "type": "file", - "hash": "055d798a3d04b88fe201f4cd27e18a46b47fcfb0", - "version": "055d798", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草15-鹤观神像-稻妻3个.json", - "type": "file", - "hash": "3e414f48ec9bce9ef44dd2398caf86bc33553fb3", - "version": "3e414f4", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草16-天云峠-稻妻4个.json", - "type": "file", - "hash": "ce8c9b4ae01caa4ab147a4176cfe4dae120be0e8", - "version": "ce8c9b4", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - }, - { - "name": "海草17-越石村-稻妻4个.json", - "type": "file", - "hash": "400d34f8ae412ef55bd56a6f852a4d7d6d7cdae7", - "version": "400d34f", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "海草", - "纳西妲" - ] - } - ] - }, - { - "name": "海露花", - "type": "directory", - "children": [ - { - "name": "海露花-中央实验室右侧-2个.json", - "type": "file", - "hash": "34b356ea10447ad0c4015008a29ef376122059cb", - "version": "34b356e", - "author": "曦", - "description": "", - "tags": [ - "海露花", - "水元素力收集" - ] - }, - { - "name": "海露花-厄里那斯上侧-4个.json", - "type": "file", - "hash": "a85ea88c1e100e7e79150a4b43d4deda716edc01", - "version": "a85ea88", - "author": "曦", - "description": "", - "tags": [ - "海露花", - "水元素力收集" - ] - }, - { - "name": "海露花-厄里那斯右下角-6个.json", - "type": "file", - "hash": "143c7cc28377061cb411fd141e6be75b1bb22581", - "version": "143c7cc", - "author": "曦", - "description": "", - "tags": [ - "海露花", - "水元素力收集" - ] - }, - { - "name": "海露花-幽林雾道-5个.json", - "type": "file", - "hash": "58c7f8463e40ef78007b4a70bf14291c65194702", - "version": "58c7f84", - "author": "曦", - "description": "", - "tags": [ - "海露花", - "水元素力收集" - ] - }, - { - "name": "海露花-柔灯港-10个.json", - "type": "file", - "hash": "9c7fff6f7c535ec57a1a6d7f5f6366bf5bf444e4", - "version": "9c7fff6", - "author": "曦", - "description": "", - "tags": [ - "海露花", - "水元素力收集" - ] - }, - { - "name": "海露花-茉洁站-6个.json", - "type": "file", - "hash": "3c34514cebee12b80aaf553d31e1283159d8aa1a", - "version": "3c34514", - "author": "曦", - "description": "", - "tags": [ - "海露花", - "水元素力收集" - ] - } - ] - }, - { - "name": "湖光铃兰", - "type": "directory", - "children": [ - { - "name": "湖光铃兰-优兰尼娅湖-9个.json", - "type": "file", - "hash": "b2585d47d15eb59dc673a79791db8e3c6db4440d", - "version": "b2585d4", - "author": "曦", - "description": "", - "tags": [ - "湖光铃兰" - ] - }, - { - "name": "湖光铃兰-优兰尼娅湖左上角-3个.json", - "type": "file", - "hash": "c3807b7c3d9091922f34163e2061bb01c9370379", - "version": "c3807b7", - "author": "曦", - "description": "", - "tags": [ - "湖光铃兰" - ] - }, - { - "name": "湖光铃兰-优兰尼娅湖左下角-3个.json", - "type": "file", - "hash": "7b3a7376b35c6f0f2f52c65b395509e475154536", - "version": "7b3a737", - "author": "曦", - "description": "", - "tags": [ - "湖光铃兰" - ] - }, - { - "name": "湖光铃兰-枫丹-幽林雾道-10个.json", - "type": "file", - "hash": "7f7bb6301eb7e2dd7ffc4386b522dd60265333ad", - "version": "7f7bb63", - "author": "曦", - "description": "", - "tags": [ - "湖光铃兰" - ] - }, - { - "name": "湖光铃兰-枫丹-湖中垂柳右下角-3个.json", - "type": "file", - "hash": "5f36571322ee352bf8e9ba99a7f04c070ab2257c", - "version": "5f36571", - "author": "曦", - "description": "", - "tags": [ - "湖光铃兰" - ] - }, - { - "name": "湖光铃兰-枫丹-湖中垂柳(未净化23个,净化37个).json", - "type": "file", - "hash": "bb13f38bdec61b8c597f62802d828dd04149b3b5", - "version": "bb13f38", - "author": "曦", - "description": "", - "tags": [ - "湖光铃兰" - ] - }, - { - "name": "湖光铃兰-湖中垂柳左下-6个.json", - "type": "file", - "hash": "8227557b3c186fed9c3abeb0837fcf92f5c834c7", - "version": "8227557", - "author": "曦", - "description": "", - "tags": [ - "湖光铃兰" - ] - } - ] - }, - { - "name": "灼灼彩菊", - "type": "directory", - "children": [ - { - "name": "灼灼彩菊1-帕克斯神庙左-7个.json", - "type": "file", - "hash": "0a6145741aa7d2d1ff60f252e8426e52bdc13e55", - "version": "0a61457", - "author": "黎歌", - "description": "", - "tags": [ - "灼灼彩菊" - ] - }, - { - "name": "灼灼彩菊2-帕克斯神庙右-11个.json", - "type": "file", - "hash": "58bd301bd53e86625f080fb0781f1c366b6b0f45", - "version": "58bd301", - "author": "黎歌", - "description": "", - "tags": [ - "灼灼彩菊" - ] - }, - { - "name": "灼灼彩菊3-圣火竞技场下-11个.json", - "type": "file", - "hash": "948b31e21aa88d1911c41562150ea5b2f7983de9", - "version": "948b31e", - "author": "黎歌", - "description": "", - "tags": [ - "灼灼彩菊" - ] - }, - { - "name": "灼灼彩菊4-圣火竞技场上-12个.json", - "type": "file", - "hash": "77eee68720345631f7a53208a186b3dc54868559", - "version": "77eee68", - "author": "黎歌", - "description": "", - "tags": [ - "灼灼彩菊" - ] - }, - { - "name": "灼灼彩菊41朵.json", - "type": "file", - "hash": "aec435153f4ad05b089fb0b37f328576469aadea", - "version": "aec4351", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "灼灼彩菊" - ] - }, - { - "name": "灼灼彩菊5-万火之瓯上-9个.json", - "type": "file", - "hash": "785bcbf519ca96789eecd8041528a5d8887476f2", - "version": "785bcbf", - "author": "黎歌", - "description": "", - "tags": [ - "灼灼彩菊" - ] - }, - { - "name": "灼灼彩菊6-柴薪之丘下-5个.json", - "type": "file", - "hash": "a448305f28766e42135ef07bb5b2da916cfcc2b0", - "version": "a448305", - "author": "黎歌", - "description": "", - "tags": [ - "灼灼彩菊" - ] - }, - { - "name": "灼灼彩菊7-柴薪之丘右-4个.json", - "type": "file", - "hash": "f44fb2f0ad996bfde5d19e18ef54039109f379e4", - "version": "f44fb2f", - "author": "黎歌", - "description": "", - "tags": [ - "灼灼彩菊" - ] - }, - { - "name": "灼灼彩菊8-柴薪之丘上-13个.json", - "type": "file", - "hash": "4713e20a87932be4e670a6b0f025fbf72603c94b", - "version": "4713e20", - "author": "黎歌", - "description": "", - "tags": [ - "灼灼彩菊" - ] - } - ] - }, - { - "name": "珊瑚真珠", - "type": "directory", - "children": [ - { - "name": "珊瑚珍珠1-望泷村右上-9个.json", - "type": "file", - "hash": "65e5b1dbb7cc0ed12c08c081440ec8bb255c0e1b", - "version": "65e5b1d", - "author": "黎歌", - "description": "", - "tags": [ - "珊瑚真珠" - ] - }, - { - "name": "珊瑚珍珠2-珊瑚宫下-7个.json", - "type": "file", - "hash": "b723f30598d78f3fe1fd747ac3ef74ebb7f4226f", - "version": "b723f30", - "author": "黎歌", - "description": "", - "tags": [ - "珊瑚真珠" - ] - }, - { - "name": "珊瑚珍珠3-珊瑚宫右-3个.json", - "type": "file", - "hash": "92b6129deece6bab596bdadfcf9772936249a014", - "version": "92b6129", - "author": "黎歌", - "description": "", - "tags": [ - "珊瑚真珠" - ] - }, - { - "name": "珊瑚珍珠4-珊瑚宫上-12个.json", - "type": "file", - "hash": "999d957918b05b6dc13c9d68b6340f72f29b8e35", - "version": "999d957", - "author": "黎歌", - "description": "", - "tags": [ - "珊瑚真珠" - ] - }, - { - "name": "珊瑚珍珠5-水月池-5个.json", - "type": "file", - "hash": "9c84f0b6bef75a580ce1127d1ac87bc8e3996de2", - "version": "9c84f0b", - "author": "黎歌", - "description": "", - "tags": [ - "珊瑚真珠" - ] - }, - { - "name": "珊瑚珍珠6-水月池下-6个.json", - "type": "file", - "hash": "2e7ebd884934f5a2b351e7b4edfcd273dcd9ee7c", - "version": "2e7ebd8", - "author": "黎歌", - "description": "", - "tags": [ - "珊瑚真珠" - ] - } - ] - }, - { - "name": "琉璃百合", - "type": "directory", - "children": [ - { - "name": "琉璃百合1-璃月港右-3个.json", - "type": "file", - "hash": "019ab6fe304a05fe09821e63737452faac30b8b2", - "version": "019ab6f", - "author": "黎歌", - "description": "", - "tags": [ - "琉璃百合" - ] - }, - { - "name": "琉璃百合2-璃月港左-7个+霓裳花4x2个.json", - "type": "file", - "hash": "e3038c5d51de3c4a712b30ca927de41303d26f1c", - "version": "e3038c5", - "author": "黎歌", - "description": "", - "tags": [ - "琉璃百合" - ] - }, - { - "name": "琉璃百合3-璃月港左-11个+霓裳花3x2个.json", - "type": "file", - "hash": "7aadbe311be509151da6403f905f3b2210c2b819", - "version": "7aadbe3", - "author": "黎歌", - "description": "", - "tags": [ - "琉璃百合" - ] - }, - { - "name": "琉璃百合4-轻策庄下-2个+绝云椒椒2x3个.json", - "type": "file", - "hash": "b3bce444691bb241ef3eb8ca96a8e27f44d5e44a", - "version": "b3bce44", - "author": "黎歌", - "description": "", - "tags": [ - "琉璃百合" - ] - }, - { - "name": "琉璃百合5-轻策庄右-1个+绝云椒椒1x3个.json", - "type": "file", - "hash": "c07af023cc59fd19e0a96bed3c8d6692f4fbc201", - "version": "c07af02", - "author": "黎歌", - "description": "", - "tags": [ - "琉璃百合" - ] - }, - { - "name": "琉璃百合6-轻策庄下-1个+绝云椒椒1x3个.json", - "type": "file", - "hash": "91d2021828c42cdfd0a49809c9c91bfb19f4de73", - "version": "91d2021", - "author": "黎歌", - "description": "", - "tags": [ - "琉璃百合" - ] - }, - { - "name": "琉璃百合7-轻策庄左-5个+绝云椒椒1x3个.json", - "type": "file", - "hash": "8115cc8cbb573bb434fa90f912d81174cdbbaaa5", - "version": "8115cc8", - "author": "黎歌", - "description": "", - "tags": [ - "琉璃百合" - ] - }, - { - "name": "琉璃百合8-轻策庄上-11个+绝云椒椒1x3个.json", - "type": "file", - "hash": "8a51f5537c3fc2029569dee8e7897c9da30c83c4", - "version": "8a51f55", - "author": "黎歌", - "description": "", - "tags": [ - "琉璃百合" - ] - } - ] - }, - { - "name": "琉璃袋", - "type": "directory", - "children": [ - { - "name": "琉璃袋-天工峡-2个.json", - "type": "file", - "hash": "b9dc09bbae63fce1f0ca274564f5926cea452468", - "version": "b9dc09b", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" - ] - }, - { - "name": "琉璃袋-天遒谷-2个.json", - "type": "file", - "hash": "2058ede5d685e63a4db272a863d9f4f63420ef68", - "version": "2058ede", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" - ] - }, - { - "name": "琉璃袋-孤云阁-2个.json", - "type": "file", - "hash": "7aca33caeee550cc50b309f73fe051f34af2db7f", - "version": "7aca33c", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" - ] - }, - { - "name": "琉璃袋-层岩巨渊-4个.json", - "type": "file", - "hash": "90d3565826c54bb741b2fc866b0038cdc68d6351", - "version": "90d3565", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" - ] - }, - { - "name": "琉璃袋-无妄坡-3个.json", - "type": "file", - "hash": "735020144eee7d557e29aad51abe3ae93b34a5f9", - "version": "7350201", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" - ] - }, - { - "name": "琉璃袋-无妄坡2-6个.json", - "type": "file", - "hash": "1f4b645de488611b63872bed1f99adb5ce21709c", - "version": "1f4b645", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" - ] - }, - { - "name": "琉璃袋-明蕴镇-6个.json", - "type": "file", - "hash": "14a471d849121dbf0381f788d7468963fda68c2d", - "version": "14a471d", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" - ] - }, - { - "name": "琉璃袋-池中盐水-5个.json", - "type": "file", - "hash": "3a9ebfb3841172f94ef839a1b2a024af70db0a46", - "version": "3a9ebfb", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" - ] - }, - { - "name": "琉璃袋-灵矩关-6个.json", - "type": "file", - "hash": "69d6cdb9150720590da8b3d875c5e296cd27001f", - "version": "69d6cdb", - "author": "yulalaa", - "description": "", - "tags": [ - "琉璃袋", - "纳西妲" + "天云草实" ] } ] @@ -6216,9 +9355,858 @@ ] }, { - "name": "石珀", + "name": "万相石", "type": "directory", - "children": [] + "children": [ + { + "name": "万相石-13.json", + "type": "file", + "hash": "b0f30825370c17832557e10095f5abff9c520aa3", + "version": "b0f3082", + "author": "MOMO", + "description": "钟离、坎蒂丝、雷泽、卡齐娜、凝光都可以,钟离有小概率被柱子卡,略微影响效率", + "tags": [ + "万相石" + ] + }, + { + "name": "万相石-17.json", + "type": "file", + "hash": "f96d135c37b4345039133b2ea9fc779b6e65cfcd", + "version": "f96d135", + "author": "MOMO", + "description": "", + "tags": [ + "万相石" + ] + } + ] + }, + { + "name": "微光角菌", + "type": "directory", + "children": [ + { + "name": "微光角菌-奥奇卡纳塔上-14个.json", + "type": "file", + "hash": "d3bd8d078e497975b866f3b6510b5939a818ad3c", + "version": "d3bd8d0", + "author": "曦", + "description": "", + "tags": [ + "微光角菌" + ] + }, + { + "name": "微光角菌-烟谜主01-27个.json", + "type": "file", + "hash": "9d254a222f13c278815d85dace182aa07ffb0924", + "version": "9d254a2", + "author": "曦", + "description": "", + "tags": [ + "微光角菌" + ] + }, + { + "name": "微光角菌-烟谜主02-12个.json", + "type": "file", + "hash": "304281b70394f99737bf540347d7aa9b6757f105", + "version": "304281b", + "author": "曦", + "description": "", + "tags": [ + "微光角菌" + ] + }, + { + "name": "微光角菌-翘枝崖-5个.json", + "type": "file", + "hash": "41d1ad7db1ee2e5cd9d5b492442f27a24be76df0", + "version": "41d1ad7", + "author": "曦", + "description": "", + "tags": [ + "微光角菌" + ] + }, + { + "name": "微光角菌-镜壁山-2个.json", + "type": "file", + "hash": "b93ca3723b3526cb204ee2b8c4e01e259b8fbb6e", + "version": "b93ca37", + "author": "曦", + "description": "", + "tags": [ + "微光角菌" + ] + } + ] + }, + { + "name": "香辛果", + "type": "directory", + "children": [ + { + "name": "香辛果1.json", + "type": "file", + "hash": "64c43f064043922054a9803961cedb5d784f38fa", + "version": "64c43f0", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "香辛果", + "纳西妲" + ] + }, + { + "name": "香辛果2.json", + "type": "file", + "hash": "6144f3f7564d8d03599404786b4071292f69a87f", + "version": "6144f3f", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "香辛果", + "纳西妲" + ] + }, + { + "name": "香辛果3.json", + "type": "file", + "hash": "0cce17a404d1b41a06e6942add474c4098e0faf8", + "version": "0cce17a", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "香辛果", + "纳西妲" + ] + } + ] + }, + { + "name": "小灯草", + "type": "directory", + "children": [ + { + "name": "小灯草-仲夏庭院-蒙德2个.json", + "type": "file", + "hash": "8333c656131aeeb6c08babd8c27cee6556b43bf1", + "version": "8333c65", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-低语森林-蒙德17个.json", + "type": "file", + "hash": "375f198853833dd02bafc73518ed762f696f5059", + "version": "375f198", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-千风神殿-蒙德5个.json", + "type": "file", + "hash": "9893ed0190fb4c11977a73783bdcc6ba72e3a75d", + "version": "9893ed0", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-塞西莉亚苗圃-蒙德4个.json", + "type": "file", + "hash": "47ab61834567ce59d1ee85615d8ad5c16ed565f6", + "version": "47ab618", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-奔狼岭(一)-蒙德3个.json", + "type": "file", + "hash": "4bbf9afc122627a5478a8b5d98e8755fdeccca66", + "version": "4bbf9af", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-奔狼岭(二)-蒙德4个.json", + "type": "file", + "hash": "4d7fd9d53ed1aa9119180da6c9ae1f21ea8d4748", + "version": "4d7fd9d", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-晨曦酒庄-蒙德4个.json", + "type": "file", + "hash": "8b041e749219ddcf804785fffc87240e94a58dc9", + "version": "8b041e7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-风起地-蒙德6个.json", + "type": "file", + "hash": "382044a4a973ac79acdc58b68dc96466b86460f7", + "version": "382044a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + } + ] + }, + { + "name": "星螺", + "type": "directory", + "children": [ + { + "name": "星螺12.json", + "type": "file", + "hash": "6494e744aa57da9f9fd58d8c80628db500502acc", + "version": "6494e74", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + }, + { + "name": "星螺14.json", + "type": "file", + "hash": "c84d4cc54f65a2cb4d267b5301f8e1d40e3adcb6", + "version": "c84d4cc", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + }, + { + "name": "星螺17.json", + "type": "file", + "hash": "f1055a18d145eb4349326919432ca9a53f5ebc25", + "version": "f1055a1", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + }, + { + "name": "星螺4.json", + "type": "file", + "hash": "2e3a338deeb95c753c37154e21e73787253c3f20", + "version": "2e3a338", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + }, + { + "name": "星螺9.json", + "type": "file", + "hash": "f1a5d11344009e4ae4a06ca93c6ab4cfd27d9558", + "version": "f1a5d11", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + } + ] + }, + { + "name": "须弥蔷薇", + "type": "directory", + "children": [ + { + "name": "须弥蔷薇1-降诸魔山-须弥5个.json", + "type": "file", + "hash": "49045b7664ad3a65846d14bf8ad9d4e7c2057e37", + "version": "49045b7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇", + "纳西妲" + ] + }, + { + "name": "须弥蔷薇2-化城郭(一)-须弥8个.json", + "type": "file", + "hash": "d8e10ed8f3828658e38c1baff35d7456741c1c39", + "version": "d8e10ed", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇", + "纳西妲" + ] + }, + { + "name": "须弥蔷薇3-化城郭(二)-须弥8个.json", + "type": "file", + "hash": "861c72899e297fc30326ebdc48cd127dee067232", + "version": "861c728", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇", + "纳西妲" + ] + }, + { + "name": "须弥蔷薇4-天臂池-须弥9个.json", + "type": "file", + "hash": "a8a1c99fc30c79a02af98e2c09c1fb164362eca2", + "version": "a8a1c99", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇", + "纳西妲" + ] + }, + { + "name": "须弥蔷薇5-觉王之殿-须弥6个.json", + "type": "file", + "hash": "9121d4b61393983373adeaa3e5bb83059b668bf8", + "version": "9121d4b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇", + "纳西妲" + ] + }, + { + "name": "须弥蔷薇6-谒颂幽境-须弥8个.json", + "type": "file", + "hash": "85a18b0eb95b173d1d4628ae5bbc5f80fb5ebc5e", + "version": "85a18b0", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇", + "纳西妲" + ] + }, + { + "name": "须弥蔷薇7-奥摩斯港-须弥9个.json", + "type": "file", + "hash": "87882ea7b2ffc6142eca0a4437e9d45e74df8a6e", + "version": "87882ea", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇", + "纳西妲" + ] + } + ] + }, + { + "name": "血斛", + "type": "directory", + "children": [ + { + "name": "血斛-九条阵屋-10个 .json", + "type": "file", + "hash": "26b3baeb18396cfef1baddfcf9a241493f954aa8", + "version": "26b3bae", + "author": "起个名字好难", + "description": "", + "tags": [ + "血斛" + ] + }, + { + "name": "血斛-九条阵屋-14个(末尾纳西妲4个).json", + "type": "file", + "hash": "4c0095c5abc7b84235a623809ca7e3730be2a2cb", + "version": "4c0095c", + "author": "起个名字好难", + "description": "", + "tags": [ + "血斛", + "纳西妲" + ] + }, + { + "name": "血斛-名椎滩.json", + "type": "file", + "hash": "9896227925ca0d5444d0f608754798b89f251ab7", + "version": "9896227", + "author": "透明人", + "description": "", + "tags": [ + "血斛" + ] + }, + { + "name": "血斛-名椎滩2.json", + "type": "file", + "hash": "f16bc97a3de2cd566bf013e097bd0cd07cbbdd25", + "version": "f16bc97", + "author": "透明人", + "description": "", + "tags": [ + "血斛" + ] + }, + { + "name": "血斛-名椎滩3.json", + "type": "file", + "hash": "67afcbbfc640ee761f333f4cc041322901c35870", + "version": "67afcbb", + "author": "透明人", + "description": "", + "tags": [ + "血斛" + ] + }, + { + "name": "血斛-蛇神之首-12个.json", + "type": "file", + "hash": "4a84b1be7f09bbeb80e53d0c1041f82c2210cfc8", + "version": "4a84b1b", + "author": "起个名字好难", + "description": "", + "tags": [ + "血斛" + ] + } + ] + }, + { + "name": "幽灯蕈", + "type": "directory", + "children": [ + { + "name": "幽灯蕈1-鹤观大门-8个.json", + "type": "file", + "hash": "f6a95d98a0b81309d884e745d67b05307fc242a1", + "version": "f6a95d9", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈2-茂之祭场-6个.json", + "type": "file", + "hash": "3cc500bf8a361139cb1335cf9ae1448deaaf8744", + "version": "3cc500b", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈3-鹤观下-12个.json", + "type": "file", + "hash": "93b11dc8789526a35863ff19d23fd57219ae023e", + "version": "93b11dc", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈4-笈名海滨-11个.json", + "type": "file", + "hash": "390c2c3cf02a70617b58761e79d7adcbee596c69", + "version": "390c2c3", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈5-知比山外-9个.json", + "type": "file", + "hash": "89bf6dafd38190f19606cf0524c8c7179a39ca8f", + "version": "89bf6da", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈6-知比山内-4个.json", + "type": "file", + "hash": "ab79c75d6962204279b080b45d1b535e353b1566", + "version": "ab79c75", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + } + ] + }, + { + "name": "幽光星星", + "type": "directory", + "children": [ + { + "name": "幽光星星@jbcaaa", + "type": "directory", + "children": [ + { + "name": "幽光星星1.json", + "type": "file", + "hash": "420250dc219c79bd34cdfd2e04143c0173cfbca5", + "version": "420250d", + "author": "jbcaaa", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星2.json", + "type": "file", + "hash": "4b4347ac0ac1496c9bf43f1a151da893e1f58984", + "version": "4b4347a", + "author": "jbcaaa", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星3.json", + "type": "file", + "hash": "503518a4e5ec1adc8b7d9584397edec766a702fb", + "version": "503518a", + "author": "jbcaaa", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星4.json", + "type": "file", + "hash": "2632bf6773fd1ed4cc9023190d5e575cce3b5f78", + "version": "2632bf6", + "author": "jbcaaa", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星5.json", + "type": "file", + "hash": "82239264b44e78f823f0e256cce18bfd60030410", + "version": "8223926", + "author": "jbcaaa", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星6.json", + "type": "file", + "hash": "9c2b66a12b007c17a0f964e9c378f82194cedf3f", + "version": "9c2b66a", + "author": "jbcaaa", + "description": "", + "tags": [ + "幽光星星" + ] + } + ] + }, + { + "name": "幽光星星@柠檬茶叶", + "type": "directory", + "children": [ + { + "name": "幽光星星4.json", + "type": "file", + "hash": "c60bd5e36c893a00761879c5936b502fb3a30911", + "version": "c60bd5e", + "author": "柠檬茶叶", + "description": "幽光星星", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星5--.json", + "type": "file", + "hash": "d30275ba2734afbadf3aa38555146755b50fe352", + "version": "d30275b", + "author": "柠檬茶叶", + "description": "幽光星星", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星5-.json", + "type": "file", + "hash": "d7e30fa180404d7850f5c7b7badfc5d4a81ff5bc", + "version": "d7e30fa", + "author": "柠檬茶叶", + "description": "幽光星星", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星5.json", + "type": "file", + "hash": "16c22741f88ab173f37623182029a03895c36476", + "version": "16c2274", + "author": "柠檬茶叶", + "description": "幽光星星", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星6.json", + "type": "file", + "hash": "7fc8c1999ac223f9387cf44026591bfc34c7b951", + "version": "7fc8c19", + "author": "柠檬茶叶", + "description": "幽光星星", + "tags": [ + "幽光星星" + ] + } + ] + } + ] + }, + { + "name": "月莲", + "type": "directory", + "children": [ + { + "name": "月莲_卡扎莱宫_须弥_5个.json", + "type": "file", + "hash": "ca10fd7a7ded29f9ee2dd90786253d4ae72c2373", + "version": "ca10fd7", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_禅那园_须弥_4个.json", + "type": "file", + "hash": "0341155e99995e2a52c49f683ce14473c4ecf34c", + "version": "0341155", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_茸蕈窟_须弥_4个.json", + "type": "file", + "hash": "c6b8f40601881befa82342354d141e45e16240fd", + "version": "c6b8f40", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_觉王之殿右上_须弥_2个.json", + "type": "file", + "hash": "378b72a9ee01151feec63076a6be3483a4014960", + "version": "378b72a", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_护世森下_7个.json", + "type": "file", + "hash": "f52a223b0772e31e02c1cefcab2338385e6e7042", + "version": "f52a223", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_护世森左_4个.json", + "type": "file", + "hash": "9e1f037b2217170d795564d3315907137bc15ec4", + "version": "9e1f037", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_维摩庄_6个.json", + "type": "file", + "hash": "302bc3c14a03e6a3b8ef9cbbf95d543113357376", + "version": "302bc3c", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_维摩庄右_2个.json", + "type": "file", + "hash": "a6497ac5d15eb19186e0fa3ba20c68ccb620f3c6", + "version": "a6497ac", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_降魔山下_7个.json", + "type": "file", + "hash": "850eaaa180d7fc1c7091a3892dc2ee9ce8287bc1", + "version": "850eaaa", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_降魔山左下_6个.json", + "type": "file", + "hash": "14dc63413957109f0fc29321cbf58814a0d7c9ed", + "version": "14dc634", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + } + ] + }, + { + "name": "枣椰", + "type": "directory", + "children": [ + { + "name": "枣椰01-活力之家(死域)-须弥4个.json", + "type": "file", + "hash": "1487601b8c3b47a51b2173893e2d161df6a92993", + "version": "1487601", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "枣椰", + "纳西妲" + ] + }, + { + "name": "枣椰02-活力之家-须弥5个.json", + "type": "file", + "hash": "18538415ec27b845720712ae8709f1d2b3288aa7", + "version": "1853841", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "枣椰", + "纳西妲" + ] + }, + { + "name": "枣椰03-阿如村-须弥2个.json", + "type": "file", + "hash": "b6fafcc45dbf655b171229bfb295026efb5188ed", + "version": "b6fafcc", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "枣椰", + "纳西妲" + ] + }, + { + "name": "枣椰04-阿如村-须弥2个.json", + "type": "file", + "hash": "69aacc415c6cd88098de0748b56aa692c8e7bf89", + "version": "69aacc4", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "枣椰", + "纳西妲" + ] + }, + { + "name": "枣椰05-饱饮之丘-须弥5个.json", + "type": "file", + "hash": "e95e6beb37f612b8080a9d3e704a982e72922ab2", + "version": "e95e6be", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "枣椰", + "纳西妲" + ] + }, + { + "name": "枣椰06-丰饶绿洲-须弥8个.json", + "type": "file", + "hash": "fc6daaaa84b6cdb5176255cca3c026c597980e71", + "version": "fc6daaa", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "枣椰", + "纳西妲" + ] + } + ] }, { "name": "竹笋", @@ -6248,6 +10236,111 @@ } ] }, + { + "name": "灼灼彩菊", + "type": "directory", + "children": [ + { + "name": "灼灼彩菊1-帕克斯神庙左-7个.json", + "type": "file", + "hash": "0a6145741aa7d2d1ff60f252e8426e52bdc13e55", + "version": "0a61457", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊2-帕克斯神庙右-11个.json", + "type": "file", + "hash": "58bd301bd53e86625f080fb0781f1c366b6b0f45", + "version": "58bd301", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊3-圣火竞技场下-11个.json", + "type": "file", + "hash": "948b31e21aa88d1911c41562150ea5b2f7983de9", + "version": "948b31e", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊4-圣火竞技场上-12个.json", + "type": "file", + "hash": "77eee68720345631f7a53208a186b3dc54868559", + "version": "77eee68", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊41朵.json", + "type": "file", + "hash": "aec435153f4ad05b089fb0b37f328576469aadea", + "version": "aec4351", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊5-万火之瓯上-9个.json", + "type": "file", + "hash": "785bcbf519ca96789eecd8041528a5d8887476f2", + "version": "785bcbf", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊6-柴薪之丘下-5个.json", + "type": "file", + "hash": "a448305f28766e42135ef07bb5b2da916cfcc2b0", + "version": "a448305", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊7-柴薪之丘右-4个.json", + "type": "file", + "hash": "f44fb2f0ad996bfde5d19e18ef54039109f379e4", + "version": "f44fb2f", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊8-柴薪之丘上-13个.json", + "type": "file", + "hash": "4713e20a87932be4e670a6b0f025fbf72603c94b", + "version": "4713e20", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + } + ] + }, { "name": "紫晶块", "type": "directory", @@ -6497,3368 +10590,1162 @@ ] }, { - "name": "绝云椒椒", + "name": "子探测单元", "type": "directory", "children": [ { - "name": "绝云椒椒@jbcaaa", - "type": "directory", - "children": [ - { - "name": "绝云椒椒_地中之盐上方.json", - "type": "file", - "hash": "655bc26eabcd9595d6290e5856ab03928e946d45", - "version": "655bc26", - "author": "jbcaaa", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒_绝云间上方.json", - "type": "file", - "hash": "690fd9084d1bf8d6bd4c5b416e4e8f5cb46b7be0", - "version": "690fd90", - "author": "jbcaaa", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒_轻策庄.json", - "type": "file", - "hash": "3f718193a5978388bf04c7e1bcfe6d3d9f9e84af", - "version": "3f71819", - "author": "jbcaaa", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒_轻策庄左侧.json", - "type": "file", - "hash": "02013feb97fcaa045df97b54cc7b02a707c3c977", - "version": "02013fe", - "author": "jbcaaa", - "description": "", - "tags": [ - "绝云椒椒" - ] - } + "name": "子探测单元-1(共4个).json", + "type": "file", + "hash": "df47fd583e3f5fbe6a9f4d09e99ae518f6c29cab", + "version": "df47fd5", + "author": "宇寒", + "description": "", + "tags": [ + "子探测单元" ] }, { - "name": "绝云椒椒@不瘦五十斤不改名", - "type": "directory", - "children": [ - { - "name": "绝云椒椒-奥藏山(一)-璃月1×3个.json", - "type": "file", - "hash": "c1ba4a6b96964ecb08a19556011db4d6073770fc", - "version": "c1ba4a6", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒-奥藏山(二)-璃月6×3个.json", - "type": "file", - "hash": "5e50bee3df069d929a690a00197f0db101e9f332", - "version": "5e50bee", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒-宗室本-璃月4×3个.json", - "type": "file", - "hash": "6121853f58efbfd2da2b460f4d837be7cb6232b2", - "version": "6121853", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒-苍白本-璃月7×3个.json", - "type": "file", - "hash": "42fd102f24ab486920f40b7116b49054d973a0f7", - "version": "42fd102", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒-轻策庄(一)-璃月1×3个.json", - "type": "file", - "hash": "6ffb99454fb1f65f19aa4e966a1f2635fdbafc72", - "version": "6ffb994", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒-轻策庄(三)-璃月1×3个.json", - "type": "file", - "hash": "910d7711ff91a31e20297c8b0baca05b221b2232", - "version": "910d771", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "绝云椒椒" - ] - }, - { - "name": "绝云椒椒-轻策庄(二)-璃月7×3个.json", - "type": "file", - "hash": "15598e7a2e3fe300a3340a86dc88ce5c1800e151", - "version": "15598e7", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "绝云椒椒" - ] - } + "name": "子探测单元-2(共9个).json", + "type": "file", + "hash": "da8af5c2cd7872a07550cb1da96609cef4af3d1f", + "version": "da8af5c", + "author": "宇寒", + "description": "修复历史:1.1:修复了飞行不下落的问题;1.2:修改了路径方案;1.3:避免了部分卡死;1.3.1:修复了已知问题", + "tags": [ + "子探测单元" + ] + }, + { + "name": "子探测单元-3(共6个).json", + "type": "file", + "hash": "cd0ca2e6fd7f64a586fa2ff45dfaf32e26d9fbc3", + "version": "cd0ca2e", + "author": "宇寒", + "description": "", + "tags": [ + "子探测单元" + ] + }, + { + "name": "子探测单元-4(共6个).json", + "type": "file", + "hash": "1fca9236acda03f95739aeebc6716328bf3c0cf1", + "version": "1fca923", + "author": "宇寒", + "description": "略", + "tags": [ + "子探测单元" + ] + }, + { + "name": "子探测单元-5(共3个).json", + "type": "file", + "hash": "0d5fe721e3e3c9b0975ddd64d962e1c2f3f50354", + "version": "0d5fe72", + "author": "宇寒", + "description": "略", + "tags": [ + "子探测单元" ] } ] }, { - "name": "绯樱绣球", + "name": "刀镡", "type": "directory", "children": [ { - "name": "01绯樱绣球-白狐之野-5个.json", + "name": "01绀田村-刀镡.json", "type": "file", - "hash": "0c7ed9d4c25633a9a416e5f2f74e96f2ce3097ae", - "version": "0c7ed9d", - "author": "起个名字好难", + "hash": "0dae6ccefccc41467445efba3a3a9e60e59781c2", + "version": "0dae6cc", + "author": "XS", "description": "", "tags": [ - "绯樱绣球", - "雷元素力收集" + "刀镡" ] }, { - "name": "02绯樱绣球-绀田村-3个.json", + "name": "02海祇岛右-刀镡.json", "type": "file", - "hash": "9146083c93314d62486c3a5f028c8ed01119607c", - "version": "9146083", - "author": "起个名字好难", + "hash": "babd10fd6107454a1991b586e0e14533ab3e05fe", + "version": "babd10f", + "author": "XS", "description": "", "tags": [ - "绯樱绣球", - "雷元素力收集" + "刀镡" ] }, { - "name": "03绯樱绣球-荒海-7个.json", + "name": "03海祇岛左上-刀镡.json", "type": "file", - "hash": "5c5a98e723695cbf60206a25c83390ceb8391ba0", - "version": "5c5a98e", - "author": "起个名字好难", + "hash": "35f336b245fe79bf21a17fd331d758e2413af8ab", + "version": "35f336b", + "author": "XS", "description": "", "tags": [ - "绯樱绣球", - "雷元素力收集" + "刀镡" ] }, { - "name": "04绯樱绣球-稻妻城-4个(途经一个半空的不采).json", + "name": "04神里屋敷-刀镡.json", "type": "file", - "hash": "18aab98468dd74bcfb093edf64f45ecb64eb2315", - "version": "18aab98", - "author": "起个名字好难", + "hash": "b7fd725b2a85780480e2978afc6380c876b83a43", + "version": "b7fd725", + "author": "XS", "description": "", "tags": [ - "绯樱绣球", - "雷元素力收集" + "刀镡" ] }, { - "name": "05绯樱绣球-鸣神大社-3个.json", + "name": "05越石村-刀镡.json", "type": "file", - "hash": "1c6fabb739b35ea278cb0315472d3237ec0de263", - "version": "1c6fabb", - "author": "起个名字好难", + "hash": "48b8921fa27d1c9dca280316558566c9a3e1863b", + "version": "48b8921", + "author": "XS", "description": "", "tags": [ - "绯樱绣球", - "雷元素力收集" + "刀镡" ] }, { - "name": "06绯樱绣球-镇守之森-4个.json", + "name": "刃连岛-刀镡.json", "type": "file", - "hash": "5035afae058f7af2cd4b1c9698d62eb9214df87f", - "version": "5035afa", - "author": "起个名字好难", + "hash": "17149c7623d87f4cb6ad231c619ace2eb754b0df", + "version": "17149c7", + "author": "XS", "description": "", "tags": [ - "绯樱绣球", - "雷元素力收集" + "刀镡" + ] + }, + { + "name": "緋木村-刀镡.json", + "type": "file", + "hash": "76af3db83a750efc583f4530332b408c7d3f0002", + "version": "76af3db", + "author": "san", + "description": "緋木村刀镡", + "tags": [ + "刀镡" + ] + }, + { + "name": "緋木村下-刀镡.json", + "type": "file", + "hash": "ba43d0a906207f05a428a718dfdf4a815e2dd375", + "version": "ba43d0a", + "author": "san", + "description": "緋木村刀镡", + "tags": [ + "刀镡" + ] + }, + { + "name": "花然之庭-刀镡.json", + "type": "file", + "hash": "846465971fd796b6f26f7856908bf9b2f397f550", + "version": "8464659", + "author": "san", + "description": "刀镡", + "tags": [ + "刀镡" ] } ] }, { - "name": "肉龙掌", + "name": "发条机关", "type": "directory", "children": [ { - "name": "肉龙掌1-坚岩隘谷上-2个.json", + "name": "发条机关01.json", "type": "file", - "hash": "229492d23cddaea6e6bc254f9768c7b7dae562f2", - "version": "229492d", - "author": "黎歌", - "description": "", - "tags": [ - "肉龙掌" - ] - }, - { - "name": "肉龙掌2-坚岩隘谷上-18个.json", - "type": "file", - "hash": "8e796f725fe870ade1beaad7d3385da7f947166b", - "version": "8e796f7", - "author": "黎歌", - "description": "", - "tags": [ - "肉龙掌" - ] - }, - { - "name": "肉龙掌3-坚岩隘谷右-14个.json", - "type": "file", - "hash": "050c8bd3396d97be8749d16d74c7615a6551f06a", - "version": "050c8bd", - "author": "黎歌", - "description": "", - "tags": [ - "肉龙掌" - ] - }, - { - "name": "肉龙掌4-硫晶支脉左-2个.json", - "type": "file", - "hash": "56f3559b550c9136dc57ac240bded33eeec46faa", - "version": "56f3559", - "author": "黎歌", - "description": "", - "tags": [ - "肉龙掌" - ] - }, - { - "name": "肉龙掌5-硫晶支脉左-5个.json", - "type": "file", - "hash": "6003693c3d35160fb9eebd4865b4667ed7036c68", - "version": "6003693", - "author": "黎歌", - "description": "", - "tags": [ - "肉龙掌" - ] - }, - { - "name": "肉龙掌6-回血.json", - "type": "file", - "hash": "7eadfd0ced6802c764365381af98a0a2e53f02d0", - "version": "7eadfd0", - "author": "黎歌", - "description": "", - "tags": [ - "肉龙掌" - ] - }, - { - "name": "肉龙掌7-隆崛坡-13个.json", - "type": "file", - "hash": "5bddab762717370f12b5bd7d5904351668904c7f", - "version": "5bddab7", - "author": "黎歌", - "description": "", - "tags": [ - "肉龙掌" - ] - } - ] - }, - { - "name": "胡萝卜", - "type": "directory", - "children": [ - { - "name": "胡萝卜-奔狼岭(上)-蒙德8个.json", - "type": "file", - "hash": "5fbf44ae58569da003a1f54cead26cd8bc9c48d0", - "version": "5fbf44a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-奔狼岭(右)-蒙德4个.json", - "type": "file", - "hash": "905beaa647dbd4a1f7bd404929c257a553f858bf", - "version": "905beaa", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-归离原-璃月4个.json", - "type": "file", - "hash": "37572836ec1951be4611b5abfdb752d57dee549e", - "version": "3757283", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-无相火-稻妻2个.json", - "type": "file", - "hash": "19a6d6b2e68791a2c7ec8c779b3caa3203f355bc", - "version": "19a6d6b", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-明冠峡-蒙德4个.json", - "type": "file", - "hash": "8c981ad0f9fb3aa179cc6975330ffc7874c31c5b", - "version": "8c981ad", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-晨曦酒庄-蒙德12个.json", - "type": "file", - "hash": "e56a79c418a8234aa1ce7efa5411efa5edb960a9", - "version": "e56a79c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-望泷村-稻妻5个.json", - "type": "file", - "hash": "917055525fcc56766fb030d99e2043b80c4d4894", - "version": "9170555", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-望风山地-蒙德-4个.json", - "type": "file", - "hash": "58cd0c8cc06e156e7b155fe17f998a21c7e2a47c", - "version": "58cd0c8", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-枫丹廷(上)-枫丹3个.json", - "type": "file", - "hash": "d831be365c2b133a3dd7b1fbd62fc828a673e53a", - "version": "d831be3", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-清泉镇-蒙德-8个.json", - "type": "file", - "hash": "d3ee0e9784ebd6f7655043f837b47e0283b7b386", - "version": "d3ee0e9", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-绯木村-稻妻3个.json", - "type": "file", - "hash": "2ca4d6713f74361f31bb9241b1ab01139465eaad", - "version": "2ca4d67", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-蛇骨矿洞-稻妻3个.json", - "type": "file", - "hash": "4aa50fea0ef05f1ae44eb4060d12dfaad5cb55af", - "version": "4aa50fe", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-越石村-稻妻4个.json", - "type": "file", - "hash": "4be5c377ed82397b5402554028c763f1b231b498", - "version": "4be5c37", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-风龙废墟(上)-蒙德-7个.json", - "type": "file", - "hash": "c0c5f377d8165f66cc075e30138426aa7bbffc13", - "version": "c0c5f37", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - }, - { - "name": "胡萝卜-风龙废墟(下)-蒙德-4个.json", - "type": "file", - "hash": "012bb96eb4f2e907391ac40c15ad0c7db4e758e4", - "version": "012bb96", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "胡萝卜" - ] - } - ] - }, - { - "name": "苦种", - "type": "directory", - "children": [ - { - "name": "苦种-回声之子-纳塔10个.json", - "type": "file", - "hash": "89b14478dd30e35cf0d3caadd46d5b1bb8dae548", - "version": "89b1447", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "苦种" - ] - }, - { - "name": "苦种-硫晶支脉(一)-纳塔2个.json", - "type": "file", - "hash": "f340e28bd1f51805e9905ba4f1be9f2f81b2689e", - "version": "f340e28", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "苦种" - ] - }, - { - "name": "苦种-硫晶支脉(三)-纳塔8个.json", - "type": "file", - "hash": "798267eeec69c26bd4b9e4c477837db3751eed88", - "version": "798267e", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "苦种" - ] - }, - { - "name": "苦种-硫晶支脉(二)-纳塔5个.json", - "type": "file", - "hash": "9c12775b4b0ada0414aa55d01639459aeebbca85", - "version": "9c12775", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "苦种" - ] - }, - { - "name": "苦种-隆崛坡-纳塔3个.json", - "type": "file", - "hash": "6ac9341c578417199e769664a29e12f456053033", - "version": "6ac9341", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "苦种" - ] - } - ] - }, - { - "name": "茉洁草", - "type": "directory", - "children": [ - { - "name": "茉洁草01-猎人本-枫丹3个.json", - "type": "file", - "hash": "ddbaab7cfb4361bd2f764fbe092a1e9e6e22479a", - "version": "ddbaab7", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草02-猎人本-枫丹5个.json", - "type": "file", - "hash": "9f0a8a8b021ebc64727f915c89f62677007a00de", - "version": "9f0a8a8", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草03-厄里那斯左下-枫丹12个.json", - "type": "file", - "hash": "89816a921cda372f5d7ebfb0058d58e81edfdd1f", - "version": "89816a9", - "author": "曦", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草04-厄里那斯左下-枫丹4个.json", - "type": "file", - "hash": "b7cbf74fc899c34078b52f47551971fea9e46e8e", - "version": "b7cbf74", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草05-厄里那斯左下-枫丹9个.json", - "type": "file", - "hash": "f30b81b604c308248bfb92b7091a0f3909819cd9", - "version": "f30b81b", - "author": "曦", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草06-厄里那斯右下-枫丹6个.json", - "type": "file", - "hash": "b738720be29ea223b31a62df8b975d345829818a", - "version": "b738720", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草07-厄里那斯右下-枫丹4个.json", - "type": "file", - "hash": "3e40c315bf3afbe1547c54e07eeb9f198c97673d", - "version": "3e40c31", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草08-厄里那斯神像-枫丹13个.json", - "type": "file", - "hash": "ca98bc4c562a7d99b1fc254fcf411905b3e141e2", - "version": "ca98bc4", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草09-厄里那斯左-枫丹5个.json", - "type": "file", - "hash": "755650155ce426b762728e28aacc65695cbb5681", - "version": "7556501", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草10-厄里那斯左-枫丹4个.json", - "type": "file", - "hash": "d76c28578c7e5784e2e049e11990385be340c5e3", - "version": "d76c285", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草11-枫丹廷左-枫丹5个.json", - "type": "file", - "hash": "e28038cdb49b59106e39b4bebefb4b0d0132f47e", - "version": "e28038c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草12-枫丹廷左-枫丹4个.json", - "type": "file", - "hash": "c0d485a21e629ce960ad48897e671ea01596be82", - "version": "c0d485a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草13-枫丹廷左上-枫丹4个.json", - "type": "file", - "hash": "75d33caf4bd962653f6d2b566216e24f95f7144c", - "version": "75d33ca", - "author": "曦", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草14-枫丹廷左上-枫丹4个.json", - "type": "file", - "hash": "502df9de8eacb5395198a0f0610679fb8db0bd8f", - "version": "502df9d", - "author": "曦", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草15-枫丹廷左上-枫丹6个.json", - "type": "file", - "hash": "c758e7f3530eb8479d772fb15e5f5bce1dd61e33", - "version": "c758e7f", - "author": "曦", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草16-枫丹廷左上-枫丹8个.json", - "type": "file", - "hash": "59aad97b586b9a19d584c06779b20463808f65f8", - "version": "59aad97", - "author": "曦", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草17-枫丹廷左上-枫丹4个.json", - "type": "file", - "hash": "b8f45c2037c278ce35335d053ee0a76b48d7939a", - "version": "b8f45c2", - "author": "曦", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草18-枫丹廷上-枫丹5个.json", - "type": "file", - "hash": "662b544f79cc0e1f282d5dc47b5061f6b7fff86a", - "version": "662b544", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草19-枫丹科学院-枫丹4个.json", - "type": "file", - "hash": "c0d180d30165319eebf9a0f868d6b87d769ff8f9", - "version": "c0d180d", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草20-枫丹科学院-枫丹5个.json", - "type": "file", - "hash": "e65a2b925e761248785f7d3f4e19146572ffa358", - "version": "e65a2b9", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草21-枫丹科学院-枫丹5个.json", - "type": "file", - "hash": "3643ffcc0efb5228b47817d4a3c2de1c2f80deba", - "version": "3643ffc", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草22-中央实验室遗址-枫丹7个.json", - "type": "file", - "hash": "39c501215cfe17d1374067f70b1a6b9f1d4115f5", - "version": "39c5012", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草23-中央实验室遗址西-枫丹3个.json", - "type": "file", - "hash": "cf2586c85ad026e53ae6351fae6fbf27d2d5c4df", - "version": "cf2586c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草24-中央实验室遗址西-枫丹6个.json", - "type": "file", - "hash": "4bfcdd280d1d7913e07e8f004fb5cadae9391a6c", - "version": "4bfcdd2", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草25-中央实验室遗址西-枫丹4个.json", - "type": "file", - "hash": "6d366aaa0e18939fba8d6ace7d32a99b579164b5", - "version": "6d366aa", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草26-优兰尼娅湖-枫丹3个.json", - "type": "file", - "hash": "c1cbc9447a6ff9ea8f18a5093db7b38b57fd8e11", - "version": "c1cbc94", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草27-茉洁站-枫丹6个.json", - "type": "file", - "hash": "094ff501dcd14b1afe4e9bc20ec4d61ecd56e910", - "version": "094ff50", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草28-湖中垂柳-枫丹12个.json", - "type": "file", - "hash": "77b3ff0b65abe773379ee2a0577e6ce84df3a39d", - "version": "77b3ff0", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草29-湖中垂柳-枫丹3个.json", - "type": "file", - "hash": "5301e1a0c4eb750a1ba0bb51c795d02505750118", - "version": "5301e1a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草30-湖中垂柳-枫丹3个.json", - "type": "file", - "hash": "ffb1c57fe08d5d7155708d34335d2bcd85d7c2e7", - "version": "ffb1c57", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草31-湖中垂柳-枫丹4个.json", - "type": "file", - "hash": "a972a05680a083ff630e1df3326be6a8010d391d", - "version": "a972a05", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草32-幽林雾道-枫丹9个.json", - "type": "file", - "hash": "a4f369d125ecd69492ed77d35e7847f394c57e8d", - "version": "a4f369d", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草33-幽林雾道-枫丹16个.json", - "type": "file", - "hash": "16eadfaaee178245264a4dd4df13efec3039ca80", - "version": "16eadfa", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草34-幽林雾道-枫丹3个.json", - "type": "file", - "hash": "4ac41caea163a2ecaef8fee90b8a541b25f7563f", - "version": "4ac41ca", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草35-欧庇克莱歌剧院-枫丹2个.json", - "type": "file", - "hash": "2ffa090b9c371e1e33c777116c949f89e0849000", - "version": "2ffa090", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草36-欧庇克莱歌剧院-枫丹15个.json", - "type": "file", - "hash": "f3739cdda848f73654914abd5db0be9558938638", - "version": "f3739cd", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草37-莫尔泰区-枫丹7个.json", - "type": "file", - "hash": "fe5783c66615881502a41acbfdba6989332f3211", - "version": "fe5783c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草38-卡布狄斯堡遗迹-枫丹11个.json", - "type": "file", - "hash": "a0cd70a7e14a70b9b009440611aa1e773575a138", - "version": "a0cd70a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草39-秋分山西侧-枫丹2个.json", - "type": "file", - "hash": "d8fa0a4756682df5d12aa901336bfb701107a730", - "version": "d8fa0a4", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - }, - { - "name": "茉洁草40-秋分山西侧-枫丹4个.json", - "type": "file", - "hash": "58c0a7de7ef301bedc43bef23399a9ae88347c18", - "version": "58c0a7d", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "茉洁草" - ] - } - ] - }, - { - "name": "莲蓬", - "type": "directory", - "children": [ - { - "name": "莲蓬1-狄花州-璃月2个.json", - "type": "file", - "hash": "abbf3e5e5485a6135b999289b158e9b8d7389c94", - "version": "abbf3e5", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - }, - { - "name": "莲蓬2-宗室本-璃月4个.json", - "type": "file", - "hash": "f1dfe053f483f4675e42c7b2a07486ee989f64c8", - "version": "f1dfe05", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - }, - { - "name": "莲蓬3-若陀周本-璃月3个.json", - "type": "file", - "hash": "cbdd43e1706db6ddf934c432331367bba535b320", - "version": "cbdd43e", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - }, - { - "name": "莲蓬4-归离原(一)-璃月3个.json", - "type": "file", - "hash": "778a56242c4225971fe4ea38453ef0ee9596bcac", - "version": "778a562", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - }, - { - "name": "莲蓬5-归离原(二)-璃月2个.json", - "type": "file", - "hash": "dd9bafbd9873418247e1bd3c9cd2070c9c8f8e32", - "version": "dd9bafb", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - }, - { - "name": "莲蓬6-归离原(三)-璃月2个.json", - "type": "file", - "hash": "19ada4eae8d9dd214358ef59f0af5e3b5684a2f8", - "version": "19ada4e", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - }, - { - "name": "莲蓬7-渌华池-璃月12个.json", - "type": "file", - "hash": "64cd881ba12cc6cf1022acb795dbf0fbfda5137d", - "version": "64cd881", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - }, - { - "name": "莲蓬8-遁玉陵-璃月7个.json", - "type": "file", - "hash": "44eda3163c164131b60dca0a4e3a3073a8de1e37", - "version": "44eda31", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - }, - { - "name": "莲蓬9-天衡山-璃月3个.json", - "type": "file", - "hash": "17753893ee5d5a52d934589a7ae59fa7e2cf1f27", - "version": "1775389", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "莲蓬", - "纳西妲" - ] - } - ] - }, - { - "name": "萃凝晶", - "type": "directory", - "children": [ - { - "name": "中央实验室基地东.json", - "type": "file", - "hash": "a57263b7df8f0d13f4210e8a1475f5dc838403c0", - "version": "a57263b", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "中央实验室基地东北.json", - "type": "file", - "hash": "c4fa6d542203cd39520a46fab78db402020812a3", - "version": "c4fa6d5", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "中央实验室基地东南.json", - "type": "file", - "hash": "8e0d90143792d5334fbe636c391f54aca2027f47", - "version": "8e0d901", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "仓晶区南.json", - "type": "file", - "hash": "dbaf84b77817ea401a581592a920362128002d82", - "version": "dbaf84b", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "仓晶区南2.json", - "type": "file", - "hash": "1cff7ee4dfe1f64792e312ea8e2f9215ca58e102", - "version": "1cff7ee", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "仓晶区南3.json", - "type": "file", - "hash": "d5d82200284a49c65d214425452b0403f2b8397c", - "version": "d5d8220", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "优兰尼娅湖北.json", - "type": "file", - "hash": "ec4735bde7b87efbe2b0e8e0a5c753b57c2a60ba", - "version": "ec4735b", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "卡布狄斯堡1.json", - "type": "file", - "hash": "60448cd4c1c4fd44e3beaef28f04336a2ba5b587", - "version": "60448cd", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "幽林雾道北.json", - "type": "file", - "hash": "4264865c4e3b514edaca98e7af3aed8b3b7c5762", - "version": "4264865", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "新枫丹科学院东北.json", - "type": "file", - "hash": "304b3468ca1704a01ba7ca1d5db7bf0c8484cd28", - "version": "304b346", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "新枫丹科学院东南.json", - "type": "file", - "hash": "2922df137b5a2aa119a80d010583c202ddaa67c0", - "version": "2922df1", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "新枫丹科学院西北.json", - "type": "file", - "hash": "f770840e142cc4aa7f0f12545aafbeaf343fd00b", - "version": "f770840", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "枫丹厅西北.json", - "type": "file", - "hash": "d3926b78705840e6c32e1f3ef64b6a8e528afc45", - "version": "d3926b7", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "枫丹厅西北2.json", - "type": "file", - "hash": "7707a99ac6e5b61aed8d1b9f4a9ee7c5a265e542", - "version": "7707a99", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "枫丹厅西北下.json", - "type": "file", - "hash": "fd55c670c9c653b4ba3fb8124db5ed9dce93d38d", - "version": "fd55c67", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "猎人本南.json", - "type": "file", - "hash": "2359dca6e8b6bd3e1472dac422d8dd19a31c7397", - "version": "2359dca", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "秋分山西侧北.json", - "type": "file", - "hash": "593a76ad7a2b9216e45adfbaf956be9242b50763", - "version": "593a76a", - "author": "cy", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔万火之欧01.json", - "type": "file", - "hash": "1ac19d0821d35d189f577679d4a679d81ec73e55", - "version": "1ac19d0", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔万火之欧02.json", - "type": "file", - "hash": "4cd032f15b29ce34e81bc53ee71c0d5280f82b48", - "version": "4cd032f", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔万火之欧03 (1).json", - "type": "file", - "hash": "8bd7d99c5713d8578ba866999982128670dab558", - "version": "8bd7d99", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔坚岩缢谷01.json", - "type": "file", - "hash": "5419f3a6feb68ac79311e0d2e41f0805440820d4", - "version": "5419f3a", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔坚岩缢谷02.json", - "type": "file", - "hash": "3f964bb9d1252caeee57bc00d2751702c0950158", - "version": "3f964bb", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔坚岩缢谷03.json", - "type": "file", - "hash": "7ff989eda0df8bb64245f88a55e01e8e10a0d5d5", - "version": "7ff989e", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔坚岩缢谷04.json", - "type": "file", - "hash": "0bae4378612524bf226abb4a78428413620328e2", - "version": "0bae437", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔坚岩缢谷七天神像 (1).json", - "type": "file", - "hash": "2ccccf858a25418dcd9523a416b96396e6656372", - "version": "2ccccf8", - "author": "", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔坚岩缢谷七天神像 2 (1).json", - "type": "file", - "hash": "2a6553ba9d191896ea2f14150454ee950239faef", - "version": "2a6553b", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔奥奇卡纳塔下01.json", - "type": "file", - "hash": "9849c6f0eb859f6e5f1b17bdb027ed14e28f9a45", - "version": "9849c6f", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔奥奇卡纳塔右边小岛01.json", - "type": "file", - "hash": "011510d41215fb1fb34de22f4e0e49719a695d8d", - "version": "011510d", - "author": "mfkvfhdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔彩石顶01.json", - "type": "file", - "hash": "1da30fa8098e6c400137f5464e59876eb46139a0", - "version": "1da30fa", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔柴薪之丘01.json", - "type": "file", - "hash": "a71c29bcdefea22b0cdef3189d5eb91bfc6b4979", - "version": "a71c29b", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔涌流地01 (1).json", - "type": "file", - "hash": "462e5f6ff3ff3523c9037cf1d1a03efc1d8677eb", - "version": "462e5f6", - "author": "", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔深渊古瞭望所01.json", - "type": "file", - "hash": "8b2e87a622799c78b24af63a00e2de1b6c6170c3", - "version": "8b2e87a", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔深渊古瞭望所02.json", - "type": "file", - "hash": "25e59cd5f4ce17623d504de704862617edfbdfeb", - "version": "25e59cd", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔溶水域01 (1).json", - "type": "file", - "hash": "3d679b76245368b9330e5f116d84cc86db38b011", - "version": "3d679b7", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔溶水域02.json", - "type": "file", - "hash": "33e0f7e94f46d7ccde17d858084038ec5b8a5c83", - "version": "33e0f7e", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔烟迷主.json", - "type": "file", - "hash": "03c6543e0204677f044776b09a8a372693b69a36", - "version": "03c6543", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔翘枝崖 (1).json", - "type": "file", - "hash": "ba75b44288832e47f0ffbb48369ab055fd6c32c1", - "version": "ba75b44", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔花羽会.json", - "type": "file", - "hash": "90df7c0d51af8ee4a23f437b03da1c876c3a624c", - "version": "90df7c0", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔花羽会003.json", - "type": "file", - "hash": "d08c862cdc639a1e2cf682643b7597de75d70a01", - "version": "d08c862", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔花羽会004.json", - "type": "file", - "hash": "ccdccd83a08a64ca4657a3bbcb22dd8beb832368", - "version": "ccdccd8", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔花羽会02 (1).json", - "type": "file", - "hash": "8f72c3cce9c5dfe0ddac90818efca1cffd8c9790", - "version": "8f72c3c", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔蕴火的废墟.json", - "type": "file", - "hash": "6f74585cc76d80185c26fc66355b149b6762d46b", - "version": "6f74585", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔虹灵净土.json", - "type": "file", - "hash": "ec1c1fa2a23afe5b5d79f5efb17b71e91331b459", - "version": "ec1c1fa", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔踞石山01.json", - "type": "file", - "hash": "7ad24dff4b417edd8f32dd3434ffa6b5db4c1661", - "version": "7ad24df", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔踞石山02.json", - "type": "file", - "hash": "41ea4c6290ac878d4c8db877031baa41ace57f74", - "version": "41ea4c6", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔踞石山03 (1).json", - "type": "file", - "hash": "390c3887cd6a695086d16f1c7e8a6431628d571a", - "version": "390c388", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔镜壁山.json", - "type": "file", - "hash": "1f6e4e321c512f3e70d091fb469be7df341f59b4", - "version": "1f6e4e3", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔镜壁山七天神像 (1).json", - "type": "file", - "hash": "035ee41d69f9901317a5bec3dd39abfc2e8fb825", - "version": "035ee41", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - }, - { - "name": "纳塔镜壁山七天神像02 (1).json", - "type": "file", - "hash": "da21b1fcbf31a6aa45bc144d0a13b61b873f35c0", - "version": "da21b1f", - "author": "mfkvfhpdx", - "description": "", - "tags": [ - "萃凝晶" - ] - } - ] - }, - { - "name": "落落莓", - "type": "directory", - "children": [ - { - "name": "望风山地1x24.json", - "type": "file", - "hash": "113131274b932057cf7ba6327c9ef6ed10fa4a3e", - "version": "1131312", - "author": "yulalaa", - "description": "", - "tags": [ - "落落莓" - ] - }, - { - "name": "望风山地2x28.json", - "type": "file", - "hash": "d447b3278f23c56409ee8240b1953ec780931c7c", - "version": "d447b32", - "author": "yulalaa", - "description": "", - "tags": [ - "落落莓" - ] - }, - { - "name": "望风山地3x16.json", - "type": "file", - "hash": "5fba71d9c038b5eefd77778c2fcd809b4c0e793c", - "version": "5fba71d", - "author": "yulalaa", - "description": "", - "tags": [ - "落落莓" - ] - } - ] - }, - { - "name": "蒲公英", - "type": "directory", - "children": [ - { - "name": "01-蒲公英-蒙德城门口9个.json", - "type": "file", - "hash": "fd0f4d02e12b680a338361f476ac638726b4917b", - "version": "fd0f4d0", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "02-蒲公英-山脊守望西10个.json", - "type": "file", - "hash": "53fb49d2efa20f2db77befc4fc023eea1a7a4b80", - "version": "53fb49d", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "03-蒲公英-西风庙宇东2个.json", - "type": "file", - "hash": "c8e9c0ca30adeef2dfbc781b53d5de697fa37a17", - "version": "c8e9c0c", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "04-蒲公英-星落湖南3个.json", - "type": "file", - "hash": "96942a2cceed929be1d3f2958c1cd617776e8216", - "version": "96942a2", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "05-蒲公英-仲夏庭园3个.json", - "type": "file", - "hash": "11cae07463da28d92f4e84a47541e6d55aef6a20", - "version": "11cae07", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "06-蒲公英-誓言岬2个.json", - "type": "file", - "hash": "fe30e385f2d6c8702d0303997a36bc764514dc13", - "version": "fe30e38", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "07-蒲公英-达达乌帕谷3个.json", - "type": "file", - "hash": "acc09b541e335a48e5c6f2a8c62004cad7f8855e", - "version": "acc09b5", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "08-蒲公英-达达乌帕谷南3个.json", - "type": "file", - "hash": "9c9e1916862693bf932cf5ba77ec2568456aa8ef", - "version": "9c9e191", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "09-蒲公英-奔狼领北2个.json", - "type": "file", - "hash": "8cfc59a08631d20da06f26b18fe054143889c78c", - "version": "8cfc59a", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "10-蒲公英-风起地南3个.json", - "type": "file", - "hash": "2db074602ad5657e70d925a1640efcef4aef2a86", - "version": "2db0746", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "11-蒲公英-零散2个(路远,不建议).json", - "type": "file", - "hash": "1a95657f6f809a81d185c776fed26e02347fc57f", - "version": "1a95657", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "12-蒲公英-零散3个(路远,不建议).json", - "type": "file", - "hash": "3ed40554283f17ce66cd6fbfb362bd67aea1669e", - "version": "3ed4055", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "13-蒲公英-零散1个(路远,不建议).json", - "type": "file", - "hash": "7f80bb88fe37e86377a386285377e6731cd15d1e", - "version": "7f80bb8", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "14-蒲公英-零散1个(路远,不建议).json", - "type": "file", - "hash": "aeb43f7b29d393824bd14caaa3005c504cd895e9", - "version": "aeb43f7", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "15-蒲公英-零散1个(路远,不建议).json", - "type": "file", - "hash": "e0d4c3b10e68b2a8887c6f2f68273deed36ca9a6", - "version": "e0d4c3b", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "20-蒲公英-北风庙宇东3个(传送点缺失).json", - "type": "file", - "hash": "e2f0f47a5fa5028960236488644bcae564b395d0", - "version": "e2f0f47", - "author": "秋云", - "description": "", - "tags": [ - "蒲公英", - "风元素力收集" - ] - }, - { - "name": "南风之狮蒲公英1个.json", - "type": "file", - "hash": "2d42ea6942980027e29d888d76b6ae46249c3e3a", - "version": "2d42ea6", - "author": "", - "description": "", - "tags": [ - "蒲公英" - ] - }, - { - "name": "奔狼古上蒲公英.json", - "type": "file", - "hash": "3c6db94a53f8b7d22b1e9ae424f34076eea62df5", - "version": "3c6db94", - "author": "", - "description": "", - "tags": [ - "蒲公英" - ] - }, - { - "name": "蒲公英.json", - "type": "file", - "hash": "8ecbe1fafbf910f2d2d9411e90c46c54e634939b", - "version": "8ecbe1f", - "author": "", - "description": "", - "tags": [ - "蒲公英" - ] - }, - { - "name": "誓言蒲公英1个.json", - "type": "file", - "hash": "b8764f905a86bef2015c8286d1fe846e492c9edb", - "version": "b8764f9", - "author": "", - "description": "", - "tags": [ - "蒲公英" - ] - }, - { - "name": "铭记之谷附近蒲公英.json", - "type": "file", - "hash": "cbec29522b052be21100e1625ad682ed7cc85099", - "version": "cbec295", - "author": "", - "description": "", - "tags": [ - "蒲公英" - ] - } - ] - }, - { - "name": "虹彩蔷薇", - "type": "directory", - "children": [ - { - "name": "虹彩蔷薇-中央实验室遗址下方-4个.json", - "type": "file", - "hash": "87a70e193ecc05bed040c34c96c6077a383d067a", - "version": "87a70e1", - "author": "曦", - "description": "", - "tags": [ - "虹彩蔷薇" - ] - }, - { - "name": "虹彩蔷薇-厄里那斯左下角-11个.json", - "type": "file", - "hash": "21758e2f9719ee59791926be8ba74ed27a8e32c7", - "version": "21758e2", - "author": "曦", - "description": "", - "tags": [ - "虹彩蔷薇" - ] - }, - { - "name": "虹彩蔷薇-枫丹廷左上角-14个.json", - "type": "file", - "hash": "5fb80ab60c7ee6db6f8b773b674df18123b87ac1", - "version": "5fb80ab", - "author": "曦", - "description": "", - "tags": [ - "虹彩蔷薇" - ] - }, - { - "name": "虹彩蔷薇-枫丹廷左侧-15个.json", - "type": "file", - "hash": "733f2ce4c8a3755a3c365cae227968f953e86ebd", - "version": "733f2ce", - "author": "曦", - "description": "", - "tags": [ - "虹彩蔷薇" - ] - }, - { - "name": "虹彩蔷薇-秋分山西侧-5个.json", - "type": "file", - "hash": "8e9ed091ab791bbae622d018a48da9cdc71031fe", - "version": "8e9ed09", - "author": "曦", - "description": "", - "tags": [ - "虹彩蔷薇" - ] - }, - { - "name": "虹彩蔷薇-秋分山西侧海岛-11个.json", - "type": "file", - "hash": "a8e5bae92b3fa4762304f5f2c7f115e1c735e538", - "version": "a8e5bae", - "author": "曦", - "description": "", - "tags": [ - "虹彩蔷薇" - ] - }, - { - "name": "虹彩蔷薇-茉洁站-5个.json", - "type": "file", - "hash": "2d40fb975acdd82bd4ce89796a341a329a119fba", - "version": "2d40fb9", - "author": "曦", - "description": "", - "tags": [ - "虹彩蔷薇" - ] - }, - { - "name": "虹彩蔷薇-露景泉-9个.json", - "type": "file", - "hash": "5bf6c88ae8ef05b288af067a75397e851af39192", - "version": "5bf6c88", - "author": "曦", - "description": "", - "tags": [ - "虹彩蔷薇" - ] - } - ] - }, - { - "name": "血斛", - "type": "directory", - "children": [ - { - "name": "血斛-名椎滩.json", - "type": "file", - "hash": "9896227925ca0d5444d0f608754798b89f251ab7", - "version": "9896227", - "author": "透明人", - "description": "", - "tags": [ - "血斛" - ] - }, - { - "name": "血斛-名椎滩2.json", - "type": "file", - "hash": "f16bc97a3de2cd566bf013e097bd0cd07cbbdd25", - "version": "f16bc97", - "author": "透明人", - "description": "", - "tags": [ - "血斛" - ] - }, - { - "name": "血斛-名椎滩3.json", - "type": "file", - "hash": "67afcbbfc640ee761f333f4cc041322901c35870", - "version": "67afcbb", - "author": "透明人", - "description": "", - "tags": [ - "血斛" - ] - } - ] - }, - { - "name": "赤念果", - "type": "directory", - "children": [ - { - "name": "赤念果.json", - "type": "file", - "hash": "ca194dc53420f8459e0c7206a70e0aa7a6542ebf", - "version": "ca194dc", - "author": "½", - "description": "需要纳西妲", - "tags": [ - "赤念果", - "纳西妲" - ] - }, - { - "name": "赤念果10.json", - "type": "file", - "hash": "e114a6d0185faec48afb372c03eda59498816775", - "version": "e114a6d", - "author": "½", - "description": "需要纳西妲", - "tags": [ - "赤念果", - "纳西妲" - ] - }, - { - "name": "赤念果11.json", - "type": "file", - "hash": "742e81756f16ae6cd0158d95f86489a84665e373", - "version": "742e817", - "author": "½", - "description": "需要纳西妲", - "tags": [ - "赤念果", - "纳西妲" - ] - }, - { - "name": "赤念果12.json", - "type": "file", - "hash": "d7d66630f13f0397f4aa37fd4d20ac947342b916", - "version": "d7d6663", - "author": "½", - "description": "需要纳西妲", - "tags": [ - "赤念果", - "纳西妲" - ] - }, - { - "name": "赤念果13.json", - "type": "file", - "hash": "058d31042227e426668ef11286bb284dc012f0a5", - "version": "058d310", + "hash": "044ce3adde4917ab62539a76c18ada647d380300", + "version": "044ce3a", "author": "½", "description": "", "tags": [ - "赤念果", - "纳西妲", - "四叶印" + "发条机关" ] }, { - "name": "赤念果14.json", + "name": "发条机关02.json", "type": "file", - "hash": "e9f30f209c4ef4c9e4068d3e5165361d87002a39", - "version": "e9f30f2", + "hash": "90aef695a272fe77a2023941d2c0de0f26c278d5", + "version": "90aef69", "author": "½", "description": "", "tags": [ - "赤念果", - "纳西妲" + "发条机关" ] }, { - "name": "赤念果15.json", + "name": "发条机关03.json", "type": "file", - "hash": "0e0afbff0f7eaf5079c3af9c15cd2e48ffe957ce", - "version": "0e0afbf", + "hash": "ea3e78eb0418301b2c9c68ad163c6daa77806653", + "version": "ea3e78e", "author": "½", - "description": "需要纳西妲", + "description": "", "tags": [ - "赤念果", - "纳西妲" + "发条机关" ] }, { - "name": "赤念果16.json", + "name": "发条机关04.json", "type": "file", - "hash": "0ab27a5943effcc9540d9769ba74be386b94d525", - "version": "0ab27a5", + "hash": "3157d792defc5f9b3190dc52bcb7a6ffecc7b3b3", + "version": "3157d79", "author": "½", - "description": "需要纳西妲", + "description": "", "tags": [ - "赤念果", - "纳西妲" + "发条机关" ] }, { - "name": "赤念果2.json", + "name": "发条机关05.json", "type": "file", - "hash": "57e22ecd87edbbb7ae111cdc7cc5b1364b5891b5", - "version": "57e22ec", + "hash": "c0da6908dd69a5c991b414d65c13a827080a43c3", + "version": "c0da690", "author": "½", - "description": "需要纳西妲", + "description": "", "tags": [ - "赤念果", - "纳西妲" + "发条机关" ] }, { - "name": "赤念果3.json", + "name": "发条机关06.json", "type": "file", - "hash": "074524a2fd3ca35600ad146efefa7c03cfc8f1da", - "version": "074524a", + "hash": "8c3cce961ffb98c29c1574822cab4aa0d9f51444", + "version": "8c3cce9", "author": "½", - "description": "需要纳西妲", + "description": "", "tags": [ - "赤念果", - "纳西妲" + "发条机关" ] }, { - "name": "赤念果4.json", + "name": "发条机关07.json", "type": "file", - "hash": "a9ffa0c10476f7de006c562d57a8b83aa6607a1e", - "version": "a9ffa0c", + "hash": "205e0b11380e7f96e108daa47fa0873ea0cf41b9", + "version": "205e0b1", "author": "½", - "description": "需要纳西妲", + "description": "", "tags": [ - "赤念果", - "纳西妲" + "发条机关" ] }, { - "name": "赤念果5.json", + "name": "发条机关08.json", "type": "file", - "hash": "97dc4843e5422aa9acfa2fd10500d884971b055a", - "version": "97dc484", + "hash": "3e18305726fd2287fe6a993cf8886cc01573f390", + "version": "3e18305", "author": "½", - "description": "需要纳西妲", + "description": "", "tags": [ - "赤念果", - "纳西妲" - ] - }, - { - "name": "赤念果6.json", - "type": "file", - "hash": "6830322f6bdff405255fd04983762d899cb796e7", - "version": "6830322", - "author": "½", - "description": "需要纳西妲", - "tags": [ - "赤念果", - "纳西妲" - ] - }, - { - "name": "赤念果7.json", - "type": "file", - "hash": "7f9916009a9d9d95abcb07d87be0edc52661054c", - "version": "7f99160", - "author": "½", - "description": "需要纳西妲", - "tags": [ - "赤念果", - "纳西妲" - ] - }, - { - "name": "赤念果8.json", - "type": "file", - "hash": "248de2f2e34d568c74be4ad6b39e146d566f0a2d", - "version": "248de2f", - "author": "½", - "description": "需要纳西妲", - "tags": [ - "赤念果", - "纳西妲" - ] - }, - { - "name": "赤念果9.json", - "type": "file", - "hash": "67b45027aea5a60b5f5176ff8e014997f40a359f", - "version": "67b4502", - "author": "½", - "description": "需要纳西妲", - "tags": [ - "赤念果", - "纳西妲" + "发条机关" ] } ] }, { - "name": "金鱼草", + "name": "风役人", "type": "directory", "children": [ { - "name": "金鱼草-南天门-1个.json", + "name": "枫丹风役人01.json", "type": "file", - "hash": "430773f71de073240a13eaa19c6d34a2403a37e9", - "version": "430773f", - "author": "曦", + "hash": "59b492ed3b0748b10c80a39e3cba153a588f82d7", + "version": "59b492e", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-古茶树坡右侧-3个.json", + "name": "枫丹风役人02.json", "type": "file", - "hash": "ab58d0e7e28e69f18255d7bb7c0338d58519f293", - "version": "ab58d0e", - "author": "曦", + "hash": "ced8687f8e558b5d65b3f425960f770d0bb93bef", + "version": "ced8687", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-地中之盐-3个.json", + "name": "枫丹风役人03.json", "type": "file", - "hash": "c0cecf07ae74d54aefb8bd8915f44a7ee97a8381", - "version": "c0cecf0", - "author": "曦", - "description": "完成钟离传说任务后可用", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-奔狼岭右上角-1个.json", - "type": "file", - "hash": "f64aef3bfdad0adb61ae2fa4b4b81db3f82a545f", - "version": "f64aef3", - "author": "曦", + "hash": "1f9fce38abc3693668b6a273d16fa0145daecb20", + "version": "1f9fce3", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-奥藏山右上角-15个.json", + "name": "枫丹风役人04.json", "type": "file", - "hash": "31632e9fa9cbb6848eba95f6a78c3cd28cdc2eee", - "version": "31632e9", - "author": "曦", + "hash": "b5906d9cf7ea398e1ba62b8f73d5d240152b1df3", + "version": "b5906d9", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-奥藏山右下角-4个.json", + "name": "枫丹风役人05.json", "type": "file", - "hash": "c316c85cf666eb4af7484ffc69d33fb2fb16c6c5", - "version": "c316c85", - "author": "曦", + "hash": "7c40ab7c3a176ac91c7be59ed9aa4a229ebe496b", + "version": "7c40ab7", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-宝玦口左侧-2个.json", + "name": "枫丹风役人06.json", "type": "file", - "hash": "24fe4995aa3abc1b9c404ab62458a9651a648046", - "version": "24fe499", - "author": "曦", + "hash": "5df2ce423bb5bacd0ed9aae59c220a9245b70318", + "version": "5df2ce4", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-庆云顶右侧-5个.json", + "name": "枫丹风役人07.json", "type": "file", - "hash": "56a5893ffcdbee5ce8adc48fbb88c066b7267c68", - "version": "56a5893", - "author": "曦", + "hash": "786f5a391a519aab7dff98430224408256d8666a", + "version": "786f5a3", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-归离原-1个.json", + "name": "枫丹风役人08.json", "type": "file", - "hash": "709e88fda020157b7f43866dd9923de2002dc87c", - "version": "709e88f", - "author": "曦", + "hash": "3ed62fe8bc57e92bcd4142158497d2e031bf07b5", + "version": "3ed62fe", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-归离原左侧-1个.json", + "name": "枫丹风役人09.json", "type": "file", - "hash": "c5fd37666cc2c738dc66862866736bba4f8cf302", - "version": "c5fd376", - "author": "曦", + "hash": "3175f20d81fc19050f04d91994395b59c0583214", + "version": "3175f20", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" + "风役人" ] }, { - "name": "金鱼草-无妄坡-2个.json", + "name": "枫丹风役人10.json", "type": "file", - "hash": "3c92493eb35fe80b7e3021b098adf0e735f34d2e", - "version": "3c92493", - "author": "曦", + "hash": "37404ba0f08d37904912229ecbf00b6f50695894", + "version": "37404ba", + "author": "XS", + "description": "第一个点位高危", + "tags": [ + "风役人" + ] + }, + { + "name": "枫丹风役人11.json", + "type": "file", + "hash": "95addb0636d41d5098e5bd86e744683a9f0cf7e3", + "version": "95addb0", + "author": "迷茫之途", "description": "", "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-无妄坡左下角-9个.json", - "type": "file", - "hash": "2d3d83cd4c1141aa8fa7db084862fa582d2c7f08", - "version": "2d3d83c", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-无妄坡左侧-1个.json", - "type": "file", - "hash": "785e65c1c962e0609c879a01c4f5ce26dfeda237", - "version": "785e65c", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-望风山地-6个.json", - "type": "file", - "hash": "3a13e4b07d8915eda825277e2bdbf5a5c890fd2a", - "version": "3a13e4b", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-清泉镇左上角-1个.json", - "type": "file", - "hash": "fb6a3bd469e215a7bf39ed5a5bba5725e27f72af", - "version": "fb6a3bd", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-渌华池-2个.json", - "type": "file", - "hash": "0fddc867ae32450a622e88343fba5d7b6f65419c", - "version": "0fddc86", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-湖中垂柳右侧-1个.json", - "type": "file", - "hash": "5a7e1ac3b36d78bb428799ab253c1d52b44ebd35", - "version": "5a7e1ac", - "author": "曦", - "description": "由于地下小地图不可用少1个", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-石门右上角-3个.json", - "type": "file", - "hash": "b7ec7497ec8fe7c18d4c1ac04c7705d5b3d12c06", - "version": "b7ec749", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-绝云间-4个.json", - "type": "file", - "hash": "e0732886bf29f3ceffb28758175588f0c1bef7a2", - "version": "e073288", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-药蝶谷右侧-4个.json", - "type": "file", - "hash": "36e27a2bcaf5be8352bebb7110ffea3dac5b3dba", - "version": "36e27a2", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-荻花洲-10个.json", - "type": "file", - "hash": "08989b1eaac6be1d1ad0cd1cc7ca161c80a2c39f", - "version": "08989b1", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-荻花洲过河左侧-2个.json", - "type": "file", - "hash": "334571c8b9ab84a78f6d390660c051dd0a131f1a", - "version": "334571c", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-赤璋城桓01-1个.json", - "type": "file", - "hash": "1edc039d31874c3f96ce3b7ec072d52fc781ae9a", - "version": "1edc039", - "author": "曦", - "description": "由于小地图无法识别少1个", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-赤璋城桓02-2个.json", - "type": "file", - "hash": "5118f84d1fe6d9415e28a97e43db1506a28eb6c0", - "version": "5118f84", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-赤璋城桓03-3个.json", - "type": "file", - "hash": "f03650cbc01255a6830e4836943c989494dbc870", - "version": "f03650c", - "author": "曦", - "description": "action中缺少T交互少1个", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-雪葬之都·近郊-2个.json", - "type": "file", - "hash": "359971d2f26aa85c9d11cfff38134c40613c43b0", - "version": "359971d", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-风起地-14个.json", - "type": "file", - "hash": "eb3503325f6f7dd46c803542ab24d3d01d3558d3", - "version": "eb35033", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" - ] - }, - { - "name": "金鱼草-风起地左上角-3个.json", - "type": "file", - "hash": "a12abe1de91a813a32c130bfbf802797acda6af8", - "version": "a12abe1", - "author": "曦", - "description": "", - "tags": [ - "金鱼草" + "风役人" ] } ] }, { - "name": "钩钩果", + "name": "骗骗花", "type": "directory", "children": [ { - "name": "钩钩果-30个(有几率卡树洞里).json", + "name": "骗骗花-天衡山上.json", "type": "file", - "hash": "b7c74a9406f446a530ea7537bd578659ff9abc73", - "version": "b7c74a9", - "author": "不瘦五十斤不改名", - "description": "", + "hash": "f2e7bfca6dcb72c5faf420ef08dc0d296d71002a", + "version": "f2e7bfc", + "author": "san", + "description": "骗骗花", "tags": [ - "钩钩果" + "骗骗花" ] }, { - "name": "钩钩果-奔狼岭-蒙德30个-需纳西妲.json", + "name": "骗骗花-归离院右下.json", "type": "file", - "hash": "b3b7d6fe9620b5617bf0ef64375c3a38d21f24fe", - "version": "b3b7d6f", - "author": "不瘦五十斤不改名", + "hash": "b4fab802ad625ecf8a8012c3389be22ede56d3f2", + "version": "b4fab80", + "author": "san", "description": "", "tags": [ - "钩钩果", - "纳西妲" + "骗骗花" + ] + }, + { + "name": "骗骗花-归离院右下2.json", + "type": "file", + "hash": "adafdf5bf3582070bc68c1c04421ebe659fdfe1e", + "version": "adafdf5", + "author": "san", + "description": "骗骗花", + "tags": [ + "骗骗花" + ] + }, + { + "name": "骗骗花-渌华池右.json", + "type": "file", + "hash": "24ad35f7dc6d7c685ceb13d093b876eea01c9c06", + "version": "24ad35f", + "author": "san", + "description": "", + "tags": [ + "骗骗花" + ] + }, + { + "name": "骗骗花-绝云间右上.json", + "type": "file", + "hash": "05c1ab5a914c1bee97ce5882baf354ae974aedf2", + "version": "05c1ab5", + "author": "san", + "description": "骗骗", + "tags": [ + "骗骗花" + ] + }, + { + "name": "骗骗花-翠块坡下.json", + "type": "file", + "hash": "d48c6ba0a890dfdb3d5ea19b155405d612f7c7c5", + "version": "d48c6ba", + "author": "san", + "description": "", + "tags": [ + "骗骗花" + ] + }, + { + "name": "骗骗花-翠块坡左下.json", + "type": "file", + "hash": "06470a9f9a0139b62291b4d7edc3e453462e50dd", + "version": "06470a9", + "author": "san", + "description": "骗骗花", + "tags": [ + "骗骗花" + ] + }, + { + "name": "骗骗花-翠块坡左下2.json", + "type": "file", + "hash": "d3c2f72dc2f0d545558c89fff43592e0907d3d99", + "version": "d3c2f72", + "author": "san", + "description": "骗骗花", + "tags": [ + "骗骗花" + ] + }, + { + "name": "骗骗花-誓言峡.json", + "type": "file", + "hash": "be8da011504c6df7cbb21ac8217029e6f4481d82", + "version": "be8da01", + "author": "san", + "description": "骗骗花", + "tags": [ + "骗骗花" + ] + }, + { + "name": "骗骗花-风起地右.json", + "type": "file", + "hash": "7b362319793d29c112367b8a8379c5450d504f04", + "version": "7b36231", + "author": "san", + "description": "骗骗花", + "tags": [ + "骗骗花" ] } ] }, { - "name": "霓裳花", + "name": "漂浮灵", "type": "directory", "children": [ { - "name": "霓裳花_望舒客栈_璃月_7个.json", + "name": "漂浮灵-天云咔下 2.json", "type": "file", - "hash": "581b46d47e0df1d595396867d751420a0f03b84e", - "version": "581b46d", - "author": "tignioj", - "description": "", + "hash": "1bc4cc370c3df2993047d3bd7712a531141fdc8f", + "version": "1bc4cc3", + "author": "san", + "description": "漂浮零", "tags": [ - "霓裳花" + "漂浮灵" + ] + }, + { + "name": "漂浮灵-天云咔右 1.json", + "type": "file", + "hash": "b5dd9a6825d46912e8e7a36250e3db56518ac3bb", + "version": "b5dd9a6", + "author": "san", + "description": "漂浮零", + "tags": [ + "漂浮灵" + ] + }, + { + "name": "漂浮灵-平海砦.json", + "type": "file", + "hash": "3d734e1a59fe1aead6bb032e43a2d1748cab13b7", + "version": "3d734e1", + "author": "san", + "description": "漂浮零", + "tags": [ + "漂浮灵" + ] + }, + { + "name": "漂浮灵-平海砦2.json", + "type": "file", + "hash": "7d5286bbdfe4579023ccd4960f1aa13d8a7a526f", + "version": "7d5286b", + "author": "san", + "description": "漂浮零", + "tags": [ + "漂浮灵" + ] + }, + { + "name": "漂浮灵-平海砦3.json", + "type": "file", + "hash": "c4f1321f90968875aa656ba5936a8428be97582a", + "version": "c4f1321", + "author": "san", + "description": "漂浮零", + "tags": [ + "漂浮灵" + ] + }, + { + "name": "漂浮灵-黄金兽1.json", + "type": "file", + "hash": "23bca48e5637af1c88595eb56b1e3129e6a84e7d", + "version": "23bca48", + "author": "san", + "description": "漂浮零", + "tags": [ + "漂浮灵" ] } ] }, { - "name": "青蜜莓", + "name": "丘丘王", "type": "directory", "children": [ { - "name": "青蜜莓1-踞石山上-4x3个.json", + "name": "丘丘王01.json", "type": "file", - "hash": "ca1846da4e4769b839bf09cf58de330b977fea22", - "version": "ca1846d", - "author": "黎歌", + "hash": "84659853d7f5d91865a92b9adc4b649d7aa9f53f", + "version": "8465985", + "author": "XS", "description": "", "tags": [ - "青蜜莓" + "丘丘王" ] }, { - "name": "青蜜莓2-彩石顶右-2x3个.json", + "name": "丘丘王02.json", "type": "file", - "hash": "7c48795352c50e4b6e2cd588ca45571c5a9becb2", - "version": "7c48795", - "author": "黎歌", + "hash": "665a229dcba3bdc20eebf24138f2ca79016af8ab", + "version": "665a229", + "author": "XS", "description": "", "tags": [ - "青蜜莓" + "丘丘王" ] }, { - "name": "青蜜莓3-彩石顶中-3x3个.json", + "name": "丘丘王03.json", "type": "file", - "hash": "de0c8bc84c5154aca9f1c77051309abe77f7eab3", - "version": "de0c8bc", - "author": "黎歌", + "hash": "05802b2acc56ed1962e156cfa2dd070465cbb4c6", + "version": "05802b2", + "author": "迷茫之途", "description": "", "tags": [ - "青蜜莓" + "丘丘王" ] }, { - "name": "青蜜莓4-彩石顶中-1x3个.json", + "name": "丘丘王04.json", "type": "file", - "hash": "e140237a806d7e3374dbe9743eb6aeadc5d99d74", - "version": "e140237", - "author": "黎歌", + "hash": "959da8f2ffcff89ba797ee1eb347a3bfabb1dd58", + "version": "959da8f", + "author": "XS", "description": "", "tags": [ - "青蜜莓" + "丘丘王" ] }, { - "name": "青蜜莓5-彩石顶上-4x3个.json", + "name": "丘丘王05.json", "type": "file", - "hash": "7724aff2029331243a050c7c2256d661dc301dc3", - "version": "7724aff", - "author": "黎歌", + "hash": "30ad077ba17699754fb16f031c458cf01dd41816", + "version": "30ad077", + "author": "XS", "description": "", "tags": [ - "青蜜莓" + "丘丘王" ] }, { - "name": "青蜜莓6-悬木人-5x3个.json", + "name": "丘丘王06.json", "type": "file", - "hash": "f60a66ccbd5afa69b8f6d794cee8fc3ddc883e8d", - "version": "f60a66c", - "author": "黎歌", + "hash": "88a6f12246a937d65788935a0bdabdceef263482", + "version": "88a6f12", + "author": "XS", "description": "", "tags": [ - "青蜜莓" + "丘丘王" ] }, { - "name": "青蜜莓7-坚岩隘谷-5x3个.json", + "name": "丘丘王07.json", "type": "file", - "hash": "dc7800f3b535f985d73693a919ef9a5eaa699933", - "version": "dc7800f", - "author": "黎歌", + "hash": "3e87bcd9d51c3d83f8e95d5ca8b8ee496e0277ff", + "version": "3e87bcd", + "author": "XS", "description": "", "tags": [ - "青蜜莓" + "丘丘王" + ] + }, + { + "name": "丘丘王08.json", + "type": "file", + "hash": "5e6eb67c70d7ba44df9505edf7157171e5cdb596", + "version": "5e6eb67", + "author": "迷茫之途", + "description": "", + "tags": [ + "丘丘王" + ] + }, + { + "name": "丘丘王09.json", + "type": "file", + "hash": "ab62fc0d65f319617f1fff1ebfc788c656ff7b2b", + "version": "ab62fc0", + "author": "XS", + "description": "", + "tags": [ + "丘丘王" + ] + }, + { + "name": "丘丘王10.json", + "type": "file", + "hash": "de2f0071a1754ce4e7dcdd06fd3b91820fa57897", + "version": "de2f007", + "author": "迷茫之途", + "description": "", + "tags": [ + "丘丘王" + ] + }, + { + "name": "丘丘王11.json", + "type": "file", + "hash": "c90575dc641dfa1f097f0b6ef920f006a8c765ad", + "version": "c90575d", + "author": "XS", + "description": "", + "tags": [ + "丘丘王" + ] + }, + { + "name": "丘丘王12-枫丹.json", + "type": "file", + "hash": "add3213f6bb2663e3c4aaf9aa7cfef651c8b96a7", + "version": "add3213", + "author": "XS", + "description": "", + "tags": [ + "丘丘王" + ] + }, + { + "name": "丘丘王13-枫丹.json", + "type": "file", + "hash": "2ee0c3d0c0fd195c29297d92a593ce3e4a1d2929", + "version": "2ee0c3d", + "author": "XS", + "description": "", + "tags": [ + "丘丘王" + ] + }, + { + "name": "丘丘王14-枫丹.json", + "type": "file", + "hash": "7ec818a01f1000a5a6046006c08ba855e194ad3a", + "version": "7ec818a", + "author": "XS", + "description": "", + "tags": [ + "丘丘王" + ] + }, + { + "name": "丘丘王15-枫丹.json", + "type": "file", + "hash": "8d958c8927f7bc4030a6a580c0a8c8b096ee552a", + "version": "8d958c8", + "author": "XS", + "description": "", + "tags": [ + "丘丘王" + ] + }, + { + "name": "丘丘王16-枫丹.json", + "type": "file", + "hash": "7e3575a91f7c11b0a79b361fba87770112d3f712", + "version": "7e3575a", + "author": "XS", + "description": "", + "tags": [ + "丘丘王" ] } ] }, { - "name": "须弥蔷薇", + "name": "史莱姆", "type": "directory", "children": [ { - "name": "须弥蔷薇1-降诸魔山-须弥5个.json", + "name": "史莱姆速刷.json", "type": "file", - "hash": "49045b7664ad3a65846d14bf8ad9d4e7c2057e37", - "version": "49045b7", - "author": "不瘦五十斤不改名", + "hash": "add4e81ed4ae21ec1f0e40fe41c6eee405bf8e8e", + "version": "add4e81", + "author": "爱凑热闹", "description": "", "tags": [ - "须弥蔷薇", - "纳西妲" - ] - }, - { - "name": "须弥蔷薇2-化城郭(一)-须弥8个.json", - "type": "file", - "hash": "d8e10ed8f3828658e38c1baff35d7456741c1c39", - "version": "d8e10ed", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "须弥蔷薇", - "纳西妲" - ] - }, - { - "name": "须弥蔷薇3-化城郭(二)-须弥8个.json", - "type": "file", - "hash": "861c72899e297fc30326ebdc48cd127dee067232", - "version": "861c728", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "须弥蔷薇", - "纳西妲" - ] - }, - { - "name": "须弥蔷薇4-天臂池-须弥9个.json", - "type": "file", - "hash": "a8a1c99fc30c79a02af98e2c09c1fb164362eca2", - "version": "a8a1c99", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "须弥蔷薇", - "纳西妲" - ] - }, - { - "name": "须弥蔷薇5-觉王之殿-须弥6个.json", - "type": "file", - "hash": "9121d4b61393983373adeaa3e5bb83059b668bf8", - "version": "9121d4b", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "须弥蔷薇", - "纳西妲" - ] - }, - { - "name": "须弥蔷薇6-谒颂幽境-须弥8个.json", - "type": "file", - "hash": "85a18b0eb95b173d1d4628ae5bbc5f80fb5ebc5e", - "version": "85a18b0", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "须弥蔷薇", - "纳西妲" - ] - }, - { - "name": "须弥蔷薇7-奥摩斯港-须弥9个.json", - "type": "file", - "hash": "87882ea7b2ffc6142eca0a4437e9d45e74df8a6e", - "version": "87882ea", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "须弥蔷薇", - "纳西妲" + "史莱姆" ] } ] }, { - "name": "风车菊", + "name": "玄文兽", "type": "directory", "children": [ { - "name": "风车11.json", + "name": "沉玉谷_玄文兽01.json", "type": "file", - "hash": "9831ce0f415bad20a7e3d780c5af6fec41d28d63", - "version": "9831ce0", - "author": "柠檬茶叶", + "hash": "523f2bc533a856eac0931a2dc565846bda40ff77", + "version": "523f2bc", + "author": "迷茫之途", "description": "", "tags": [ - "风车菊" + "玄文兽" ] }, { - "name": "风车2.json", + "name": "沉玉谷_玄文兽02.json", "type": "file", - "hash": "21e0328e814a01495714773d87ee186c36e65001", - "version": "21e0328", - "author": "柠檬茶叶", + "hash": "fd2bb5e0698fb4cc33db08f7d9cff4a4e00a1b6e", + "version": "fd2bb5e", + "author": "迷茫之途", "description": "", "tags": [ - "风车菊" + "玄文兽" ] }, { - "name": "风车3.json", + "name": "沉玉谷_玄文兽03.json", "type": "file", - "hash": "01423ea23e2c5c77dee3aeb5808e670c9913a775", - "version": "01423ea", - "author": "柠檬茶叶", + "hash": "5fb70aca07303923ac1e2e65daad35a19dca6322", + "version": "5fb70ac", + "author": "迷茫之途", "description": "", "tags": [ - "风车菊" + "玄文兽" ] }, { - "name": "风车4 (2).json", + "name": "沉玉谷_玄文兽04.json", "type": "file", - "hash": "fb4806129905ebe73e10d6302c014e96b5e5088b", - "version": "fb48061", - "author": "柠檬茶叶", + "hash": "0cdad49e5684253f80f03d2945c3a49e34e36ba4", + "version": "0cdad49", + "author": "XS", "description": "", "tags": [ - "风车菊" + "玄文兽" ] }, { - "name": "风车4.json", + "name": "沉玉谷_玄文兽05.json", "type": "file", - "hash": "8426a5bc6ca0463d1eff9cf6a1f66e77f01e081b", - "version": "8426a5b", - "author": "柠檬茶叶", + "hash": "881042bec9bbd1380dfc928493cae1fd6f7706e5", + "version": "881042b", + "author": "XS", "description": "", "tags": [ - "风车菊" - ] - }, - { - "name": "风车5.json", - "type": "file", - "hash": "83610b826c7c73eb7fc169bdbf9e6b73fa6cf834", - "version": "83610b8", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "风车菊" - ] - }, - { - "name": "风车6.json", - "type": "file", - "hash": "93bd0b8d98c4ad16e96da90d93befa0be75312d4", - "version": "93bd0b8", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "风车菊" - ] - }, - { - "name": "风车8.json", - "type": "file", - "hash": "33c769547dae21f74749c0fd65ef00b7ea31bbac", - "version": "33c7695", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "风车菊" - ] - }, - { - "name": "风车9 (2).json", - "type": "file", - "hash": "a4782b29184074b1ebe35a6b1c0f17f92c948ce6", - "version": "a4782b2", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "风车菊" - ] - }, - { - "name": "风车9.json", - "type": "file", - "hash": "12697fd14d839bed087f41db478fe0c3ccd3c332", - "version": "12697fd", - "author": "柠檬茶叶", - "description": "", - "tags": [ - "风车菊" - ] - }, - { - "name": "风车菊_蒙德_8个.json", - "type": "file", - "hash": "bc9c55a55bbbc923798d68f80de603311ad0346e", - "version": "bc9c55a", - "author": "tignioj", - "description": "", - "tags": [ - "风车菊" + "玄文兽" ] } ] }, { - "name": "香辛果", + "name": "蕈兽", "type": "directory", "children": [ { - "name": "香辛果1.json", + "name": "蕈兽-地表集中点35只.json", "type": "file", - "hash": "64c43f064043922054a9803961cedb5d784f38fa", - "version": "64c43f0", - "author": "玛卡巴卡", + "hash": "9d01f5f70b9254fc657b007e84420243208ddc4f", + "version": "9d01f5f", + "author": "翎镞", "description": "", "tags": [ - "香辛果", - "纳西妲" - ] - }, - { - "name": "香辛果2.json", - "type": "file", - "hash": "6144f3f7564d8d03599404786b4071292f69a87f", - "version": "6144f3f", - "author": "玛卡巴卡", - "description": "", - "tags": [ - "香辛果", - "纳西妲" - ] - }, - { - "name": "香辛果3.json", - "type": "file", - "hash": "0cce17a404d1b41a06e6942add474c4098e0faf8", - "version": "0cce17a", - "author": "玛卡巴卡", - "description": "", - "tags": [ - "香辛果", - "纳西妲" + "蕈兽" ] } ] }, { - "name": "马尾", + "name": "遗迹守卫", "type": "directory", "children": [ { - "name": "马尾1.json", + "name": "遗迹守卫01.json", "type": "file", - "hash": "33192aec3c2ab55270793c40fb7670a485e4a88b", - "version": "33192ae", - "author": "玛卡巴卡", - "description": "", + "hash": "6fc69056fe99254567d67668b52c2f34f808818a", + "version": "6fc6905", + "author": "XS", + "description": "建议带盾芙芙万叶芭芭拉,因为点位特殊位移大的容易从平台掉下来", "tags": [ - "马尾", - "纳西妲" + "遗迹守卫" ] }, { - "name": "马尾2.json", + "name": "遗迹守卫02.json", "type": "file", - "hash": "13d30fc5c49b75f3a4592d172affd884d1e4c2dc", - "version": "13d30fc", - "author": "玛卡巴卡", + "hash": "3f8115d9cbe51ba7fbbea303e20a04e35e17fd7c", + "version": "3f8115d", + "author": "XS", "description": "", "tags": [ - "马尾", - "纳西妲" + "遗迹守卫" ] }, { - "name": "马尾3.json", + "name": "遗迹守卫03(可回复体力).json", "type": "file", - "hash": "9ea1090a6cf31546716a738ce7a8627339dbc2af", - "version": "9ea1090", - "author": "玛卡巴卡", + "hash": "dafb0c820866dbdadcc75905e120d20ccb28f1ea", + "version": "dafb0c8", + "author": "XS", "description": "", "tags": [ - "马尾", - "纳西妲" + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫04-瑶光滩.json", + "type": "file", + "hash": "1c6584bf2bd288426e6c68bcc2b2d09cc863f22f", + "version": "1c6584b", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫05.json", + "type": "file", + "hash": "9a6cea45da4b178497422638bba10309c9091bd4", + "version": "9a6cea4", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫06.json", + "type": "file", + "hash": "66ac8590fb78b48b87630a3d44b70019e2fdf2c0", + "version": "66ac859", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫07.json", + "type": "file", + "hash": "fa08b855c98e5f97047cba0efe3065dfbd246f8f", + "version": "fa08b85", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫08.json", + "type": "file", + "hash": "89c7a880279e3678b2fb1cb88222ac91249d5f9b", + "version": "89c7a88", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫09-孤云阁.json", + "type": "file", + "hash": "1acfa073c264133a239e94133cfe04f17d56207c", + "version": "1acfa07", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫10-离月港上.json", + "type": "file", + "hash": "4da54f1d1b1d4d8626591c6279363557ba78e336", + "version": "4da54f1", + "author": "san", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫11-枫丹.json", + "type": "file", + "hash": "858f1c16bbda802d05e97551b570481390e90290", + "version": "858f1c1", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫12-须弥沙漠.json", + "type": "file", + "hash": "287b8dba26f58b9b15ad8a042fa7c4fa5a106a90", + "version": "287b8db", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫12-须弥沙漠2.json", + "type": "file", + "hash": "a4d014f76e1392694bcf4e25ac0bbb894c3731ff", + "version": "a4d014f", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫13.json", + "type": "file", + "hash": "73a820845e03cb9277bce1684da2bd63397c7722", + "version": "73a8208", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" + ] + }, + { + "name": "遗迹守卫14.json", + "type": "file", + "hash": "672d0fc6db5094c73e762e212a4139bb4d279e58", + "version": "672d0fc", + "author": "XS", + "description": "", + "tags": [ + "遗迹守卫" ] } ] }, { - "name": "鬼兜虫", + "name": "原海异种", "type": "directory", "children": [ { - "name": "鬼兜虫01-九条阵屋-4个(纳西妲).json", + "name": "01海露港.json", "type": "file", - "hash": "72ec02fb5a8dfbf343d299bbac18436308c53a19", - "version": "72ec02f", - "author": "起个名字好难", + "hash": "732b021fdcabd5160a7e0449b12e49dcbf58c84a", + "version": "732b021", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫", - "纳西妲" + "原海异种" ] }, { - "name": "鬼兜虫02-踏鞴砂(东北侧)-1个(纳西妲).json", + "name": "02海露港.json", "type": "file", - "hash": "ab5c5b6fcee49a69b22af5c36c21f7744eec263e", - "version": "ab5c5b6", - "author": "起个名字好难", + "hash": "40233ea9bd0ce0f7e142192a317f1dfd99865ce5", + "version": "40233ea", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫", - "纳西妲" + "原海异种" ] }, { - "name": "鬼兜虫03-踏鞴砂(东北侧)-2个.json", + "name": "03海露港.json", "type": "file", - "hash": "c30260aaa293f6b115304c2c3a2fa04a874756c0", - "version": "c30260a", - "author": "起个名字好难", + "hash": "7eaf1aeaf8a50bface02eaf45ceef0952c896cc6", + "version": "7eaf1ae", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" + "原海异种" ] }, { - "name": "鬼兜虫05-踏鞴砂(西北侧)-7个(中途会引怪).json", + "name": "04秋分山西侧.json", "type": "file", - "hash": "9fd89544374186d2854047c54c80874b24efa470", - "version": "9fd8954", - "author": "起个名字好难", + "hash": "1a071ac6724f25d4707855a2cfe213f6d60f10c8", + "version": "1a071ac", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" + "原海异种" ] }, { - "name": "鬼兜虫06-踏鞴砂(北侧)-2个(会引怪).json", + "name": "05秋分山西侧.json", "type": "file", - "hash": "a4ede66151fcdc0cfed91b63cd1abfe260799ad9", - "version": "a4ede66", - "author": "起个名字好难", + "hash": "7a6ffc57bd77c9466248177948deb554f04ef642", + "version": "7a6ffc5", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" + "原海异种" ] }, { - "name": "鬼兜虫07-踏鞴砂(公义)-1个(需要纳西妲).json", + "name": "06厄里那斯.json", "type": "file", - "hash": "935538f6e1d4d389fbedb1f601f5703726c987b1", - "version": "935538f", - "author": "起个名字好难", + "hash": "f6040f1da540131b99b55266af904e87735eef81", + "version": "f6040f1", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫", - "纳西妲" + "原海异种" ] }, { - "name": "鬼兜虫08-无想刀狭间(东侧)-1个.json", + "name": "07厄里那斯.json", "type": "file", - "hash": "6695ccb35f58503d53fe604f34feca10f6c92584", - "version": "6695ccb", - "author": "起个名字好难", + "hash": "b74cf0d7bd59279c98a4126403db501f25921493", + "version": "b74cf0d", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" + "原海异种" ] }, { - "name": "鬼兜虫09-八酝岛(东南侧)-2个.json", + "name": "08厄里那斯.json", "type": "file", - "hash": "6ea46e033e8b6e26c4517d50f0ba51c6dcb6386b", - "version": "6ea46e0", - "author": "起个名字好难", + "hash": "c4fbb5dac2c28c49aa80c8c12e5d02d90c2b3b6d", + "version": "c4fbb5d", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" + "原海异种" ] }, { - "name": "鬼兜虫10-八酝岛(西南侧)-1个.json", + "name": "09厄里那斯.json", "type": "file", - "hash": "6767ef974fbe5e1d937f036d99130fe45d0223c2", - "version": "6767ef9", - "author": "起个名字好难", + "hash": "09decb3533bd16b8c3d91acce02cee846c34bb61", + "version": "09decb3", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" + "原海异种" ] }, { - "name": "鬼兜虫11-八酝岛(中部)-1个 .json", + "name": "10厄里那斯.json", "type": "file", - "hash": "d549c02cc5b3612f77debd8956ca638a6b79f189", - "version": "d549c02", - "author": "起个名字好难", + "hash": "d501e5bec28a3095eb8774fa9d6b0175213f35fa", + "version": "d501e5b", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" + "原海异种" ] }, { - "name": "鬼兜虫12-八酝岛(西北侧龙骨南)-1个.json", + "name": "11枫丹庭.json", "type": "file", - "hash": "40e273502f1fcb9a394cafe13891d2d914676c02", - "version": "40e2735", - "author": "起个名字好难", + "hash": "b19a546643b9333844d2dffe9c9c1881de7318f1", + "version": "b19a546", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" + "原海异种" ] }, { - "name": "鬼兜虫13-八酝岛(西北侧龙骨北)-1个.json", + "name": "12枫丹庭.json", "type": "file", - "hash": "363d2d78410a36f993e1f2ebd5c79596702da346", - "version": "363d2d7", - "author": "起个名字好难", + "hash": "ad2117b919b4479ec9deffdf029e681117e90998", + "version": "ad2117b", + "author": "雕茂", "description": "", "tags": [ - "鬼兜虫" - ] - } - ] - }, - { - "name": "鸟蛋", - "type": "directory", - "children": [ - { - "name": "鸟蛋-云来海-璃月2个.json", - "type": "file", - "hash": "20f950cbc6e4e19b45dd76bdde4b9785b78fd1ee", - "version": "20f950c", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋" - ] - }, - { - "name": "鸟蛋-地中之盐-璃月2个.json", - "type": "file", - "hash": "0c81f3189bc9b253178a5710bac0c109513b7490", - "version": "0c81f31", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-奥藏山-璃月8个.json", - "type": "file", - "hash": "e3f32b7ad80220c805e9c649d1d094aeab3ff5fe", - "version": "e3f32b7", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋" - ] - }, - { - "name": "鸟蛋-孤云阁-璃月2个.json", - "type": "file", - "hash": "99bc5ea9fe25f86788a47307da61208adae6d1ae", - "version": "99bc5ea", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-明蕴镇(神像)-璃月2个.json", - "type": "file", - "hash": "9d259e3aed309e9a8c6241b6c5415db5f609d6cd", - "version": "9d259e3", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-明蕴镇-璃月2个.json", - "type": "file", - "hash": "8c70516155fa0529236012af2fd059888ad28617", - "version": "8c70516", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-清泉镇-蒙德2个.json", - "type": "file", - "hash": "9bc20e76089e7e54815091da4b7c7ed467c9671e", - "version": "9bc20e7", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-珉林-璃月2个.json", - "type": "file", - "hash": "1b688e61d409629aa258fef70c885cf0b8e77ace", - "version": "1b688e6", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-瑶光滩-璃月2个.json", - "type": "file", - "hash": "41d8c6ae22e6601ec6bd2a3cd2b4f586c54b1b78", - "version": "41d8c6a", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-纳塔-回声之子下方锚点-2个.json", - "type": "file", - "hash": "d3f92135522eb954c48832641be8f7a7f9b2960c", - "version": "d3f9213", - "author": "起个名字好难", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-绝云间上-璃月2个.json", - "type": "file", - "hash": "078492918a3434270bc5b19f6ae9200e4948d84a", - "version": "0784929", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-荻花洲-璃月2个.json", - "type": "file", - "hash": "d5be00999f4a56225a0193bf078835e49babd1b6", - "version": "d5be009", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - }, - { - "name": "鸟蛋-震雷连山密宫-璃月2个.json", - "type": "file", - "hash": "63a5d6797826e02aa946530892e1d5bbd595fd41", - "version": "63a5d67", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "鸟蛋", - "纳西妲" - ] - } - ] - }, - { - "name": "鸣草", - "type": "directory", - "children": [ - { - "name": "鸣草_九条阵屋_3个.json", - "type": "file", - "hash": "405fe41ab05f7aad40f79e9b8a4ff356464dab2d", - "version": "405fe41", - "author": "花见木易", - "description": "鸣草_九条阵屋_3个 的初始点类型修改为“传送”", - "tags": [ - "鸣草" - ] - }, - { - "name": "鸣草_越石村1号线_7个.json", - "type": "file", - "hash": "9ce203c68d76da2fb473c2d92d4ace475366e2cd", - "version": "9ce203c", - "author": "花见木易", - "description": "", - "tags": [ - "鸣草" - ] - }, - { - "name": "鸣草_越石村2号线_6个.json", - "type": "file", - "hash": "eddb84a7a088684ee1c50eb9034ff68d83b1a8fe", - "version": "eddb84a", - "author": "花见木易", - "description": "", - "tags": [ - "鸣草" - ] - }, - { - "name": "鸣草_踏鞴砂1号线_15个.json", - "type": "file", - "hash": "53d8f871e9f0d26378517faf988cad3a1056cea9", - "version": "53d8f87", - "author": "花见木易", - "description": "", - "tags": [ - "鸣草" - ] - }, - { - "name": "鸣草_踏鞴砂2号线_6个.json", - "type": "file", - "hash": "ff010d6299cc7e5fa98892c4cad795ac891b1481", - "version": "ff010d6", - "author": "花见木易", - "description": "", - "tags": [ - "鸣草" + "原海异种" ] } ] @@ -9899,8 +11786,8 @@ { "name": "AutoArtifacts_A_B_Extra", "type": "directory", - "hash": "f60d1cc63a1784e3cf6d6387a5e510afa562cc3f", - "version": "1.6", + "hash": "fd41f540d1654e601c6f72d941310ea4f1b7f9c1", + "version": "1.6.1", "author": "Yang-z", "description": "狗粮ABE路线,自动拾取分解~|~圣遗物狗粮AB路线自动轮换,及额外点位拾取,途中自动分解。更新纳塔5.2优质点位。", "tags": [] @@ -9908,8 +11795,8 @@ { "name": "AutoCatherine", "type": "directory", - "hash": "a3560a0a4198f7e6ba32f5871b893d7a6feb58c0", - "version": "1.0", + "hash": "06d108bc4a18a4cb3d7552b865cb9212c462e4a1", + "version": "1.1", "author": "½", "description": "自动找凯瑟琳~|~去找凯瑟琳(基于路径追踪)", "tags": [] @@ -9950,11 +11837,20 @@ "description": "自动伐木~|~前往并自动伐木", "tags": [] }, + { + "name": "AutoWoodcutting-Pathing", + "type": "directory", + "hash": "667430770b760a9f92de93e15122c0a7ea2739d3", + "version": "1.0", + "author": "Tim & 起个名字好难 ", + "description": "自动伐木-地图追踪版~|~基于地图追踪的自动伐木,暂不支持'炬木'和'桃椰子木'\n默认砍伐全部支持木材至2000上限\n自定义设置:\n-可更改砍伐木材种类和数量\n-可以单独设置每个木材数量\n-可设置队伍中是否包含一斗,按保底20%,计算砍伐数量时会除以1.2", + "tags": [] + }, { "name": "Autopermission", "type": "directory", - "hash": "b12820598212771beec9265ae499102c680a9d16", - "version": "1.0", + "hash": "9f8b3e9a28b14e9cb6c7568895f79da3eacc56ad", + "version": "1.1", "author": "½", "description": "自动设置权限~|~设置进入世界的权限,默认锁门", "tags": [] @@ -10013,6 +11909,15 @@ "description": "分解狗粮~|~用于分解狗粮", "tags": [] }, + { + "name": "Destruction artifact", + "type": "directory", + "hash": "5f71d2c24721fe414dea4ffbc67afd008c050187", + "version": "1.0", + "author": "鹤望兰", + "description": "摧毁狗粮~|~用于摧毁狗粮获取摩拉", + "tags": [] + }, { "name": "EncounterPoints", "type": "directory", @@ -10022,6 +11927,15 @@ "description": "领取历练点~|~用于领取历练点", "tags": [] }, + { + "name": "ExitGame", + "type": "directory", + "hash": "4c64a72f2b6608c92216cece9a67171f9919746a", + "version": "1.0", + "author": "Because", + "description": "完全退出游戏~|~配合其他脚本使用。当其他任务完成之后,调用此脚本完成游戏退出(指结束游戏进程)", + "tags": [] + }, { "name": "Expedition", "type": "directory", @@ -10103,6 +12017,15 @@ "description": "传送到凯瑟琳~|~传送到枫丹凯瑟琳旁边,可搭配领取每日奖励或重新派遣", "tags": [] }, + { + "name": "NaiLong", + "type": "directory", + "hash": "a1ad858e5a2561f6eb9a30716d45747dd4dd8d1d", + "version": "1.0", + "author": "HZYgrandma", + "description": "奶龙~|~在日志窗口一直输出奶龙", + "tags": [] + }, { "name": "NextParty", "type": "directory", @@ -10220,6 +12143,24 @@ "description": "等待十秒~|~用于等待十秒", "tags": [] }, + { + "name": "YuanQin", + "type": "directory", + "hash": "197e3b999011b384fe089e9162a452bd06714f37", + "version": "1.0", + "author": "阿城同学", + "description": "[原琴]原神琴谱自动弹奏脚本~|~原神琴谱自动弹奏脚本,通过读取本地琴谱文件,解析成乐谱对象,然后模拟键盘操作,实现自动弹奏。(需角色手动提前乐器)", + "tags": [] + }, + { + "name": "使用脆弱树脂", + "type": "directory", + "hash": "5412c33259dd3986213fb7a9a598f08726d49b85", + "version": "1.0", + "author": "起个名字好难", + "description": "使用脆弱树脂~|~", + "tags": [] + }, { "name": "切换1号角色", "type": "directory", @@ -10340,10 +12281,10 @@ { "name": "芙芙挂机暗杀流", "type": "directory", - "hash": "b7583ad76a762f7931f08014d5be49753ae2db4f", + "hash": "661079646612b20681bc73dca5e343231b0161bf", "version": "1.0", "author": "起个名字好难", - "description": "芙芙挂机暗杀流~|~用于芙宁娜海鲜挂机暗杀地方传奇", + "description": "芙芙挂机暗杀流~|~用于芙宁娜海鲜挂机暗杀地方传奇\n目前已知适用科西霍和海浪中的莎孚,需加入调度器中使用\n1、队伍1号位芙宁娜,234号随意,推荐双水队伍,可以吃药增伤;\n2、按照B站一些逃课视频到达指定位置,附身一只水龙或草龙到石块上;\n3、确保指定位置周围没有其他可以直接附身的龙魂,以免误操作;\n4、可以在附身状态下开启,也可以在角色状态下开启,循环开启前均会先附身;\n5、0命芙芙世界等级8的情况下:科西霍循环6-10次、海浪中的莎孚循环14-18次,时间充裕的情况下可以按最低循环次数多尝试,避免误杀没拿到成就。", "tags": [] }, { @@ -10363,6 +12304,15 @@ "author": "风埠", "description": "领取洞天宝钱和好感~|~领取洞天宝钱和好感", "tags": [] + }, + { + "name": "鸡腿好感", + "type": "directory", + "hash": "9d0158426fad3ee24a79ab74a6cdbd28f1e0f5ab", + "version": "1.0", + "author": "花火", + "description": "鸡腿好感~|~通过喂狗突发事件刷好感度,使用满员好感度队伍", + "tags": [] } ] }, @@ -10730,6 +12680,86 @@ "胡桃" ] }, + { + "name": "艾梅莉埃(锄地专版).txt", + "type": "file", + "hash": "07c8e948c77f66a67c2c1fd58691ee161f91578d", + "version": "07c8e94", + "author": "johsang", + "description": "定制万叶长战技和小风穴吸材料,想全捡的朋友可以来试试", + "tags": [ + "迪希雅", + "万叶", + "琴", + "艾梅莉埃" + ] + }, + { + "name": "艾梅莉埃(锄地加长版).txt", + "type": "file", + "hash": "95a598db390327c50ab04e3fd023467eb9aacf32", + "version": "95a598d", + "author": "johsang", + "description": "详见锄地专版,如果还打不完可无限复制粘贴", + "tags": [ + "迪希雅", + "万叶", + "琴", + "艾梅莉埃" + ] + }, + { + "name": "艾梅莉埃(锄地联机版).txt", + "type": "file", + "hash": "7b35299426372be7d697326b39c05d8b4845ae22", + "version": "7b35299", + "author": "johsang", + "description": "详见锄地专版,只推荐高配艾玩,视情况复制粘贴循环即可加长,目前attack持续时间和联机死亡复活还有一些bug,测试用", + "tags": [ + "艾梅莉埃", + "迪希雅" + ] + }, + { + "name": "芙宁娜(锄地专版).txt", + "type": "file", + "hash": "aaaafea656efce02162c2951e8b7bb1760481d52", + "version": "aaaafea", + "author": "johsang", + "description": "定制万叶长战技和小风穴吸材料,想全捡的朋友可以来试试", + "tags": [ + "芙宁娜", + "万叶", + "钟离", + "琴" + ] + }, + { + "name": "芙宁娜(锄地加长版).txt", + "type": "file", + "hash": "f28d7e4410a878000e9eeb76027da1ec2b65722f", + "version": "f28d7e4", + "author": "johsang", + "description": "详见锄地专版,可以通过修改[钟离 e(hold) 万叶 e(hold),attack]数量控制时间,更长时间视情况补[芙宁娜 q,e]", + "tags": [ + "芙宁娜", + "万叶", + "钟离", + "琴" + ] + }, + { + "name": "芙宁娜(锄地联机版).txt", + "type": "file", + "hash": "126656c78b2c18c198667c92341d0f8748763270", + "version": "126656c", + "author": "johsang", + "description": "详见锄地专版,只适合满命芙玩,视情况复制粘贴循环即可加长,目前attack持续时间和联机死亡复活还有一些bug,测试用", + "tags": [ + "芙宁娜", + "万叶" + ] + }, { "name": "草行久钟(草神瞎转点不了种子).txt", "type": "file", diff --git a/repo/combat/艾梅莉埃(锄地专版).txt b/repo/combat/艾梅莉埃(锄地专版).txt new file mode 100644 index 00000000..d1f8db33 --- /dev/null +++ b/repo/combat/艾梅莉埃(锄地专版).txt @@ -0,0 +1,18 @@ +// 作者: johsang +// 描述: 定制万叶长战技和小风穴吸材料,想全捡的朋友可以来试试 +//推荐满命琴减伤奶,没有琴可以用讨龙蓝砚代替,[琴 q]/[琴 attack]修改为[蓝砚 e] +//推荐迪希雅对空挂火减伤抗打断,没有可以用班尼特/烟绯,[迪希雅 e]修改为[班尼特 e,q]/[烟绯 e,q] +//推荐迪希雅带草套西风,堆生命防御;琴带宗室西风,堆充能暴击 +//队伍追求速度,吃双风迪希雅琴的移速加成,想加强生存也可换成钟离芭芭拉等 +//没用御剑琴是因为目前路线之间衔接太慢,且q后置吃不到宗室,也有极小概率爆冲跳崖,想用的可[琴 q]与[琴 attack]互换位置,若零命万叶还需把[迪希雅 e]改为[迪希雅 e,attack(1)] +//低配电脑可能会卡行动,需要插入wait,比如万叶行动最后插入[,wait(0.3)] +//联机版因为只运行一次有定制,日用循环可以删后三行加速,但不改也不是不能用() +//顶配实测除个别盾怪水怪稳定伤害溢出,中低配打群怪精英可选锄地加长版 + +迪希雅 e +万叶 e(hold),attack +琴 q +艾梅莉埃 e,q +迪希雅 e +万叶 e(hold),attack +琴 attack \ No newline at end of file diff --git a/repo/combat/艾梅莉埃(锄地加长版).txt b/repo/combat/艾梅莉埃(锄地加长版).txt new file mode 100644 index 00000000..3e0bd9c8 --- /dev/null +++ b/repo/combat/艾梅莉埃(锄地加长版).txt @@ -0,0 +1,19 @@ +// 作者: johsang +// 描述: 详见锄地专版,如果还打不完可无限复制粘贴 +//艾梅莉埃 e,q +//迪希雅 e,q,attack(4),e,attack(4) +//万叶 e(hold),attack +//琴 attack +//到底部直到够,粘贴后记得删除// + +迪希雅 e +万叶 e(hold),attack +琴 q +艾梅莉埃 e,q +迪希雅 e +万叶 e(hold),attack,q +琴 attack +迪希雅 q,attack(4),e +万叶 e(hold),attack +琴 attack + diff --git a/repo/combat/艾梅莉埃(锄地联机版).txt b/repo/combat/艾梅莉埃(锄地联机版).txt new file mode 100644 index 00000000..50c293ab --- /dev/null +++ b/repo/combat/艾梅莉埃(锄地联机版).txt @@ -0,0 +1,6 @@ +// 作者: johsang +// 描述: 详见锄地专版,只推荐高配艾玩,视情况复制粘贴循环即可加长,目前attack持续时间和联机死亡复活还有一些bug,测试用 + +艾梅莉埃 e,q +迪希雅 e,q,attack(4),e,attack(4) + diff --git a/repo/combat/芙宁娜(锄地专版).txt b/repo/combat/芙宁娜(锄地专版).txt new file mode 100644 index 00000000..afeee343 --- /dev/null +++ b/repo/combat/芙宁娜(锄地专版).txt @@ -0,0 +1,16 @@ +// 作者: johsang +// 描述: 定制万叶长战技和小风穴吸材料,想全捡的朋友可以来试试 +//推荐钟离带磐岩西风,有茜特菈莉带绘卷专武更好,[钟离 e(hold)]修改为[茜特菈莉 e] +//推荐琴带飞天御剑,堆充能攻击治疗 +//队伍追求速度,吃双风琴二命御剑的移速加成,想加强生存也可换成芭芭拉希格雯等 +//低配电脑可能会卡行动,需要插入wait,比如万叶行动最后插入[,wait(0.3)] +//非满命芙可以删掉[芙宁娜 attack(5)],即把3-5行改成[钟离 e(hold),attack(3),q] +//联机版因为只运行一次有定制,日用刷本循环可以删后两行加速,但不改也不是不能用() +//顶配实测除个别盾怪水怪稳定伤害溢出,中低配打群怪精英可选锄地加长版 + +芙宁娜 q,e +万叶 e(hold),attack +钟离 e(hold) +芙宁娜 attack(5) +万叶 e(hold),attack +琴 q diff --git a/repo/combat/芙宁娜(锄地加长版).txt b/repo/combat/芙宁娜(锄地加长版).txt new file mode 100644 index 00000000..45150e14 --- /dev/null +++ b/repo/combat/芙宁娜(锄地加长版).txt @@ -0,0 +1,20 @@ +// 作者: johsang +// 描述: 详见锄地专版,可以通过修改[钟离 e(hold) 万叶 e(hold),attack]数量控制时间,更长时间视情况补[芙宁娜 q,e] + + +芙宁娜 q,e +万叶 e(hold),attack +钟离 e(hold) +芙宁娜 attack(5) +万叶 e(hold),attack,q +琴 q +钟离 q +万叶 e(hold),attack +芙宁娜 q,e +钟离 e(hold) +万叶 e(hold),attack +钟离 e(hold) +万叶 e(hold),attack +钟离 e(hold) +万叶 e(hold),attack +琴 q diff --git a/repo/combat/芙宁娜(锄地联机版).txt b/repo/combat/芙宁娜(锄地联机版).txt new file mode 100644 index 00000000..f5e31f56 --- /dev/null +++ b/repo/combat/芙宁娜(锄地联机版).txt @@ -0,0 +1,7 @@ +// 作者: johsang +// 描述: 详见锄地专版,只适合满命芙玩,视情况复制粘贴循环即可加长,目前attack持续时间和联机死亡复活还有一些bug,测试用 + +芙宁娜 q,e +万叶 e(hold),attack +芙宁娜 attack(8) +万叶 e(hold),attack diff --git a/repo/js/AutoCatherine/assets/枫丹凯瑟琳.json b/repo/js/AutoCatherine/assets/枫丹凯瑟琳.json index 0da20f2c..89f0c2ab 100644 --- a/repo/js/AutoCatherine/assets/枫丹凯瑟琳.json +++ b/repo/js/AutoCatherine/assets/枫丹凯瑟琳.json @@ -12,17 +12,17 @@ "id": 1, "x": 4509.96044921875, "y": 3630.826904296875, - "type": "teleport", + "action": "", "move_mode": "walk", - "action": "" + "type": "teleport" }, { "id": 2, - "x": 4496.73193359375, - "y": 3638.144287109375, - "type": "path", + "x": 4495.000794515572, + "y": 3639.75, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" } ] } \ No newline at end of file diff --git a/repo/js/AutoCatherine/manifest.json b/repo/js/AutoCatherine/manifest.json index 59da9f52..e21ab747 100644 --- a/repo/js/AutoCatherine/manifest.json +++ b/repo/js/AutoCatherine/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "自动找凯瑟琳", - "version": "1.0", + "version": "1.1", "description": "去找凯瑟琳(基于路径追踪)", "authors": [ { diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-27个-椴木-30个(小循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-27个-椴木-30个(小循环).json new file mode 100644 index 00000000..9b6ec3da --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-27个-椴木-30个(小循环).json @@ -0,0 +1,74 @@ +{ + "info": { + "name": "卡布狄斯堡遗迹-悬铃木-51个-椴木-33个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 3, + "x": 3250.01171875, + "y": 2762.572509765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 4, + "x": 3252.6640625, + "y": 2753.50537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3212.640625, + "y": 2730.0439453125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 6, + "x": 3212.962890625, + "y": 2713.168701171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 7, + "x": 3191.3779296875, + "y": 2694.701171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 3202.04296875, + "y": 2720.28369140625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 9, + "x": 3188.1435546875, + "y": 2733.958740234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + } + ] + } \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-42个-椴木-30个(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-42个-椴木-30个(循环).json new file mode 100644 index 00000000..8f07e16d --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-42个-椴木-30个(循环).json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "卡布狄斯堡遗迹-悬铃木-51个-椴木-33个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 3, + "x": 3250.01171875, + "y": 2762.572509765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 4, + "x": 3252.6640625, + "y": 2753.50537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3212.640625, + "y": 2730.0439453125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 6, + "x": 3212.962890625, + "y": 2713.168701171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 7, + "x": 3191.3779296875, + "y": 2694.701171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 3202.04296875, + "y": 2720.28369140625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 9, + "x": 3188.1435546875, + "y": 2733.958740234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 10, + "x": 3183.2021484375, + "y": 2772.982421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1)" + }, + { + "id": 11, + "x": 3179.90234375, + "y": 2792.812255859375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] + } \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-51个-椴木-33个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-51个-椴木-33个(大循环).json new file mode 100644 index 00000000..109943e5 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-悬铃木-椴木/枫丹-卡布狄斯堡遗迹-悬铃木-51个-椴木-33个(大循环).json @@ -0,0 +1,118 @@ +{ + "info": { + "name": "卡布狄斯堡遗迹-悬铃木-51个-椴木-33个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3252.224609375, + "y": 2963.4765625 + }, + { + "id": 2, + "x": 3232.0205078125, + "y": 2843.3056640625, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 4, + "x": 3251.67578125, + "y": 2788.007568359375, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": 3250.01171875, + "y": 2762.572509765625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "click,wait(2),keypress(VK_Z)" + }, + { + "id": 4, + "x": 3252.6640625, + "y": 2753.50537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3212.640625, + "y": 2730.0439453125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 6, + "x": 3212.962890625, + "y": 2713.168701171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 7, + "x": 3191.3779296875, + "y": 2694.701171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 3202.04296875, + "y": 2720.28369140625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 9, + "x": 3188.1435546875, + "y": 2733.958740234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 10, + "x": 3183.2021484375, + "y": 2772.982421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1)" + }, + { + "id": 11, + "x": 3179.90234375, + "y": 2792.812255859375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] + } \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-白梣木/枫丹-苍晶区-白梣木-75个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-白梣木/枫丹-苍晶区-白梣木-75个(大循环).json new file mode 100644 index 00000000..90dd6090 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-白梣木/枫丹-苍晶区-白梣木-75个(大循环).json @@ -0,0 +1,115 @@ +{ + "info": { + "name": "枫丹-苍晶区-白梣木-75个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4689.58935546875, + "y": 2429.309326171875 + }, + { + "id": 3, + "x":4702.38037109375, + "y":2459.947509765625, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "click,wait(2),keypress(VK_Z)" + }, + { + "id": 4, + "x": 4730.1552734375, + "y": 2477.38818359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 5, + "x": 4742.123046875, + "y": 2492.362060546875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 6, + "x": 4747.15869140625, + "y": 2507.729248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x":4740.48876953125, + "y":2528.6259765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 4723.4130859375, + "y": 2545.822509765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 9, + "x":4697.5166015625, + "y":2533.1142578125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(2)" + }, + { + "id": 10, + "x": 4684.84521484375, + "y": 2537.250732421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 11, + "x":4675.2841796875, + "y":2504.705322265625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "x":4655.4921875, + "y":2485.709716796875, + "type":"path", + "move_mode":"run" + }, + { + "id": 12, + "x":4651.8828125, + "y":2447.710205078125, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-白梣木/枫丹-苍晶区-白梣木-75个(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-白梣木/枫丹-苍晶区-白梣木-75个(循环).json new file mode 100644 index 00000000..22837c13 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-白梣木/枫丹-苍晶区-白梣木-75个(循环).json @@ -0,0 +1,107 @@ +{ + "info": { + "name": "枫丹-苍晶区-白梣木-75个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 3, + "x":4702.38037109375, + "y":2459.947509765625, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": 4730.1552734375, + "y": 2477.38818359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 5, + "x": 4742.123046875, + "y": 2492.362060546875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 6, + "x": 4747.15869140625, + "y": 2507.729248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x":4740.48876953125, + "y":2528.6259765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 4723.4130859375, + "y": 2545.822509765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 9, + "x":4697.5166015625, + "y":2533.1142578125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(2)" + }, + { + "id": 10, + "x": 4684.84521484375, + "y": 2537.250732421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 11, + "x":4675.2841796875, + "y":2504.705322265625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "x":4655.4921875, + "y":2485.709716796875, + "type":"path", + "move_mode":"run" + }, + { + "id": 12, + "x":4651.8828125, + "y":2447.710205078125, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木-萃华木/枫丹-枫丹廷-香柏木-27个-萃华木-15个-59秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木-萃华木/枫丹-枫丹廷-香柏木-27个-萃华木-15个-59秒(循环).json new file mode 100644 index 00000000..9803d1d5 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木-萃华木/枫丹-枫丹廷-香柏木-27个-萃华木-15个-59秒(循环).json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "枫丹-枫丹廷-香柏木-27个-萃华木-15个-59秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4639.6904296875, + "y": 3902.56201171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 3, + "x": 4612.08740234375, + "y": 3899.449951171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": 4600.353515625, + "y": 3876.9326171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 5, + "x": 4608.41650390625, + "y": 3869.802734375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3),keypress(VK_Z)" + }, + { + "id": 6, + "x": 4645.93310546875, + "y": 3871.053955078125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 7, + "x": 4640.2685546875, + "y": 3887.483154296875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 8, + "x": 4653.9873046875, + "y": 3896.05908203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4661.322265625, + "y": 3892.666748046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 10, + "x": 4643.06005859375, + "y": 3908.08740234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木-萃华木/枫丹-枫丹廷-香柏木-9个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木-萃华木/枫丹-枫丹廷-香柏木-9个(大循环).json new file mode 100644 index 00000000..2c2d696c --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木-萃华木/枫丹-枫丹廷-香柏木-9个(大循环).json @@ -0,0 +1,37 @@ +{ + "info": { + "name": "枫丹-枫丹廷-香柏木-9个(大循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4701.4755859375, + "y": 3959.022216796875 + }, + { + "id": 2, + "x": 4684.9453125, + "y": 3949.1728515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4642.9375, + "y": 3907.40185546875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木/枫丹-秋分山西侧-香柏木-0个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木/枫丹-秋分山西侧-香柏木-0个(大循环).json new file mode 100644 index 00000000..262e3ff5 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木/枫丹-秋分山西侧-香柏木-0个(大循环).json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "枫丹-秋分山西侧-香柏木-0个(大循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4146.6630859375, + "y": 2606.2529296875 + }, + { + "id": 2, + "x": 4150.46875, + "y": 2547.546630859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 4156.419921875, + "y": 2474.727783203125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 4161.18603515625, + "y": 2415.501708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4156.50537109375, + "y": 2383.64892578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 4125.1455078125, + "y": 2356.02685546875, + "type": "path", + "move_mode": "run", + "action": "" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木/枫丹-秋分山西侧-香柏木-72个-49秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木/枫丹-秋分山西侧-香柏木-72个-49秒(循环).json new file mode 100644 index 00000000..c9ba6439 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/枫丹-香柏木/枫丹-秋分山西侧-香柏木-72个-49秒(循环).json @@ -0,0 +1,73 @@ +{ + "info": { + "name": "枫丹-秋分山西侧-香柏木-72个-49秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4117.29296875, + "y": 2335.499755859375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 2, + "x": 4110.03759765625, + "y": 2351.5625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4093.4404296875, + "y": 2347.26416015625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": 4082.8291015625, + "y": 2345.908935546875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3.4),keypress(VK_Z)" + }, + { + "id": 6, + "x": 4088.2490234375, + "y": 2377.537353515625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.5),keypress(VK_Z)" + }, + { + "id": 7, + "x": 4110.20361328125, + "y": 2376.251953125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.2),keypress(VK_Z)" + }, + { + "id": 8, + "x": 4121.8623046875, + "y": 2371.576904296875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-却砂木/璃月-归离原-却砂木-39个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-却砂木/璃月-归离原-却砂木-39个(大循环).json new file mode 100644 index 00000000..dc994a68 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-却砂木/璃月-归离原-却砂木-39个(大循环).json @@ -0,0 +1,98 @@ +{ + "info": { + "name": "璃月-归离原-却砂木-39个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 341.3017578125, + "y": 548.232421875 + }, + { + "id": 2, + "x": 350.7763671875, + "y": 542.86328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 367.6201171875, + "y": 524.19580078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x":406.9091796875, + "y":503.80615234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1.2)" + }, + { + "id": 5, + "x": 418.763671875, + "y": 494.4697265625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1.5)" + }, + { + "id": 7, + "x": 417.869140625, + "y": 479.9580078125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1)" + }, + { + "id": 7, + "x": 430.8212890625, + "y": 464.87109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 420.044921875, + "y": 474.55419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x":396.82421875, + "y":461.33837890625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1)" + }, + { + "id": 10, + "x": 386.46875, + "y": 475.10400390625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-却砂木/璃月-归离原-却砂木-39个(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-却砂木/璃月-归离原-却砂木-39个(循环).json new file mode 100644 index 00000000..698f5079 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-却砂木/璃月-归离原-却砂木-39个(循环).json @@ -0,0 +1,74 @@ +{ + "info": { + "name": "璃月-归离原-却砂木-39个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 4, + "x":406.9091796875, + "y":503.80615234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1.2)" + }, + { + "id": 5, + "x": 418.763671875, + "y": 494.4697265625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1.5)" + }, + { + "id": 7, + "x": 417.869140625, + "y": 479.9580078125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1)" + }, + { + "id": 7, + "x": 430.8212890625, + "y": 464.87109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 420.044921875, + "y": 474.55419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x":396.82421875, + "y":461.33837890625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1)" + }, + { + "id": 10, + "x": 386.46875, + "y": 475.10400390625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-竹节/璃月-轻策庄-竹节-0个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-竹节/璃月-轻策庄-竹节-0个(大循环).json new file mode 100644 index 00000000..426abe4b --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-竹节/璃月-轻策庄-竹节-0个(大循环).json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "璃月-轻策庄-竹节-0个(大循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 839.76953125, + "y": 1532.56201171875 + }, + { + "id": 2, + "x": 846.3828125, + "y": 1567.5322265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 843.6962890625, + "y": 1588.63232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 852.4560546875, + "y": 1621.3076171875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-竹节/璃月-轻策庄-竹节-78个-29秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-竹节/璃月-轻策庄-竹节-78个-29秒(循环).json new file mode 100644 index 00000000..a9af93b6 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/璃月-竹节/璃月-轻策庄-竹节-78个-29秒(循环).json @@ -0,0 +1,55 @@ +{ + "info": { + "name": "璃月-轻策庄-竹节-78个-29秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 856.779296875, + "y": 1611.1357421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 2, + "x": 849.48828125, + "y": 1618.41357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 841.259765625, + "y": 1620.26318359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": 863.1455078125, + "y": 1628.45458984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": 853.6552734375, + "y": 1620.3740234375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-御伽木/稻妻-水月池-御伽木-18个-90秒(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-御伽木/稻妻-水月池-御伽木-18个-90秒(大循环).json new file mode 100644 index 00000000..e6c1eb8b --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-御伽木/稻妻-水月池-御伽木-18个-90秒(大循环).json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "稻妻-水月池-御伽木-18个-90秒(大循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -765.9765625, + "y": -3557.2373046875 + }, + { + "id": 1, + "move_mode": "walk", + "type": "path", + "x": -769.482421875, + "y": -3564.517578125, + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 2, + "x": -816.1904296875, + "y": -3573.5, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 3, + "x": -821.5322265625, + "y": -3574.7109375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 4, + "x": -849.0185546875, + "y": -3570.8974609375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 5, + "x": -864.98046875, + "y": -3567.7685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -887.6640625, + "y": -3559.587890625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 7, + "x": -910.5625, + "y": -3562.7099609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -917.703125, + "y": -3575.3076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -931.0029296875, + "y": -3580.3095703125, + "type": "path", + "move_mode": "jump", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 10, + "x": -951.080078125, + "y": -3576.3466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -966.15625, + "y": -3581.255859375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 12, + "x": -964.04296875, + "y": -3596.123046875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_SPACE),wait(2.4),click" + }, + { + "id": 13, + "x": -984.0888671875, + "y": -3598.572265625, + "type": "path", + "move_mode": "walk" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-御伽木/稻妻-水月池-御伽木-57个-64秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-御伽木/稻妻-水月池-御伽木-57个-64秒(循环).json new file mode 100644 index 00000000..02e6154b --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-御伽木/稻妻-水月池-御伽木-57个-64秒(循环).json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "稻妻-水月池-御伽木-57个-64秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -990.55859375, + "y": -3603.63671875, + "type": "path", + "move_mode": "jump", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": -998.9541015625, + "y": -3615.333984375, + "type": "path", + "move_mode": "jump", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 3, + "x": -999.70703125, + "y": -3613.2158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1021.2041015625, + "y": -3597.5751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1032.5419921875, + "y": -3584.6201171875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 7, + "x": -1033.2177734375, + "y": -3579.5498046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 8, + "x": -1033.6875, + "y": -3544.4248046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + + { + "id": 15, + "x": -1020.5078125, + "y": -3555.53125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1022.1796875, + "y": -3563.6484375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 10, + "x": -1017.20703125, + "y": -3572.90625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1019.97656255, + "y": -3576.072265625, + "type": "path", + "move_mode": "jump", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 12, + "x": -1009.740234375, + "y": -3594.962890625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.5),keypress(VK_Z)" + }, + { + "id": 17, + "x": -998.564453125, + "y": -3599.2060546875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-梦见木/稻妻-甘金岛-梦见木-45个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-梦见木/稻妻-甘金岛-梦见木-45个(大循环).json new file mode 100644 index 00000000..bc8d9773 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-梦见木/稻妻-甘金岛-梦见木-45个(大循环).json @@ -0,0 +1,105 @@ +{ + "info": { + "name": "稻妻-甘金岛-梦见木-45个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4232.216796875, + "y": -3002.05078125 + }, + { + "x":-4224.681640625, + "y":-2989.810546875, + "type":"path", + "move_mode":"run" + }, + { + "id": 2, + "x": -4141.107421875, + "y": -2998.44140625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -4003.716796875, + "y": -2969.8173828125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": -3996.86328125, + "y": -2976.578125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1.5)" + }, + { + "id": 5, + "x": -4010.0439453125, + "y": -2984.115234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 6, + "x": -4031.265625, + "y": -3000.931640625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 7, + "x": -4039.6923828125, + "y": -3022.5771484375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 8, + "x": -4020.197265625, + "y": -3013.8046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.8)" + }, + { + "id": 9, + "x": -4001.1005859375, + "y": -3007.08984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 10, + "x": -3978.7841796875, + "y": -2991.3134765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-梦见木/稻妻-甘金岛-梦见木-45个(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-梦见木/稻妻-甘金岛-梦见木-45个(循环).json new file mode 100644 index 00000000..fa143d59 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-梦见木/稻妻-甘金岛-梦见木-45个(循环).json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "稻妻-甘金岛-梦见木-45个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 4, + "x": -3996.86328125, + "y": -2976.578125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1.5)" + }, + { + "id": 5, + "x": -4010.0439453125, + "y": -2984.115234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 6, + "x": -4031.265625, + "y": -3000.931640625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 7, + "x": -4039.6923828125, + "y": -3022.5771484375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.5)" + }, + { + "id": 8, + "x": -4020.197265625, + "y": -3013.8046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(0.8)" + }, + { + "id": 9, + "x": -4001.1005859375, + "y": -3007.08984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 10, + "x": -3978.7841796875, + "y": -2991.3134765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-绯木村-枫木-42个-83秒.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-绯木村-枫木-42个-83秒.json new file mode 100644 index 00000000..2b7a575f --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-绯木村-枫木-42个-83秒.json @@ -0,0 +1,140 @@ +{ + "info": { + "name": "稻妻-绯木村-枫木-42个-83秒", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2216.0390625, + "y": -3709.5185546875 + }, + { + "id": 2, + "x": -2225.91796875, + "y": -3696.6591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2218.095703125, + "y": -3687.4287109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": -2250.16796875, + "y": -3669.9052734375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": -2253.5703125, + "y": -3687.4755859375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2),keypress(VK_Z)" + }, + { + "id": 6, + "x": -2252.6865234375, + "y": -3704.5859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2223.591796875, + "y": -3737.7177734375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 7, + "x": -2195.1572265625, + "y": -3730.41015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2191.1083984375, + "y": -3724.37890625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 9, + "x": -2191.3876953125, + "y": -3762.783203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2187.2578125, + "y": -3765.4208984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 11, + "x": -2192.4541015625, + "y": -3770.97265625, + "type": "path", + "move_mode": "jump", + "action": "" + }, + { + "id": 12, + "x": -2184.8759765625, + "y": -3777.056640625, + "type": "path", + "move_mode": "jump", + "action": "" + }, + { + "id": 13, + "x": -2190.5009765625, + "y": -3789.6015625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 15, + "x": -2166.4951171875, + "y": -3789.8466796875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-镇守之森-孔雀木-51个-御伽木-9个-萃华木-3个-60秒.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-镇守之森-孔雀木-51个-御伽木-9个-萃华木-3个-60秒.json new file mode 100644 index 00000000..21fae05c --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/稻妻-镇守之森-孔雀木-51个-御伽木-9个-萃华木-3个-60秒.json @@ -0,0 +1,130 @@ +{ + "info": { + "name": "稻妻-镇守之森-孔雀木-51个-御伽木-9个-萃华木-3个-60秒", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4429.86328125, + "y": -2798.49609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -4430.525390625, + "y": -2782, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 3, + "x": -4422.7421875, + "y": -2775.1376953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4411.763671875, + "y": -2781.984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 5, + "x": -4408.1640625, + "y": -2791.5205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -4412.888671875, + "y": -2802.60546875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 7, + "x": -4423.61328125, + "y": -2810.6416015625, + "type": "path", + "move_mode": "jump", + "action": "" + }, + { + "id": 8, + "x": -4431.37890625, + "y": -2809.3681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -4449.60546875, + "y": -2809.2783203125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 10, + "x": -4457.734375, + "y": -2810.76953125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 11, + "x": -4470.134765625, + "y": -2815.0703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -4482.890625, + "y": -2802.5693359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 13, + "x": -4487.61328125, + "y": -2782.6162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -4502.759765625, + "y": -2787.203125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-奥奇卡纳塔-灰灰楼林木-42个-79秒.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-奥奇卡纳塔-灰灰楼林木-42个-79秒.json new file mode 100644 index 00000000..6de8cee2 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-奥奇卡纳塔-灰灰楼林木-42个-79秒.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "纳塔-奥奇卡纳塔-灰灰楼林木-42个-79秒", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 10112.84375, + "y": -140.396484375 + }, + { + "id": 3, + "x": 10103.2021484375, + "y": -153.8212890625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 4, + "x": 10089.7060546875, + "y": -164.4853515625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_D),wait(0.2),click(right),wait(1.5),keypress(VK_Z)" + }, + { + "id": 6, + "x": 10071.0634765625, + "y": -161.73291015625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 7, + "x": 10079.775390625, + "y": -138.1982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 10066.123046875, + "y": -114.41357421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 9, + "x": 10028.55078125, + "y": -108.58447265625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 10, + "x": 10016.900390625, + "y": -96.97314453125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2.2),keypress(VK_Z)" + }, + { + "id": 11, + "x": 10001.560546875, + "y": -122.64990234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 12, + "x": 9987.533203125, + "y": -131.4619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9989.78515625, + "y": -139.154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 10014.744140625, + "y": -138.822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 10010.353515625, + "y": -166.6484375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.2),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-灰灰楼林木/纳塔-圣火竞技场-灰灰楼林木-45个(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-灰灰楼林木/纳塔-圣火竞技场-灰灰楼林木-45个(循环).json new file mode 100644 index 00000000..06559d92 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-灰灰楼林木/纳塔-圣火竞技场-灰灰楼林木-45个(循环).json @@ -0,0 +1,197 @@ +{ + "info": { + "name": "圣火竞技场-灰灰楼林木-45个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 9084.1533203125, + "y": -1965.34228515625 + }, + { + "id": 2, + "x": 9087.37109375, + "y": -1973.052734375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x":9169.03125, + "y":-1980.80224609375, + "type": "path", + "move_mode": "fly" + }, + { + "id": 4, + "x":9169.03125, + "y":-1980.80224609375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack,wait(2.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": 9172.3544921875, + "y": -2007.03564453125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "x": 9121.1171875, + "y": -2036.306640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x":9080.896484375, + "y":-2066.771484375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x":9016.5927734375, + "y":-2071.2451171875, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x":9030.9599609375, + "y":-2024.08544921875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 9, + "x": 8980.2958984375, + "y": -2011.39306640625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 10, + "x": 8959.904296875, + "y": -1997.68798828125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 11, + "x": 8926.251953125, + "y": -1970.87255859375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 12, + "x": 8899.259765625, + "y": -1916.20361328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 13, + "x": 8882.5625, + "y": -1914.72412109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 14, + "x": 8889.33984375, + "y": -1885.9443359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 1, + "x": 8978.314453125, + "y": -1872.32763671875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "id": 2, + "x": 8969.697265625, + "y": -1847.46142578125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 9009.60546875, + "y": -1781.88623046875, + "type": "path", + "move_mode": "fly" + }, + { + "id": 4, + "x": 9009.60546875, + "y": -1781.88623046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack,wait(2.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": 8936.236328125, + "y": -1783.3837890625, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 6, + "x": 8944.193359375, + "y": -1816.3232421875, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 7, + "x": 8885.208984375, + "y": -1810.33447265625, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-白栗栎木-燃爆木/纳塔-回声之子-白栗栎木-33个-燃爆木-27个.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-白栗栎木-燃爆木/纳塔-回声之子-白栗栎木-33个-燃爆木-27个.json new file mode 100644 index 00000000..bc60d02f --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-白栗栎木-燃爆木/纳塔-回声之子-白栗栎木-33个-燃爆木-27个.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "回声之子-白栗栎木-33个-燃爆木-27个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 7633.859375, + "y": -1646.6982421875 + }, + { + "id": 2, + "x": 7626.90625, + "y": -1639.8232421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": 7578.19384765625, + "y": -1687.45849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x":7531.408203125, + "y":-1707.43896484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 7519.7353515625, + "y": -1699.18798828125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 7, + "x":7483.171875, + "y":-1650.626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x":7478.20166015625, + "y":-1626.26416015625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 7497.3818359375, + "y": -1556.83837890625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z),wait(1.5)" + }, + { + "id": 9, + "x": 7496.97607421875, + "y": -1540.78662109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 10, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 7229.10, + "y": -1441.13 + }, + { + "x":7255.64501953125, + "y":-1431.7705078125, + "type":"path", + "move_mode":"walk" + }, + { + "id": 11, + "x": 7257.61083984375, + "y": -1423.62939453125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 12, + "x": 7207.01220703125, + "y": -1437.00830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 7198.01220703125, + "y": -1437.18359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] + } \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-白栗栎木-燃爆木/纳塔-踞石山-白栗栎木-36个.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-白栗栎木-燃爆木/纳塔-踞石山-白栗栎木-36个.json new file mode 100644 index 00000000..0d38acb4 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-白栗栎木-燃爆木/纳塔-踞石山-白栗栎木-36个.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "白栗栎木-踞石山-36个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8286.041015625, + "y": -2521.2783203125 + }, + { + "id": 2, + "x":8279.2275390625, + "y":-2523.287109375, + "type": "path", + "move_mode": "fly" + }, + { + "id": 3, + "x":8279.2275390625, + "y":-2523.287109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack,wait(2.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": 8266.060546875, + "y": -2499.291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8251.76171875, + "y": -2471.82421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8235.66015625, + "y": -2446.724609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8222.3974609375, + "y": -2444.3203125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 7, + "x": 8176.63818359375, + "y": -2424.1708984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 8166.3349609375, + "y": -2433.0185546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8155.7978515625, + "y": -2430.185546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8156.60302734375, + "y": -2415.5341796875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 11, + "x": 8147.0302734375, + "y": -2440.24609375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 12, + "x": 8150.5712890625, + "y": -2492.11328125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-隆崛坡-燃爆木-54个-105秒.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-隆崛坡-燃爆木-54个-105秒.json new file mode 100644 index 00000000..3cfdcd76 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/纳塔-隆崛坡-燃爆木-54个-105秒.json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "纳塔-隆崛坡-燃爆木-54个-105秒", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8179.40771484375, + "y": -1868.0712890625 + }, + { + "id": 2, + "x": 8189.26025390625, + "y": -1878.45263671875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 3, + "x": 8171.16455078125, + "y": -1863.49609375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.2),keypress(VK_Z)" + }, + { + "id": 4, + "x": 8171.5244140625, + "y": -1856.505859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8157.283203125, + "y": -1853.572265625, + "type": "path", + "move_mode": "jump", + "action": "" + }, + { + "id": 6, + "x": 8185.99560546875, + "y": -1815.99560546875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "click,wait(2),keypress(VK_Z)" + }, + { + "id": 7, + "x": 8197.6572265625, + "y": -1819.63232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8195.9638671875, + "y": -1795.9658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8183.033203125, + "y": -1785.69921875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "keypress(VK_SPACE),wait(1.5),click,wait(1)" + }, + { + "id": 10, + "x": 8149.8955078125, + "y": -1782.28564453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8141.24560546875, + "y": -1779.4345703125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 12, + "x": 8129.49755859375, + "y": -1769.7880859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8119.33251953125, + "y": -1777.85302734375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 14, + "x": 8114.55078125, + "y": -1787.61279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8107.9638671875, + "y": -1785.0341796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8085.4140625, + "y": -1768.6962890625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 18, + "x": 8071.65673828125, + "y": -1764.98193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8085.6025390625, + "y": -1739.6494140625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 20, + "x": 8084.8583984375, + "y": -1724.5615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 8059.908203125, + "y": -1728.4453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 8053.916015625, + "y": -1746.35205078125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/萃华木-48个-松木-3-垂香木-9-御伽木-9-香柏木-9-191秒.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/萃华木-48个-松木-3-垂香木-9-御伽木-9-香柏木-9-191秒.json new file mode 100644 index 00000000..b69afb52 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/萃华木-48个-松木-3-垂香木-9-御伽木-9-香柏木-9-191秒.json @@ -0,0 +1,249 @@ +{ + "info": { + "name": "萃华木-48个-松木-3-垂香-9-御伽-9-香柏-9-194秒", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -386.392578125, + "y": 2297.682861328125 + }, + { + "id": 2, + "x": -363.9775390625, + "y": 2290.44873046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(z)" + }, + { + "id": 3, + "x": -867.552734375, + "y": 1992.23779296875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -853.3330078125, + "y": 2022.06884765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(z)" + }, + { + "id": 5, + "x": -1120.9853515625, + "y": 2190.470947265625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1141.447265625, + "y": 2174.13427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1155.9580078125, + "y": 2174.738525390625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(z)" + }, + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4050.087890625, + "y": -2657.3544921875 + }, + { + "id": 2, + "x": -4037.68359375, + "y": -2683.376953125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": -4124.525390625, + "y": -2759.8857421875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4113.591796875, + "y": -2755.4365234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4106.234375, + "y": -2773.64453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -4098.126953125, + "y": -2787.8330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4084.3994140625, + "y": -2797.23046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": -4059.8798828125, + "y": -2794.3505859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -4044.8095703125, + "y": -2803.7744140625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4865.41015625, + "y": 3913.16259765625 + }, + { + "id": 2, + "x": 4837.92724609375, + "y": 3895.598388671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 4810.251953125, + "y": 3858.8310546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 4774.16748046875, + "y": 3802.2998046875, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 6, + "x": 4744.2392578125, + "y": 3797.851318359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 7, + "x": 4733.77001953125, + "y": 3749.589599609375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4701.42724609375, + "y": 3958.91552734375 + }, + { + "id": 2, + "x": 4683.9375, + "y": 3949.414306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4641.37451171875, + "y": 3885.625244140625, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 4, + "x": 4610.77978515625, + "y": 3869.26708984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8),keypress(VK_Z)" + }, + { + "id": 5, + "x": 4597.0283203125, + "y": 3875.97998046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2.5),keypress(VK_Z)" + }, + { + "id": 6, + "x": 4608.9248046875, + "y": 3898.78857421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.2),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-星落湖-桦木-75个-54秒.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-星落湖-桦木-75个-54秒.json new file mode 100644 index 00000000..395fdd88 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-星落湖-桦木-75个-54秒.json @@ -0,0 +1,113 @@ +{ + "info": { + "name": "蒙德-星落湖-桦木-75个-54秒", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1330.0517578125, + "y": 2563.900390625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1324.2451171875, + "y": 2562.7314453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 2, + "x": -1321.0087890625, + "y": 2566.410400390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1299.3505859375, + "y": 2574.847900390625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -1291.8896484375, + "y": 2577.42041015625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "keypress(VK_Z)" + }, + { + "id": 5, + "x": -1285.4482421875, + "y": 2565.784423828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -1311.775390625, + "y": 2530.9931640625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "keypress(VK_Z)" + }, + { + "id": 7, + "x": -1321.0751953125, + "y": 2518.44189453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -1338.51953125, + "y": 2521.916259765625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 9, + "x": -1369.244140625, + "y": 2552.98291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1375.4873046875, + "y": 2553.815673828125, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "keypress(VK_Z)" + }, + { + "id": 11, + "x": -1376.4267578125, + "y": 2578.98876953125, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "wait(0.8),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-杉木/蒙德-达达乌帕谷-杉木-0个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-杉木/蒙德-达达乌帕谷-杉木-0个(大循环).json new file mode 100644 index 00000000..2247b3d8 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-杉木/蒙德-达达乌帕谷-杉木-0个(大循环).json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "蒙德-达达乌帕谷-杉木-0个(大循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1432.6875, + "y": 1464.71533203125 + }, + { + "id": 2, + "x": -1408.2314453125, + "y": 1485.69775390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -1360.306640625, + "y": 1526.39794921875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": -1311.5, + "y": 1501.251285890432, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": -1309.7333984375, + "y": 1485.02001953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1320.392578125, + "y": 1470.60693359375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 7, + "x": -1354.99609375, + "y": 1436.0625, + "type": "path", + "move_mode": "run", + "action": "" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-杉木/蒙德-达达乌帕谷-杉木-69个-58秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-杉木/蒙德-达达乌帕谷-杉木-69个-58秒(循环).json new file mode 100644 index 00000000..4b77f6d7 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-杉木/蒙德-达达乌帕谷-杉木-69个-58秒(循环).json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "蒙德-达达乌帕谷-杉木-69个-58秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "move_mode": "walk", + "type": "path", + "x": -1352.20703125, + "y": 1450.73974609375, + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 2, + "x": -1354.8408203125, + "y": 1468.32373046875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.8),keypress(VK_Z)" + }, + { + "id": 3, + "x": -1369.1982421875, + "y": 1473.8544921875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": -1386.13671875, + "y": 1473.23974609375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2),keypress(VK_Z)" + }, + { + "id": 5, + "x": -1392.37890625, + "y": 1448.9482421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 6, + "x": -1381.6376953125, + "y": 1449.677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1373.20703125, + "y": 1457.39013671875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + }, + { + "id": 10, + "x": -1363.78515625, + "y": 1460.14892578125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3),keypress(VK_Z)" + }, + { + "id": 11, + "x": -1356.53125, + "y": 1426.60986328125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-松木/蒙德-蒙德城-松木-0个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-松木/蒙德-蒙德城-松木-0个(大循环).json new file mode 100644 index 00000000..ab460c33 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-松木/蒙德-蒙德城-松木-0个(大循环).json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "蒙德-蒙德城-松木-0个(大循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -749.1171875, + "y": 2262.842041015625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -780.999418319725, + "y": 2276.754757794599, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-松木/蒙德-蒙德城-松木-48个-43秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-松木/蒙德-蒙德城-松木-48个-43秒(循环).json new file mode 100644 index 00000000..88f20a9e --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-松木/蒙德-蒙德城-松木-48个-43秒(循环).json @@ -0,0 +1,80 @@ +{ + "info": { + "name": "蒙德-蒙德城-松木-48个-43秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -790.3994140625, + "y": 2256.621337890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -777.7216796875, + "y": 2257.013427734375, + "move_mode": "walk", + "type": "path", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 1, + "x": -779.3896484375, + "y": 2285.1611328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -785.5078125, + "y": 2300.47412109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": -788.62890625, + "y": 2306.305908203125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3.5),keypress(VK_Z)" + }, + { + "id": 1, + "x": -782.59765625, + "y": 2289.109619140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 1, + "x": -793.3828125, + "y": 2248.433349609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -788.6083984375, + "y": 2235.560302734375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-风起地-垂香木-48个-萃华木-6个-57秒.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-风起地-垂香木-48个-萃华木-6个-57秒.json new file mode 100644 index 00000000..6ed20a4c --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/蒙德-风起地-垂香木-48个-萃华木-6个-57秒.json @@ -0,0 +1,91 @@ +{ + "info": { + "name": "蒙德-风起地-垂香木-48个-萃华木-6个-57秒", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1121.017578125, + "y": 2190.48486328125, + "type": "teleport", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 2, + "x": -1107.2958984375, + "y": 2210.1455078125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": -1109.6298828125, + "y": 2173.08740234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": -1155.431640625, + "y": 2174.83056640625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": -1152.3603515625, + "y": 2167.70947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1154.1171875, + "y": 2155.71142578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": -1160.6689453125, + "y": 2146.870361328125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 8, + "x": -1175.0341796875, + "y": 2123.09912109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(2),keypress(VK_Z)" + }, + { + "id": 9, + "x": -1180.3759765625, + "y": 2116.396728515625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-上下风蚀地-刺葵木-42个.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-上下风蚀地-刺葵木-42个.json new file mode 100644 index 00000000..5ffda437 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-上下风蚀地-刺葵木-42个.json @@ -0,0 +1,191 @@ +{ + "info": { + "name": "须弥-上下风蚀地-刺葵木-42个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4077.765625, + "y": -2164.19921875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4083.4814453125, + "y": -2127.748046875, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": 4110.85498046875, + "y": -2117.7255859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 4180.05859375, + "y": -2149.1328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 4192.30615234375, + "y": -2164.1181640625, + "action": "combat_script", + "action_params": "keypress(VK_Z)", + "move_mode": "run", + "type": "path" + }, + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4210.15673828125, + "y": -2715.1298828125 + }, + { + "id": 2, + "x": 4205.67333984375, + "y": -2724.9169921875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": 4189.03076171875, + "y": -2715.0224609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4170.8408203125, + "y": -2731.8564453125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 5, + "x": 4132.41650390625, + "y": -2738.4189453125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 6, + "x": 4103.8447265625, + "y": -2732.0302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4092.31640625, + "y": -2744.7451171875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4479.48486328125, + "y": -2918.5439453125 + }, + { + "id": 2, + "x": 4504.37060546875, + "y": -2906.0732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4574.37109375, + "y": -2911.8359375, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": 4605.47509765625, + "y": -2884.7763671875, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": 4649.0595703125, + "y": -2788.5966796875, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 6, + "x": 4660.44677734375, + "y": -2749.330078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 4657.7265625, + "y": -2739.2666015625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 8, + "x": 4665.77099609375, + "y": -2741.431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4698.5712890625, + "y": -2730.5244140625, + "type": "path", + "move_mode": "run", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-业果木/须弥-禅那园-业果木-12个-证悟木-3个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-业果木/须弥-禅那园-业果木-12个-证悟木-3个(大循环).json new file mode 100644 index 00000000..c5d847a1 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-业果木/须弥-禅那园-业果木-12个-证悟木-3个(大循环).json @@ -0,0 +1,37 @@ +{ + "info": { + "name": "须弥-禅那园-业果木-12个-证悟木-3个(大循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3135.7509765625, + "y": -1079.6494140625 + }, + { + "id": 2, + "x": 3156.2080078125, + "y": -1066.37353515625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": 3166.2431640625, + "y": -1077.31982421875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-业果木/须弥-禅那园-业果木-42个-辉木-12个-23秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-业果木/须弥-禅那园-业果木-42个-辉木-12个-23秒(循环).json new file mode 100644 index 00000000..1ccb9330 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-业果木/须弥-禅那园-业果木-42个-辉木-12个-23秒(循环).json @@ -0,0 +1,47 @@ +{ + "info": { + "name": "须弥-禅那园-业果木-42个-辉木-12个-23秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "move_mode": "walk", + "type": "path", + "x": 3175.4052734375, + "y": -1059.90869140625, + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 2, + "x": 3184.5078125, + "y": -1062.76708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3191.4482421875, + "y": -1051.36279296875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": 3176.30078125, + "y": -1066.23876953125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-证悟木/须弥-禅那园-证悟木-3个-业果木-6个-辉木-3个(大循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-证悟木/须弥-禅那园-证悟木-3个-业果木-6个-辉木-3个(大循环).json new file mode 100644 index 00000000..ac240f8a --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-证悟木/须弥-禅那园-证悟木-3个-业果木-6个-辉木-3个(大循环).json @@ -0,0 +1,37 @@ +{ + "info": { + "name": "须弥-禅那园-证悟木-3个-业果木-6个-辉木-3个(大循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3135.6904296875, + "y": -1079.63427734375 + }, + { + "id": 2, + "x": 3148.7041015625, + "y": -1090.595703125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "keypress(VK_Z)" + }, + { + "id": 3, + "x": 3152.1123046875, + "y": -1108.0283203125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-证悟木/须弥-禅那园-证悟木-57个-业果木-24个-62秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-证悟木/须弥-禅那园-证悟木-57个-业果木-24个-62秒(循环).json new file mode 100644 index 00000000..42b21af7 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-证悟木/须弥-禅那园-证悟木-57个-业果木-24个-62秒(循环).json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "须弥-禅那园-证悟木-57个-业果木-24个-62秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3148.9228515625, + "y": -1126.27392578125, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "keypress(VK_Z)" + }, + { + "id": 2, + "x": 3159.2939453125, + "y": -1140.28271484375, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "wait(1.5),keypress(VK_Z)" + }, + { + "id": 3, + "x": 3188.396484375, + "y": -1150.56689453125, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": 3202.716796875, + "y": -1160.197265625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "wait(1.5),keypress(VK_Z)" + }, + { + "id": 5, + "x": 3221.8515625, + "y": -1157.46337890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3235.6943359375, + "y": -1159.15234375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 7, + "x": 3221.2568359375, + "y": -1149.39404296875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(1.5),keypress(VK_Z)" + }, + { + "id": 8, + "x": 3195.572265625, + "y": -1136.73583984375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.8),keypress(VK_Z)" + }, + { + "id": 11, + "x": 3163.83984375, + "y": -1130.91357421875, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "action_params": "wait(0.8),keypress(VK_Z)" + } + ] +} diff --git a/repo/pathing/蒲公英/南风之狮蒲公英1个.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-辉木/须弥-禅那园-辉木-0个(大循环).json similarity index 60% rename from repo/pathing/蒲公英/南风之狮蒲公英1个.json rename to repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-辉木/须弥-禅那园-辉木-0个(大循环).json index b224db40..40ba3389 100644 --- a/repo/pathing/蒲公英/南风之狮蒲公英1个.json +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-辉木/须弥-禅那园-辉木-0个(大循环).json @@ -1,8 +1,8 @@ { "info": { - "name": "南风之狮蒲公英1个", + "name": "须弥-禅那园-辉木-0个(大循环)", "type": "collect", - "author": "", + "author": "Tim", "version": "1.0", "description": "", "bgiVersion": "0.35.1" @@ -10,51 +10,51 @@ "positions": [ { "id": 1, - "x": -1427.75390625, - "y": 1661.5712890625, - "type": "teleport", + "action": "", "move_mode": "walk", - "action": "" + "type": "teleport", + "x": 3135.640625, + "y": -1079.52734375 }, { "id": 2, - "x": -1427.73046875, - "y": 1661.5771484375, + "x": 3167.279296875, + "y": -1077.09326171875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 3, - "x": -1427.7763671875, - "y": 1661.5634765625, + "x": 3175.97265625, + "y": -1061.23583984375, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -1435.2568359375, - "y": 1683.54345703125, + "x": 3186.150390625, + "y": -1066.2529296875, "type": "path", "move_mode": "walk", "action": "" }, { - "id": 5, - "x": -1451.572265625, - "y": 1680.39013671875, + "id": 6, + "x": 3196.205078125, + "y": -1083.77685546875, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { - "id": 6, - "x": -1454.7197265625, - "y": 1680.00927734375, + "id": 7, + "x": 3206.25, + "y": -1067.1474609375, "type": "path", "move_mode": "walk", "action": "" } ] -} \ No newline at end of file +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-辉木/须弥-禅那园-辉木-48个-29秒(循环).json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-辉木/须弥-禅那园-辉木-48个-29秒(循环).json new file mode 100644 index 00000000..6c703f75 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-辉木/须弥-禅那园-辉木-48个-29秒(循环).json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "须弥-禅那园-辉木-48个-29秒(循环)", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "x": 3203.98828125, + "y": -1063.259765625, + "action_params": "wait(3),keypress(VK_Z)" + }, + { + "id": 2, + "x": 3208.5693359375, + "y": -1056.02392578125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3),keypress(VK_Z)" + }, + { + "id": 3, + "x": 3215.537109375, + "y": -1061.00732421875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3),keypress(VK_Z)" + }, + { + "id": 4, + "x": 3211.1552734375, + "y": -1068.49267578125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-阿如村-柽木-42个-65秒.json b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-阿如村-柽木-42个-65秒.json new file mode 100644 index 00000000..9a560e06 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/assets/AutoPath/须弥-阿如村-柽木-42个-65秒.json @@ -0,0 +1,123 @@ +{ + "info": { + "name": "须弥-阿如村-柽木-42个-65秒", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4096.05224609375, + "y": -2025.96875 + }, + { + "id": 2, + "x": 4097.50439453125, + "y": -2036.2197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4112.2109375, + "y": -2034.2060546875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 4, + "x": 4108.60302734375, + "y": -2040.36474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4129.7001953125, + "y": -2047.8935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4151.6357421875, + "y": -2037.359375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 8, + "x": 4145.02294921875, + "y": -2039.63671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4144.703125, + "y": -2017.17041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 4152.56591796875, + "y": -1998.60986328125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + }, + { + "id": 13, + "x": 4144.98681640625, + "y": -1996.576171875, + "type": "path", + "move_mode": "fly", + "action": "combat_script", + "action_params": "click,wait(3),keypress(VK_Z)" + }, + { + "id": 13, + "x": 4136.96875, + "y": -1996.74267578125, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(3),keypress(VK_Z)" + }, + + { + "id": 14, + "x": 4124.5283203125, + "y": -1992.64306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 4108.23486328125, + "y": -1982.93994140625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "wait(0.5),keypress(VK_Z)" + } + ] +} diff --git a/repo/js/AutoWoodcutting-Pathing/main.js b/repo/js/AutoWoodcutting-Pathing/main.js new file mode 100644 index 00000000..39eea10b --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/main.js @@ -0,0 +1,270 @@ +(async function () { + const woodType = ["桦木","萃华木","松木","垂香木","杉木","竹节","却砂木","梦见木","枫木","孔雀木","御伽木","证悟木","业果木","辉木","刺葵木","柽木","悬铃木","椴木","白梣木","香柏木","白栗栎木","燃爆木","灰灰楼林木"]; + const singleWoodType = ["桦木","松木","杉木","竹节","却砂木","梦见木","枫木","孔雀木","御伽木","证悟木","业果木","辉木","刺葵木","柽木","白梣木","白栗栎木","燃爆木","灰灰楼林木"]; + + const woodNumberMap = new Map(woodType.map(key => [key, 0])); + let woodNumberMapCopy = new Map(); + + // 用于求解 垂香木-萃华木-香柏木 路线次数的线性规划求解器, 暴力求解,加一点点剪枝. + function lpsolve1(y1,y2,y3) { + let x1max = Math.ceil(y1 / 48); + let x2max = Math.ceil(y2 / 48); + let x3max = Math.ceil(y2 / 15); + let bestObjectiveValue = Infinity; + let bestSolution; + let x1, x2, x3, x4, v1, v2, v3, v4; + for (x1 = 0, v1 = 57*x1; x1 <= x1max && v1 < bestObjectiveValue; x1++, v1 += 57) { + for (x2 = Math.max(Math.ceil((y1-48*x1)/9), 0), v2 = v1 + 191*x2; x2 <= x2max && v2 < bestObjectiveValue; x2++, v2 += 191) { + for (x3 = Math.max(Math.ceil((y2-6*x1-48*x2)/15),0), v3 = v2 + 59*x3; x3 <= x3max && v3 < bestObjectiveValue; x3++, v3 += 59) { + x4 = Math.max(Math.ceil((y3-9*x2-27*x3)/72),0); + v4 = v3 + 49*x4; + if (v4 < bestObjectiveValue) { + bestObjectiveValue = v4; + bestSolution = [ x1, x2, x3, x4 ]; + break; + } + } + } + } + return bestSolution; + } + + // 求解 悬铃木-椴木 路线次数. + function lpsolve2(y1,y2) { + y1 = Math.max(y1,0); + y2 = Math.max(y2,0); + if (30*y1 > 42*y2) { + return [Math.ceil(y1 / 42), 0]; + } else if (30* y1 < 27*y2) { + return [0, Math.ceil(y2 / 30)]; + } else { + return [Math.ceil((10*y1-9*y2)/150), Math.ceil((14*y2-10*y1)/150)]; + } + } + + function logRemainingItems() { + let target = woodCountToStr(woodNumberMap); + if (target === '') { + const woodNumberMapCopyObj = Object.fromEntries(woodNumberMapCopy); + const differenceMap = new Map([...woodNumberMap].map(([key, value]) => { + return [key, woodNumberMapCopyObj[key]- value]; + })); + log.info(`自动伐木运行结束, 总共获得${woodCountToStr(differenceMap)}`); + } else { + log.info(`剩余${target}`); + } + } + + function woodCountToStr(woodCount, n=1) { + let result = ''; + for (let [key, value] of woodCount) { + if (value > 0) { + result += ` ${key}:${Math.min(value * n, 2000)}`; + } + } + return result; + } + + async function runPathingNTimes(pathingName, wood, n = null) { + if ((n === null && woodNumberMap.get(wood) <= 0) || (n !== null && n <= 0)) { + return; + } + let filePathPre = 'assets/AutoPath/'; + let filePathSuf = '.json'; + let pathing = pathingMap[pathingName]; + if ('folderName' in pathing) { + filePathPre += pathing.folderName + '/'; + } + log.info(`砍伐 ${pathingName}`); + let filePath = filePathPre + pathing.fileName[0] + filePathSuf; + let woodCount = filenameToWoodCountMap(pathing.fileName[0]); + let j = 0; + if (pathing.fileName.length > 1 && pathing.fileName[0].includes('大循环')) { + try { + log.info(`正在执行 ${pathingName} 大循环路径`); + await pathingScript.runFile(filePath); + log.info(`完成 ${pathingName} 大循环路径, 获得${woodCountToStr(woodCount)}`); + woodCount.forEach((value, key) => {woodNumberMap.set(key, woodNumberMap.get(key)-value)}); + } catch (error) { + log.error(`在砍伐 ${pathingName} 时发生错误: ${error}`); + } + woodCount = pathing.fileName.slice(-pathing.fileName.length+1).reduce((accumulator, currentValue) => { + return filenameToWoodCountMap(currentValue, accumulator); + }, new Map()); + j = 1; + } else if (pathing.fileName.length > 1) { + woodCount = pathing.fileName.slice(-pathing.fileName.length+1).reduce((accumulator, currentValue) => { + return filenameToWoodCountMap(currentValue, accumulator); + }, woodCount); + } + if (n === null) { + if (!woodCount.has(wood) || woodCount.get(wood) === 0) { + log.info(`${wood} 路线设置或命名错误`); + return; + } else { + n = Math.ceil(woodNumberMap.get(wood) / woodCount.get(wood)); + } + } + try { + for (let i = 0; i < n; i++) { + log.info(`正在执行 ${pathingName} 第 ${i+1}/${n} 次循环`); + for (let k = j; k < pathing.fileName.length; k++) { + filePath = filePathPre + pathing.fileName[k] + filePathSuf; + await pathingScript.runFile(filePath); + } + log.info(`${pathingName} 第 ${i+1}/${n} 次循环执行完成`); + } + log.info(`完成 ${pathingName} 循环路径, 获得${woodCountToStr(woodCount, n)}`); + woodCount.forEach((value, key) => { + woodNumberMap.set(key, woodNumberMap.get(key)-value*n);}); + log.info(`${pathingName} 伐木完成,将执行下一个`); + logRemainingItems(); + } catch (error) { + log.error(`在砍伐 ${pathingName} 时发生错误: ${error}`); + } + } + + async function woodCutting() { + logRemainingItems(); + await sleep(1000); + if (woodNumberMap.get('萃华木') > 0) { + let [x1,x2,x3,x4] = lpsolve1(woodNumberMap.get('垂香木'),woodNumberMap.get('萃华木'),woodNumberMap.get('香柏木')); + await runPathingNTimes('垂香木', '垂香木', x1); + await runPathingNTimes('萃华木', '萃华木', x2); + await runPathingNTimes('香柏木-萃华木', '香柏木', x3); + await runPathingNTimes('香柏木', '香柏木', x4); + } else { + for (let wood of ['垂香木', '香柏木']) { + await runPathingNTimes(wood, wood); + } + } + + if (woodNumberMap.get('悬铃木') > 0 || woodNumberMap.get('椴木') > 0) { + await runPathingNTimes('悬铃木-椴木-大循环', '', 1); + let [x1,x2] = lpsolve2(woodNumberMap.get('悬铃木'),woodNumberMap.get('椴木')); + await runPathingNTimes('悬铃木', '悬铃木', x1); + await runPathingNTimes('椴木', '椴木', x2); + } + + for (let wood of singleWoodType) { + await runPathingNTimes(wood, wood); + } + } + + // 如果没有填木材数组默认是全部木材, 如果没有填数量数组默认 2000, 如果数量数组只填了一个数, 那么默认全都刷取这个数目. + // 如果木材数组有重复项,或木材数组与数量数组不匹配,都直接退出. + function mapWoodsToNumbers(woods, numbers, hasItto) { + if ((new Set(woods)).size !== woods.length) { + log.error('木材数组存在重复项'); + return; + } + let num = numbers.length === 0 ? 2000 : numbers.length === 1 ? Math.min(Math.ceil(numbers[0] / (hasItto? 1.2 : 1)), 2000) : null; + if (woods.length === 0) { + if (num === null) { + log.error('请在自定义选项输入木材名,用空格隔开'); + } else { + woodNumberMap.forEach((_, key) => { + woodNumberMap.set(key, num); + }); + } + } else { + let unsupportedWoods = []; + if (num === null) { + if (woods.length !== numbers.length) { + log.error('木材数组长度与数量数组长度不匹配'); + } else { + woods.forEach((key, index) => { + if (woodNumberMap.has(key)) { + woodNumberMap.set(key, numbers[index]); + } else { + unsupportedWoods.push(key); + } + }); + } + } else { + woods.forEach(key => { + if (woodNumberMap.has(key)) { + woodNumberMap.set(key, num); + } else { + unsupportedWoods.push(key); + } + }); + } + if (unsupportedWoods.length !== 0) { + log.info(`${unsupportedWoods.join(", ")} 暂不支持`); + } + woodNumberMapCopy = new Map([...woodNumberMap]); + } + } + + function filenameToWoodCountMap(str, woodCount = new Map()) { + let strArray = str.split("-").filter(str => str.trim() !== ""); + for (let i = 0; i < strArray.length-1; i++) { + if (woodType.includes(strArray[i])) { + count = Number(strArray[i+1].replace(/[^\d]/g, '')); + if (count !== 0) { + if (woodCount.has(strArray[i])) { + woodCount.set(strArray[i], count + woodCount.get(strArray[i])); + } else { + woodCount.set(strArray[i], count); + } + i++; + } + } + } + return woodCount; + } + + // Set game environment settings + setGameMetrics(1920, 1080, 1); + //修改路线:除了 垂香木-萃华木-香柏木,悬铃木-椴木 以外,其他木材基本都是单独路线,可以替换 \assets\AutoPath 中的路径追踪脚本,然后修改 pathingMap 中的文件名即可。 + // pathingMap 为木材路径追踪文件路径列表, 键名可以随意命名, 值的 fileName 属性为路线包含路径追踪文件名列表, 文件夹为'assets/AutoPath/', 如果还有子文件夹请添加 folderName 属性. 如果 fileName 数组中有两项以上, 并且第一个文件名包含 '大循环', 则会先执行一次大循环, 剩余的文件名视为循环路径, 将在每次循环中依次执行. + // 因为要根据文件名来计算循环次数, 所以文件命名必须包含 '木材种类1-数量1-木材种类2-数量2-...', 说明此文件路线中采集的木材种类和数目. 如果没有采集木材(比如单纯跑路的大循环)也请至少添加一种类型, 数量可以填0. + // 文件名中的木材种类见 woodType 数组, 与游戏保持一致, 数量可以只填数字, 地址和时间等其他信息可以不填, 分隔符用 '-'. + const pathingMap = { + '桦木': { fileName: ['蒙德-星落湖-桦木-75个-54秒']}, + '萃华木': { fileName: ['萃华木-48个-松木-3-垂香木-9-御伽木-9-香柏木-9-191秒']}, + '松木': { fileName: ['蒙德-蒙德城-松木-0个(大循环)', '蒙德-蒙德城-松木-48个-43秒(循环)'], folderName: '蒙德-松木'}, + '却砂木': { fileName: ['璃月-归离原-却砂木-39个(大循环)', '璃月-归离原-却砂木-39个(循环)'], folderName: '璃月-却砂木'}, + '竹节': { fileName: ['璃月-轻策庄-竹节-0个(大循环)', '璃月-轻策庄-竹节-78个-29秒(循环)'], folderName: '璃月-竹节'}, + '垂香木': { fileName: ['蒙德-风起地-垂香木-48个-萃华木-6个-57秒']}, + '杉木': { fileName: ['蒙德-达达乌帕谷-杉木-0个(大循环)', '蒙德-达达乌帕谷-杉木-69个-58秒(循环)'], folderName: '蒙德-杉木'}, + '梦见木': { fileName: ['稻妻-甘金岛-梦见木-45个(大循环)', '稻妻-甘金岛-梦见木-45个(循环)'], folderName: '稻妻-梦见木'}, + '枫木': { fileName: ['稻妻-绯木村-枫木-42个-83秒']}, + '孔雀木': { fileName: ['稻妻-镇守之森-孔雀木-51个-御伽木-9个-萃华木-3个-60秒']}, + '御伽木': { fileName: ['稻妻-水月池-御伽木-18个-90秒(大循环)', '稻妻-水月池-御伽木-57个-64秒(循环)'], folderName: '稻妻-御伽木'}, + '辉木': { fileName: ['须弥-禅那园-辉木-0个(大循环)', '须弥-禅那园-辉木-48个-29秒(循环)'], folderName: '须弥-辉木'}, + '业果木': { fileName: ['须弥-禅那园-业果木-12个-证悟木-3个(大循环)', '须弥-禅那园-业果木-42个-辉木-12个-23秒(循环)'], folderName: '须弥-业果木'}, + '证悟木': { fileName: ['须弥-禅那园-证悟木-3个-业果木-6个-辉木-3个(大循环)', '须弥-禅那园-证悟木-57个-业果木-24个-62秒(循环)'], folderName: '须弥-证悟木'}, + '刺葵木': { fileName: ['须弥-上下风蚀地-刺葵木-42个']}, + '柽木': { fileName: ['须弥-阿如村-柽木-42个-65秒']}, + '悬铃木-椴木-大循环': {fileName: ['枫丹-卡布狄斯堡遗迹-悬铃木-51个-椴木-33个(大循环)'], folderName: '枫丹-悬铃木-椴木'}, + '悬铃木': { fileName: ['枫丹-卡布狄斯堡遗迹-悬铃木-42个-椴木-30个(循环)'], folderName: '枫丹-悬铃木-椴木'}, + '椴木': { fileName: ['枫丹-卡布狄斯堡遗迹-悬铃木-27个-椴木-30个(小循环)'], folderName: '枫丹-悬铃木-椴木'}, + '白梣木': { fileName: ['枫丹-苍晶区-白梣木-75个(大循环)', '枫丹-苍晶区-白梣木-75个(循环)'], folderName: '枫丹-白梣木'}, + '香柏木': { fileName: ['枫丹-秋分山西侧-香柏木-0个(大循环)', '枫丹-秋分山西侧-香柏木-72个-49秒(循环)'], folderName: '枫丹-香柏木'}, + // '炬木': { description: '炬木15个', times: 134 }, + '白栗栎木': { fileName: ['纳塔-踞石山-白栗栎木-36个', '纳塔-回声之子-白栗栎木-33个-燃爆木-27个'], folderName: '纳塔-白栗栎木-燃爆木'}, + '灰灰楼林木': { fileName: ['纳塔-奥奇卡纳塔-灰灰楼林木-42个-79秒']}, + '燃爆木': { fileName: ['纳塔-隆崛坡-燃爆木-54个-105秒']}, + '香柏木-萃华木': { fileName: ['枫丹-枫丹廷-香柏木-9个(大循环)', '枫丹-枫丹廷-香柏木-27个-萃华木-15个-59秒(循环)'], folderName: '枫丹-香柏木-萃华木'}, + // '桃椰子木': { description: '桃椰子木12个', times: 167 } + }; + + const messages = [ + '确保装备有[王树瑞佑]', + '确保使用小道具快捷键为Z键', + ]; + for (let message of messages) { + log.info(message); + await sleep(500); + } + + log.info('自动伐木开始...'); + + let woodsArray = settings.woods? settings.woods.split(/\s+/): []; + let numbersArray = settings.numbers? settings.numbers.split(/\s+/).map(Number).map(num => isNaN(num) ? 0 : num): []; + let hasItto = settings.hasItto? settings.hasItto : false; + mapWoodsToNumbers(woodsArray, numbersArray, hasItto); + await woodCutting(); +})(); diff --git a/repo/js/AutoWoodcutting-Pathing/manifest.json b/repo/js/AutoWoodcutting-Pathing/manifest.json new file mode 100644 index 00000000..a7b46381 --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "自动伐木-地图追踪版", + "version": "1.0", + "description": "基于地图追踪的自动伐木,暂不支持'炬木'和'桃椰子木'\n默认砍伐全部支持木材至2000上限\n自定义设置:\n-可更改砍伐木材种类和数量\n-可以单独设置每个木材数量\n-可设置队伍中是否包含一斗,按保底20%,计算砍伐数量时会除以1.2", + "authors": [ + { + "name": "Tim & 起个名字好难 " + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} diff --git a/repo/js/AutoWoodcutting-Pathing/settings.json b/repo/js/AutoWoodcutting-Pathing/settings.json new file mode 100644 index 00000000..1e939e2d --- /dev/null +++ b/repo/js/AutoWoodcutting-Pathing/settings.json @@ -0,0 +1,138 @@ +[ + { + "name": "woods", + "type": "input-text", + "label": "木材种类:空格分隔,不填默认全部支持木材" + }, + { + "name": "numbers", + "type": "input-text", + "label": "砍伐数目:空格分隔,不填默认2000,只填一个值表示每种都是" + }, + { + "name": "hasItto", + "type": "checkbox", + "label": "队伍中是否有荒泷一斗(按20%保底算)" + } + // { + // "name": "桦木", + // "type": "checkbox", + // "label": "桦木" + // }, + // { + // "name": "萃华木", + // "type": "checkbox", + // "label": "萃华木" + // }, + // { + // "name": "松木", + // "type": "checkbox", + // "label": "松木" + // }, + // { + // "name": "却砂木", + // "type": "checkbox", + // "label": "却砂木" + // }, + // { + // "name": "竹节", + // "type": "checkbox", + // "label": "竹节" + // }, + // { + // "name": "垂香木", + // "type": "checkbox", + // "label": "垂香木" + // }, + // { + // "name": "杉木", + // "type": "checkbox", + // "label": "杉木" + // }, + // { + // "name": "梦见木", + // "type": "checkbox", + // "label": "梦见木" + // }, + // { + // "name": "枫木", + // "type": "checkbox", + // "label": "枫木" + // }, + // { + // "name": "孔雀木", + // "type": "checkbox", + // "label": "孔雀木" + // }, + // { + // "name": "御伽木", + // "type": "checkbox", + // "label": "御伽木" + // }, + // { + // "name": "辉木", + // "type": "checkbox", + // "label": "辉木" + // }, + // { + // "name": "业果木", + // "type": "checkbox", + // "label": "业果木" + // }, + // { + // "name": "证悟木", + // "type": "checkbox", + // "label": "证悟木" + // }, + // { + // "name": "刺葵木", + // "type": "checkbox", + // "label": "刺葵木" + // }, + // { + // "name": "柽木", + // "type": "checkbox", + // "label": "柽木" + // }, + // { + // "name": "悬铃木", + // "type": "checkbox", + // "label": "悬铃木" + // }, + // { + // "name": "椴木", + // "type": "checkbox", + // "label": "椴木" + // }, + // { + // "name": "白梣木", + // "type": "checkbox", + // "label": "白梣木" + // }, + // { + // "name": "香柏木", + // "type": "checkbox", + // "label": "香柏木" + // }, + // { + // "name": "炬木", + // "type": "checkbox", + // "label": "炬木" + // }, + // { + // "name": "白栗栎木", + // "type": "checkbox", + // "label": "白栗栎木" + // }, + // { + // "name": "灰灰楼林木", + // "type": "checkbox", + // "label": "灰灰楼林木" + // }, + // { + // "name": "燃爆木", + // "type": "checkbox", + // "label": "燃爆木" + // } + +] \ No newline at end of file diff --git a/repo/js/Autopermission/main.js b/repo/js/Autopermission/main.js index 924955e6..4fecc460 100644 --- a/repo/js/Autopermission/main.js +++ b/repo/js/Autopermission/main.js @@ -5,9 +5,9 @@ log.info("请确保执行脚本时处于主界面"); keyPress("VK_F2") - await sleep(500); + await sleep(1000); click(330,1010) //点击世界权限 - await sleep(500); + await sleep(1000); let domainName = settings.domainName; switch (domainName) { diff --git a/repo/js/Autopermission/manifest.json b/repo/js/Autopermission/manifest.json index fe9c0ebb..717277f7 100644 --- a/repo/js/Autopermission/manifest.json +++ b/repo/js/Autopermission/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "自动设置权限", - "version": "1.0", + "version": "1.1", "description": "设置进入世界的权限,默认锁门", "authors": [ { diff --git a/repo/js/Destruction artifact/main.js b/repo/js/Destruction artifact/main.js new file mode 100644 index 00000000..b7857cf8 --- /dev/null +++ b/repo/js/Destruction artifact/main.js @@ -0,0 +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("已摧毁狗粮"); +})(); \ No newline at end of file diff --git a/repo/js/Destruction artifact/manifest.json b/repo/js/Destruction artifact/manifest.json new file mode 100644 index 00000000..ef8a3f59 --- /dev/null +++ b/repo/js/Destruction artifact/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "摧毁狗粮", + "version": "1.0", + "description": "用于摧毁狗粮获取摩拉", + "authors": [ + { + "name": "鹤望兰", + } + ], + "main": "main.js", +} diff --git a/repo/js/ExitGame/main.js b/repo/js/ExitGame/main.js new file mode 100644 index 00000000..caa0546c --- /dev/null +++ b/repo/js/ExitGame/main.js @@ -0,0 +1,15 @@ +(async function () { + // settings 的对象内容来自于 settings.json 文件生成的动态配置页面 +//前置系统状态:大世界正常主界面 + setGameMetrics(3840,2160,2) + keyPress("VK_ESCAPE");//打开派蒙菜单 + await sleep(1000); + click(90,2000);//点击左下角退出按钮 + await sleep(1000); + click(2100,1500);//点击确定 + await sleep(10000);//渲染开门界面的时间 + click(200,1950);//点击登录界面左下角退出按钮 + await sleep(1000); + click(2200,1100);//点击确定 + await sleep(1000); +})(); \ No newline at end of file diff --git a/repo/js/ExitGame/manifest.json b/repo/js/ExitGame/manifest.json new file mode 100644 index 00000000..da3209d2 --- /dev/null +++ b/repo/js/ExitGame/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "完全退出游戏", + "version": "1.0", + "description": "配合其他脚本使用。当其他任务完成之后,调用此脚本完成游戏退出(指结束游戏进程)", + "authors": [ + { + "name": "Because", + "link": "https://github.com/Because66666" + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/NaiLong/main.js b/repo/js/NaiLong/main.js new file mode 100644 index 00000000..aaec1af5 --- /dev/null +++ b/repo/js/NaiLong/main.js @@ -0,0 +1,17 @@ +(async function () { + while (1){ + await sleep(1000); + log.info('⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣶⣶⣶⣾⣿⣷⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧⣤⣾⣿⡿⣩⢩⣿⣿⠛⠛⣻⣿⡿⠁') + log.info('⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡷⣵⣿⣿⣁⣀⣼⣿⡟⠁⠀') + log.info('⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡏⠈⠻⣿⣿⣿⣿⣿⣿⣿⣿') + log.info('⣫⣿⣿⣿⣿⠿⠿⠟⠛⠛⠛⠛⠛⠛⠛⠛⠿⠿⠿⢿⣿⣿⣿⣿⣿⣿⣿⠿⠿⠿⠿⠿⠿⠿⠿⠿⣿⣿⣿⡟⠃⠀⠀⢹⣿⣿⣿⣿⣿⣿⣿') + log.info('⢏⣩⢿⣥⠛⢲⡄⠀⢸⣿⣿⣿⣿⠟⠛⠛⠻⣿⣷⡆⠀⢀⣈⡉⠁⢀⣴⣶⠶⠶⠶⠶⣶⣶⣶⣶⣤⠀⠀⠀⠀⠀⠀⠀⡿⠥⢿⠿⠿⣿⣛') + log.info('⣿⣨⠿⠿⠛⣿⣿⣄⠘⠿⣿⣿⣷⣄⣀⣀⣤⣾⠟⠁⣰⣿⣿⣿⡄⠈⢿⣧⣀⠀⠀⣀⣽⣿⣿⣿⠏⠀⣼⣵⡄⠀⠀⠀⠠⠀⠀⠘⠛⠉⠉') + log.info('⠉⠀⠀⠀⡈⣿⣿⣿⣷⣶⣶⠠⠤⠤⣤⣤⣤⣴⣶⣿⣿⣿⣿⣿⣿⣶⣤⣌⣉⣉⣉⣉⣉⣉⣉⣡⣤⣾⠿⠋⠀⠀⠀⢀⣤⠄⠀⠀⠀⠀⠀') + log.info('⠁⠀⠀⠞⢯⣿⣿⣿⣿⣿⣿⣷⣄⡀⠀⠀⠀⠈⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠀⣀⠼⠿⠟⠛⠉⠀⠀⠀⠀⠀⠀⠉⠀⠀⠀⠀⠀⠀⠀') + log.info('⠀⠀⠂⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣶⣿⡿⠿⠿⠿⠿⠷⠶⠤⠤⠐⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀') + log.info('⣠⣤⣾⣿⣿⡿⠋⠉⢙⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣃⠈⠀⠀⠐⠀⠀⠒⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀') + log.info('⠉⣿⣿⣿⠋⠀⠀⢠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣶⣤⣤⣀⣀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉') + log.info('⠀⠘⠛⠁⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣦⣤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀') + } +})(); \ No newline at end of file diff --git a/repo/js/NaiLong/manifest.json b/repo/js/NaiLong/manifest.json new file mode 100644 index 00000000..a978e25a --- /dev/null +++ b/repo/js/NaiLong/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "奶龙", + "version": "1.0", + "description": "在日志窗口一直输出奶龙", + "authors": [ + { + "name": "HZYgrandma", + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/YuanQin/README.md b/repo/js/YuanQin/README.md new file mode 100644 index 00000000..e69de29b diff --git a/repo/js/YuanQin/assets/JOJO黄金之风.json b/repo/js/YuanQin/assets/JOJO黄金之风.json new file mode 100644 index 00000000..6f406323 --- /dev/null +++ b/repo/js/YuanQin/assets/JOJO黄金之风.json @@ -0,0 +1,7 @@ +{ + "name":"JOJO黄金之风", + "pause":200, + "longPause":200, + "split":"括号", + "toneStr":"(EHN)(WFV)(WFV)QW(WM)(WV)(QM)(JC)QCW(EHN)(YQV)(YQV)HJ(QX)(WN)(QX)(JC)GCF(EHN)Z(WFV)(WFV)QW(WM)(WV)(QM)(JC)QCW(EHN)(YQV)(YQV)YU(QX)(RX)(EX)(WC)QCTNNNBNN(AZ)NCBNNNBNNXX(AZ)BNNNBNN(AZ)NCBNNNBN(AZ)(AZ)(SX)(SX)(AZ)BNNNBNN(AZ)NCBNNNBNNXX(AZ)BNNNBNN(AZ)NCBNNNBNNNNBNN(AZ)NCBNNNBNNXX(AZ)BNNNBNN(AZ)NCBNNNBN(AZ)(AZ)(SX)(SX)(AZ)BNNNBNN(AZ)NCBNNNBNNXX(AZ)BNNNBNN(AZ)NCBNNNBNC" +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/JOJO黄金之风2.json b/repo/js/YuanQin/assets/JOJO黄金之风2.json new file mode 100644 index 00000000..4ac381c4 --- /dev/null +++ b/repo/js/YuanQin/assets/JOJO黄金之风2.json @@ -0,0 +1,8 @@ +{ + "name":"JOJO黄金之风2", + "short" :90, + "pause":200, + "longPause":200, + "split":"括号", + "toneStr":"J J J W J J J J R E J J J W J J J R E J J J W J J J R E J J W J J J J // H QW E // Q // / W / Q J Q W E // Y // H J Q W / Q J T R (QE) // (HQ) // (JE) / W / Q (GJ) / Q / W (HE) // (EY) // H J (HQ) / W / R E / Q W (QE) // (HQ) // (HE) / W Q (FJ) / Q W (QE) // (EY) // H / W / Q J / T / R (QE) // (HQ) // Q W (HE) / W / Q (FJ) / Q / W (QE) / (EY) // Y J Q / D / S Q / G H" +} diff --git a/repo/js/YuanQin/assets/JOJO黄金处刑曲.json b/repo/js/YuanQin/assets/JOJO黄金处刑曲.json new file mode 100644 index 00000000..4394b09e --- /dev/null +++ b/repo/js/YuanQin/assets/JOJO黄金处刑曲.json @@ -0,0 +1,45 @@ +{ + "name":"JOJO黄金处刑曲", + "short" :90, + "pause":200, + "longPause":200, + "split":"括号", + "toneStr":"(EHN) (QHV) QW | (EHM)WQ(JC)QCW | (EQHN)N(YEQV) HJ | (QX)(WN)(QX)(JC)TCR | +/ +(EHN) (QHV) QW | (EHM)WM(QX)(JC)MQC(WC) | (EQHN)N(YEQV) HJ | (QFSX)(FX)(DX)(DC)QCG | +/ +(HN) (HN) (HN) (GB)(HN) (QZ) (HN) (DC)(GB) | (HN) (HN) (HN) (GB)(HN) (EC) (WX) (QZ)(GB) | +/ +(HN) (HN) (HN) (GB)(HN) (QZ) (HN) (DC)(GB) | (HN) (HN) (HN) (GB)(HN) (EC) (WX) (QZ)(GB) | +/ +(HN) (HN) (HN) (GB)(HN) (QAZ) (HN) (DC)(GB) | (HN) (HN) (HN) (GB)(HN) (EDC) (WSX) (QAZ)(GB) | +/ +(HN) (HN) (HN) (GB)(HN) (QAZ) (HN) (DC)(GB) | (HN) (HN) (HN) (GB)(HN) D | +/ +QW(EN) A SD D GHB(QD) (TG) | (RN) G GD D SEAB (WB) | +/ +(EN) A SD D G GD G | H G BB N V V(EV) B | +/ +JQW(EN) A SD D GHG(QD) (TG) | (YWH) G GDTD S A(RB) B | +/ +(RHN) A SD(EH)D G GD G | H G BB N V V(QV)J(HB)G | +/ +(GN)H(HN) DJ(QB) | (JN)(GB)(HDN) C C | (HDN)(GS)(HDN) D(JS)(QB) | (JN)(GB)(SN) MQJ(HM) | +/ +(GSN)H(HDN) (DN)G(HB) | (JSN)(GB)(HDN) CQJ(HC) | {GHQ}{WQH}{TRE}{QJH} | +/ +(GN)H GH (GC)H GH (GC)H(QB) | (EHDN)N(QHDV) VV(QV)W | (EHM)JWM(QM) | (JGC)CQC(WB) | +/ +(EQHDN)N(YEQHV) VV(HV)J | (QFSM)MWM(QM)(JDC)CGB(RB) | (EHDN)N(QHDV) VV(QV)W | (EHM)MWM(QM)(JGC)QBW | +/ +(EQHDN)N(YEQHV) V(HAV)(JSV) | (QFSM)M(FM)M(DM) | (SMC)(QD)C(HA) | (HDAN) (HN) (HN) (GB)(HN) (QZ) (HN) (DC)(GB) | +/ +(HN) (HN) (HN) (GB)(HN) (EC) (WX) (QZ)(GB) | (HN) (HN) (HN) (GB)(HN) (QZ) (HN) (DC)(GB) | +/ +(HN) (HN) (HN)(GB)(HN)(QZ) (EC) (WX) (QZ)(GB) | (HN) (HN) (HN) (GB)(HN) (QAZ) (HN) (DC)(GB) | +/ +(HN) (HN) (HN) (GB)(HN) (EDC) (WSX) (QAZ)(GB) | +/ +(HN) (HN) (HN) (GB)(HN) (QAZ) (HN) (DC)(GB) | (HN) (HN) (HN) (GB)(HN) | +" +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/One last kiss.json b/repo/js/YuanQin/assets/One last kiss.json new file mode 100644 index 00000000..f50ae3b0 --- /dev/null +++ b/repo/js/YuanQin/assets/One last kiss.json @@ -0,0 +1,126 @@ +{ + "name":"One last kiss", + "short" :90, + "pause":200, + "longPause":200, + "split":"括号", + "toneStr":" + +前奏: +(XAFH) (XAFH)/ (XAFH) / (XAFH) /(XAFH) (XAFH) / +(VADH) (VADH)/ (VADH) / (VADH) /(VADH) (VADH) / +(BDGJ) (BDGJ)/ (BDGJ) / (BDGJ) /(BDGJ) (BDGJ) / +(CSGJ) (CSGJ)/ (CSGJ) /Q(SGJ)E /(SGJT)E(SGJ)T/ + +(AFHE) T(AFHE)/ T(AFHE) / (AFH) /(AFH) (AFH) / +(VADH) (VADH)/ (VADH) / (VADH) /(VADH) (VADH) / +(BDGJ) (BDGJ)/ (BDGJ) / (BDGJ) /(BDGJ) (BDGJ) / +(CSGJ) (CSGJ)/ (CSGJ) / (CMSGJ) /(CMSGJ) (CMSGJ) / +/ / / / + + 第一段: +(AFHT)YY(AFHY)/YE(AFH)W/E(AFHW) /(AFH) (AFH) / +(ADHY) Y(ADHY)/YE(ADH)W/E(ADHW) /(ADHQ) (ADH) / +(DGJT)YY(DGJY)/YE(DGJ)W/E(DGJW) /(DGJ) (DGJQ) / +(MSGT)YY(MSGY)/YE(MSG)W/E(MSGW) /(MSGW) (MSG) / + +(AFHT)YY(AFHY)/YE(AFH)W/E(AFHW) /(AFH) (AFHQ) / +(ADHT)YY(ADHY)/YE(ADH)W/E(ADHW) /(ADHQ) (ADH) / +(DGJT)YY(DGJY)/YE(DGJ)W/E(DGJW) /(DGJ) (DGJ) / +(MSGE) W(MSG)/ (MSGQ) / (MSG) /(MSG) (MSG) / + +第二段: +(VADG) H(VAD)/ (VAD) / (VAD) /(VADG) H / +(BSDW) E(BSD)/H (BSD) /G(BSD)H /(BSD) H / +(VAD) (VAD)/ (VAD) / (VAD) /(VADH) (DE) / +(NADW) Q(NAD)/Q (NADE) /W(NAD)Q /(NADQ) W / + +(VADH) (VAD)/ (VAD) / (VAD) /(VADG) H / +(BSDW) E(BSD)/H (BSD) /G(BSD)H /(BSD) H / +(VAD) (VAD)/ (VAD) / (VAD) /(VADH) (DE) / +(MSGW) Q(MSG)/Q (MSGE) /W(MSG)Q /(MSGQ) W / + +第三段: +(ZXNDH) (DH)/(ZXN) (DH) /(ZXN)(DH) (ZXN)/(AQ) (ZXNSW) / +(ZCNDH) (DH)/(ZCN) (DH) /(ZCNDH) (DE) /(ZCNSW) (AQ) / +(XBMDH) (DH)/(XBM) (DH) /(XBM)(DH) (XBM)/(DH) (XBMDE) / +(CBMSW) (AQ) /(CBMAQ) (DE) /(CBMSW) (AQ) /(CBMAQ)(SW) / + +(ZXNDH) (DH)/(ZXN) (DH) /(ZXN)(DH) (ZXN)/(AQ) (ZXNSW) / +(ZCNDH) (DH)/(ZCN) (DH) /(ZCNDH) (DE) /(ZCNSW) (AQ) / +(XBMDH) (DH)/(XBM) (DH) /(XBM)(DH) (XBM)/(DH) (XBMDE) / +(CBMSW) (AQ) /(CBMAQ) (DE) /(CBMAQ) (DE)(CBM)/TE(CBM)T/ + +间奏: +(ZVNE) T(AFHE)/ T(AFHE) /(ZVNQ) E(AFH)/TE(AFH)T/ +(ZCNE) T(ADHE)/ T(ADHE) /(ZCNQ) E(ADH)/TE(ADH)T/ +(XBME) T(SGJE)/ T(SGJE) /(XBMQ) E(SGJ)/RE(SGJ)R/ +(CBME) R(MDGE)/ R(MDGE) /(CBM) (CBM)/W (CBM) / + +重复第一段: +(ZVNH) H(ZVNH)/HD(ZVN)S/D(ZVNS) /(ZVN) (ZVNA) / +(ZCNG)HH(ZCNH)/HD(ZCN)S/D(ZCNS) /(ZCNA) (ZCN) / +(XBMG)HH(XBMH)/HD(XBM)S/D(XBMS) /(XBM) (XBMA) / +(CBMG)HH(CBMH)/HD(CBM)S/S(CBM) /(CBMA) (CBM) / + +(ZVNG)HH(ZVNH)/HD(ZVN)S/D(ZVNS) /(ZVN) (ZVNA) / +(ZCNH) H(ZCNH)/HD(ZCN)S/D(ZCNS) /(ZCNA) (ZCN) / +(XBMG)HH(XBMH)/HD(XBM)S/D(XBMS) /(XBM) (XBMA) / +(CBMG)HHH/HDDS/S AC/MDG / + +重复第二段: +(VADT) Y(VADY)/ (VAD) / (VAD) /(VADG) H / +(BSDW) E(BSD)/H (BSD) /G(BSD)H /(BSD) H / +(VAD) (VAD)/ (VAD) / (VAD) /(VADH) (DE) / +(NADW) Q(NAD)/Q (NADE) /W(NAD)Q /(NADQ) W / + +(VADH) (AD)/ (AD) / (AD) /(ADG) H / +(BSDW) E(SD)/H (SD) /G(SD)H /(SD) H / +(VAD) (AD)/ (AD) / (AD) /(ADH) (DE) / +(MSGW) Q(MSG)/Q (MSGE) /W(MSG)Q /(MSGQ) W / + +重复第三段: +(ZXNH)SFH/(ZXNS)FHS/(ZXNF)HS(ZXNF)/(AQ) (ZXNSW) / +(ZCNH)ADH/(ZCNA)DHA/(ZCNDH) (ADE)D/(ZCNSW) (AQ) / +(XBMH)ADH/(XBMA)DHA/(XBMD)HA(XBMD)/(NH) (XBMDE) / +(CBMSW) (AQ) /(CBMAQ) (DE) /(CBMSW) (AQ) /(CBMAQ)(SW) / + +(ZXNH)SFH/(ZXNS)FHS/(ZXNF)HS(ZXNF)/(AQ) (ZXNSW) / +(ZCNH)ADH/(ZCNA)DHA/(ZCNHD) (ADE)D/(ZCNSW) (AQ) / +(XBMH)ADH/(XBMA)DHA/(XBMD)HA(XBMD)/(NH) (XBMDE) / +(CBMSW) (AQ) /(CBMAQ) (DE) /(CBMAQ) (DE)(CBM)/TE(CBM)T/ + +第四段第一部分: +(ZVNE) T(AFHE)/ T(AFHE) /(ZVNQ) E(AFH)/TE(AFH)T/ +(ZCNE) T(ADHE)/ T(ADHE) / (ZCN) /(ZCNH) (ZCNDE) / +(MSGW) Q(MSG)/Q (MSGE) /W(MSG)Q /(MSGQ)W(MSGW)W/ + +(CBMQ)WW(DGJW)/QW(DGJW)W/Q(CBMW)WW/(DGJQ)W(DGJW)W/ +(ZVNQ)WW(AFHW)/QW(AFHW)W/Q(ZVNW)WW/(AFHQ)W(AFHW)W/ +(ZCNQ)WW(ADHW)/QW(ADHW)W/Q(ZCNW)WW/(ADHQ)W(ADHW)W/ +(XBMQ)WW(SGJW)/QW(SGJW)W/Q(XBMW)WW/(SGJQ)W(SGJW)W/ +(CBMQ)WW(DGJW)/QW(DGJW)W/Q(CBMW)WW/(CS)GJW/ + +第四段第二部分: +(ZVNGT) (HY)/ / /G H / +(ZCNW) E /H /G H / H / +(AD) (AD)/ (AD) / /H E / +(NSW) Q /Q E /(BSW) Q /Q W / + +(VADH) (AD)/ (AD) / /G H / +(ZCNW) E /H /G H/ H / +(AD) (AD)/ (AD) / / / +(MS) (MS)/ (MS) / /H E / + +(ZVNW) Q(ZVN)/Q (ZVNE) /W(ZVN)Q /(ZVNQ) W / +(ZCNDH) (ZCNDH)/ (ZCNDH) / (ZCNDH) /(ZCNDH) E / +(XBMW) Q(XBM)/Q (XBME) /W(XBM)Q /(XBMNQ) (DW) / +(CBMS) A(CBM)/A (CBMD) /S(CBM)A /(CBMAH) (SE) / + +(ZVNW) Q(ZVN)/Q (ZVNE) /W(ZVN)Q /(ZVNQ) W / +(ZCNDH) (ZCNDH)/ (ZCNDH) / (ZCNDH) /(ZCNDH) E / +(XBMW) Q(XBM)/Q (XBME) /W(XBM)Q /(XBMNQ) (DW) / +(CBMS) A(CBM)/A (CBMD) /S(CBM)A /(CBMA) (CBMS) / + +" +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/声嘶力竭.json b/repo/js/YuanQin/assets/声嘶力竭.json new file mode 100644 index 00000000..6e4015da --- /dev/null +++ b/repo/js/YuanQin/assets/声嘶力竭.json @@ -0,0 +1,27 @@ +{ + "name":"声嘶力竭", + "short" :100, + "pause":180, + "longPause":200, + "split":"括号", + "toneStr":" + 键盘第一页: + +前奏: +(VS)DA /(DH) A /(BS) M /(SJ) M / +(NS) A /(DQ) A /(BSW) /H G / +(VH) A /(AE) /(BH) (SG) /(SG) / +H / / + + / + / / + +(NADH) E/ W Q/ J Q/J G / +(NADH) E/ W Q/ J Q/J G / +(CNH) (DE)/ (SW) (AQ)/ (MJ) (AQ)/(MJ) (BG) / +(CNH) /(CNH) E/ Y /(CN) A / + + + + " +} diff --git a/repo/js/YuanQin/assets/孤勇者.json b/repo/js/YuanQin/assets/孤勇者.json new file mode 100644 index 00000000..4f0d9629 --- /dev/null +++ b/repo/js/YuanQin/assets/孤勇者.json @@ -0,0 +1,7 @@ +{ + "name":"孤勇者", + "pause":180, + "longPause":"400", + "split":"括号", + "toneStr":"E/QWQE/QWQWQH/QH/QH/QWQJ//E/QWQE/QWQWQH/QH/QH/QWQJ//HQY/YYTY/YTYTYTE/HQY/YYTYTU/UUYUYE//ETEWEWEW/ETETEW/EWEW/QWEHQEWEWQH//HJQWJQQ/QJQWJQQ/QWEWEWE/EWETE//HJQWJQQ/QJQWJQQ/QWEWEWE/EWETE//TE/TE/TETYET/TE/TE/TETYET//TTEWWQEWWQH/TTEWWQEWWQH" +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/孤勇者2.json b/repo/js/YuanQin/assets/孤勇者2.json new file mode 100644 index 00000000..51c61aeb --- /dev/null +++ b/repo/js/YuanQin/assets/孤勇者2.json @@ -0,0 +1,94 @@ +{ + "name":"孤勇者2", + "short" :90, + "pause":300, + "longPause":"300", + "split":"括号", + "toneStr":" + WJQH WJQH WJQH WJQH + (VAW)JQH (BSW)JQH (NDW)JQH (BSW)JQH + / + (VAW)(VA) (VAJ)(VA) (VAQ)(VA) (VAH)(VA) + (BSW)(BS) (BSJ)(BS) (BSQ)(BS) (BSH)(BS) + (NDW)(ND) (NDJ)(ND) (NDQ)(ND) (NDH)(ND) + (BSW)(BS) (BSJ)(BS) (BSQ)(BS) (BSH)(BS) + / + (NDE) D D D D D DQ(MW)Q + (ADE) D D D D D Q(DW)Q(DW)E + (VDH) DQ(DH) DQ(DH) DQ(DW)(DQ) + (BDJ) D D D D D DSAS + / + (NDE) D D D D D DQ(MW)Q + (ADE) D D D D D Q(DW)Q(DW)E + (VDH) DQ(DH) DQ(DH) DQ(DE)(DW) + (BDJ) D D D D D DSAS + / + (VAH)Q(DY) DY(DY)T (DY) + (DY)T(BSY)T(DY)T + (NA)ED D D D D D (DH)Q(VAY) + DY(DY)T(DY)T (BSU) DY(DU)Y(DU)Y + (NA)ED D D D D DE(DT)E + (VAW) DE(DW) DE(BSW) DE(DT)E(DT)E + (NAW) DE(DW) DE(BSW) D D (DQ)W + (VAE) (DH) (DQ) (DE) (BSW) DE(DW) (DQ) + (CNH)CNSDHQE(QEY) +/ + HJ(VQ)W(NJ)Q (ADQ) (VQ)J +(BQ)W(MJ)Q (SGQ) (BQ)W +(NQE)W(AQE)W(DHQE) (NQE)W +(BQE) (MQT) (SGQE) (BH)J +/ +(VQ)W(NJ)Q (ADQ) (VQ)J +(BQ)W(MJ)Q (SGQ) (BQ)W +(NQE)W(AQE)W(DHQE) (NQE)W +(BQE) (MQT) (SGQE) (BQT) +/ +(VE)NAT(ADE) VT(BE)(MT)(SY)E (SGT) +(BT) (NE)ADT(DHE) NT(BE)(MT)(SY)E (SGT) +(BT)T (VE)N(AW) (ADW) (VQ)E +BM(SW) (SGW) (BQ)H +NC(AD) (ADQ) (ADJ) (BH)MSDGWET +E W W QE W WQQQ +/ +(VHW) J Q H (BW) J Q H +(NW) J Q H (BW) J Q H +(VW) J Q H (BW) J Q H +(NW) J Q H (BW) J Q +/ +HG(VH) NG(AH)G(NH)G +(BH) MG(SH)G(MH)G +NDC N M A M N +(BH)G (VH) NG(AH)G(NH)G +(BJ) MH(SJ)H(MJ)H +NDC N M A +/ +ETE (VW) NE(ADW) VE(BW) ME(SGT)E(BT)E +(NW) AE(DHW) NE(BW) M (SG) (BA)S +(VAD) (VAH) (VAQ) (VAE) +(BSW) (BS)E (BSW) (BSQ) +(NADH)CNSDHQE (QEY)EQHDN +/ +HJ(VQ)W(NJ)Q (ADQ) (VQ)J +(BQ)W(MJ)Q (SGQ) (BQ)W +(NQE)W(AQE)W(DHQE) (NQE)W +(BQE) (MQT) (SGQE) (BH)J +/ +HJ(VQ)W(NJ)Q (ADQ) (VQ)J +(BQ)W(MJ)Q (SGQ) (BQ)W +(NQE)W(AQE)W(DHQE) (NQE)W +(BQE) (MQT) (SGQE) (BQT) +/ +(VE)NAT(ADE) VT(BE)(MT)(SY)E (SGT) +(BT) (NE)ADT(DHE) NT(BE)(MT)(SY)E (SGT) +(BT)T (VE)N(AW) (ADW) (VQ)E +BM(SW) (SGW) (BQ)H +NC(AD) (ADQ) (ADJ) (BH)MSDGWET +E W W QE W WQQQ +/ +(VHW) J Q H (BW) J Q H +(NW) J Q H (BW) J Q H +(VW) J Q H (BW) J Q H +(NW) J Q H (BW) J Q + / + " +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/溯.json b/repo/js/YuanQin/assets/溯.json new file mode 100644 index 00000000..4e1f6f07 --- /dev/null +++ b/repo/js/YuanQin/assets/溯.json @@ -0,0 +1,7 @@ +{ + "name":"溯", + "pause":170, + "longPause":200, + "split":"括号", + "toneStr":"AGDS/AAGD/AGDS/MMGD/AMAAMASS/SDD/DDMMBA//AMAAMASS/SDD/SDDFD//DSDDDDQJGD/AGMMBA/AGFDSD//ASD/QJQJGD/AGDSAAGD//AGDSMMGDS/QJQJGD/AGDSAAGD//AGDSM/QJQJGD" +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/牵丝戏.json b/repo/js/YuanQin/assets/牵丝戏.json new file mode 100644 index 00000000..72257da2 --- /dev/null +++ b/repo/js/YuanQin/assets/牵丝戏.json @@ -0,0 +1,15 @@ +{ + "name":"牵丝戏", + "short" :90, + "pause":180, + "longPause":300, + "split":"括号", + "toneStr":"(QA)(JM)(GB)//(GB)(DC)(GB)(HN)/(QA)(JM)(GB)//(GB)(DC)(WS)(ED)// + (ED)(TG)(WS)(ED)(WS)/(QA)(JM)(QA)(JM)(QA)(WS)(ED)/(WS)(ED)(HN)/(WS)(ED)(HN)(GB)(HN)// + (QA)(JM)(GB)//(GB)(DC)(GB)(HN)/(QA)(JM)(GB)//(GB)(DC)(WS)(ED)// + (ED)(TG)(WS)(ED)(TG)(WS)/(QA)(JM)(QA)(JM)(QA)(WS)(ED)/(WS)(ED)(HN)/(WS)(ED)(HN)(GB)(HN)// + (HN)(QA)(WS)(ED)(HN)(WS)/(HN)(QA)(JM)(GB)(DC)(GB)/(HN)(QA)(WS)(ED)(HN)(WS)(ED)(TG)(ED)// + (HN)(QA)(WS)(ED)(HN)(WS)/(QA)(JM)(QA)(JM)(WS)(ED)/(WS)(ED)(HN)/(WS)(ED)(HN)(GB)(HN)// + (ED)(TG)(ED)(WS)/(ED)(WS)(QA)(HN)(ED)/(ED)(TG)(ED)(WS)/(ED)(WS)(TG)(YH)(ED)// + (WS)(ED)(TG)(YH)(TG)(ED)(TG)(WS)/(ED)(WS)(QA)(WS)(ED)(TG)(HN)/(HN)(QA)(WS)(ED)(HN)/(WS)(ED)(HN)(GB)(HN)" +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/牵丝戏2.json b/repo/js/YuanQin/assets/牵丝戏2.json new file mode 100644 index 00000000..dd00046c --- /dev/null +++ b/repo/js/YuanQin/assets/牵丝戏2.json @@ -0,0 +1,223 @@ +{ + "name":"牵丝戏2", + "short" :90, + "pause":170, + "longPause":180, + "split":"括号", + "toneStr":" + + + / / /HJQW/ + +(VE) N(AH)/ NVN/(BJ)QM(SJ)/(MG)S(MD)/ + +Z CB/NM C/ZCBA/(MH)J(BQ)W/ + +(ZE) V(NH)/AF S/(XJ)QB(MJ)/S(MG) (BD)/ + + + +Z (CQ)B/(NJ)MGC/(ZD)C(BA)A/(MH)J(BQ)W/ + +(ZE) V(NH)/AF S/(XJ)QB(MJ)/S(MG) (BD)/ + +(ZG)DC(BJ)/NMQC/ZCBA/(MD)Q(BJ)G/ + +(XD)VB(NH)/MADN/(ZG)CB(MG)/AS M/ + + + +(ZY)E(CT)(BW)/(NE)(MQ)W(CH)/(ZQ)(CG)(BH)(AD)/(MG)S(BD)M/ + +(VQ)NAS/AFJS/(XG)BMA/(MG)S(AD)M/ + +(ZG)CN(MH)/CM C/ZCNA/MBXB/ + +(VQ)NAS/NSJA/(XG)BNM/(MG)A(MD)B/ + + + +(ZW)CN(ME)/CM C/ZCNA/(ME)B(XT)B/ + +(VW)NAS/AFES/(XW)BMA/(MQ)S(AJ)M/ + +(ZQ)C(NJ)M/(CQ)MW(CE)/ZCNA/(MW)B(XE)(BH)/ + +XVNM/(NW)SE(MH)/ZCBM/(BG)D M/ + + + +(ZH)CNM/CM C/ZC(NH)(AD)/(MG)(BS)(XD)(BA)/ + +(VQ)NAS/AFJS/(XG)BMA/(MG)S(AD)M/ + +(ZG)CN(MH)/CMH(CD)/(ZD)(CD)(NH)(AD)/(MG)(BH)(XD)(BS)/ + +(ZQ)VNM/AMJB/(XG)BNM/(MG)A(MD)B/ + + + +(ZW)CN(ME)/CM C/ZCNA/(ME)B(XT)B/ + +(VW)NAS/(AE)FT(SW)/XBMA/(MQ)S(AJ)M/ + +(ZQ)C(NJ)M/(CQ)MW(CE)/ZCNA/(MW)B(XE)(BH)/ + +XVNM/(NW)SE(MH)/ZCBM/(BG)D M/ + + + +(ZH)CNM/CM C/ZCNA/(MH)B(XQ)B/ + +(ZW)VN(ME)/AD(NH)M/(XW)BMA/(SH)M(BQ)M/ + +(ZJ)CB(MG)/A(BD)M/(ZG)CNM/(AH)N(CQ)N/ + +(XW)VN(ME)/AD(NH)M/(XW)BM(AE)/SM(BT)M/ + + + +(ZE)BAD/GAD/XNSD/(CH)M(DQ)G/ + +(ZW)VN(ME)/AD(NH)M/(XW)BMA/(SQ)M(BJ)M/ + +(ZQ)C(BJ)M/QD(BW)(ME)/VNAS/(DW)A(NE)(AH)/ + +XVNM/(NW)SE(MH)/ZCBM/(BG)D M/ + + + +(ZH)CNM/CM C/ZC(NE)A/(MT)B(XE)B/ + +(ZVW) V /(NA) (VE) /(XBW) B /(MSQ) (BH) / + +(CN) (NE) /(ADE) N /(AD) (NE) /(ADT) (NE) / + +(XNW) N /(SH) (NE) /(ZBW) B /(AGT) (BY) / + + + +(ZV) (VE) /(NA) V /X (NSW) /(CE) (MDT) / + +(ZVY) (VT) /(NAE) (VT) /(XBW) B /(MSE) (BW) / + +(ZCQ) (CW) /(BME) (CT) /(ZVH) V /(NAH) (VQ) / + +(ZVW) (VE) /(NSH) V /(ZCW) (CE) /(MDH) (CG) / + + + +(CN) (NH) /(AD) N /(AD) N /(AD) (NE) / + +(ZVW) VE/(NA) (VG) /(XBD) B /(MSH) (BE) / + +(NW) NE/(AD) (NG) /(AD) N /(AD) (NE) / + +(XW) XE/(VN) (XH) /(BG) BH/(MS) (BJ) / + + + +(ZV) (VD) /(NA) V /B (MS) /N (ADE) / + +(VW) VE/(NA) (VW) /B B /(MS) B / + +(CW) CE/(BM) (CQ) /(VH) V /(NAD) (VG) / + +(XH) (XE) /(NSY) (XT) /(CW) CE/(MD) (CT) / + + + +(NY) N /(DH) N /(DH) N /(DH) N / + +(VQ)NAS/AFJS/(XG)BMA/(MG)S(AD)M/ + +(ZG)CN(MH)/CMH(CD)/(ZD)(CD)(NH)(AD)/(MG)(BH)(XD)(BS)/ + +(ZQ)VNM/AMJB/(XG)BNM/(MG)A(MD)B/ + + + +(ZW)CN(ME)/CM C/ZCNA/(ME)B(XT)B/ + +(VW)NAS/(AE)FT(SW)/XBMA/(MQ)S(AJ)M/ + +(ZQ)C(NJ)M/(CQ)MW(CE)/ZCNA/(MW)B(XE)(BH)/ + +XVNM/(NW)SE(MH)/ZCBM/(BG)D M/ + + + +(ZH)CNM/CM C/ZCNA/(MH)B(XQ)B/ + +(ZW)VN(ME)/AD(NH)M/(XW)BMA/(SH)M(BQ)M/ + +(ZJ)CB(MG)/A(BD)M/(ZG)CNM/(AH)N(CQ)N/ + +(XW)VN(ME)/AD(NH)M/(XW)BM(AE)/SM(BT)M/ + + + +(ZE)BAD/GAD/XNSD/(CH)M(DQ)G/ + +(ZW)VN(ME)/AD(NH)M/(XW)BMA/(SQ)M(BJ)M/ + +(ZQ)C(BJ)M/QD(BW)(ME)/VNAS/(DW)A(NE)(AH)/ + +XVNM/(NW)SE(MH)/ZCBM/(BG)D M/ + + + +(ZH)CNM/CM C/ZC(NE)A/(MT)B(XE)B/ + +(ZVW) V /(NA) (VE) /(XBW) B /(MSQ) (BH) / + +(CN) (NE) /(ADE) N /(AD) (NE) /(ADT) (NE) / + +(XNW) N /(SH) (NE) /(ZBW) B /(AGT) (BY) / + + + +(ZV) (VE) /(NA) V /X (NSW) /(CE) (MDT) / + +(ZVY) (VT) /(NAE) (VT) /(XBW) B /(MSE) (BW) / + +(ZCQ) (CW) /(BME) (CT) /(ZVH) V /(NAH) (VQ) / + +(ZVW) (VE) /(NSH) V /(ZCW) (CE) /(MDH) (CG) / + + + +(CNG) (NH) /(AD) N /(AD) (NE) /(ADT) (NE) / + +(ZVW) V /(NA) (VE) /(XBW) B /(MSQ) (BH) / + +(CN) (NE) /(AD) N /(AD) (NE) /(ADT) (NE) / + +(ZVW) V /(NA) (VE) /(XBW) B /(MST) (BY) / + + + +(ZV) (VE) /(NA) V /B (MSW) /(NE) (ADT) / + +(ZVY) (VT) /(NAE) (VT) /(XBW) B /(MSE) (BW) / + +(ZCQ) (CW) /(BME) (CT) /(ZVH) V /(NAH) (VQ) / + +(ZVW) (VE) /(NSH) V /(ZCW) (CE) /(MDH) (CG) / + + + +(CN) (NH) /(AD) N /(AD) N /(AD) N / + +(VE) N(AH)/ NVN/(BJ)QM(SJ)/(MG)S(MD)/ + +Z CB/NM C/ZCBA/(MH)J(BQ)W/ + +(ZE) V(NH)/AF S/(XJ)QB(MJ)/S(MG) (BDH)/ + + + +Z CB/NM C/ZCBA/MB / + + " +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/花之舞.json b/repo/js/YuanQin/assets/花之舞.json new file mode 100644 index 00000000..7b848af6 --- /dev/null +++ b/repo/js/YuanQin/assets/花之舞.json @@ -0,0 +1,46 @@ +{ + "name":"花之舞", + "short" :90, + "pause":200, + "longPause":200, + "split":"括号", + "toneStr":" + E A / HQE/(BGJW) S /[GJWT] / + +(CJW) MU/(DY) GT/(NY) D /(HE) D / + +(VFH) A /(FHE) A /(BW) [(SW)EW]/(GJ) (SG) / + +(NH) D /H J /Q D /H E / + + + +[VHQE] A /FH(AQ)E/(BGJW) S /[GJWT] S / + +(CJW) (MJT) /(DJY) (GJU) /(ND)Q(CS)J/(NA)H(CM)G/ + +(VH)E(AW)E/(FH)EWE/(BH)E(SW)E/(GH)EWE/ + +(NH)E(CQ)E/(NH)E(MQ)E/(AH)E(NHQ)E/(CH) (ND) / + +、 + +(NHQ)D(AJ)(MD)/(SQ)(AD)(MW)(AD)/(CJ)M(BMDH)M/(BMDG) DG/ + +(VFH)A(NG)(BA)/(NH)(MA)(AQ)(NA)/(ZG)A(CBAF)A/(CBAD) DG/ + +(XSF)N(VD)(CN)/(XS)(ZN)(MF)N/(ZD)C(CS)(XC)/(ZA)C(ND)C/ + +(MJW)F(VQ)(BF)/(NJ)(MF)(AH)(MF)/(CSDG) (VADH) /(BMDGJ) D / + + + +(NQ)D(CJ)D/(NQ)D(CW)D/(CJ)M(MH)M/(CG) (MD)G/ + +(VH)V(NH)(BG)/(NH)(MJ)(AQ)(NH)/(ZG)A(BF)A/(AD) (BD)G/ + +(VF) (FR)(DE)/(SW)(AQ)(MJ) /(CDE)W(XSE)R/(ZAE)W(CDQ)J/ + +(XSH) (ZAE) /(BMG) EB/(NH) C /N / +" +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/赤伶.json b/repo/js/YuanQin/assets/赤伶.json new file mode 100644 index 00000000..ed71fe35 --- /dev/null +++ b/repo/js/YuanQin/assets/赤伶.json @@ -0,0 +1,7 @@ +{ + "name":"赤伶", + "pause":180, + "longPause":440, + "split":"括号", + "toneStr":"DGS/ASSDD/NMAADS/ASD//DGS/ASDSA//NMAADS/BNMN//NMASSDDGGHS/SDGDDSA/NNMASD//NMASSDDGGHS/SDGDDSA/NHGDSD//EWEHE/GHJHQ//EWEHE/GHJTE//EWEHE/GHJHQWEH//WEH/WEW/GHJH" +} \ No newline at end of file diff --git a/repo/js/YuanQin/assets/黑人抬棺.json b/repo/js/YuanQin/assets/黑人抬棺.json new file mode 100644 index 00000000..00014284 --- /dev/null +++ b/repo/js/YuanQin/assets/黑人抬棺.json @@ -0,0 +1,7 @@ +{ + "name":"黑人抬棺", + "pause":112, + "longPause":260, + "split":"括号", + "toneStr":"FFFF/HHHH/GGGG/QQQQ/WWWWWWWWWWWW/GFDAS/SHG/F/D/DDG/FDS/SRERERS/SRERERS/SHG/F/D/DDG/FDS/SRERERS/SRERERFFFF/HHHH/GGGG/QQQQ/WWWWWWWWWWWW//GFDAS/SHG/F/D/DDG/FDS/SRERERS/SRERERS/SHG/F/D/DDG/FDS/SRERERS/SRERERFFFF/HHHH/GGGG/QQQQ/WWWWWWWWWWWW" +} \ No newline at end of file diff --git a/repo/js/YuanQin/main.js b/repo/js/YuanQin/main.js new file mode 100644 index 00000000..93989c0d --- /dev/null +++ b/repo/js/YuanQin/main.js @@ -0,0 +1,351 @@ +/** + * 谱子说明:/为节拍线,每两个/之间为一拍,每个字符占1/4拍,小括号( )内视为一个整体,一起按下,中括号【 】内从左到右依次快速演奏。 + * @author 阿城同学 + * @link https://github.com/shilic + */ +// 所有的代码必须由 async function 包裹 +(async function () { + log.info("[{YuanQin}]正在启动", "原琴"); + /* ------------------------------------------------------1. 数据结构区, 以下代码用于预定义数据结构-------------------------------------------------- */ + // 从配置中获取你选择的乐谱 + let selectValue = settings.selectValue; + //log.info("selectValue:{options}",selectValue); + let scoreFilePath = `assets/${selectValue}.json`; + /** 定义分割类型枚举 */ + const SplitTypeEnum = { + /** 括号分割 */ + Bracket : 0, + /** 逗号分割 */ + Comma : 1, + /** 默认分割类型 */ + Default : 2, + }; + /** 定义音符类型枚举 */ + const ToneTypeEnum = { + /** 该音符表示一个长停顿,例如某段歌曲中的间隔 (就是换气,谁TM 唱歌不换气啊)。文件中用 / 表示 */ + LongPause : 0, + /** 该音符表示一个单音符(简简单单) */ + Single : 1, + /** 该音符表示一个多音符,即多个音符同时按下(原琴玩家表示办不到啊,只有用脚本了) ,如 (QA) 表示这两个同时按下 */ + Multi : 2, + /** 一个短间隔,在文件中用 <> 表示 ,表示左右两个字符需要快速弹奏。 */ + ShortInterval : 3, + }; + /** 音符对象模型 */ + var ToneObject = { + toneType : ToneTypeEnum.Single , + tones : [] , + }; + /** 定义一个乐谱对象原型,用于描述乐谱。 */ + var MusicScoreObject = { + /** 乐谱名称 */ + name : "" , + /** 一个短间隔(单位:毫秒)。在文件中用 <> 表示 ,表示左右两个字符需要快速弹奏。 */ + shortMills : 80, + /** 暂停间隔 (单位:毫秒)。当你按下一个音符时,需要暂停这么多毫秒的时间再按下一个音符(废话,难道你一直按啊)*/ + pauseMills : 200 , + /** 长间隔 (单位:毫秒)。表示一个长停顿,例如某段歌曲中的间隔 。(就是换气,谁TM 唱歌不换气啊)*/ + longPauseMills : 500 , + /** 分割类型 。用于适应不同的乐谱格式,例如:将同时按下的音符用括号括起来。 */ + split : SplitTypeEnum.Bracket , + /** 音符列表 这个字段用于以字符串形式表示音符列表 */ + toneStr : "", + /** 音符列表 用 列表的形式存储每个音符 toneList : ToneObject = [] */ + toneList : [] , + }; + /* ----------------------------------------------------2. 执行区域 ,以下代码用于正式执行操作------------------------------------------------------ */ + /** 乐谱对象 + * @class MusicScoreObject + */ + let musicScore = await getMusicScoreFromFile(scoreFilePath); // 使用 await 来等待函数执行完毕。获取乐谱 + ////await printMusicScore(musicScore); //打印一个乐谱的基本信息 + let ifParse = await parseScore(musicScore); // 解析乐谱 + if(ifParse){ + log.info("音符解析成功,尝试播放《{name}》",musicScore.name); + //await printTones(musicScore); // 打印解析后的音符列表 + await sleep(3000); + await playMusic(musicScore); + } + else{ + log.error("音符解析失败"); + } + + //await regexTest2(); + /* ---------------------------------------------------3. 方法区 , 以下代码用于定义方法------------------------------------------------------------*/ + /** + * 从文件中读取一个乐谱 + * @param {String} scorePath 文件地址,例如 assets/JOJO黄金之风.json + * @returns 返回一个乐谱对象 MusicScoreObject + */ + async function getMusicScoreFromFile(scorePath){ + let musicScore = Object.create(MusicScoreObject); // 通过原型创建一个乐谱对象 + //log.info(`尝试读取乐谱《${scorePath}》`); + let fileContent; + try { + fileContent = file.readTextSync(scorePath); // 同步阻塞式的将乐谱从文件中读取。 + //log.info("{fileContent}",fileContent); // 用于测试读取文件,测试成功 + //log.info("[{y}]读取乐谱文件《{scorePath}》成功","原琴",scorePath); + } catch (error) { + log.error("[{y}]在读取文件 《{scorePath}》时,发生错误","原琴",scorePath); + return null ; + } + if(fileContent == null){ // 可能存在文件无法读出的情况,增加一步校验。 + log.error("[{y}]在读取文件 《{scorePath}》,文件为空","原琴",scorePath); + return null ; + } + // 一些正则表达式,用于解析你的乐谱文件 + const scoreNameRegex = /"\s*name\s*"\s*:\s*"\s*(?[^"]+)\s*"\s*,/; + const scoreShortRegex = /"\s*short\s*"\s*:\s*"?\s*(?\d+)\s*"?\s*,/; + const scorePauseRegex = /"\s*pause\s*"\s*:\s*"?\s*(?\d+)\s*"?\s*,/; + const scoreLongPauseRegex = /"\s*longPause\s*"\s*:\s*"?\s*(?\d+)\s*"?\s*,/; + const scoreSplitRegex = /"\s*split\s*"\s*:\s*"\s*(?[^"\s]+)\s*"\s*,/; + const scoreTonesRegex = /"\s*toneStr\s*"\s*:\s*"\s*(?[^"]+)\s*"\s*,?/; + // 执行正则表达式 匹配操作 + const scoreNameMatch = scoreNameRegex.exec(fileContent); + const scoreShortMatch = scoreShortRegex.exec(fileContent); + const scorePauseMatch = scorePauseRegex.exec(fileContent); + const scoreLongPauseMatch = scoreLongPauseRegex.exec(fileContent); + const scoreSplitMatch = scoreSplitRegex.exec(fileContent); + const scoreTonesMatch = scoreTonesRegex.exec(fileContent); + // 得到匹配结果 + // 可能会出现无法捕获的情况,例如用户没有填这个字段。给代码增加容错性。 + // 使用 try-catch 语句,替换了原来的空值判断,看来java的正则表达式和js还是不太一样,java是可以直接获取,但是可能为空,而js是直接报错。 + try { + musicScore.name = scoreNameMatch.groups.scoreName; + } catch (error) { + log.error("未识别到乐曲名称"); + } + try { + musicScore.shortMills = parseInt(scoreShortMatch.groups.scoreShort) ; + } catch (error) { + log.error("未识别到短间隔"); + } + try { + musicScore.pauseMills = parseInt(scorePauseMatch.groups.scorePause); + } catch (error) { + log.error("未识别到普通间隔"); + } + try { + musicScore.longPauseMills = parseInt(scoreLongPauseMatch.groups.scoreLongPause); + } catch (error) { + log.error("未识别到长间隔"); + } + try { + let value = scoreSplitMatch.groups.scoreSplit; + if(value === "括号"){ + musicScore.split = SplitTypeEnum.Bracket ; + }else if(value === "逗号"){ + musicScore.split = SplitTypeEnum.Comma ; + }else{ + musicScore.split = SplitTypeEnum.Bracket ; + } + } catch (error) { + log.error("未识别到分割类型"); + } + try { + musicScore.toneStr = scoreTonesMatch.groups.scoreTones; + } catch (error) { + log.error("未识别到乐谱"); + } + return musicScore; + } //getMusicScoreFromFile 从文件中读取一个乐谱 + /** + * 解析一个乐谱对象 + * @param {MusicScoreObject} musicScore + * @returns 返回是否解析成功 + */ + async function parseScore(musicScore) { + if (musicScore == null){ + return false; + } + musicScore.toneList = await parseTones(musicScore.toneStr,musicScore.split); + if(musicScore.toneList == null){ + return false; + } + return true; + } // 解析一个乐谱对象 + /** + * 传入待解析的字符串,以及分割类型,解析得到最终的音符数组 + * @param {String} tonesString + * @param {SplitTypeEnum} splitType + * @returns 返回一个音符数组 + */ + async function parseTones(tonesString ,splitType) { + let toneList = [] ; //预定义返回值 + /** 括号分割模式下,用于识别音符的正则表达式 /g 表示全局匹配*/ + // /([(]\s*(?[A-Za-z]{2,})\s*[)])|(?[a-zA-Z])|(?[/])/g + const BracketRegex =/([(]\s*(?[A-Za-z]{2,})\s*[)])|(?[a-zA-Z])|(?[/|])|(?[<\[\{]\s*(?[A-Za-z]{2,})\s*[\}>\]])/g ; // 由 + 号表示长间隔,改为了由 / 表示 + let regex = null; + if(splitType == SplitTypeEnum.Bracket){ // 括号分割 + regex = BracketRegex; + } + else{ + log.error("未识别到音符分割模式"); + } + if(regex == null){ + return null; + } + //let match = regex.exec(tonesString); + log.info("正在执行音符匹配"); + let match; + //let toneArray = [] ; + while( match = regex.exec(tonesString) ) { + let tone = Object.create(ToneObject); // 通过原型创建一个音符对象 + tone.tones = [] ; + let value ; + + if(match.groups.multi != null){ + //log.debug("{m}",match[1]); + tone.toneType = ToneTypeEnum.Multi ; + value = match.groups.multi; // 如 EHN + const charArray = Array.from(value); + for (const element of charArray) { + tone.tones.push(element); + } + //log.debug("multi ={m}",value); + } + if(match.groups.single != null){ + tone.toneType = ToneTypeEnum.Single ; + value = match.groups.single ; // 如 B + //tone.tones.push(value); + tone.tones = value ; + //log.debug("single ={m}",value); + } + if(match.groups.LongPause != null){ + tone.toneType = ToneTypeEnum.LongPause ; + value = match.groups.LongPause ; // 如 + 号;以及多个加号,如 +++ 表示更长时间的停顿 + // const charArray = Array.from(value); + // for (const element of charArray) { + // tone.tones.push(element); + // } + tone.tones = value ; + } + if(match.groups.shortPause != null){ + tone.toneType = ToneTypeEnum.ShortInterval ; + //let shortPauseValue = match.groups.shortPause ; // + let value = match.groups.item ; // JHHKJ + const charArray = Array.from(value); + for (const element of charArray) { + tone.tones.push(element); + } + //log.info("快速弹奏的音符:{m}",shortPauseValue); + } + // else{ + // log.info("未识别到快速弹奏的音符{m}",match.groups.shortPause); + // } + toneList.push(tone); + // //log.debug("{m}",value); + //toneArray.push(value); + } + //log.debug("{m}",toneArray); + return toneList ; + } // 传入待解析的字符串,以及分割类型,解析得到最终的音符数组 + + /** + * 打印解析后的音符列表 + * @param {MusicScoreObject} musicScore + */ + async function printTones(musicScore) { + let toneList = musicScore.toneList; + let toneStr = "" ; + for(const toneObject of toneList) { // 遍历所有音符 + let type = toneObject.toneType; + let tones = toneObject.tones; + switch(type){ + case ToneTypeEnum.Multi: + toneStr = toneStr + "(" ; + toneStr = toneStr + tones; + toneStr = toneStr + ")" ; + toneStr = toneStr + " "; + break; + case ToneTypeEnum.Single: + toneStr = toneStr + tones; + toneStr = toneStr + " "; + break; + case ToneTypeEnum.LongPause: + toneStr = toneStr + tones; + toneStr = toneStr + " "; + break; + case ToneTypeEnum.ShortInterval: + toneStr = toneStr + "<" ; + toneStr = toneStr + tones; + toneStr = toneStr + ">" ; + toneStr = toneStr + " "; + break; + default: + break; + } + } // 遍历所有音符 + log.info("{m}",toneStr); + } // 打印解析后的音符列表 + /** + * 执行播放操作 + * @param {MusicScoreObject} musicScore + */ + async function playMusic(musicScore) { + let mills = musicScore.pauseMills ; + let shortMills = musicScore.shortMills; + let longPause = musicScore.longPauseMills ; + let toneList = musicScore.toneList; + for(const toneObject of toneList) { // 遍历所有音符 + let type = toneObject.toneType; + let tones = toneObject.tones; + // 1. 按下按键,并松开 + switch(type){ + case ToneTypeEnum.Multi: + await playMulti(tones); + await sleep(mills); + break; + case ToneTypeEnum.Single: + await playSingle(tones); + await sleep(mills); + break; + case ToneTypeEnum.LongPause: + await sleep(longPause); + break; + case ToneTypeEnum.ShortInterval: + for(const item of tones){ + await playSingle(item); + await sleep(shortMills) ; + } + break; + default: + break; + } + // 2. 间隔一定时间 + } // 遍历所有音符 + } //执行播放操作 + /** + * 模拟单个按键按下 + * @param {String} singlekey + */ + async function playSingle(singlekey) { + //按下按键后马上松开 + keyDown(singlekey); + keyUp(singlekey); + } + /** + * 模拟多个按键同时按下 + * @param {String[]} multiKeyArray + */ + async function playMulti(multiKeyArray) { + // 多个按键同时按下 + for(const key of multiKeyArray){ + keyDown(key); + } + // 多个按键同时松开 + for(const key of multiKeyArray){ + keyUp(key); + } + } // 模拟多个按键同时按下 + async function regexTest2(params) { + let regex = /((?[A-Za-z])~?)/g; + let match; + let input = "J~H~J~W~K"; + while(match = regex.exec(input)){ + log.info("音符{m}",match.groups.item); + //log.info("音符{m}",match[1]); + } //while + } + +})();// 所有的代码必须由 async function 包裹 \ No newline at end of file diff --git a/repo/js/YuanQin/manifest.json b/repo/js/YuanQin/manifest.json new file mode 100644 index 00000000..d6705f81 --- /dev/null +++ b/repo/js/YuanQin/manifest.json @@ -0,0 +1,14 @@ +{ + "manifest_version": 1, + "name": "[原琴]原神琴谱自动弹奏脚本", + "version": "1.0", + "description": "原神琴谱自动弹奏脚本,通过读取本地琴谱文件,解析成乐谱对象,然后模拟键盘操作,实现自动弹奏。(需角色手动提前乐器)", + "authors": [ + { + "name": "阿城同学", + "link": "https://github.com/shilic" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/YuanQin/settings.json b/repo/js/YuanQin/settings.json new file mode 100644 index 00000000..e145e9b9 --- /dev/null +++ b/repo/js/YuanQin/settings.json @@ -0,0 +1,23 @@ +[ + { + "name": "selectValue", // 变量名,在js内使用 settings.变量名 获取对应的配置值 + "type": "select", // 类型 + "label": "曲库", // 显示标签 + "options": [ //选项 + "赤伶", + "孤勇者", + "孤勇者2", + "牵丝戏", + "牵丝戏2", + "花之舞", + "声嘶力竭", + "JOJO黄金处刑曲", + "JOJO黄金之风", + "JOJO黄金之风2", + "黑人抬棺", + "溯", + "One last kiss" + ] + } +] + \ No newline at end of file diff --git a/repo/js/使用脆弱树脂/main.js b/repo/js/使用脆弱树脂/main.js new file mode 100644 index 00000000..92302546 --- /dev/null +++ b/repo/js/使用脆弱树脂/main.js @@ -0,0 +1,30 @@ +(async function () { + const defaultTime = 1 + + setGameMetrics(3840, 2160, 1.5); // 设置游戏窗口大小和DPI + + keyPress("M");//打开地图 + await sleep(1200); + click(2475, 95);// 点击添加体力 + await sleep(600); + click(1660, 950)// 选择脆弱树脂 + await sleep(600); + click(2350, 1550);// 点击使用 + await sleep(600); + + if (isNaN(settings.times || settings.times <= 0)) { + times = defaultTime + }else{ + for (let i = 1; i < settings.times; ++i) { + click(2585, 1295);// 点击使用数量 + await sleep(600); + } + } + + click(2350, 1550);// 点击使用 + await sleep(600); + click(1920, 1500);// 点击空白处 + await sleep(600); + keyPress("VK_ESCAPE");//关闭地图 + +})(); diff --git a/repo/js/使用脆弱树脂/manifest.json b/repo/js/使用脆弱树脂/manifest.json new file mode 100644 index 00000000..30c1a632 --- /dev/null +++ b/repo/js/使用脆弱树脂/manifest.json @@ -0,0 +1,15 @@ +{ + "manifest_version": 1, + "name": "使用脆弱树脂", + "version": "1.0", + "bgi_version": "0.37.1", + "description": "", + "authors": [ + { + "name": "起个名字好难", + "link": "https://mualani.fun" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} diff --git a/repo/js/使用脆弱树脂/settings.json b/repo/js/使用脆弱树脂/settings.json new file mode 100644 index 00000000..3b6b0719 --- /dev/null +++ b/repo/js/使用脆弱树脂/settings.json @@ -0,0 +1,7 @@ +[ + { + "name": "times", + "type": "input-text", + "label": "每次使用个数" + } +] \ No newline at end of file diff --git a/repo/js/芙芙挂机暗杀流/main.js b/repo/js/芙芙挂机暗杀流/main.js index a7286ee8..35416607 100644 --- a/repo/js/芙芙挂机暗杀流/main.js +++ b/repo/js/芙芙挂机暗杀流/main.js @@ -1,38 +1,38 @@ -(async function () { - setGameMetrics(2560, 1440, 1.5); // 设置游戏窗口大小和DPI - - log.info("循环开始执行,确保1号位芙宁娜,建议使用双水队提升伤害") - - log.info("正在附身纳塔龙") - keyPress("T");//附身纳塔龙 - await sleep(2000); - log.info("附身纳塔龙完成") - -for (let i = 0; i < settings.cycle_times; ++i) { - - log.info("正在执行第"+(i+1)+"次"); - - keyDown("Q");//脱身纳塔龙 - await sleep(1200); - keyUp("Q"); - await sleep(100); - - leftButtonClick();//下落攻击快速落地 - await sleep(500); - - keyPress("1");//切换芙芙 - await sleep(1000); - - keyPress("E");//释放芙芙元素战技 - await sleep(800); - - keyPress("2");//芙芙切后台触发剧团 - await sleep(500); - - keyPress("T");//附身纳塔龙 - await sleep(28500); - - log.info("第"+(i+1)+"次执行完成") -} - -})(); +(async function () { + setGameMetrics(2560, 1440, 1.5); // 设置游戏窗口大小和DPI + + log.info("循环开始执行,确保1号位芙宁娜,建议使用双水队提升伤害") + + log.info("正在附身纳塔龙") + keyPress("T");//附身纳塔龙 + await sleep(2000); + log.info("附身纳塔龙完成") + +for (let i = 0; i < settings.cycle_times; ++i) { + + log.info("正在执行第"+(i+1)+"次"); + + keyDown("Q");//脱身纳塔龙 + await sleep(1200); + keyUp("Q"); + await sleep(100); + + leftButtonClick();//下落攻击快速落地 + await sleep(500); + + keyPress("1");//切换芙芙 + await sleep(1000); + + keyPress("E");//释放芙芙元素战技 + await sleep(800); + + keyPress("2");//芙芙切后台触发剧团 + await sleep(500); + + keyPress("T");//附身纳塔龙 + await sleep(28500); + + log.info("第"+(i+1)+"次执行完成") +} + +})(); diff --git a/repo/js/芙芙挂机暗杀流/manifest.json b/repo/js/芙芙挂机暗杀流/manifest.json index dff2e10f..cbf89bfb 100644 --- a/repo/js/芙芙挂机暗杀流/manifest.json +++ b/repo/js/芙芙挂机暗杀流/manifest.json @@ -1,15 +1,15 @@ -{ - "manifest_version": 1, - "name": "芙芙挂机暗杀流", - "version": "1.0", - "bgi_version": "0.37.2", - "description": "用于芙宁娜海鲜挂机暗杀地方传奇", - "authors": [ - { - "name": "起个名字好难", - "link": "https://mualani.fun" - } - ], - "settings_ui": "settings.json", - "main": "main.js" -} +{ + "manifest_version": 1, + "name": "芙芙挂机暗杀流", + "version": "1.0", + "bgi_version": "0.37.2", + "description": "用于芙宁娜海鲜挂机暗杀地方传奇\n目前已知适用科西霍和海浪中的莎孚,需加入调度器中使用\n1、队伍1号位芙宁娜,234号随意,推荐双水队伍,可以吃药增伤;\n2、按照B站一些逃课视频到达指定位置,附身一只水龙或草龙到石块上;\n3、确保指定位置周围没有其他可以直接附身的龙魂,以免误操作;\n4、可以在附身状态下开启,也可以在角色状态下开启,循环开启前均会先附身;\n5、0命芙芙世界等级8的情况下:科西霍循环6-10次、海浪中的莎孚循环14-18次,时间充裕的情况下可以按最低循环次数多尝试,避免误杀没拿到成就。", + "authors": [ + { + "name": "起个名字好难", + "link": "https://mualani.fun" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} diff --git a/repo/js/芙芙挂机暗杀流/settings.json b/repo/js/芙芙挂机暗杀流/settings.json index 9e9cf9c7..342d27da 100644 --- a/repo/js/芙芙挂机暗杀流/settings.json +++ b/repo/js/芙芙挂机暗杀流/settings.json @@ -1,7 +1,7 @@ -[ - { - "name": "cycle_times", - "type": "input-text", - "label": "循环次数" - } +[ + { + "name": "cycle_times", + "type": "input-text", + "label": "循环次数" + } ] \ No newline at end of file diff --git a/repo/js/芙芙挂机暗杀流/使用说明.txt b/repo/js/芙芙挂机暗杀流/使用说明.txt deleted file mode 100644 index 6fe52402..00000000 --- a/repo/js/芙芙挂机暗杀流/使用说明.txt +++ /dev/null @@ -1,13 +0,0 @@ -芙芙挂机暗杀流说明 - -目前已知适用科西霍和海浪中的莎孚,需加入调度器中使用 - -1、队伍1号位芙宁娜,234号随意,推荐双水队伍,可以吃药增伤; - -2、按照B站一些逃课视频到达指定位置,附身一只水龙或草龙到石块上; - -3、确保指定位置周围没有其他可以直接附身的龙魂,以免误操作; - -4、可以在附身状态下开启,也可以在角色状态下开启,循环开启前均会先附身; - -5、0命芙芙世界等级8的情况下:科西霍循环6-10次、海浪中的莎孚循环14-18次,时间充裕的情况下可以按最低循环次数多尝试,避免误杀没拿到成就。 \ No newline at end of file diff --git a/repo/js/鸡腿好感/assets/AutoPath/从狗盆到甜甜花.json b/repo/js/鸡腿好感/assets/AutoPath/从狗盆到甜甜花.json new file mode 100644 index 00000000..dfdb5b63 --- /dev/null +++ b/repo/js/鸡腿好感/assets/AutoPath/从狗盆到甜甜花.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "从狗盆到甜甜花", + "type": "collect", + "author": "花火", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4500.28125, + "y": -3116.0146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "action": "", + "move_mode": "walk", + "type": "target", + "x": -4529.2578125, + "y": -3084.009765625 + } + ] +} \ No newline at end of file diff --git a/repo/js/鸡腿好感/assets/AutoPath/从甜甜花到狗盆.json b/repo/js/鸡腿好感/assets/AutoPath/从甜甜花到狗盆.json new file mode 100644 index 00000000..78de3370 --- /dev/null +++ b/repo/js/鸡腿好感/assets/AutoPath/从甜甜花到狗盆.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "从甜甜花到狗盆", + "type": "collect", + "author": "花火", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "path", + "x": -4529.2578125, + "y": -3084.009765625 + }, + { + "id": 2, + "x": -4500.28125, + "y": -3116.0146484375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/鸡腿好感/assets/AutoPath/导航至甜甜花位置.json b/repo/js/鸡腿好感/assets/AutoPath/导航至甜甜花位置.json new file mode 100644 index 00000000..937a9403 --- /dev/null +++ b/repo/js/鸡腿好感/assets/AutoPath/导航至甜甜花位置.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "到达甜甜花位置", + "type": "collect", + "author": "花火", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4402.525390625, + "y": -3052.986328125 + }, + { + "id": 2, + "x": -4407.537109375, + "y": -3055.0751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4480.993107617283, + "y": -2996, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": -4500.1015625, + "y": -3004.046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4529.2578125, + "y": -3084.009765625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/鸡腿好感/main.js b/repo/js/鸡腿好感/main.js new file mode 100644 index 00000000..d2fcb7ae --- /dev/null +++ b/repo/js/鸡腿好感/main.js @@ -0,0 +1,157 @@ +(async function () { + + const defaultExitDelay = 12; + const defaultLoadingDelay = 15; + + function validateAndSetDefaults(exitDelay, loadingDelay) { + if (isNaN(exitDelay) || exitDelay <= 0) { + log.warn("你没有设置退出延迟,将使用默认值:12秒"); + exitDelay = defaultExitDelay; + } + if (isNaN(loadingDelay) || loadingDelay <= 0) { + log.warn("你没有设置加载延迟,将使用默认值:15秒"); + loadingDelay = defaultLoadingDelay; + } + return { exitDelay, loadingDelay }; + } + + async function ReopenTheGate() { + await sleep(1000); + keyPress("ESCAPE"); + await sleep(1000); + click(50, 1030); + await sleep(1000); + click(1000, 750); + await sleep(validatedExitDelay * 1000); + click(1000, 550); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + click(1000, 750); + await sleep(1000); + await sleep(validatedLoadingDelay * 1000); + click(1000, 750); + await sleep(1000); + } + + async function Feed() { + await sleep(1000); + keyPress("F"); + await sleep(1000); + click(1010, 760); + await sleep(1000); + } + + async function resetMap() { + log.info("重置地图大小..."); + await sleep(1000); + keyPress("M"); + await sleep(1000); + click(1840, 1010); + await sleep(1000); + click(1450, 460); + await sleep(1000); + click(1840, 1010); + await sleep(1000); + click(1450, 140); + await sleep(1000); + keyPress("M"); + log.info("重置地图大小完成"); + } + + async function AutoPath(locationName) { + try { + let filePath = `assets/AutoPath/${locationName}.json`; + await pathingScript.runFile(filePath); + } catch (error) { + log.error(`执行 ${locationName} 路径时发生错误`); + log.error(error.message); + } + await sleep(2000); + } + + async function AutoFriendshipDev(times) { + await resetMap(); + + log.info(`导航至甜甜花位置`); + await AutoPath('导航至甜甜花位置'); + + log.info(`自动好感开始...`); + + await ReopenTheGate(); + for (let i = 0; i < times; i++) { + log.info(`自动好感当前次数:${i + 1}/${times}`); + await AutoPath('从甜甜花到狗盆'); + await Feed(); + await AutoPath('从狗盆到甜甜花'); + await ReopenTheGate(); + logTimeTaken(startTime); + } + log.info('自动好感已完成'); + } + + function logTimeTaken(startTime) { + const currentTime = Date.now(); + const totalTimeInSeconds = (currentTime - startTime) / 1000; + const minutes = Math.floor(totalTimeInSeconds / 60); + const seconds = totalTimeInSeconds % 60; + const formattedTime = `${minutes}分${seconds.toFixed(0).padStart(2, '0')}秒`; + log.info(`当前运行总时长:${formattedTime}`); + } + + // 启用自动拾取的实时任务 + const startTime = Date.now(); + dispatcher.addTimer(new RealtimeTimer("AutoPick")); + + setGameMetrics(1920, 1080, 1); // 设置游戏窗口大小和DPI + let exitdelay = Number(settings.exitdelay); + let loadingdelay = Number(settings.loadingdelay); + const { exitDelay: validatedExitDelay, loadingDelay: validatedLoadingDelay } = validateAndSetDefaults(exitdelay, loadingdelay); + const messages = [ + '请确保有足够的鸡腿', + '请确保队伍满员', + '大约需要17分钟' + ]; + for (let message of messages) { + log.info(message); + await sleep(1000); + } + log.info('自动好感开始...'); + log.info(`退出延迟: ${validatedExitDelay}秒, 加载延迟: ${validatedLoadingDelay}秒`); + //默认10次自动好感 + await AutoFriendshipDev(10); + // 计算并输出总时长 + const endTime = Date.now(); + const totalTimeInSeconds = (endTime - startTime) / 1000; + const minutes = Math.floor(totalTimeInSeconds / 60); + const seconds = totalTimeInSeconds % 60; + const formattedTime = `${minutes}分${seconds.toFixed(0).padStart(2, '0')}秒`; + log.info(`自动好感运行总时长:${formattedTime}`); +})(); diff --git a/repo/js/鸡腿好感/manifest.json b/repo/js/鸡腿好感/manifest.json new file mode 100644 index 00000000..02396092 --- /dev/null +++ b/repo/js/鸡腿好感/manifest.json @@ -0,0 +1,13 @@ +{ + "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/鸡腿好感/settings.json b/repo/js/鸡腿好感/settings.json new file mode 100644 index 00000000..cab8cf26 --- /dev/null +++ b/repo/js/鸡腿好感/settings.json @@ -0,0 +1,12 @@ +[ + { + "name": "exitdelay", + "type": "input-text", + "label": "退出延迟(秒)(选填)" + }, + { + "name": "loadingdelay", + "type": "input-text", + "label": "加载延迟(秒)(选填)" + } +] \ 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..4611d06e Binary files /dev/null and b/repo/pathing/万相石/icon.ico differ diff --git a/repo/pathing/万相石/万相石-13.json b/repo/pathing/万相石/万相石-13.json new file mode 100644 index 00000000..87fd2e7e --- /dev/null +++ b/repo/pathing/万相石/万相石-13.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "万相石-13", + "type": "collect", + "author": "MOMO", + "version": "2.0", + "description": "钟离、坎蒂丝、雷泽、卡齐娜、凝光都可以,钟离有小概率被柱子卡,略微影响效率", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 6160.6767578125, + "y": 1.7841796875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 6177.76953125, + "y": 9.35693359375, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 6172.72216796875, + "y": 12.3623046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 6178.03369140625, + "y": 13.25830078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 6166.49267578125, + "y": 26.61669921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 6148.52587890625, + "y": 59.15966796875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": 6128.9697265625, + "y": 70.53173828125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 6093.272460937501, + "y": 85.796875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 6091.64501953125, + "y": 82.33203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 6095.0751953125, + "y": 89.7529296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 5942.439453125, + "y": 618.18798828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 12, + "x": 5947.3525390625, + "y": 618.95751953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 5968.48779296875, + "y": 581.65673828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 5979.5244140625, + "y": 557.9775390625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 15, + "x": 5979.5244140625, + "y": 557.9775390625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 5985.84814453125, + "y": 554.46826171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 5988.39453125, + "y": 544.0615234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 6002.353515625, + "y": 501.296875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 6003.26025390625, + "y": 498.7451171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 6002.84228515625, + "y": 495.6357421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 6006.64892578125, + "y": 496.07568359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 6001.88916015625, + "y": 498.9375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 6002.7392578125, + "y": 544.5756835937501, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 6006.05126953125, + "y": 546.4833984375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 25, + "x": 6002.88232421875, + "y": 532.6796875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 6004.64453125, + "y": 527.04052734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 6004.03173828125, + "y": 536.9580078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 6005.08349609375, + "y": 528.7836914062499, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 6339.587890625, + "y": 738.4248046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 30, + "x": 6291.45166015625, + "y": 739.7294921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 6271.92333984375, + "y": 769.4560546874999, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": 6248.234375, + "y": 782.8251953124989, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 6233, + "y": 836, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 6279.112304687499, + "y": 881.439453125, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "target" + }, + { + "id": 35, + "x": 6282.1357421875, + "y": 885.53857421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 36, + "x": 6283.40869140625, + "y": 917.18798828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 6287.9580078125, + "y": 945.95947265625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "target" + }, + { + "id": 38, + "x": 6287.3486328125, + "y": 946.78564453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 39, + "x": 6295.88916015625, + "y": 946.1279296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 40, + "x": 6296.6064453125, + "y": 951.19140625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "target" + }, + { + "id": 41, + "x": 6296.6689453125, + "y": 951.0400390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 42, + "x": 6304.072265625, + "y": 953.75244140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 43, + "x": 6306.61669921875, + "y": 960.3759765625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "target" + }, + { + "id": 44, + "x": 6307.690429687497, + "y": 958.6005859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 45, + "x": 6305.00429687499, + "y": 960.1005859375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/万相石/万相石-17.json b/repo/pathing/万相石/万相石-17.json new file mode 100644 index 00000000..d3c4087c --- /dev/null +++ b/repo/pathing/万相石/万相石-17.json @@ -0,0 +1,604 @@ +{ + "info": { + "name": "万相石-17", + "type": "collect", + "author": "MOMO", + "version": "2.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 6160.6767578125, + "y": 1.7841796875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 6177.76953125, + "y": 9.35693359375, + "action": "combat_script", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 6172.72216796875, + "y": 12.3623046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 6178.03369140625, + "y": 13.25830078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 6166.49267578125, + "y": 26.61669921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 6148.52587890625, + "y": 59.15966796875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": 6128.9697265625, + "y": 70.53173828125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 6093.272460937501, + "y": 85.796875, + "action": "combat_script", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 6091.64501953125, + "y": 82.33203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 6095.0751953125, + "y": 89.7529296875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 5942.439453125, + "y": 618.18798828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 12, + "x": 5947.3525390625, + "y": 618.95751953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 5968.48779296875, + "y": 581.65673828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 5979.5244140625, + "y": 557.9775390625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 15, + "x": 5979.5244140625, + "y": 557.9775390625, + "action": "combat_script", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 5985.84814453125, + "y": 554.46826171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 5988.39453125, + "y": 544.0615234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 6002.353515625, + "y": 501.296875, + "action": "combat_script", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": 6003.26025390625, + "y": 498.7451171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 6002.84228515625, + "y": 495.6357421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 6006.64892578125, + "y": 496.07568359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 6001.88916015625, + "y": 498.9375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 6004.7392578125, + "y": 544.5756835937501, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 6006.05126953125, + "y": 546.4833984375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 25, + "x": 6002.88232421875, + "y": 532.6796875, + "action": "combat_script", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 6004.64453125, + "y": 527.04052734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 6004.03173828125, + "y": 536.9580078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 6005.08349609375, + "y": 528.7836914062499, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 6339.587890625, + "y": 738.4248046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 30, + "x": 6291.45166015625, + "y": 739.7294921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 6271.92333984375, + "y": 769.4560546874999, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": 6248.234375, + "y": 782.8251953124989, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 6233, + "y": 836, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 6279.112304687499, + "y": 881.439453125, + "action": "combat_script", + "move_mode": "walk", + "type": "target" + }, + { + "id": 35, + "x": 6282.1357421875, + "y": 885.53857421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 36, + "x": 6283.40869140625, + "y": 917.18798828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 6291.958007812501, + "y": 946.95947265625, + "action": "combat_script", + "move_mode": "walk", + "type": "target" + }, + { + "id": 38, + "x": 6287.3486328125, + "y": 946.78564453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 39, + "x": 6295.88916015625, + "y": 946.1279296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 40, + "x": 6296.6064453125, + "y": 951.19140625, + "action": "combat_script", + "move_mode": "walk", + "type": "target" + }, + { + "id": 41, + "x": 6296.6689453125, + "y": 951.0400390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 42, + "x": 6304.072265625, + "y": 953.75244140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 43, + "x": 6306.61669921875, + "y": 960.3759765625, + "action": "combat_script", + "move_mode": "walk", + "type": "target" + }, + { + "id": 44, + "x": 6307.690429687497, + "y": 958.6005859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 1, + "x": 6187.83740234375, + "y": 479.67724609375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 6160.84814453125, + "y": 442.55517578125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 6148.61669921875, + "y": 425.16943359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 6141.349609375, + "y": 413.96337890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 6138.3818359375, + "y": 401.421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 6126.81982421875, + "y": 379.5732421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 6112.14111328125, + "y": 360.4453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 6077.49169921875, + "y": 360.04150390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 6043.478515625, + "y": 359.001953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 6038.71630859375, + "y": 359.779296875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 6039.84326171875, + "y": 360.60546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 6040.58740234375, + "y": 358.5302734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 6037.18408203125, + "y": 356.50732421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 6032.58447265625, + "y": 323.29052734375, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 6029.94482421875, + "y": 322.4306640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 6029.4609375, + "y": 320.40087890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 6013.54833984375, + "y": 304.36962890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 6022.2138671875, + "y": 285.22216796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 6031.47265625, + "y": 280.2294921875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "target" + }, + { + "id": 20, + "x": 6030.5810546875, + "y": 281.0947265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 6031.4091796875, + "y": 279.080078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 6031.91650390625, + "y": 276.00048828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 6033.1376953125, + "y": 277.6650390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 6034.6748046875, + "y": 257.72998046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 6039.4755859375, + "y": 253.93310546875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "target" + }, + { + "id": 26, + "x": 6040.998046875, + "y": 253.43896484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 6040.62109375, + "y": 249.7451171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 6042.1337890625, + "y": 249.939453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 6036.9609375, + "y": 250.96875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 6039.6337890625, + "y": 254.20068359375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王01.json b/repo/pathing/丘丘王/丘丘王01.json new file mode 100644 index 00000000..b7506368 --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王01.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "丘丘王01", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -707.2024425678737, + "y": 933.25, + "action": "", + "move_mode": "fly", + "type": "teleport" + }, + { + "id": 2, + "x": -703.7265625, + "y": 931.3349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -682.375, + "y": 962.197265625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": -674.0634765625, + "y": 974.84814453125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": -688.7041015625, + "y": 1009.47412109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": -690.7890625, + "y": 1032.3642578125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": -693.9584581857798, + "y": 1056, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -698.8173828125, + "y": 1052.61474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -701.0771484375, + "y": 1062.2333984375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 12, + "x": -704.025390625, + "y": 1083.896484375, + "type": "path", + "move_mode": "run", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王02.json b/repo/pathing/丘丘王/丘丘王02.json new file mode 100644 index 00000000..881f0320 --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王02.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "丘丘王02", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1007.7995550712803, + "y": 848.5, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -976.8136293471362, + "y": 846, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": -928.9973894488339, + "y": 820.5, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": -926.404296875, + "y": 817.474609375, + "type": "path", + "move_mode": "run", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王03.json b/repo/pathing/丘丘王/丘丘王03.json new file mode 100644 index 00000000..6dc2969a --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王03.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "丘丘王03", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -490.8849087442122, + "y": 846.5, + "action": "", + "move_mode": "fly", + "type": "teleport" + }, + { + "id": 3, + "x": -444.40602015799595, + "y": 923.5, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -381.0077181512752, + "y": 986, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王04.json b/repo/pathing/丘丘王/丘丘王04.json new file mode 100644 index 00000000..c410598c --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王04.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "丘丘王04", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -415.93961681648943, + "y": 730, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 6, + "x": -410.8095703125, + "y": 709.88232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -427.3056640625, + "y": 695.17041015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": -443.328125, + "y": 675.5517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -454.119140625, + "y": 657.48974609375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": -465.1962890625, + "y": 637.75732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -481.9987514755285, + "y": 635, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王05.json b/repo/pathing/丘丘王/丘丘王05.json new file mode 100644 index 00000000..553754b6 --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王05.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "丘丘王05", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -164.5556640625, + "y": 1182.5302734375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -176.5048828125, + "y": 1212.18505859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -161.6689453125, + "y": 1248.193359375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": -142.3212890625, + "y": 1273.01904296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -145.65625, + "y": 1284.125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -139.642578125, + "y": 1301.3251953125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": -146.9443359375, + "y": 1328.83642578125, + "type": "path", + "move_mode": "run", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王06.json b/repo/pathing/丘丘王/丘丘王06.json new file mode 100644 index 00000000..9ede1fbb --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王06.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "丘丘王06", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1037.71, + "y": -559.52, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1015.30743212567, + "y": -500, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 1001.8135612458009, + "y": -509.25, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 994.0670798147639, + "y": -517.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 971.5772950149822, + "y": -533.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 954.085240170707, + "y": -520.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 942.685546875, + "y": -498.9814453125, + "type": "path", + "move_mode": "walk", + "action": "stop_flying" + }, + { + "id": 11, + "x": 921.423828125, + "y": -494.6416015625, + "type": "path", + "move_mode": "run", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王07.json b/repo/pathing/丘丘王/丘丘王07.json new file mode 100644 index 00000000..81bf6cf6 --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王07.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "丘丘王07", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1256.3244574593664, + "y": -60, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1261.8219604104233, + "y": -49.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 1284.561631707982, + "y": -6.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 1311.04960047217, + "y": 56.75, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 1296.982421875, + "y": 61.37744140625, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王08.json b/repo/pathing/丘丘王/丘丘王08.json new file mode 100644 index 00000000..8c78babc --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王08.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "丘丘王08", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1761.1264414782527, + "y": -872, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1810.140625, + "y": -886.21337890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1852.0851266684822, + "y": -897.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 1858.0824026150913, + "y": -890, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 1865.07421875, + "y": -889.248046875, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王09.json b/repo/pathing/丘丘王/丘丘王09.json new file mode 100644 index 00000000..4517ec5c --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王09.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "丘丘王09", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2551.914646327068, + "y": -1425, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2578.9023880868062, + "y": -1400, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 2621.248070462181, + "y": -1391.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 2619.99609375, + "y": -1398.92236328125, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王10.json b/repo/pathing/丘丘王/丘丘王10.json new file mode 100644 index 00000000..57cbf52e --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王10.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "丘丘王10", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3555.873923431149, + "y": -2021.907747716581, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3578.470703125, + "y": -1994.40380859375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": 3591.3578061152493, + "y": -2002.657747716581, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 3608.350087963974, + "y": -2013.907747716581, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王11.json b/repo/pathing/丘丘王/丘丘王11.json new file mode 100644 index 00000000..9e57c969 --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王11.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "丘丘王11", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1045.5185546875, + "y": 950.56884765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 936.53515625, + "y": 972.716796875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 935.009765625, + "y": 973.7939453125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王12-枫丹.json b/repo/pathing/丘丘王/丘丘王12-枫丹.json new file mode 100644 index 00000000..f0d4966b --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王12-枫丹.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "丘丘王12-枫丹", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3636.05078125, + "y": 4796.072265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3665.4287109375, + "y": 4784.875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 3693.443359375, + "y": 4798.306640625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 3704.60546875, + "y": 4803.9326171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 3727.7822265625, + "y": 4803.81884765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 3737.5400390625, + "y": 4804.40673828125, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王13-枫丹.json b/repo/pathing/丘丘王/丘丘王13-枫丹.json new file mode 100644 index 00000000..222e68c4 --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王13-枫丹.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "丘丘王13-枫丹", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3367.04296875, + "y": 3294.142578125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3376.84375, + "y": 3293.7099609375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 3392.513671875, + "y": 3276.97509765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 3416.8232421875, + "y": 3262.2265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3437.6533203125, + "y": 3251.439697265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 3448.98828125, + "y": 3240.394775390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 3459.9658203125, + "y": 3250.937255859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 3480.1806640625, + "y": 3251.993408203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 3476.2294921875, + "y": 3242.86083984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 3468.4423828125, + "y": 3218.8662109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 3458.109375, + "y": 3196.927001953125, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王14-枫丹.json b/repo/pathing/丘丘王/丘丘王14-枫丹.json new file mode 100644 index 00000000..624a691a --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王14-枫丹.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "丘丘王14-枫丹", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3383.39453125, + "y": 2692.150634765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3375.60546875, + "y": 2697.677001953125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 3373.1357421875, + "y": 2696.139892578125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 3357.5830078125, + "y": 2683.562255859375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 3329.546875, + "y": 2659.9599609375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 3292.3330078125, + "y": 2626.642578125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": 3295.119140625, + "y": 2584.537109375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 3297.1298828125, + "y": 2603.15234375, + "action": "", + "move_mode": "swim", + "type": "path" + }, + { + "id": 9, + "x": 3276.7138671875, + "y": 2604.9697265625, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王15-枫丹.json b/repo/pathing/丘丘王/丘丘王15-枫丹.json new file mode 100644 index 00000000..6e1a968b --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王15-枫丹.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "丘丘王15-枫丹", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5117.4609375, + "y": 2543.3828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5078.548828125, + "y": 2513.8095703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 5040.24072265625, + "y": 2474.614990234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 5020.5830078125, + "y": 2462.67529296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4999.68896484375, + "y": 2440.68701171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4981.13623046875, + "y": 2451.977783203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4967.908203125, + "y": 2460.42041015625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 4961.01123046875, + "y": 2459.18896484375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 4956.81396484375, + "y": 2469.680908203125, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/丘丘王/丘丘王16-枫丹.json b/repo/pathing/丘丘王/丘丘王16-枫丹.json new file mode 100644 index 00000000..ba9cad01 --- /dev/null +++ b/repo/pathing/丘丘王/丘丘王16-枫丹.json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "丘丘王16-枫丹", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5113.56103515625, + "y": 2998.208984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5087.865234375, + "y": 2994.81103515625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 5068.94384765625, + "y": 2988.918212890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 5065.4912109375, + "y": 2976.320068359375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 5050.39306640625, + "y": 2962.672119140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 5025.03955078125, + "y": 2952.220947265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 5013.412109375, + "y": 2961.164306640625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 4976.875, + "y": 2995.74658203125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 9, + "x": 4972.05419921875, + "y": 2997.519287109375, + "action": "fight", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 4958.185546875, + "y": 3024.92041015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 4966.49560546875, + "y": 3038.68505859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 4992.93359375, + "y": 3064.08935546875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 13, + "x": 5002.5478515625, + "y": 3073.566162109375, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 5113.57080078125, + "y": 2998.244140625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 15, + "x": 5122.77685546875, + "y": 3023.296630859375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 16, + "x": 5156.201171875, + "y": 3096.192626953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 17, + "x": 5164.39697265625, + "y": 3120.40673828125, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/01绀田村-刀镡.json b/repo/pathing/刀镡/01绀田村-刀镡.json new file mode 100644 index 00000000..c04ce732 --- /dev/null +++ b/repo/pathing/刀镡/01绀田村-刀镡.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "海祇岛左上-刀镡", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 2, + "x": -4050.103515625, + "y": -2657.4619140625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -4039.6357421875, + "y": -2700.0107421875, + "type": "target", + "move_mode": "run", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/02海祇岛右-刀镡.json b/repo/pathing/刀镡/02海祇岛右-刀镡.json new file mode 100644 index 00000000..48d79906 --- /dev/null +++ b/repo/pathing/刀镡/02海祇岛右-刀镡.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "海祇岛右-刀镡", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1315.22265625, + "y": -3776.0693359375 + }, + { + "id": 2, + "x": -1335.2060546875, + "y": -3778.3720703125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 3, + "x": -1344.2958984375, + "y": -3770.2001953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1384.3603515625, + "y": -3766.5283203125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/03海祇岛左上-刀镡.json b/repo/pathing/刀镡/03海祇岛左上-刀镡.json new file mode 100644 index 00000000..7d65c794 --- /dev/null +++ b/repo/pathing/刀镡/03海祇岛左上-刀镡.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "海祇岛左上-刀镡", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 2, + "x": -766.0078125, + "y": -3557.36328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -740.2822265625, + "y": -3478.2353515625, + "type": "path", + "move_mode": "swim", + "action": "" + }, + { + "id": 3, + "x": -732.8623046875, + "y": -3456.46875, + "type": "target", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/04神里屋敷-刀镡.json b/repo/pathing/刀镡/04神里屋敷-刀镡.json new file mode 100644 index 00000000..9ba8b64d --- /dev/null +++ b/repo/pathing/刀镡/04神里屋敷-刀镡.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "海祇岛左上-刀镡", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4578.744140625, + "y": -2577.728515625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -4569.076171875, + "y": -2555.4345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4588.017578125, + "y": -2524.564453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4609.27734375, + "y": -2510.54296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4691.42578125, + "y": -2468.7236328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": -4689.58984375, + "y": -2470.232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4684.46484375, + "y": -2473.966796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -4661.998046875, + "y": -2468.330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -4660.341796875, + "y": -2480.3076171875, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/05越石村-刀镡.json b/repo/pathing/刀镡/05越石村-刀镡.json new file mode 100644 index 00000000..bba1fea6 --- /dev/null +++ b/repo/pathing/刀镡/05越石村-刀镡.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "海祇岛左上-刀镡", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4023.31640625, + "y": -4428.810546875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -3999.2109375, + "y": -4454.3916015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3979.423828125, + "y": -4486.515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -3980.57421875, + "y": -4506.080078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -3990.65625, + "y": -4573.2197265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": -3996.2294921875, + "y": -4611.5849609375, + "type": "path", + "move_mode": "swim", + "action": "" + }, + { + "id": 7, + "x": -3999.2109375, + "y": -4625.9677734375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 8, + "x": -3990.1962890625, + "y": -4634.8671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -3976.3232421875, + "y": -4637.3935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -3979.3134765625, + "y": -4665.0390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 11, + "x": -3983.6484375, + "y": -4681.638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -3964.0546875, + "y": -4690.798828125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/刃连岛-刀镡.json b/repo/pathing/刀镡/刃连岛-刀镡.json new file mode 100644 index 00000000..354d8df6 --- /dev/null +++ b/repo/pathing/刀镡/刃连岛-刀镡.json @@ -0,0 +1,212 @@ +{ + "info": { + "name": "海祇岛左上-刀镡", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4122.2421875, + "y": -1773.99169921875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4175.59765625, + "y": -1835.6025390625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -4175.28515625, + "y": -1847.5595703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -4192.56640625, + "y": -1825.57861328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -4220.287109375, + "y": -1851.1650390625, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -4263.517578125, + "y": -1860.6025390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -4271.619140625, + "y": -1834.7509765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -4271.30859375, + "y": -1826.74169921875, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -4244, + "y": -1846.91943359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -4234.259765625, + "y": -1868.69287109375, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 11, + "x": -4232.203125, + "y": -1871.17626953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": -4224.9140625, + "y": -1866.701171875, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 13, + "x": -4221.39453125, + "y": -1873.81982421875, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 14, + "x": -4218.63671875, + "y": -1868.76708984375, + "action": "fight", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": -4196.609375, + "y": -1860.77001953125, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -4199.2109375, + "y": -1870.28564453125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 17, + "x": -4225.27734375, + "y": -1948.59033203125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 18, + "x": -4223.234375, + "y": -1961.47021484375, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": -4216.611328125, + "y": -1965.13720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -4216.41015625, + "y": -1957.076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -4234.021484375, + "y": -1962.83935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -4259.955078125, + "y": -1948.24072265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -4293.505859375, + "y": -1903.92041015625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 24, + "x": -4254.24609375, + "y": -1893.5810546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -4220.171875, + "y": -1892.35498046875, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/緋木村-刀镡.json b/repo/pathing/刀镡/緋木村-刀镡.json new file mode 100644 index 00000000..3890f5a3 --- /dev/null +++ b/repo/pathing/刀镡/緋木村-刀镡.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "緋木村-刀镡", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "緋木村刀镡", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2221.982967003034, + "y": -3708.104146483198, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -2191.987976708024, + "y": -3725.1079054857764, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -2174.747662137672, + "y": -3738.246793791919, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -2160.998413593419, + "y": -3750.49469317283, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -2164.9952407802593, + "y": -3761.2466279535693, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -2140.0005844655825, + "y": -3780.500276397248, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -2124.7505427180404, + "y": -3790.9992260877043, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -2121.9989980590017, + "y": -3808.75005527945, + "action": "fight", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/緋木村下-刀镡.json b/repo/pathing/刀镡/緋木村下-刀镡.json new file mode 100644 index 00000000..c3704fd1 --- /dev/null +++ b/repo/pathing/刀镡/緋木村下-刀镡.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "緋木村下-刀镡", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "緋木村刀镡", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2398.9709019635084, + "y": -4138.032227919153 + }, + { + "id": 2, + "action": "", + "move_mode": "walk", + "type": "path", + "x": -2378.474325261919, + "y": -4135.031564565757 + }, + { + "id": 3, + "action": "fight", + "move_mode": "walk", + "type": "path", + "x": -2361.7271223472053, + "y": -4128.780182579514 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/刀镡/花然之庭-刀镡.json b/repo/pathing/刀镡/花然之庭-刀镡.json new file mode 100644 index 00000000..dda377ba --- /dev/null +++ b/repo/pathing/刀镡/花然之庭-刀镡.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "花然之庭-刀镡", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "刀镡", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2367.7238660389685, + "y": -3764.239275786762 + }, + { + "id": 2, + "action": "", + "move_mode": "run", + "type": "path", + "x": -2363.752400578971, + "y": -3761.021835382624 + }, + { + "id": 3, + "action": "", + "move_mode": "walk", + "type": "path", + "x": -2352.002016812945, + "y": -3741.7675788649976 + }, + { + "id": 4, + "action": "fight", + "move_mode": "walk", + "type": "path", + "x": -2355.0021147957614, + "y": -3706.0096739036944 + }, + { + "id": 5, + "action": "", + "move_mode": "run", + "type": "path", + "x": -2375.752792510233, + "y": -3716.2619403611316 + }, + { + "id": 6, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -2462.2556176814032, + "y": -3733.5157546431583 + }, + { + "id": 7, + "action": "", + "move_mode": "run", + "type": "path", + "x": -2465.505723829454, + "y": -3774.774875752357 + }, + { + "id": 8, + "action": "", + "move_mode": "run", + "type": "path", + "x": -2489.2564995267403, + "y": -3808.532338478064 + }, + { + "id": 9, + "action": "fight", + "move_mode": "walk", + "type": "path", + "x": -2496.2567281533084, + "y": -3826.7863738778906 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/01海露港.json b/repo/pathing/原海异种/01海露港.json new file mode 100644 index 00000000..723ba05a --- /dev/null +++ b/repo/pathing/原海异种/01海露港.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "1海露港", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4722.26171875, + "y": 1855.67138671875 + }, + { + "id": 2, + "x": 4666.72412109375, + "y": 1906.12548828125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 3, + "x": 4651.25732421875, + "y": 1894.89013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4628.51416015625, + "y": 1845.33935546875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 5, + "x": 4586.951171875, + "y": 1845.9541015625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 6, + "x": 4542.14404296875, + "y": 1884.76123046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4485.765625, + "y": 1925.42822265625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 8, + "x": 4439.8828125, + "y": 1936.02978515625, + "type": "path", + "move_mode": "swim", + "action": "" + }, + { + "id": 9, + "x": 4403.396484375, + "y": 2014.26220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4397.05615234375, + "y": 2021.0361328125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/02海露港.json b/repo/pathing/原海异种/02海露港.json new file mode 100644 index 00000000..e1a85df3 --- /dev/null +++ b/repo/pathing/原海异种/02海露港.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "2海露港", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4626.0654296875, + "y": 2182.267578125 + }, + { + "id": 2, + "x": 4615.22802734375, + "y": 2173.4873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4588.77587890625, + "y": 2136.150146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4572.22900390625, + "y": 2114.519775390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4545.9482421875, + "y": 2094.93701171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 4545.9482421875, + "y": 2094.93701171875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 7, + "x": 4541.341796875, + "y": 2007.0390625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 8, + "x": 4578.28515625, + "y": 2027.76953125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 9, + "x": 4615.81298828125, + "y": 2040.646484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4656.23046875, + "y": 1989.2158203125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 11, + "x": 4707.85888671875, + "y": 1989.2783203125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 12, + "x": 4763.5966796875, + "y": 1970.45458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 4777.4853515625, + "y": 1922.24365234375, + "type": "path", + "move_mode": "swim", + "action": "" + }, + { + "id": 14, + "x": 4837.85400390625, + "y": 1917.15625, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/03海露港.json b/repo/pathing/原海异种/03海露港.json new file mode 100644 index 00000000..ccdc5432 --- /dev/null +++ b/repo/pathing/原海异种/03海露港.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "3海露港", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4625.86865234375, + "y": 2182.46533203125 + }, + { + "id": 2, + "x": 4632.38330078125, + "y": 2197.09033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4605.89794921875, + "y": 2212.207275390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4582.55078125, + "y": 2217.074462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4490.0634765625, + "y": 2233.839599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4491.982421875, + "y": 2242.27197265625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 7, + "x": 4508.994140625, + "y": 2281.82177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4515.77734375, + "y": 2332.757568359375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 9, + "x": 4497.18798828125, + "y": 2373.98193359375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 10, + "x": 4541.87158203125, + "y": 2406.26416015625, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/04秋分山西侧.json b/repo/pathing/原海异种/04秋分山西侧.json new file mode 100644 index 00000000..f8ec1e39 --- /dev/null +++ b/repo/pathing/原海异种/04秋分山西侧.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "4秋分山西侧1", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4375.34033203125, + "y": 2280.90234375 + }, + { + "id": 2, + "x": 4353.58544921875, + "y": 2275.463134765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4310.0712890625, + "y": 2222.67919921875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 4, + "x": 4284.89404296875, + "y": 2222.79052734375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 5, + "x": 4257.216796875, + "y": 2269.810791015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4230.39306640625, + "y": 2321.0419921875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 7, + "x": 4197.96630859375, + "y": 2317.7861328125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/05秋分山西侧.json b/repo/pathing/原海异种/05秋分山西侧.json new file mode 100644 index 00000000..d4bff1f7 --- /dev/null +++ b/repo/pathing/原海异种/05秋分山西侧.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "5秋分山西侧2", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4146.71533203125, + "y": 2606.18896484375 + }, + { + "id": 2, + "x": 4177.4423828125, + "y": 2588.734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4212.60791015625, + "y": 2571.44287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4250.39013671875, + "y": 2581.383544921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4285.07763671875, + "y": 2597.829345703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 4342.580078125, + "y": 2622.11328125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 7, + "x": 4357.0048828125, + "y": 2596.038330078125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/06厄里那斯.json b/repo/pathing/原海异种/06厄里那斯.json new file mode 100644 index 00000000..4fb76755 --- /dev/null +++ b/repo/pathing/原海异种/06厄里那斯.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "6厄里那斯", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4689.3037109375, + "y": 2429.524169921875 + }, + { + "id": 2, + "x": 4677.859375, + "y": 2463.14453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 4672.8662109375, + "y": 2477.8642578125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 4, + "x": 4601.16748046875, + "y": 2521.67529296875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 5, + "x": 4608.58935546875, + "y": 2566.564208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4599.41455078125, + "y": 2599.269287109375, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/誓言蒲公英1个.json b/repo/pathing/原海异种/07厄里那斯.json similarity index 58% rename from repo/pathing/蒲公英/誓言蒲公英1个.json rename to repo/pathing/原海异种/07厄里那斯.json index 049ce0dd..739bd873 100644 --- a/repo/pathing/蒲公英/誓言蒲公英1个.json +++ b/repo/pathing/原海异种/07厄里那斯.json @@ -1,8 +1,8 @@ { "info": { - "name": "誓言蒲公英1个", + "name": "7厄里那斯", "type": "collect", - "author": "", + "author": "雕茂", "version": "1.0", "description": "", "bgiVersion": "0.35.1" @@ -10,43 +10,43 @@ "positions": [ { "id": 1, - "x": -1999.0830078125, - "y": 1434.97314453125, + "action": "", + "move_mode": "walk", "type": "teleport", + "x": 4749.52880859375, + "y": 2636.214111328125 + }, + { + "id": 2, + "x": 4749.09814453125, + "y": 2648.05810546875, + "type": "path", "move_mode": "walk", "action": "" }, - { - "id": 2, - "x": -2030.7958984375, - "y": 1453.51171875, - "type": "path", - "move_mode": "walk", - "action": "elemental_skill" - }, { "id": 3, - "x": -2030.1318359375, - "y": 1455.34423828125, + "x": 4772.6796875, + "y": 2656.14013671875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -2023.869140625, - "y": 1463.51611328125, - "type": "path", - "move_mode": "walk", - "action": "elemental_skill" - }, - { - "id": 5, - "x": -2022.4677734375, - "y": 1465.3740234375, + "x": 4809.12060546875, + "y": 2673.0068359375, "type": "path", "move_mode": "walk", "action": "" + }, + { + "id": 5, + "x": 4827.7744140625, + "y": 2678.93505859375, + "type": "path", + "move_mode": "walk", + "action": "fight" } ] } \ No newline at end of file diff --git a/repo/pathing/原海异种/08厄里那斯.json b/repo/pathing/原海异种/08厄里那斯.json new file mode 100644 index 00000000..29566563 --- /dev/null +++ b/repo/pathing/原海异种/08厄里那斯.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "8厄里那斯", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5117.49365234375, + "y": 2543.40478515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5111.97119140625, + "y": 2574.3935546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 5152.52978515625, + "y": 2608.114013671875, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 5163.1474609375, + "y": 2622.338623046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 5227.8720703125, + "y": 2633.703369140625, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 5230.08642578125, + "y": 2638.8017578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 5269.5595703125, + "y": 2626.529541015625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 5315.958984375, + "y": 2622.589599609375, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/09厄里那斯.json b/repo/pathing/原海异种/09厄里那斯.json new file mode 100644 index 00000000..80d75ac3 --- /dev/null +++ b/repo/pathing/原海异种/09厄里那斯.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "9厄里那斯", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 5113.64013671875, + "y": 2998.22802734375 + }, + { + "id": 2, + "x": 5081.86474609375, + "y": 3015.49951171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 5081.71337890625, + "y": 3016.988525390625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 4, + "x": 5128.041015625, + "y": 3021.366943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 5182.41162109375, + "y": 3000.732666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 5264.78955078125, + "y": 2958.3330078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": 5298.94775390625, + "y": 2934.301513671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 5305.021484375, + "y": 2914.570068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 5317.63671875, + "y": 2916.364990234375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 10, + "x": 5330.52392578125, + "y": 2901.30712890625, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/10厄里那斯.json b/repo/pathing/原海异种/10厄里那斯.json new file mode 100644 index 00000000..22a45706 --- /dev/null +++ b/repo/pathing/原海异种/10厄里那斯.json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "10厄里那斯", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4705.45849609375, + "y": 2951.606201171875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4725.76611328125, + "y": 2942.968017578125, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4701.99169921875, + "y": 2959.547119140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4722.5830078125, + "y": 2984.253662109375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 4741.48046875, + "y": 3006.3642578125, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4767.0771484375, + "y": 3006.99755859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4778.41259765625, + "y": 3017.43505859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4817.751953125, + "y": 3031.781982421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 4830.3271484375, + "y": 3021.2744140625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 10, + "x": 4862.3447265625, + "y": 3062.116943359375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 11, + "x": 4867.08984375, + "y": 3084.46923828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 4855.669921875, + "y": 3097.2470703125, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 4870.400390625, + "y": 3104.1865234375, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 4893.03759765625, + "y": 3116.4521484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 4941.341796875, + "y": 3140.99169921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 4978.2509765625, + "y": 3159.876708984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 4993.9189453125, + "y": 3194.278564453125, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 5029.75048828125, + "y": 3246.449462890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 5049.88037109375, + "y": 3246.252685546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 5049.5390625, + "y": 3275.91259765625, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/11枫丹庭.json b/repo/pathing/原海异种/11枫丹庭.json new file mode 100644 index 00000000..89e39339 --- /dev/null +++ b/repo/pathing/原海异种/11枫丹庭.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "11枫丹庭", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4823.65966796875, + "y": 3628.6728515625 + }, + { + "id": 2, + "x": 4820.7734375, + "y": 3595.505615234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 4819.2685546875, + "y": 3578.610595703125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 4, + "x": 4858.248046875, + "y": 3587.72412109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4893.61328125, + "y": 3603.662353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4961.34765625, + "y": 3622.016845703125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 7, + "x": 4980.37548828125, + "y": 3608.022216796875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 8, + "x": 4985.4189453125, + "y": 3622.668701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 5001.40087890625, + "y": 3635.446044921875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 10, + "x": 5015.7822265625, + "y": 3634.658447265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 5004.47607421875, + "y": 3662.2568359375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 12, + "x": 5044.20849609375, + "y": 3632.59814453125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 13, + "x": 5068.68701171875, + "y": 3628.477783203125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/原海异种/12枫丹庭.json b/repo/pathing/原海异种/12枫丹庭.json new file mode 100644 index 00000000..9ff9f413 --- /dev/null +++ b/repo/pathing/原海异种/12枫丹庭.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "12枫丹庭", + "type": "collect", + "author": "雕茂", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4599.80419921875, + "y": 4023.08984375 + }, + { + "id": 2, + "x": 4603.54541015625, + "y": 3994.412109375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 3, + "x": 4599.50537109375, + "y": 3935.520263671875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 4, + "x": 4569.24658203125, + "y": 3967.157958984375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 5, + "x": 4555.19580078125, + "y": 3986.21240234375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 6, + "x": 4548.4755859375, + "y": 3998.559326171875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 7, + "x": 4517.6337890625, + "y": 3995.977294921875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 8, + "x": 4534.8798828125, + "y": 3987.6435546875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 9, + "x": 4529.75, + "y": 3973.67919921875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 10, + "x": 4488.46142578125, + "y": 3879.857421875, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/10-蒲公英-风起地南3个.json b/repo/pathing/发条机关/发条机关01.json similarity index 55% rename from repo/pathing/蒲公英/10-蒲公英-风起地南3个.json rename to repo/pathing/发条机关/发条机关01.json index c55367a8..bbba8dca 100644 --- a/repo/pathing/蒲公英/10-蒲公英-风起地南3个.json +++ b/repo/pathing/发条机关/发条机关01.json @@ -1,8 +1,8 @@ { "info": { - "name": "10-蒲公英-风起地南3个", + "name": "发条机关01", "type": "collect", - "author": "秋云", + "author": "½", "version": "1.0", "description": "", "bgiVersion": "0.35.1" @@ -10,91 +10,91 @@ "positions": [ { "id": 1, - "x": -1431.6748046875, - "y": 1661.4609375, + "x": 3923.1181640625, + "y": 4233.869140625, "type": "teleport", "move_mode": "walk", "action": "" }, { "id": 2, - "x": -1453.732421875, - "y": 1680.14453125, + "x": 3941.8662109375, + "y": 4273.91943359375, "type": "path", - "move_mode": "walk", - "action": "anemo_collect" + "move_mode": "run", + "action": "" }, { "id": 3, - "x": -1371.33203125, - "y": 1664.951171875, + "x": 3967.7861328125, + "y": 4299.7705078125, "type": "path", - "move_mode": "walk", + "move_mode": "run", "action": "" }, { "id": 4, - "x": -1347.2236328125, - "y": 1642.697265625, + "x": 3985.50390625, + "y": 4314.5625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 5, + "x": 3994.3466796875, + "y": 4299.537109375, "type": "path", "move_mode": "walk", "action": "" }, - { - "id": 5, - "x": -1322.826171875, - "y": 1656.3701171875, - "type": "path", - "move_mode": "fly", - "action": "" - }, { "id": 6, - "x": -1309.9013671875, - "y": 1659.00439453125, + "x": 4001.0146484375, + "y": 4275.40576171875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 7, - "x": -1302.685546875, - "y": 1668.80810546875, + "x": 4009.9296875, + "y": 4261.091796875, "type": "path", - "move_mode": "climb", - "action": "" + "move_mode": "walk", + "action": "fight" }, { "id": 8, - "x": -1266.9980704621812, - "y": 1671.25, + "x": 4005.36328125, + "y": 4327.70947265625, "type": "path", "move_mode": "walk", "action": "" }, { "id": 9, - "x": -1259.7611232180152, - "y": 1688.5, + "x": 4004.4267578125, + "y": 4347.208984375, "type": "path", "move_mode": "walk", "action": "" }, { - "id": 10, - "x": -1272.7138671875, - "y": 1703.734375, + "id": 11, + "x": 4006.796875, + "y": 4401.439453125, "type": "path", - "move_mode": "walk", - "action": "anemo_collect" + "move_mode": "fly", + "action": "stop_flying" }, { "id": 11, - "x": -1279.345703125, - "y": 1704.7470703125, + "x": 4006.646484375, + "y": 4401.0166015625, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "fight" } ] } \ No newline at end of file diff --git a/repo/pathing/发条机关/发条机关02.json b/repo/pathing/发条机关/发条机关02.json new file mode 100644 index 00000000..c921c4db --- /dev/null +++ b/repo/pathing/发条机关/发条机关02.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "发条机关02", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4143.9150390625, + "y": 4423.52685546875 + }, + { + "id": 2, + "x": 4169.95703125, + "y": 4424.96337890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4181.611328125, + "y": 4421.5068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4211.861328125, + "y": 4412.6181640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 4211.87255859375, + "y": 4412.62744140625, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/发条机关/发条机关03.json b/repo/pathing/发条机关/发条机关03.json new file mode 100644 index 00000000..cd0a526b --- /dev/null +++ b/repo/pathing/发条机关/发条机关03.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "发条机关03", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3864.1962890625, + "y": 4492.5849609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 3821.9150390625, + "y": 4502.1611328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3798.171875, + "y": 4518.34912109375, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/发条机关/发条机关04.json b/repo/pathing/发条机关/发条机关04.json new file mode 100644 index 00000000..ff233893 --- /dev/null +++ b/repo/pathing/发条机关/发条机关04.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "发条机关04", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 4, + "x": 3846.876953125, + "y": 4652.93359375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 3813.77734375, + "y": 4684.03271484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3789.123046875, + "y": 4701.0078125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/发条机关/发条机关05.json b/repo/pathing/发条机关/发条机关05.json new file mode 100644 index 00000000..3aff3b66 --- /dev/null +++ b/repo/pathing/发条机关/发条机关05.json @@ -0,0 +1,99 @@ +{ + "info": { + "name": "发条机关05", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3636.0498046875, + "y": 4796.0576171875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 3632.9794921875, + "y": 4845.61962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3600.662109375, + "y": 4900.33154296875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 4, + "x": 3687.5185546875, + "y": 4961.0146484375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 5, + "x": 3710.9833984375, + "y": 4906.0595703125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 6, + "x": 3766.5, + "y": 4900.25, + "type": "path", + "move_mode": "walk" + }, + { + "id": 7, + "x": 3811.439453125, + "y": 4869.79296875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 9, + "x": 3799.5400390625, + "y": 4943.4052734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 3783.517578125, + "y": 4971.1875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 10, + "x": 3765.0546875, + "y": 4991.2451171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 3752.921875, + "y": 4996.0458984375, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/04-蒲公英-星落湖南3个.json b/repo/pathing/发条机关/发条机关06.json similarity index 57% rename from repo/pathing/蒲公英/04-蒲公英-星落湖南3个.json rename to repo/pathing/发条机关/发条机关06.json index 7b0b4f72..f2ee9c72 100644 --- a/repo/pathing/蒲公英/04-蒲公英-星落湖南3个.json +++ b/repo/pathing/发条机关/发条机关06.json @@ -1,8 +1,8 @@ { "info": { - "name": "04-蒲公英-星落湖南3个", + "name": "发条机关06", "type": "collect", - "author": "秋云", + "author": "½", "version": "1.0", "description": "", "bgiVersion": "0.35.1" @@ -10,59 +10,59 @@ "positions": [ { "id": 1, - "x": -1329.462890625, - "y": 2564.1328125, + "x": 3965.4345703125, + "y": 4718.44091796875, "type": "teleport", "move_mode": "walk", "action": "" }, { "id": 2, - "x": -1305.5263671875, - "y": 2545.823974609375, + "x": 3939.56640625, + "y": 4720.44677734375, "type": "path", - "move_mode": "walk", + "move_mode": "fly", "action": "" }, { "id": 3, - "x": -1278.2958984375, - "y": 2535.373046875, + "x": 3920.57421875, + "y": 4713.30322265625, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -1287.2041015625, - "y": 2514.2255859375, + "x": 3912.2412109375, + "y": 4706.5439453125, "type": "path", "move_mode": "walk", "action": "" }, { "id": 5, - "x": -1282.7841796875, - "y": 2497.6220703125, + "x": 3900.9365234375, + "y": 4698.27978515625, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "fight" }, { "id": 6, - "x": -1286.7841796875, - "y": 2497.6220703125, + "x": 3904.0419921875, + "y": 4724.9501953125, "type": "path", "move_mode": "walk", "action": "" }, { "id": 7, - "x": -1269.533203125, - "y": 2486.619873046875, + "x": 3905.271484375, + "y": 4753.15087890625, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "fight" } ] } \ No newline at end of file diff --git a/repo/pathing/发条机关/发条机关07.json b/repo/pathing/发条机关/发条机关07.json new file mode 100644 index 00000000..4c0002c3 --- /dev/null +++ b/repo/pathing/发条机关/发条机关07.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "发条机关07", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3965.390625, + "y": 4718.3798828125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3961.1435546875, + "y": 4720.3173828125, + "type": "path", + "move_mode": "walk", + "action": "stop_flying" + }, + { + "id": 3, + "x": 3969.3134765625, + "y": 4728.27734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3950.0546875, + "y": 4764.63134765625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 5, + "x": 3987.953125, + "y": 4739.9599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4077.9248046875, + "y": 4694.287109375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 7, + "x": 4180.5634765625, + "y": 4685.6728515625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 8, + "x": 4160.47265625, + "y": 4729.62060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4124.3583984375, + "y": 4770.40478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4113.15380859375, + "y": 4780.3271484375, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/发条机关/发条机关08.json b/repo/pathing/发条机关/发条机关08.json new file mode 100644 index 00000000..343e8171 --- /dev/null +++ b/repo/pathing/发条机关/发条机关08.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "发条机关08", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4301.30810546875, + "y": 4764.98828125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 4337.1005859375, + "y": 4759.2763671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4373.9208984375, + "y": 4763.50390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4392.0791015625, + "y": 4729.2255859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4411.05126953125, + "y": 4718.93359375, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/史莱姆/史莱姆速刷.json b/repo/pathing/史莱姆/史莱姆速刷.json new file mode 100644 index 00000000..13c08212 --- /dev/null +++ b/repo/pathing/史莱姆/史莱姆速刷.json @@ -0,0 +1,916 @@ +{ + "info": { + "name": "史莱姆速刷", + "type": "collect", + "author": "爱凑热闹", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 2, + "x": 25.82421875, + "y": -114.76220703125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 2.140625, + "y": -116.53857421875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": -60.517578125, + "y": -93.853515625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": -86, + "y": -88.18212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -101.8310546875, + "y": -96.37890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -82.3896484375, + "y": -106.32958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -92.6064453125, + "y": -98.568359375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 8, + "x": -82.26953125, + "y": -70.8798828125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 9, + "x": -90.53125, + "y": -58.5615234375, + "type": "path", + "move_mode": "walk", + "action": "stop_flying" + }, + { + "id": 10, + "x": -84.4873046875, + "y": -67.70556640625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 11, + "x": -95.345703125, + "y": -54.97705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -132.2861328125, + "y": -68.203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -156.052734375, + "y": -97.4755859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -174.990234375, + "y": -92.93798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -177.73828125, + "y": -62.31591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -175.8974609375, + "y": -47.1484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -187.1767578125, + "y": -51.4638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -193.80078125, + "y": -62.93603515625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 19, + "x": -230.427734375, + "y": -56.67138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -248.11328125, + "y": -56.67919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -237.349609375, + "y": -69.49462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -230.8212890625, + "y": -80.03173828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -238.8564453125, + "y": -80.5751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -248.1748046875, + "y": -79.36865234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -240.3798828125, + "y": -79.97314453125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 26, + "x": -257.33984375, + "y": -101.52978515625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 27, + "x": -248.736328125, + "y": -169.138671875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 28, + "x": -235.005859375, + "y": -185.19287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -226.4658203125, + "y": -180.7646484375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 30, + "x": -207.58203125, + "y": -167.61279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -186.146484375, + "y": -165.7177734375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 32, + "x": 607.482421875, + "y": -284.60009765625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 655.9248046875, + "y": -279.3203125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 34, + "x": 702.44921875, + "y": -272.25146484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 35, + "x": 700.3056640625, + "y": -280.41357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 695.154296875, + "y": -287.9736328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 694.9912109375, + "y": -300.1416015625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 39, + "x": 1184.923828125, + "y": 621.0634765625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 1178.046875, + "y": 631.26318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 1149.2119140625, + "y": 634.40478515625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 41, + "x": 1390.9580078125, + "y": 515.6015625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 1383.0732421875, + "y": 525.60009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 1384.07421875, + "y": 543.51123046875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 44, + "x": 1378.607421875, + "y": 582.9423828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 45, + "x": 1372.0927734375, + "y": 596.4072265625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 46, + "x": -56.4599609375, + "y": 657.19970703125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": -22.3740234375, + "y": 720.37841796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": -21.859375, + "y": 734.20849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": -26.828125, + "y": 728.5224609375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 50, + "x": 54.33203125, + "y": 139.37255859375, + "type": "teleport", + "move_mode": "fly", + "action": "" + }, + { + "id": 51, + "x": -45.072265625, + "y": 142.619140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 52, + "x": -60.126953125, + "y": 147.87841796875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 53, + "x": -63.1220703125, + "y": 200.49853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": -97.98046875, + "y": 212.28759765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": -125.6337890625, + "y": 208.78369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 57, + "x": -136.259765625, + "y": 206.4794921875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 57, + "x": 340.783203125, + "y": 546.72998046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 58, + "x": 320.2734375, + "y": 560.07421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 59, + "x": 291.5517578125, + "y": 577.3544921875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 60, + "x": 290.4951171875, + "y": 578.0556640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 61, + "x": 271.9931640625, + "y": 538.05029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 62, + "x": 233.353515625, + "y": 536.66259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 63, + "x": 231.8955078125, + "y": 520.3369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 64, + "x": 237.2001953125, + "y": 527.873046875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 65, + "x": -437.09375, + "y": 2581.68603515625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 66, + "x": -425.5595703125, + "y": 2539.695556640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 67, + "x": -427.7236328125, + "y": 2522.230712890625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 68, + "x": -429.1103515625, + "y": 2500.378173828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 69, + "x": -435.0947265625, + "y": 2482.4404296875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 70, + "x": -428.37109375, + "y": 2466.96728515625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 71, + "x": -419.0634765625, + "y": 2459.06103515625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 72, + "x": -417.818359375, + "y": 2471.26611328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 73, + "x": -415.3173828125, + "y": 2477.4931640625, + "type": "path", + "move_mode": "run", + "action": "fight" + }, + { + "id": 74, + "x": -471.6826171875, + "y": 2553.49365234375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 75, + "x": -494.1845703125, + "y": 2587.75537109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 76, + "x": -522.94921875, + "y": 2640.06005859375, + "type": "path", + "move_mode": "run", + "action": "fight" + }, + { + "id": 77, + "x": -438.328125, + "y": 2581.349853515625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 78, + "x": -400.8974609375, + "y": 2554.30029296875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 79, + "x": -372.169921875, + "y": 2548.01416015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 80, + "x": -362.775390625, + "y": 2534.412109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 81, + "x": -343.794921875, + "y": 2522.253173828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 82, + "x": -319.7080078125, + "y": 2522.287353515625, + "type": "path", + "move_mode": "run", + "action": "fight" + }, + { + "id": 83, + "x": -1433.638671875, + "y": 1657.89208984375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 84, + "x": -1374.005859375, + "y": 1646.7724609375, + "type": "path", + "move_mode": "run", + "action": "fight" + }, + { + "id": 85, + "x": -1363.583984375, + "y": 1602.92138671875, + "type": "path", + "move_mode": "run", + "action": "fight" + }, + { + "id": 86, + "x": -2001.791015625, + "y": 1438.72265625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 87, + "x": -2055.392578125, + "y": 1455.14208984375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 88, + "x": -2074.326171875, + "y": 1464.787109375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 89, + "x": -2083.8720703125, + "y": 1468.646484375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 90, + "x": -2078.2744140625, + "y": 1539.6552734375, + "type": "path", + "move_mode": "run", + "action": "fight" + }, + { + "id": 91, + "x": -2043.8935546875, + "y": 1506.95166015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 92, + "x": -2008.16015625, + "y": 1480.130859375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 93, + "x": -1963.2783203125, + "y": 1462.744140625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 94, + "x": -1956.26171875, + "y": 1458.97412109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 95, + "x": -1947.30859375, + "y": 1449.06298828125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 96, + "x": -1944.3828125, + "y": 1456.8486328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 97, + "x": -1932.9404296875, + "y": 1433.80810546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 98, + "x": -1628.431640625, + "y": 2832.313720703125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 99, + "x": -1611.68359375, + "y": 2880.442626953125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 100, + "x": -1621.8154296875, + "y": 2923.584228515625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 101, + "x": -1647.5830078125, + "y": 2908.774658203125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 102, + "x": -1654.3291015625, + "y": 2923.560302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 103, + "x": -1669.2666015625, + "y": 2946.74951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 104, + "x": -1663.943359375, + "y": 2962.223388671875, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 105, + "x": -1642.8330078125, + "y": 2965.064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 106, + "x": -1634.0625, + "y": 2969.77978515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 107, + "x": -1642.75390625, + "y": 2965.452880859375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 108, + "x": -1719.1533203125, + "y": 2971.089111328125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 109, + "x": -1733.8525390625, + "y": 2953.36474609375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 110, + "x": -1724.3046875, + "y": 2946.843017578125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 111, + "x": -1721.4072265625, + "y": 2945.5830078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 112, + "x": -1756.2353515625, + "y": 2952.3447265625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 113, + "x": -1741.857421875, + "y": 2949.044921875, + "type": "path", + "move_mode": "run", + "action": "fight" + } + ] +} \ 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..d8c53a70 Binary files /dev/null and b/repo/pathing/微光角菌/icon.ico differ 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..4ec35afd Binary files /dev/null and b/repo/pathing/枯叶紫英/icon.ico differ 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..a6b06db2 Binary files /dev/null and b/repo/pathing/水晶块/icon.ico differ diff --git a/repo/pathing/水晶块/庆云顶01-12个(不稳定).json b/repo/pathing/水晶块/庆云顶01-12个(不稳定).json new file mode 100644 index 00000000..3406e9b0 --- /dev/null +++ b/repo/pathing/水晶块/庆云顶01-12个(不稳定).json @@ -0,0 +1,489 @@ +{ + "info": { + "name": "庆云顶01-12个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1433.392578125, + "y": 837.11083984375 + }, + { + "id": 2, + "x": 1450.5078125, + "y": 815.3994140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 1446.8095703125, + "y": 819.28662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1445.8349609375, + "y": 819.189453125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 5, + "x": 1451.0166015625, + "y": 847.8759765625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": 1444.6591796875, + "y": 854.3828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": 1444.0595703125, + "y": 857.33349609375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 8, + "x": 1445.4228515625, + "y": 855.34375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1452.8642578125, + "y": 843.3642578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 10, + "x": 1451.8232421875, + "y": 843.18408203125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 11, + "x": 1464.9541015625, + "y": 850.720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1571.5498046875, + "y": 824.6630859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 13, + "x": 1570.5791015625, + "y": 824.49951171875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 14, + "x": 1570.0751953125, + "y": 820.9072265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1572.4658203125, + "y": 822.40576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 1574.0283203125, + "y": 823.60400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1575.388671875, + "y": 826.10302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1573.3876953125, + "y": 829.654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1568.6953125, + "y": 828.44580078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1568.802734375, + "y": 825.6064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1570.3154296875, + "y": 825.814453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 1568.791015625, + "y": 832.53466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 1563.166015625, + "y": 848.67333984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 1549.318359375, + "y": 847.5322265625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 25, + "x": 1543.1044921875, + "y": 847.6904296875, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 26, + "x": 1538.91015625, + "y": 844.1474609375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 27, + "x": 1531.7734375, + "y": 839.84033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 1518.4716796875, + "y": 872.40234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 1504.4658203125, + "y": 890.98193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 1501.5048828125, + "y": 898.0830078125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 31, + "x": 1501.3974609375, + "y": 909.84912109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 1501.41796875, + "y": 909.85791015625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 33, + "x": 1499.056640625, + "y": 915.240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 1495.1171875, + "y": 930.72412109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 1505.421875, + "y": 958.2607421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 1501.447265625, + "y": 970.92529296875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 37, + "x": 1498.9580078125, + "y": 962.00732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 1458.345703125, + "y": 976.18408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 1463.6279296875, + "y": 982.404296875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 40, + "x": 1429.4296875, + "y": 938.33447265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 1418.33984375, + "y": 969.1728515625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 42, + "x": 1429.67578125, + "y": 939.2666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 1404.224609375, + "y": 927.96240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 1385.44140625, + "y": 939.80322265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 1384.7685546875, + "y": 938.96875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 46, + "x": 1383.87109375, + "y": 932.50390625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 47, + "x": 1378.607421875, + "y": 924.14111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 1368.56640625, + "y": 921.84765625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 49, + "x": 1369.2255859375, + "y": 922.673828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": 1369.576171875, + "y": 915.720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 1373.3349609375, + "y": 919.20068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": 1371.7900390625, + "y": 919.95947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 1368.4267578125, + "y": 922.8115234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": 1363.2744140625, + "y": 924.68212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": 1277.53515625, + "y": 1055.83154296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 56, + "x": 1277.5224609375, + "y": 1055.8154296875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 57, + "x": 1358.365234375, + "y": 1008.0888671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 58, + "x": 1357.9228515625, + "y": 1018.9697265625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/沉玉古南陵.json b/repo/pathing/水晶块/沉玉古南陵.json similarity index 100% rename from repo/pathing/水晶矿/沉玉古南陵.json rename to repo/pathing/水晶块/沉玉古南陵.json diff --git a/repo/pathing/水晶矿/沉玉古南陵2.json b/repo/pathing/水晶块/沉玉古南陵2.json similarity index 100% rename from repo/pathing/水晶矿/沉玉古南陵2.json rename to repo/pathing/水晶块/沉玉古南陵2.json diff --git a/repo/pathing/水晶矿/沉玉谷上谷.json b/repo/pathing/水晶块/沉玉谷上谷.json similarity index 100% rename from repo/pathing/水晶矿/沉玉谷上谷.json rename to repo/pathing/水晶块/沉玉谷上谷.json diff --git a/repo/pathing/水晶矿/沉玉谷上谷2.json b/repo/pathing/水晶块/沉玉谷上谷2.json similarity index 100% rename from repo/pathing/水晶矿/沉玉谷上谷2.json rename to repo/pathing/水晶块/沉玉谷上谷2.json diff --git a/repo/pathing/水晶矿/沉玉谷上谷3.json b/repo/pathing/水晶块/沉玉谷上谷3.json similarity index 100% rename from repo/pathing/水晶矿/沉玉谷上谷3.json rename to repo/pathing/水晶块/沉玉谷上谷3.json diff --git a/repo/pathing/水晶矿/沉玉谷暝还山01.json b/repo/pathing/水晶块/沉玉谷暝还山01.json similarity index 100% rename from repo/pathing/水晶矿/沉玉谷暝还山01.json rename to repo/pathing/水晶块/沉玉谷暝还山01.json diff --git a/repo/pathing/水晶矿/沉玉谷暝还山02.json b/repo/pathing/水晶块/沉玉谷暝还山02.json similarity index 100% rename from repo/pathing/水晶矿/沉玉谷暝还山02.json rename to repo/pathing/水晶块/沉玉谷暝还山02.json diff --git a/repo/pathing/水晶矿/璃月-01-轻策庄南-6个.json b/repo/pathing/水晶块/璃月-01-轻策庄南-6个.json similarity index 99% rename from repo/pathing/水晶矿/璃月-01-轻策庄南-6个.json rename to repo/pathing/水晶块/璃月-01-轻策庄南-6个.json index 80092821..bbe2a91b 100644 --- a/repo/pathing/水晶矿/璃月-01-轻策庄南-6个.json +++ b/repo/pathing/水晶块/璃月-01-轻策庄南-6个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "轻策庄南-6个", "type": "collect", diff --git a/repo/pathing/水晶矿/璃月-02-奥藏山-8个.json b/repo/pathing/水晶块/璃月-02-奥藏山-8个.json similarity index 99% rename from repo/pathing/水晶矿/璃月-02-奥藏山-8个.json rename to repo/pathing/水晶块/璃月-02-奥藏山-8个.json index 370e5a05..74e710b0 100644 --- a/repo/pathing/水晶矿/璃月-02-奥藏山-8个.json +++ b/repo/pathing/水晶块/璃月-02-奥藏山-8个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "奥藏山-8个", "type": "collect", diff --git a/repo/pathing/水晶矿/璃月-03-宗室本北-2个.json b/repo/pathing/水晶块/璃月-03-宗室本北-2个.json similarity index 99% rename from repo/pathing/水晶矿/璃月-03-宗室本北-2个.json rename to repo/pathing/水晶块/璃月-03-宗室本北-2个.json index 77523d20..b64fee3e 100644 --- a/repo/pathing/水晶矿/璃月-03-宗室本北-2个.json +++ b/repo/pathing/水晶块/璃月-03-宗室本北-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "宗室本北-2个", "type": "collect", diff --git a/repo/pathing/水晶矿/璃月-04-珉林中部-3个.json b/repo/pathing/水晶块/璃月-04-珉林中部-3个.json similarity index 99% rename from repo/pathing/水晶矿/璃月-04-珉林中部-3个.json rename to repo/pathing/水晶块/璃月-04-珉林中部-3个.json index 2a112639..a9cac2c5 100644 --- a/repo/pathing/水晶矿/璃月-04-珉林中部-3个.json +++ b/repo/pathing/水晶块/璃月-04-珉林中部-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "珉林中部-3个", "type": "collect", diff --git a/repo/pathing/水晶矿/璃月-05-荻花洲西-1个.json b/repo/pathing/水晶块/璃月-05-荻花洲西-1个.json similarity index 99% rename from repo/pathing/水晶矿/璃月-05-荻花洲西-1个.json rename to repo/pathing/水晶块/璃月-05-荻花洲西-1个.json index 9538d274..99d6c186 100644 --- a/repo/pathing/水晶矿/璃月-05-荻花洲西-1个.json +++ b/repo/pathing/水晶块/璃月-05-荻花洲西-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "荻花洲西-1个", "type": "collect", diff --git a/repo/pathing/水晶矿/璃月天衡山 (1).json b/repo/pathing/水晶块/璃月天衡山 (1).json similarity index 100% rename from repo/pathing/水晶矿/璃月天衡山 (1).json rename to repo/pathing/水晶块/璃月天衡山 (1).json diff --git a/repo/pathing/水晶矿/璃月天衡山2 (1).json b/repo/pathing/水晶块/璃月天衡山2 (1).json similarity index 100% rename from repo/pathing/水晶矿/璃月天衡山2 (1).json rename to repo/pathing/水晶块/璃月天衡山2 (1).json diff --git a/repo/pathing/水晶矿/璃月层岩01 (1).json b/repo/pathing/水晶块/璃月层岩01 (1).json similarity index 100% rename from repo/pathing/水晶矿/璃月层岩01 (1).json rename to repo/pathing/水晶块/璃月层岩01 (1).json diff --git a/repo/pathing/水晶矿/璃月层岩02.json b/repo/pathing/水晶块/璃月层岩02.json similarity index 100% rename from repo/pathing/水晶矿/璃月层岩02.json rename to repo/pathing/水晶块/璃月层岩02.json diff --git a/repo/pathing/水晶矿/璃月层岩03 (1).json b/repo/pathing/水晶块/璃月层岩03 (1).json similarity index 100% rename from repo/pathing/水晶矿/璃月层岩03 (1).json rename to repo/pathing/水晶块/璃月层岩03 (1).json diff --git a/repo/pathing/水晶矿/璃月灵矩关1 (1).json b/repo/pathing/水晶块/璃月灵矩关1 (1).json similarity index 100% rename from repo/pathing/水晶矿/璃月灵矩关1 (1).json rename to repo/pathing/水晶块/璃月灵矩关1 (1).json diff --git a/repo/pathing/水晶矿/璃月璃沙郊.json b/repo/pathing/水晶块/璃月璃沙郊.json similarity index 100% rename from repo/pathing/水晶矿/璃月璃沙郊.json rename to repo/pathing/水晶块/璃月璃沙郊.json diff --git a/repo/pathing/水晶矿/璃月遁玉陵1.json b/repo/pathing/水晶块/璃月遁玉陵1.json similarity index 100% rename from repo/pathing/水晶矿/璃月遁玉陵1.json rename to repo/pathing/水晶块/璃月遁玉陵1.json diff --git a/repo/pathing/水晶矿/蒙德-01-望风山地东-2个.json b/repo/pathing/水晶块/蒙德-01-望风山地东-2个.json similarity index 100% rename from repo/pathing/水晶矿/蒙德-01-望风山地东-2个.json rename to repo/pathing/水晶块/蒙德-01-望风山地东-2个.json diff --git a/repo/pathing/水晶矿/蒙德-02-望风角西-1个.json b/repo/pathing/水晶块/蒙德-02-望风角西-1个.json similarity index 100% rename from repo/pathing/水晶矿/蒙德-02-望风角西-1个.json rename to repo/pathing/水晶块/蒙德-02-望风角西-1个.json diff --git a/repo/pathing/水晶矿/蒙德-03-铭记之谷南-4个.json b/repo/pathing/水晶块/蒙德-03-铭记之谷南-4个.json similarity index 100% rename from repo/pathing/水晶矿/蒙德-03-铭记之谷南-4个.json rename to repo/pathing/水晶块/蒙德-03-铭记之谷南-4个.json diff --git a/repo/pathing/水晶矿/蒙德-04-苍风高地神像北-1个.json b/repo/pathing/水晶块/蒙德-04-苍风高地神像北-1个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-04-苍风高地神像北-1个.json rename to repo/pathing/水晶块/蒙德-04-苍风高地神像北-1个.json index 4e07e846..a9af5868 100644 --- a/repo/pathing/水晶矿/蒙德-04-苍风高地神像北-1个.json +++ b/repo/pathing/水晶块/蒙德-04-苍风高地神像北-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "苍风高地神像北-1个", "type": "collect", diff --git a/repo/pathing/水晶矿/蒙德-05-奔狼领-3个.json b/repo/pathing/水晶块/蒙德-05-奔狼领-3个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-05-奔狼领-3个.json rename to repo/pathing/水晶块/蒙德-05-奔狼领-3个.json index 046db511..ff21baa5 100644 --- a/repo/pathing/水晶矿/蒙德-05-奔狼领-3个.json +++ b/repo/pathing/水晶块/蒙德-05-奔狼领-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "奔狼领-3个", "type": "collect", diff --git a/repo/pathing/水晶矿/蒙德-06-奔狼岭东-1个.json b/repo/pathing/水晶块/蒙德-06-奔狼岭东-1个.json similarity index 100% rename from repo/pathing/水晶矿/蒙德-06-奔狼岭东-1个.json rename to repo/pathing/水晶块/蒙德-06-奔狼岭东-1个.json diff --git a/repo/pathing/水晶矿/蒙德-07-奔狼领北-1个.json b/repo/pathing/水晶块/蒙德-07-奔狼领北-1个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-07-奔狼领北-1个.json rename to repo/pathing/水晶块/蒙德-07-奔狼领北-1个.json index eef9d72f..434d98e0 100644 --- a/repo/pathing/水晶矿/蒙德-07-奔狼领北-1个.json +++ b/repo/pathing/水晶块/蒙德-07-奔狼领北-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "奔狼领北-1个", "type": "collect", diff --git a/repo/pathing/水晶矿/蒙德-08-塞西莉亚苗圃东-3个.json b/repo/pathing/水晶块/蒙德-08-塞西莉亚苗圃东-3个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-08-塞西莉亚苗圃东-3个.json rename to repo/pathing/水晶块/蒙德-08-塞西莉亚苗圃东-3个.json index e124748b..24a545a4 100644 --- a/repo/pathing/水晶矿/蒙德-08-塞西莉亚苗圃东-3个.json +++ b/repo/pathing/水晶块/蒙德-08-塞西莉亚苗圃东-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "塞西莉亚苗圃东-3个", "type": "collect", diff --git a/repo/pathing/水晶矿/蒙德-09-明冠峡东北-1个.json b/repo/pathing/水晶块/蒙德-09-明冠峡东北-1个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-09-明冠峡东北-1个.json rename to repo/pathing/水晶块/蒙德-09-明冠峡东北-1个.json index e7d3f45f..ae96971c 100644 --- a/repo/pathing/水晶矿/蒙德-09-明冠峡东北-1个.json +++ b/repo/pathing/水晶块/蒙德-09-明冠峡东北-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "明冠峡东北-1个", "type": "collect", diff --git a/repo/pathing/水晶矿/蒙德-10-晨曦酒庄西-1个.json b/repo/pathing/水晶块/蒙德-10-晨曦酒庄西-1个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-10-晨曦酒庄西-1个.json rename to repo/pathing/水晶块/蒙德-10-晨曦酒庄西-1个.json index c6879647..899d6be2 100644 --- a/repo/pathing/水晶矿/蒙德-10-晨曦酒庄西-1个.json +++ b/repo/pathing/水晶块/蒙德-10-晨曦酒庄西-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "晨曦酒庄西-1个", "type": "collect", diff --git a/repo/pathing/水晶矿/蒙德-11-风龙废墟入口-5个.json b/repo/pathing/水晶块/蒙德-11-风龙废墟入口-5个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-11-风龙废墟入口-5个.json rename to repo/pathing/水晶块/蒙德-11-风龙废墟入口-5个.json index 31889d35..bd22e528 100644 --- a/repo/pathing/水晶矿/蒙德-11-风龙废墟入口-5个.json +++ b/repo/pathing/水晶块/蒙德-11-风龙废墟入口-5个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "风龙废墟入口-5个", "type": "collect", diff --git a/repo/pathing/水晶矿/蒙德-12-风龙废墟西-8个.json b/repo/pathing/水晶块/蒙德-12-风龙废墟西-8个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-12-风龙废墟西-8个.json rename to repo/pathing/水晶块/蒙德-12-风龙废墟西-8个.json index ec71d5dc..eb70a245 100644 --- a/repo/pathing/水晶矿/蒙德-12-风龙废墟西-8个.json +++ b/repo/pathing/水晶块/蒙德-12-风龙废墟西-8个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "风龙废墟西-8个", "type": "collect", diff --git a/repo/pathing/水晶矿/蒙德-13-风龙废墟神像-9个.json b/repo/pathing/水晶块/蒙德-13-风龙废墟神像-9个.json similarity index 99% rename from repo/pathing/水晶矿/蒙德-13-风龙废墟神像-9个.json rename to repo/pathing/水晶块/蒙德-13-风龙废墟神像-9个.json index ab7f38bc..0d58ebd8 100644 --- a/repo/pathing/水晶矿/蒙德-13-风龙废墟神像-9个.json +++ b/repo/pathing/水晶块/蒙德-13-风龙废墟神像-9个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "风龙废墟神像-9个", "type": "collect", diff --git a/repo/pathing/水晶矿/庆云顶01-12个(不稳定).json b/repo/pathing/水晶矿/庆云顶01-12个(不稳定).json deleted file mode 100644 index e74b3680..00000000 --- a/repo/pathing/水晶矿/庆云顶01-12个(不稳定).json +++ /dev/null @@ -1,489 +0,0 @@ -{ - "info": { - "name": "庆云顶01-12个", - "type": "collect", - "author": "愚溪", - "version": "1.0", - "description": "", - "bgiVersion": "0.35.1" - }, - "positions": [ - { - "id": 1, - "action": "", - "move_mode": "walk", - "type": "teleport", - "x": 1433.392578125, - "y": 837.11083984375 - }, - { - "id": 2, - "x": 1450.5078125, - "y": 815.3994140625, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "id": 3, - "x": 1446.8095703125, - "y": 819.28662109375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 4, - "x": 1445.8349609375, - "y": 819.189453125, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 5, - "x": 1451.0166015625, - "y": 847.8759765625, - "type": "path", - "move_mode": "fly", - "action": "" - }, - { - "id": 6, - "x": 1444.6591796875, - "y": 854.3828125, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "id": 7, - "x": 1444.0595703125, - "y": 857.33349609375, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 8, - "x": 1445.4228515625, - "y": 855.34375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 9, - "x": 1452.8642578125, - "y": 843.3642578125, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "id": 10, - "x": 1451.8232421875, - "y": 843.18408203125, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 11, - "x": 1464.9541015625, - "y": 850.720703125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 12, - "x": 1571.5498046875, - "y": 824.6630859375, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "id": 13, - "x": 1570.5791015625, - "y": 824.49951171875, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 14, - "x": 1570.0751953125, - "y": 820.9072265625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 15, - "x": 1572.4658203125, - "y": 822.40576171875, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 16, - "x": 1574.0283203125, - "y": 823.60400390625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 17, - "x": 1575.388671875, - "y": 826.10302734375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 18, - "x": 1573.3876953125, - "y": 829.654296875, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 19, - "x": 1568.6953125, - "y": 828.44580078125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 20, - "x": 1568.802734375, - "y": 825.6064453125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 21, - "x": 1570.3154296875, - "y": 825.814453125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 22, - "x": 1568.791015625, - "y": 832.53466796875, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 23, - "x": 1563.166015625, - "y": 848.67333984375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 24, - "x": 1549.318359375, - "y": 847.5322265625, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 25, - "x": 1543.1044921875, - "y": 847.6904296875, - "type": "path", - "move_mode": "climb", - "action": "" - }, - { - "id": 26, - "x": 1538.91015625, - "y": 844.1474609375, - "type": "path", - "move_mode": "climb", - "action": "" - }, - { - "id": 27, - "x": 1531.7734375, - "y": 839.84033203125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 28, - "x": 1518.4716796875, - "y": 872.40234375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 29, - "x": 1504.4658203125, - "y": 890.98193359375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 30, - "x": 1501.5048828125, - "y": 898.0830078125, - "type": "path", - "move_mode": "fly", - "action": "" - }, - { - "id": 31, - "x": 1501.3974609375, - "y": 909.84912109375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 32, - "x": 1501.41796875, - "y": 909.85791015625, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 33, - "x": 1499.056640625, - "y": 915.240234375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 34, - "x": 1495.1171875, - "y": 930.72412109375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 35, - "x": 1505.421875, - "y": 958.2607421875, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 36, - "x": 1501.447265625, - "y": 970.92529296875, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 37, - "x": 1498.9580078125, - "y": 962.00732421875, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 38, - "x": 1458.345703125, - "y": 976.18408203125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 39, - "x": 1463.6279296875, - "y": 982.404296875, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 40, - "x": 1429.4296875, - "y": 938.33447265625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 41, - "x": 1418.33984375, - "y": 969.1728515625, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 42, - "x": 1429.67578125, - "y": 939.2666015625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 43, - "x": 1404.224609375, - "y": 927.96240234375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 44, - "x": 1385.44140625, - "y": 939.80322265625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 45, - "x": 1384.7685546875, - "y": 938.96875, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 46, - "x": 1383.87109375, - "y": 932.50390625, - "type": "path", - "move_mode": "climb", - "action": "" - }, - { - "id": 47, - "x": 1378.607421875, - "y": 924.14111328125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 48, - "x": 1368.56640625, - "y": 921.84765625, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 49, - "x": 1369.2255859375, - "y": 922.673828125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 50, - "x": 1369.576171875, - "y": 915.720703125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 51, - "x": 1373.3349609375, - "y": 919.20068359375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 52, - "x": 1371.7900390625, - "y": 919.95947265625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 53, - "x": 1368.4267578125, - "y": 922.8115234375, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 54, - "x": 1363.2744140625, - "y": 924.68212890625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 55, - "x": 1277.53515625, - "y": 1055.83154296875, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "id": 56, - "x": 1277.5224609375, - "y": 1055.8154296875, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - }, - { - "id": 57, - "x": 1358.365234375, - "y": 1008.0888671875, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" - }, - { - "id": 58, - "x": 1357.9228515625, - "y": 1018.9697265625, - "type": "target", - "move_mode": "walk", - "action": "combat_script", - "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" - } - ] -} diff --git a/repo/pathing/清水玉/1灵濛山.json b/repo/pathing/清水玉/1灵濛山.json new file mode 100644 index 00000000..b75802a7 --- /dev/null +++ b/repo/pathing/清水玉/1灵濛山.json @@ -0,0 +1,364 @@ +{ + "info": { + "name": "1灵濛山", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1978.9482421875, + "y": 2343.530517578125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1986.6318359375, + "y": 2346.367431640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 2033.3876953125, + "y": 2375.59716796875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 7, + "x": 2031.0712890625, + "y": 2374.575439453125, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 2027.6162109375, + "y": 2369.196044921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 2027.6474609375, + "y": 2380.904296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 2019.4296875, + "y": 2378.678466796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 1468.1298828125, + "y": 1997.998046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 12, + "x": 1465.046875, + "y": 2009.70703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 1465.0478515625, + "y": 2014.97802734375, + "move_mode": "walk", + "type": "path", + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 14, + "x": 1461.79296875, + "y": 2015.04833984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 1493.80078125, + "y": 1981.265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 1493.0751953125, + "y": 1940.0888671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 1499.0478515625, + "y": 1910.48291015625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 1489.259765625, + "y": 1888.07958984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 1480.435546875, + "y": 1859.171875, + "move_mode": "walk", + "type": "path", + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 20, + "x": 1481.818359375, + "y": 1852.57421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 1477.4482421875, + "y": 1857.267578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 1480.4248046875, + "y": 1862.60693359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 1481.5302734375, + "y": 1857.66796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 1480.6162109375, + "y": 1852.76123046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 1485.529296875, + "y": 1851.02978515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 1485.5732421875, + "y": 1864.470703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 1490.9580078125, + "y": 1861.044921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 1470.5078125, + "y": 1839.19921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 1460.0966796875, + "y": 1805.94775390625, + "action": "", + "move_mode": "swim", + "type": "path" + }, + { + "id": 30, + "x": 1459.603515625, + "y": 1806.4453125, + "move_mode": "walk", + "type": "path", + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 31, + "x": 1458.1171875, + "y": 1801.6376953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": 1459.29296875, + "y": 1798.8408203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 1462.1220703125, + "y": 1804.39990234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 1459.8251953125, + "y": 1806.90283203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 35, + "x": 1463.6611328125, + "y": 1802.99462890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 36, + "x": 1461.572265625, + "y": 1798.1171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 1469.017578125, + "y": 1794.1767578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 38, + "x": 1485.8330078125, + "y": 1785.98583984375, + "action": "", + "move_mode": "swim", + "type": "path" + }, + { + "id": 39, + "x": 1492.294921875, + "y": 1785.05859375, + "move_mode": "walk", + "type": "path", + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 40, + "x": 1492.7294921875, + "y": 1781.087890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 41, + "x": 1491.62890625, + "y": 1779.369140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 42, + "x": 1492.009765625, + "y": 1785.29345703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 43, + "x": 1492.6845703125, + "y": 1784.96923828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 44, + "x": 1492.3193359375, + "y": 1781.904296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 45, + "x": 1491.5673828125, + "y": 1779.3603515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 46, + "x": 1494.0185546875, + "y": 1780.20849609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 47, + "x": 1492.1865234375, + "y": 1786.85205078125, + "action": "", + "move_mode": "walk", + "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..1bd2b624 --- /dev/null +++ b/repo/pathing/清水玉/2古茶树坡.json @@ -0,0 +1,324 @@ +{ + "info": { + "name": "古茶树坡", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1691.490234375, + "y": 1829.16552734375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1639.1875, + "y": 1776.47314453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 1631.7958984375, + "y": 1762.6357421875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 1633.54296875, + "y": 1763.52001953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 1630.6689453125, + "y": 1764.17626953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 1628.494140625, + "y": 1761.7490234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 1630.33984375, + "y": 1760.83056640625, + "action":"combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 1632.4892578125, + "y": 1763.6826171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 1630.4111328125, + "y": 1763.8359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 1628.9189453125, + "y": 1762.46484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 1628.5302734375, + "y": 1758.35009765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 1630.4208984375, + "y": 1758.43017578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 1631.033203125, + "y": 1761.50390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 1631.7099609375, + "y": 1764.54931640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 1630.2294921875, + "y": 1765.666015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 1628.8955078125, + "y": 1762.953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 1631.4169921875, + "y": 1760.81298828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 1691.3232421875, + "y": 1829.265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 19, + "x": 1696.9140625, + "y": 1829.94189453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 1699.8017578125, + "y": 1832.2373046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 21, + "x": 1726.083984375, + "y": 1856.90087890625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 22, + "x": 1761.4072265625, + "y": 1858.494140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 1785.0390625, + "y": 1866.79052734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 1790.138671875, + "y": 1867.76611328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 1794.9462890625, + "y": 1868.71826171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 1788.568359375, + "y": 1867.6083984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 1788.482421875, + "y": 1871.1796875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 1790.7216796875, + "y": 1874.95751953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 1792.90625, + "y": 1871.27490234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 30, + "x": 1793.201171875, + "y": 1865.48095703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 1795.607421875, + "y": 1862.3134765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": 1791.8095703125, + "y": 1863.158203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 1790.4521484375, + "y": 1868.47802734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 1796.2587890625, + "y": 1873.1552734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 35, + "x": 1800.2412109375, + "y": 1868.2802734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 36, + "x": 1798.759765625, + "y": 1865.826171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 1790.876953125, + "y": 1860.1572265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 38, + "x": 1787.3134765625, + "y": 1866.958984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 39, + "x": 1786.8515625, + "y": 1872.46728515625, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/清水玉/3药蝶谷.json b/repo/pathing/清水玉/3药蝶谷.json new file mode 100644 index 00000000..63617078 --- /dev/null +++ b/repo/pathing/清水玉/3药蝶谷.json @@ -0,0 +1,404 @@ +{ + "info": { + "name": "3药蝶谷", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1692.8544921875, + "y": 1391.1708984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1683.48046875, + "y": 1393.638671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 1672.138671875, + "y": 1395.66015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 1663.0166015625, + "y": 1404.22314453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 1642.5751953125, + "y": 1440.91796875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 1645.658203125, + "y": 1442.2763671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 1648.5380859375, + "y": 1442.9931640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 1635.0771484375, + "y": 1443.076171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 1638.138671875, + "y": 1441.23095703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 1635.0810546875, + "y": 1446.05029296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 1644.279296875, + "y": 1439.7353515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 1645.408203125, + "y": 1447.24169921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 1642.166015625, + "y": 1470.18408203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 1636.24609375, + "y": 1497.29052734375, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 1634.6552734375, + "y": 1504.259765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 1632.2880859375, + "y": 1506.52001953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 1632.6875, + "y": 1502.482421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 1637.455078125, + "y": 1500.04052734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 1639.0078125, + "y": 1501.49658203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 1638.01171875, + "y": 1504.4619140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 1632.9072265625, + "y": 1508.99853515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 1636.619140625, + "y": 1500.37451171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 1637.7529296875, + "y": 1505.3115234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 1632.1494140625, + "y": 1501.92041015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 1632.6787109375, + "y": 1505.818359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 1637.19140625, + "y": 1512.00634765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 1692.8408203125, + "y": 1391.14990234375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 28, + "x": 1705.248046875, + "y": 1385.1708984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 1719.810546875, + "y": 1382.76953125, + "action":"", + "move_mode": "walk", + "type": "path" + }, + { + "id": 30, + "x": 1721.0380859375, + "y": 1377.81591796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 1717.0927734375, + "y": 1369.00634765625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": 1721.0048828125, + "y": 1368.40234375, + "action":"", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 1720.32421875, + "y": 1374.48876953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 1724.216796875, + "y": 1375.34619140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 35, + "x": 1721.2939453125, + "y": 1378.9697265625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 36, + "x": 1724.0966796875, + "y": 1381.38671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 1721.267578125, + "y": 1383.6259765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 38, + "x": 1721.234375, + "y": 1376.9892578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 39, + "x": 1719.275390625, + "y": 1370.24658203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 40, + "x": 1724.0673828125, + "y": 1361.2451171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 41, + "x": 1734.0078125, + "y": 1311.78857421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 42, + "x": 1726.056640625, + "y": 1262.1884765625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 43, + "x": 1720.630859375, + "y": 1262.39892578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 44, + "x": 1723.3515625, + "y": 1258.2744140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 45, + "x": 1727.4853515625, + "y": 1265.064453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 46, + "x": 1729.3359375, + "y": 1259.044921875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 47, + "x": 1734.59375, + "y": 1262.76220703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 48, + "x": 1721.8583984375, + "y": 1258.1103515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 49, + "x": 1720.5029296875, + "y": 1260.96044921875, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/清水玉/4悬练山.json b/repo/pathing/清水玉/4悬练山.json new file mode 100644 index 00000000..0562eaec --- /dev/null +++ b/repo/pathing/清水玉/4悬练山.json @@ -0,0 +1,244 @@ +{ + "info": { + "name": "4悬练山", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1904.4931640625, + "y": 1196.94384765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1918.6640625, + "y": 1189.26123046875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 3, + "x": 1975.52734375, + "y": 1188.294921875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 1972.0419921875, + "y": 1187.25634765625, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 1972.6455078125, + "y": 1184.49365234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 1973.2646484375, + "y": 1189.32666015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 1975.89453125, + "y": 1186.2958984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 1986.359375, + "y": 1198.33740234375, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 1987.0625, + "y": 1200.8876953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 1990.7392578125, + "y": 1198.22119140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 1987.8916015625, + "y": 1196.78076171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 1988.4365234375, + "y": 1200.86572265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 1984.748046875, + "y": 1198.7109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 1990.5185546875, + "y": 1201.80517578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 2029.083984375, + "y": 1193.16357421875, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 2034.70703125, + "y": 1192.0888671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 2031.7421875, + "y": 1189.271484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 2025.88671875, + "y": 1191.12109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 2026.4365234375, + "y": 1196.1884765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 2029.67578125, + "y": 1193.33642578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 2033.4228515625, + "y": 1194.36669921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 2035.849609375, + "y": 1192.7822265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 2031.466796875, + "y": 1191.697265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 2028.3623046875, + "y": 1192.2607421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 2026.90625, + "y": 1189.91064453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 2020.0537109375, + "y": 1197.6953125, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 2021.466796875, + "y": 1199.86669921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 2019.0595703125, + "y": 1196.43115234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 2022.5634765625, + "y": 1198.1474609375, + "action": "", + "move_mode": "walk", + "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..666ec4d3 --- /dev/null +++ b/repo/pathing/清水玉/5沉玉谷南陵.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "5沉玉谷南陵", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2324.03857421875, + "y": 1605.85595703125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2322.65185546875, + "y": 1670.18310546875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 3, + "x": 2319.81591796875, + "y": 1670.7373046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 2319.14794921875, + "y": 1674.783203125, + "action": "combat_script","action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 2326.10498046875, + "y": 1673.83935546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 2328.826171875, + "y": 1678.11962890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 2320.130859375, + "y": 1672.15625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 2319.4931640625, + "y": 1677.1005859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 2326.76708984375, + "y": 1680.734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 2325.33935546875, + "y": 1675.2421875, + "action": "", + "move_mode": "walk", + "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..a01b1ae9 Binary files /dev/null and b/repo/pathing/清水玉/icon.ico differ diff --git a/repo/pathing/漂浮灵/漂浮灵-天云咔下 2.json b/repo/pathing/漂浮灵/漂浮灵-天云咔下 2.json new file mode 100644 index 00000000..73765133 --- /dev/null +++ b/repo/pathing/漂浮灵/漂浮灵-天云咔下 2.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "漂浮灵-天云咔下 2", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "漂浮零", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4254, + "y": -4798.038962480099 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": -4088.25, + "y": -4848.513759027626 + }, + { + "id": 3, + "action": "fight", + "move_mode": "swim", + "type": "path", + "x": -4104.75, + "y": -4848.998071164351 + }, + { + "id": 4, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -4152.75, + "y": -4904.5937414125165 + }, + { + "id": 5, + "action": "", + "move_mode": "run", + "type": "path", + "x": -4209, + "y": -4910.499742821914 + }, + { + "id": 6, + "action": "", + "move_mode": "run", + "type": "path", + "x": -4212.5, + "y": -4887.084740179489 + }, + { + "id": 7, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -4191.25, + "y": -4859.8207239737785 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/漂浮灵/漂浮灵-天云咔右 1.json b/repo/pathing/漂浮灵/漂浮灵-天云咔右 1.json new file mode 100644 index 00000000..316c1849 --- /dev/null +++ b/repo/pathing/漂浮灵/漂浮灵-天云咔右 1.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "漂浮灵-天云咔右 1", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "漂浮零", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4478.5, + "y": -4576.586926193226 + }, + { + "id": 2, + "x": -4505.25, + "y": -4610.994342082098, + "move_mode": "run" + }, + { + "id": 3, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -4507.25, + "y": -4615.2390699313255 + }, + { + "id": 4, + "x": -4502.75, + "y": -4617.249485643828, + "move_mode": "run" + }, + { + "id": 5, + "x": -4498.5, + "y": -4606.74717104105, + "move_mode": "run" + }, + { + "id": 6, + "x": -4459.75, + "y": -4588.745499383487, + "move_mode": "run" + }, + { + "id": 7, + "x": -4421.75, + "y": -4590.249871410957, + "move_mode": "fly" + }, + { + "id": 8, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -4415, + "y": -4583.249871410957 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/漂浮灵/漂浮灵-平海砦.json b/repo/pathing/漂浮灵/漂浮灵-平海砦.json new file mode 100644 index 00000000..c5135e2f --- /dev/null +++ b/repo/pathing/漂浮灵/漂浮灵-平海砦.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "平海砦", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "漂浮零", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4192, + "y": -4254.043334507569 + }, + { + "id": 2, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -4216.5, + "y": -4190.260544301545 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/漂浮灵/漂浮灵-平海砦2.json b/repo/pathing/漂浮灵/漂浮灵-平海砦2.json new file mode 100644 index 00000000..da03f6cc --- /dev/null +++ b/repo/pathing/漂浮灵/漂浮灵-平海砦2.json @@ -0,0 +1,38 @@ +{ + "info": { + "name": "漂浮灵-平海砦2", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "漂浮零", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4188.5, + "y": -4258.090526686436 + }, + { + "id": 2, + "x": -4164.75, + "y": -4280.504757794599 + }, + { + "id": 3, + "x": -4165.75, + "y": -4289.50282895895 + }, + { + "id": 4, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -4171, + "y": -4287.001285890432 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/漂浮灵/漂浮灵-平海砦3.json b/repo/pathing/漂浮灵/漂浮灵-平海砦3.json new file mode 100644 index 00000000..f3b64240 --- /dev/null +++ b/repo/pathing/漂浮灵/漂浮灵-平海砦3.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "漂浮灵-平海砦3", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "漂浮零", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4214.5, + "y": -4385.753729082255 + }, + { + "id": 2, + "x": -4168.75, + "y": -4385.499614232871, + "move_mode": "run" + }, + { + "id": 3, + "x": -4164.25, + "y": -4380.250257178086 + }, + { + "id": 4, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -4173.5, + "y": -4377.999742821914 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/漂浮灵/漂浮灵-黄金兽1.json b/repo/pathing/漂浮灵/漂浮灵-黄金兽1.json new file mode 100644 index 00000000..06286c6a --- /dev/null +++ b/repo/pathing/漂浮灵/漂浮灵-黄金兽1.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "漂浮灵-黄金兽1", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "漂浮零", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2604, + "y": -6708.16305090682 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": -2652.25, + "y": -6723.249485643828 + }, + { + "id": 4, + "action": "fight", + "move_mode": "walk", + "type": "path", + "x": -2652.5, + "y": -6733.29294874044 + }, + { + "id": 5, + "x": -2654.5, + "y": -6726.497685397222, + "move_mode": "walk" + }, + { + "id": 6, + "x": -2646, + "y": -6731.996913862962, + "move_mode": "walk" + }, + { + "id": 7, + "x": -2649.25, + "y": -6738.250514356172, + "move_mode": "walk" + }, + { + "id": 8, + "x": -2656, + "y": -6739.998714109568, + "move_mode": "walk" + }, + { + "id": 9, + "action": "", + "move_mode": "walk", + "type": "path", + "x": -2656.25, + "y": -6722.746785273919 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/玄文兽/沉玉谷_玄文兽01.json b/repo/pathing/玄文兽/沉玉谷_玄文兽01.json new file mode 100644 index 00000000..8f5b9f65 --- /dev/null +++ b/repo/pathing/玄文兽/沉玉谷_玄文兽01.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "沉玉谷_玄文兽01", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2208.0586806501415, + "y": 1245, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2189.0673068192136, + "y": 1227, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 2160.580246072823, + "y": 1220.25, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 2149.585240170707, + "y": 1195.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 2173.0745709615912, + "y": 1157, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 2191.566171796967, + "y": 1142.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 2226.300394987742, + "y": 1153.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 2222.728515625, + "y": 1148.3759765625, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/玄文兽/沉玉谷_玄文兽02.json b/repo/pathing/玄文兽/沉玉谷_玄文兽02.json new file mode 100644 index 00000000..cc39c97b --- /dev/null +++ b/repo/pathing/玄文兽/沉玉谷_玄文兽02.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "沉玉谷_玄文兽02", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2208.0586806501415, + "y": 1245, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 2, + "x": 2160.580246072823, + "y": 1220.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 2136.839439753019, + "y": 1220.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 2135.5900072641416, + "y": 1253.75, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 5, + "x": 2130.34239081086, + "y": 1271.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 2106.3532870244253, + "y": 1290.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 2098.060546875, + "y": 1300.4033203125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/玄文兽/沉玉谷_玄文兽03.json b/repo/pathing/玄文兽/沉玉谷_玄文兽03.json new file mode 100644 index 00000000..f0c5cac9 --- /dev/null +++ b/repo/pathing/玄文兽/沉玉谷_玄文兽03.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "沉玉谷_玄文兽03", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2325.0342776718426, + "y": 1601.75, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2301.7948333787335, + "y": 1625.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 2305.259765625, + "y": 1605.12646484375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": 2294.4091796875, + "y": 1617.8798828125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": 2255.0048828125, + "y": 1591.47412109375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 6, + "x": 2291.29960047217, + "y": 1632.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 2254.816171796967, + "y": 1652, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 2234.91796875, + "y": 1676.67431640625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 9, + "x": 2258.564469263598, + "y": 1653.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 2288.3009624988645, + "y": 1652.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 2256.81526377917, + "y": 1700.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 2241.7406928175787, + "y": 1707.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 2219.0824026150913, + "y": 1705, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 2226.079224552801, + "y": 1713.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 2231.5767275038597, + "y": 1707.5, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/玄文兽/沉玉谷_玄文兽04.json b/repo/pathing/玄文兽/沉玉谷_玄文兽04.json new file mode 100644 index 00000000..7b20268d --- /dev/null +++ b/repo/pathing/玄文兽/沉玉谷_玄文兽04.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "沉玉谷_玄文兽04", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2257.0439453125, + "y": 934.9765625 + }, + { + "id": 2, + "x": 2227.8916015625, + "y": 901.48046875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 2202.9052734375, + "y": 866.51513671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 2136.234375, + "y": 838.61181640625, + "type": "target", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/玄文兽/沉玉谷_玄文兽05.json b/repo/pathing/玄文兽/沉玉谷_玄文兽05.json new file mode 100644 index 00000000..5f847951 --- /dev/null +++ b/repo/pathing/玄文兽/沉玉谷_玄文兽05.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "沉玉谷_玄文兽05", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1904.5068359375, + "y": 1196.9482421875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1863.9462890625, + "y": 1192.67529296875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 1861.1865234375, + "y": 1189.771484375, + "action": "fight", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 2066.2177734375, + "y": 1484.470703125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 5, + "x": 2035.759765625, + "y": 1525.6171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 2034.7236328125, + "y": 1544.37548828125, + "action": "fight", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 2053.796875, + "y": 1799.57275390625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 8, + "x": 2056.904296875, + "y": 1767.85986328125, + "action": "fight", + "move_mode": "fly", + "type": "target" + }, + { + "id": 9, + "x": 2002.18359375, + "y": 2080.876708984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 10, + "x": 1977.658203125, + "y": 2114.30126953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 11, + "x": 1975.5029296875, + "y": 2139.21728515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1957.3818359375, + "y": 2146.29296875, + "action": "fight", + "move_mode": "walk", + "type": "target" + } + ] +} \ 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..6ff2304d Binary files /dev/null and b/repo/pathing/紫晶块/icon.ico differ diff --git a/repo/pathing/绯樱绣球/05绯樱绣球-鸣神大社-3个.json b/repo/pathing/绯樱绣球/05绯樱绣球-鸣神大社-3个(地图缩放1.8).json similarity index 95% rename from repo/pathing/绯樱绣球/05绯樱绣球-鸣神大社-3个.json rename to repo/pathing/绯樱绣球/05绯樱绣球-鸣神大社-3个(地图缩放1.8).json index 58bc9c0d..1a3caa08 100644 --- a/repo/pathing/绯樱绣球/05绯樱绣球-鸣神大社-3个.json +++ b/repo/pathing/绯樱绣球/05绯樱绣球-鸣神大社-3个(地图缩放1.8).json @@ -10,8 +10,8 @@ "positions": [ { "id": 1, - "x": -4375.9765625, - "y": -2500.068359375, + "x": -4380.88, + "y": -2501.35, "action": "", "move_mode": "walk", "type": "teleport" diff --git a/repo/pathing/绯樱绣球/07绯樱绣球-鸣神大社神樱-3个(地图缩放1.8).json b/repo/pathing/绯樱绣球/07绯樱绣球-鸣神大社神樱-3个(地图缩放1.8).json new file mode 100644 index 00000000..c077c966 --- /dev/null +++ b/repo/pathing/绯樱绣球/07绯樱绣球-鸣神大社神樱-3个(地图缩放1.8).json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "绯樱绣球-鸣神大社神樱-3个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "x": -4380.88, + "y": -2501.35, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4392.6015625, + "y": -2485.587890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -4389.96484375, + "y": -2477.7490234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -4396.80078125, + "y": -2472.0947265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -4402.98046875, + "y": -2477.3828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -4419.173828125, + "y": -2473.037109375, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -4422.564453125, + "y": -2470.759765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -4424.255859375, + "y": -2474.267578125, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 10, + "x": -4416.2734375, + "y": -2477.5908203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -4408.759765625, + "y": -2466.939453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -4414.43359375, + "y": -2459.373046875, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绯樱绣球/08绯樱绣球-影向山山顶-3个(地图缩放1.8).json b/repo/pathing/绯樱绣球/08绯樱绣球-影向山山顶-3个(地图缩放1.8).json new file mode 100644 index 00000000..f594f1c3 --- /dev/null +++ b/repo/pathing/绯樱绣球/08绯樱绣球-影向山山顶-3个(地图缩放1.8).json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "绯樱绣球-影向山山顶-3个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4375.7265625, + "y": -2498.1318359375 + }, + { + "id": 2, + "x": -4395.451171875, + "y": -2504.4169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4450.845703125, + "y": -2586.642578125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": -4454.951171875, + "y": -2586.984375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 5, + "x": -4455.75390625, + "y": -2587.427734375, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 6, + "x": -4463.111328125, + "y": -2585.7548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4468.08203125, + "y": -2586.8251953125, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 8, + "x": -4466.47265625, + "y": -2594.65625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 9, + "x": -4465.2734375, + "y": -2597.3779296875, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绯樱绣球/09绯樱绣球-荒海(砂流)-2个.json b/repo/pathing/绯樱绣球/09绯樱绣球-荒海(砂流)-2个.json new file mode 100644 index 00000000..95dadede --- /dev/null +++ b/repo/pathing/绯樱绣球/09绯樱绣球-荒海(砂流)-2个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "绯樱绣球-荒海(砂流)-2个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4407.876953125, + "y": -2397.98046875 + }, + { + "id": 2, + "x": -4405.279296875, + "y": -2393.2353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4374.46875, + "y": -2377.533203125, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 4, + "x": -4369.138671875, + "y": -2372.8466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4336.7109375, + "y": -2342.2734375, + "type": "target", + "move_mode": "fly", + "action": "electro_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绯樱绣球/10绯樱绣球-神里屋敷-10个.json b/repo/pathing/绯樱绣球/10绯樱绣球-神里屋敷-10个.json new file mode 100644 index 00000000..a51d56af --- /dev/null +++ b/repo/pathing/绯樱绣球/10绯樱绣球-神里屋敷-10个.json @@ -0,0 +1,260 @@ +{ + "info": { + "name": "绯樱绣球-神里屋敷-10个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4578.763671875, + "y": -2577.6455078125 + }, + { + "id": 2, + "x": -4560.103515625, + "y": -2543.310546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4521.943359375, + "y": -2521.529296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4507.11328125, + "y": -2521.2099609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4502.693359375, + "y": -2520.908203125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 6, + "x": -4497.94140625, + "y": -2512.1669921875, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 7, + "x": -4494.18359375, + "y": -2508.5947265625, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 8, + "x": -4498.333984375, + "y": -2505.5322265625, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 9, + "x": -4490.65234375, + "y": -2509.30078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -4483.890625, + "y": -2512.517578125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 11, + "x": -4475.970703125, + "y": -2514.607421875, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 12, + "x": -4484.34765625, + "y": -2536.4365234375, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 13, + "x": -4482.408203125, + "y": -2535.8125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -4480.1484375, + "y": -2512.375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -4498.900390625, + "y": -2493.740234375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 16, + "x": -4505.76171875, + "y": -2492.21484375, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 17, + "x": -4495.1796875, + "y": -2488.93359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -4468.73046875, + "y": -2474.5859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 19, + "x": -4468.73046875, + "y": -2474.5859375, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 20, + "x": -4479.42578125, + "y": -2471.8876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -4572.1171875, + "y": -2487.857421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 22, + "x": -4572.078125, + "y": -2487.783203125, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 23, + "x": -4589.494140625, + "y": -2482.4951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -4616.603515625, + "y": -2478.01171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 25, + "x": -4616.576171875, + "y": -2478.013671875, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 26, + "x": -4629.75390625, + "y": -2504.75390625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 27, + "x": -4646.3203125, + "y": -2535.5078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -4647.564453125, + "y": -2545.7236328125, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 29, + "x": -4638.658203125, + "y": -2571.6650390625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 30, + "x": -4629.869140625, + "y": -2589.5830078125, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 31, + "x": -4627.833984375, + "y": -2591.4677734375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绯樱绣球/11绯樱绣球-影向山-7个(地图缩放1.8).json b/repo/pathing/绯樱绣球/11绯樱绣球-影向山-7个(地图缩放1.8).json new file mode 100644 index 00000000..16d7cc30 --- /dev/null +++ b/repo/pathing/绯樱绣球/11绯樱绣球-影向山-7个(地图缩放1.8).json @@ -0,0 +1,268 @@ +{ + "info": { + "name": "绯樱绣球-影向山-7个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "x": -4375.681640625, + "y": -2498.1533203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4378.830078125, + "y": -2495.11328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -4373.44140625, + "y": -2468.6708984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -4342.98046875, + "y": -2461.07421875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": -4342.111328125, + "y": -2460.5234375, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -4353.3125, + "y": -2449.486328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -4359.85546875, + "y": -2446.7431640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -4395.9453125, + "y": -2439.1806640625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 9, + "x": -4408.296875, + "y": -2442.759765625, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": -4432.64453125, + "y": -2464.73046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -4443.048828125, + "y": -2484.2587890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -4438.96875, + "y": -2495.796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -4431.408203125, + "y": -2499.2822265625, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": -4438.09765625, + "y": -2489.0654296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -4434.412109375, + "y": -2484.5966796875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 16, + "x": -4430.2890625, + "y": -2474.9697265625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 17, + "x": -4428.513671875, + "y": -2472.4169921875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 18, + "x": -4427.875, + "y": -2469.44921875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 19, + "x": -4421.33203125, + "y": -2456.65625, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 20, + "x": -4414.314453125, + "y": -2458.5439453125, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 21, + "x": -4410.697265625, + "y": -2463.337890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": -4423.734375, + "y": -2476.435546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": -4425.15625, + "y": -2494.076171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": -4420.3515625, + "y": -2501.833984375, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": -4412.97265625, + "y": -2507.2685546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": -4390.0078125, + "y": -2538.0439453125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 27, + "x": -4393.31640625, + "y": -2521.689453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 28, + "x": -4368.744140625, + "y": -2508.20703125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 29, + "x": -4370.41796875, + "y": -2502.376953125, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 30, + "x": -4374.478515625, + "y": -2496.861328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": -4428.044921875, + "y": -2494.208984375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 32, + "x": -4428.048828125, + "y": -2494.216796875, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种-回声之子-纳塔10个.json b/repo/pathing/苦种/苦种-回声之子-纳塔10个.json deleted file mode 100644 index f8f3b33b..00000000 --- a/repo/pathing/苦种/苦种-回声之子-纳塔10个.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "info":{ - "name":"苦种-回声之子-纳塔10个", - "type":"collect", - "author":"不瘦五十斤不改名" - }, - "positions":[ - { - "x":7633.8408203125, - "y":-1646.646484375, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":7618.17822265625, - "y":-1662.6103515625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7616.84814453125, - "y":-1670.79248046875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7613.666015625, - "y":-1679.1865234375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7603.3076171875, - "y":-1675.25537109375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7593.9423828125, - "y":-1682.86962890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7593.189453125, - "y":-1680.986328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7579.81982421875, - "y":-1670.76953125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7573.6103515625, - "y":-1670.55078125, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":7489.708984375, - "y":-1675.81103515625, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":7487.47021484375, - "y":-1679.205078125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7481.82421875, - "y":-1684.99560546875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7482.43994140625, - "y":-1692.00830078125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7487.01220703125, - "y":-1686.9365234375, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种-硫晶支脉(一)-纳塔2个.json b/repo/pathing/苦种/苦种-硫晶支脉(一)-纳塔2个.json deleted file mode 100644 index ee908b80..00000000 --- a/repo/pathing/苦种/苦种-硫晶支脉(一)-纳塔2个.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "info":{ - "name":"苦种-硫晶支脉-纳塔2个", - "type":"collect", - "author":"不瘦五十斤不改名" - }, - "positions":[ - { - "x":8258.408203125, - "y":-1744.64599609375, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":8261.421875, - "y":-1746.66552734375, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":8285.8212890625, - "y":-1757.35498046875, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":8292.564453125, - "y":-1763.96923828125, - "type":"path", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种-硫晶支脉(三)-纳塔8个.json b/repo/pathing/苦种/苦种-硫晶支脉(三)-纳塔8个.json deleted file mode 100644 index 5c21fcca..00000000 --- a/repo/pathing/苦种/苦种-硫晶支脉(三)-纳塔8个.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "info":{ - "name":"苦种-硫晶支脉(三)-纳塔8个", - "type":"collect", - "author":"不瘦五十斤不改名" - }, - "positions":[ - { - "x":8706.470703125, - "y":-1575.02734375, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":8692.1064453125, - "y":-1587.04931640625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8677.8193359375, - "y":-1626.87744140625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8681.7236328125, - "y":-1644.05908203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8697.291015625, - "y":-1657.86962890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8698.095703125, - "y":-1681.5712890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8714.271484375, - "y":-1690.87744140625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8796.521484375, - "y":-1721.87646484375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8817.5390625, - "y":-1702.87109375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8823.33984375, - "y":-1696.3603515625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8819.6376953125, - "y":-1706.8505859375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8801.935546875, - "y":-1725.0859375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8788.724609375, - "y":-1747.4755859375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8787.01171875, - "y":-1750.7509765625, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":8762.734375, - "y":-1817.9814453125, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":8759.94921875, - "y":-1823.70361328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8765.703125, - "y":-1827.07373046875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8770.087890625, - "y":-1825.40380859375, - "type":"path", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种-硫晶支脉(二)-纳塔5个.json b/repo/pathing/苦种/苦种-硫晶支脉(二)-纳塔5个.json deleted file mode 100644 index 6d6f9e0d..00000000 --- a/repo/pathing/苦种/苦种-硫晶支脉(二)-纳塔5个.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "info":{ - "name":"苦种-硫晶支脉(二)-纳塔5个", - "type":"collect", - "author":"不瘦五十斤不改名" - }, - "positions":[ - { - "x":8400.6279296875, - "y":-1221.35986328125, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":8370.0146484375, - "y":-1230.56787109375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8340.1845703125, - "y":-1245.8173828125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8342.5576171875, - "y":-1248.87890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8302.3251953125, - "y":-1253.73095703125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8240.953125, - "y":-1230.3115234375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8293.2724609375, - "y":-1313.7158203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8294.0537109375, - "y":-1321.05078125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8334.7255859375, - "y":-1327.03564453125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8358.0302734375, - "y":-1344.92724609375, - "type":"path", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种-隆崛坡-纳塔3个.json b/repo/pathing/苦种/苦种-隆崛坡-纳塔3个.json deleted file mode 100644 index f70925bc..00000000 --- a/repo/pathing/苦种/苦种-隆崛坡-纳塔3个.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "info":{ - "name":"苦种-隆崛坡-纳塔3个", - "type":"collect", - "author":"不瘦五十斤不改名" - }, - "positions":[ - { - "x":7973.6708984375, - "y":-1557.576171875, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":8028.55224609375, - "y":-1557.28125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8056.35400390625, - "y":-1602.021484375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8076.8662109375, - "y":-1622.53759765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8080.8984375, - "y":-1636.15234375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8082.5849609375, - "y":-1637.37646484375, - "type":"path", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种01-隆崛坡-纳塔3个.json b/repo/pathing/苦种/苦种01-隆崛坡-纳塔3个.json new file mode 100644 index 00000000..0751f7d5 --- /dev/null +++ b/repo/pathing/苦种/苦种01-隆崛坡-纳塔3个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "苦种01-隆崛坡-纳塔3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7973.6708984375, + "y": -1557.576171875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 8028.55224609375, + "y": -1557.28125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 8056.35400390625, + "y": -1602.021484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 8076.8662109375, + "y": -1622.53759765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 8080.8984375, + "y": -1636.15234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 8082.5849609375, + "y": -1637.37646484375, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种02-硫晶支脉-纳塔2个.json b/repo/pathing/苦种/苦种02-硫晶支脉-纳塔2个.json new file mode 100644 index 00000000..43bb47a0 --- /dev/null +++ b/repo/pathing/苦种/苦种02-硫晶支脉-纳塔2个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "苦种02-硫晶支脉-纳塔2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8258.408203125, + "y": -1744.64599609375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 8261.421875, + "y": -1746.66552734375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 8285.8212890625, + "y": -1757.35498046875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 8292.564453125, + "y": -1763.96923828125, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种03-硫晶支脉-纳塔6个.json b/repo/pathing/苦种/苦种03-硫晶支脉-纳塔6个.json new file mode 100644 index 00000000..056f63d1 --- /dev/null +++ b/repo/pathing/苦种/苦种03-硫晶支脉-纳塔6个.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "苦种03-硫晶支脉-纳塔6个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8400.623046875, + "y": -1221.21728515625 + }, + { + "id": 2, + "x": 8359.078125, + "y": -1236.31005859375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 8338.572265625, + "y": -1243.99755859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 8341.5546875, + "y": -1248.30029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8358.83203125, + "y": -1344.76611328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 8334.6123046875, + "y": -1326.55322265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8295.34375, + "y": -1321.85302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8293.966796875, + "y": -1314.642578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8240.39453125, + "y": -1231.56201171875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": 8164.18115234375, + "y": -1225.904296875, + "type": "path", + "move_mode": "run", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种04-硫晶支脉-纳塔8个.json b/repo/pathing/苦种/苦种04-硫晶支脉-纳塔8个.json new file mode 100644 index 00000000..05c2e4f9 --- /dev/null +++ b/repo/pathing/苦种/苦种04-硫晶支脉-纳塔8个.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "苦种04-硫晶支脉-纳塔8个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8706.470703125, + "y": -1575.02734375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 8692.1064453125, + "y": -1587.04931640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 8677.8193359375, + "y": -1626.87744140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 8681.7236328125, + "y": -1644.05908203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 8697.291015625, + "y": -1657.86962890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 8698.095703125, + "y": -1681.5712890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 8714.271484375, + "y": -1690.87744140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 8796.521484375, + "y": -1721.87646484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 8817.5390625, + "y": -1702.87109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 8823.33984375, + "y": -1696.3603515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 8819.6376953125, + "y": -1706.8505859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 8801.935546875, + "y": -1725.0859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 8788.724609375, + "y": -1747.4755859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 8787.01171875, + "y": -1750.7509765625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 15, + "x": 8762.734375, + "y": -1817.9814453125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 16, + "x": 8759.94921875, + "y": -1823.70361328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 8765.703125, + "y": -1827.07373046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 8770.087890625, + "y": -1825.40380859375, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种05-硫晶支脉-纳塔2个.json b/repo/pathing/苦种/苦种05-硫晶支脉-纳塔2个.json new file mode 100644 index 00000000..200249ae --- /dev/null +++ b/repo/pathing/苦种/苦种05-硫晶支脉-纳塔2个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "苦种05-硫晶支脉-纳塔2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8452.515625, + "y": -1477.37939453125 + }, + { + "id": 2, + "x": 8494.359375, + "y": -1504.15087890625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 8551.3671875, + "y": -1524.7041015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 8545.974609375, + "y": -1542.8544921875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种06-回声之子-纳塔10个.json b/repo/pathing/苦种/苦种06-回声之子-纳塔10个.json new file mode 100644 index 00000000..4ee9de62 --- /dev/null +++ b/repo/pathing/苦种/苦种06-回声之子-纳塔10个.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "苦种06-回声之子-纳塔10个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7633.8408203125, + "y": -1646.646484375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 7618.17822265625, + "y": -1662.6103515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 7616.84814453125, + "y": -1670.79248046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 7613.666015625, + "y": -1679.1865234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 7603.3076171875, + "y": -1675.25537109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 7593.9423828125, + "y": -1682.86962890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 7593.189453125, + "y": -1680.986328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 7579.81982421875, + "y": -1670.76953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 7573.6103515625, + "y": -1670.55078125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 10, + "x": 7489.708984375, + "y": -1675.81103515625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 11, + "x": 7487.47021484375, + "y": -1679.205078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 7481.82421875, + "y": -1684.99560546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 7482.43994140625, + "y": -1692.00830078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 7487.01220703125, + "y": -1686.9365234375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种07-悬木人-纳塔5个.json b/repo/pathing/苦种/苦种07-悬木人-纳塔5个.json new file mode 100644 index 00000000..1c7b2221 --- /dev/null +++ b/repo/pathing/苦种/苦种07-悬木人-纳塔5个.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "苦种07-悬木人-纳塔5个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8596.9140625, + "y": -1929.42041015625 + }, + { + "id": 2, + "x": 8518.9248046875, + "y": -1897.52587890625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 8518.4306640625, + "y": -1896.76708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 8535.154296875, + "y": -1850.7451171875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 8535.677734375, + "y": -1839.71875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8536.458984375, + "y": -1836.81298828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8523.533203125, + "y": -1827.91796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8464.0107421875, + "y": -1841.29931640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 9, + "x": 8457.91796875, + "y": -1856.84619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8430.7412109375, + "y": -1867.14990234375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种08-彩石顶-纳塔7个.json b/repo/pathing/苦种/苦种08-彩石顶-纳塔7个.json new file mode 100644 index 00000000..b81d8f66 --- /dev/null +++ b/repo/pathing/苦种/苦种08-彩石顶-纳塔7个.json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "苦种08-彩石顶-纳塔7个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8372.1748046875, + "y": -2196.1220703125 + }, + { + "id": 2, + "x": 8338.552734375, + "y": -2191.6162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 8197.482421875, + "y": -2099.5107421875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 8168.615234375, + "y": -2088.525390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 8147.8701171875, + "y": -2079.0166015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 8118.0986328125, + "y": -2078.626953125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 8117.35595703125, + "y": -2078.0458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8117.74755859375, + "y": -2077.1162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8100.9697265625, + "y": -2034.965087890625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": 8084.19189453125, + "y": -1992.81396484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8067.29296875, + "y": -1939.974609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 12, + "x": 8074.607421875, + "y": -1935.08544921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8075.27734375, + "y": -1940.85595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8090.23095703125, + "y": -1920.48779296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8110.3115234375, + "y": -1938.533203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8121.7890625, + "y": -1944.24658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8150.59521484375, + "y": -1933.328125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种09-溶水域-纳塔2个.json b/repo/pathing/苦种/苦种09-溶水域-纳塔2个.json new file mode 100644 index 00000000..066ccc83 --- /dev/null +++ b/repo/pathing/苦种/苦种09-溶水域-纳塔2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "苦种09-溶水域-纳塔2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8291.462890625, + "y": -2922.39453125 + }, + { + "id": 2, + "x": 8277.5, + "y": -2890.001953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 8278.5546875, + "y": -2890.8564453125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种10-溶水域-纳塔2个.json b/repo/pathing/苦种/苦种10-溶水域-纳塔2个.json new file mode 100644 index 00000000..34befb7d --- /dev/null +++ b/repo/pathing/苦种/苦种10-溶水域-纳塔2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "苦种10-溶水域-纳塔2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8286.0654296875, + "y": -2521.302734375 + }, + { + "id": 2, + "x": 8385.3359375, + "y": -2639.8017578125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 8386.1142578125, + "y": -2641.26953125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/蒲公英.json b/repo/pathing/苦种/苦种11-悬木人(高危)-纳塔13个.json similarity index 50% rename from repo/pathing/蒲公英/蒲公英.json rename to repo/pathing/苦种/苦种11-悬木人(高危)-纳塔13个.json index d4d9de49..bf1cf63c 100644 --- a/repo/pathing/蒲公英/蒲公英.json +++ b/repo/pathing/苦种/苦种11-悬木人(高危)-纳塔13个.json @@ -1,8 +1,8 @@ { "info": { - "name": "蒲公英", + "name": "苦种11-悬木人(高危)-纳塔13个", "type": "collect", - "author": "", + "author": "不瘦五十斤不改名", "version": "1.0", "description": "", "bgiVersion": "0.35.1" @@ -13,184 +13,208 @@ "action": "", "move_mode": "walk", "type": "teleport", - "x": -321.533203125, - "y": 1473.345703125 + "x": 8940.32421875, + "y": -2306.525390625 }, { "id": 2, - "x": -321.5673828125, - "y": 1473.3505859375, + "x": 8965.103515625, + "y": -2347.9599609375, "type": "path", - "move_mode": "walk", - "action": "" + "move_mode": "fly", + "action": "stop_flying" }, { "id": 3, - "x": -235.58203125, - "y": 1523.42626953125, + "x": 8985.654296875, + "y": -2327.1689453125, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -215.275390625, - "y": 1519.4619140625, + "x": 9004.3583984375, + "y": -2306.2060546875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 5, - "x": -178.0498046875, - "y": 1517.21435546875, + "x": 9016.5390625, + "y": -2293.501953125, "type": "path", "move_mode": "walk", "action": "" }, { "id": 6, - "x": -170.69140625, - "y": 1520.63330078125, + "x": 9014.6953125, + "y": -2286.0390625, "type": "path", "move_mode": "walk", "action": "" }, { "id": 7, - "x": -135.6533203125, - "y": 1519.95361328125, + "x": 9010.728515625, + "y": -2285.7021484375, "type": "path", "move_mode": "walk", "action": "" }, { "id": 8, - "x": -123.0302734375, - "y": 1536.00244140625, + "x": 9006.625, + "y": -2285.4453125, "type": "path", "move_mode": "walk", "action": "" }, { "id": 9, - "x": -123.4482421875, - "y": 1539.2099609375, + "x": 9006.2138671875, + "y": -2282.6044921875, "type": "path", - "move_mode": "fly", + "move_mode": "walk", "action": "" }, { "id": 10, - "x": -127.1953125, - "y": 1575.72998046875, + "x": 9021.3271484375, + "y": -2294.4169921875, "type": "path", - "move_mode": "fly", + "move_mode": "walk", "action": "" }, { "id": 11, - "x": -127.638671875, - "y": 1579.3232421875, + "x": 9049.9892578125, + "y": -2222.857421875, "type": "path", - "move_mode": "walk", - "action": "elemental_skill" + "move_mode": "fly", + "action": "stop_flying" }, { "id": 12, - "x": -129.75, - "y": 1587.6806640625, + "x": 9051.4638671875, + "y": -2220.59765625, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 13, - "x": -131.677734375, - "y": 1599.65087890625, + "x": 9034.234375, + "y": -2181.6298828125, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 14, - "x": -182.03515625, - "y": 1622.0654296875, + "x": 9033.6171875, + "y": -2178.994140625, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 15, - "x": -167.8134765625, - "y": 1647.935546875, + "x": 8993.84375, + "y": -2172.46484375, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 16, - "x": -127.134765625, - "y": 1649.046875, + "x": 8989.251953125, + "y": -2174.3818359375, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 17, - "x": -101.7548828125, - "y": 1686.49462890625, + "x": 8975.826171875, + "y": -2170.1572265625, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 18, - "x": -89.830078125, - "y": 1651.2841796875, + "x": 8971.5771484375, + "y": -2172.130859375, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 19, - "x": -70.974609375, - "y": 1637.09130859375, + "x": 8969.75, + "y": -2171.4228515625, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 20, - "x": -53.23828125, - "y": 1637.896484375, + "x": 8968.2998046875, + "y": -2164.912109375, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 21, - "x": -44.2333984375, - "y": 1667.7548828125, + "x": 8967.3388671875, + "y": -2162.123046875, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 22, - "x": -52.7041015625, - "y": 1667.59130859375, + "x": 8967.1533203125, + "y": -2162.3193359375, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 23, - "x": -55.8359375, - "y": 1669.423828125, + "x": 8969.7314453125, + "y": -2158.4873046875, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" + }, + { + "id": 24, + "x": 8969.4716796875, + "y": -2153.5576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 8981.09375, + "y": -2152.8427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 8978.861328125, + "y": -2146.265625, + "type": "path", + "move_mode": "walk", + "action": "" } ] } \ No newline at end of file diff --git a/repo/pathing/苦种/苦种12-柴薪之丘-纳塔4个.json b/repo/pathing/苦种/苦种12-柴薪之丘-纳塔4个.json new file mode 100644 index 00000000..31ddb474 --- /dev/null +++ b/repo/pathing/苦种/苦种12-柴薪之丘-纳塔4个.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "苦种12-柴薪之丘-纳塔4个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9032.3740234375, + "y": -1373.439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 8995.1083984375, + "y": -1354.03759765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 8938.181640625, + "y": -1269.154296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 8947.5166015625, + "y": -1265.4599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8951.5576171875, + "y": -1264.98828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8969.1083984375, + "y": -1248.734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8972.3828125, + "y": -1242.50537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8922.2724609375, + "y": -1241.11181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8919.1640625, + "y": -1241.50048828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8905.8056640625, + "y": -1229.93408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8890.138671875, + "y": -1245.9423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8883.3388671875, + "y": -1245.77734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8881.5810546875, + "y": -1248.2666015625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种13-花羽会-纳塔2个.json b/repo/pathing/苦种/苦种13-花羽会-纳塔2个.json new file mode 100644 index 00000000..ed9d9eeb --- /dev/null +++ b/repo/pathing/苦种/苦种13-花羽会-纳塔2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "苦种13-花羽会-纳塔2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9310.7763671875, + "y": -1423.2412109375 + }, + { + "id": 2, + "x": 9305.595703125, + "y": -1389.16845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 9303.8525390625, + "y": -1388.228515625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种14-花羽会-纳塔4个.json b/repo/pathing/苦种/苦种14-花羽会-纳塔4个.json new file mode 100644 index 00000000..134a53c9 --- /dev/null +++ b/repo/pathing/苦种/苦种14-花羽会-纳塔4个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "苦种14-花羽会-纳塔4个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 9492.056640625, + "y": -1206.79248046875 + }, + { + "id": 2, + "x": 9488.5126953125, + "y": -1185.4189453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9487.2060546875, + "y": -1158.20361328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 9457.400390625, + "y": -1162.87353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9399.9150390625, + "y": -1139.6318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9383.1552734375, + "y": -1151.27197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9382.75390625, + "y": -1152.1982421875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种15-花羽会-纳塔2个.json b/repo/pathing/苦种/苦种15-花羽会-纳塔2个.json new file mode 100644 index 00000000..cd45fd2c --- /dev/null +++ b/repo/pathing/苦种/苦种15-花羽会-纳塔2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "苦种15-花羽会-纳塔2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9587.537109375, + "y": -1279.625 + }, + { + "id": 2, + "x": 9649.8076171875, + "y": -1379.43896484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9653.05859375, + "y": -1378.5849609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种16-花羽会-纳塔3个.json b/repo/pathing/苦种/苦种16-花羽会-纳塔3个.json new file mode 100644 index 00000000..44af6dc4 --- /dev/null +++ b/repo/pathing/苦种/苦种16-花羽会-纳塔3个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "苦种16-花羽会-纳塔3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9839.478515625, + "y": -1290.00439453125 + }, + { + "id": 2, + "x": 9806.1259765625, + "y": -1296.72314453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 9812.9794921875, + "y": -1307.951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 9921.912109375, + "y": -1367.796875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 9952.68359375, + "y": -1368.8115234375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苦种/苦种17-烟谜主-纳塔8个.json b/repo/pathing/苦种/苦种17-烟谜主-纳塔8个.json new file mode 100644 index 00000000..433e50a7 --- /dev/null +++ b/repo/pathing/苦种/苦种17-烟谜主-纳塔8个.json @@ -0,0 +1,140 @@ +{ + "info": { + "name": "苦种17-烟谜主-纳塔8个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9638.18359375, + "y": -1854.7099609375 + }, + { + "id": 2, + "x": 9643.544921875, + "y": -1864.6669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 9620.52734375, + "y": -1856.1865234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 9621.505859375, + "y": -1847.66015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9616.396484375, + "y": -1844.99072265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9616.1240234375, + "y": -1843.8935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9605.08984375, + "y": -1780.42578125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": 9606.12890625, + "y": -1765.37060546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 9, + "x": 9611.8212890625, + "y": -1748.22705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9617.21875, + "y": -1749.39208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9641.095703125, + "y": -1765.00732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9649.3984375, + "y": -1765.5625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9646.443359375, + "y": -1712.14990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 9649.302734375, + "y": -1676.3486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 9643.447265625, + "y": -1677.92919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 9644.38671875, + "y": -1642.96826171875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ 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..d3236c95 Binary files /dev/null and b/repo/pathing/苹果/icon.ico differ diff --git a/repo/pathing/苹果/苹果01-低语森林-蒙德7个.json b/repo/pathing/苹果/苹果01-低语森林-蒙德7个.json new file mode 100644 index 00000000..3c6fda07 --- /dev/null +++ b/repo/pathing/苹果/苹果01-低语森林-蒙德7个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "苹果01-低语森林-蒙德7个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1119.501953125, + "y": 2181.999267578125 + }, + { + "id": 2, + "x": -1085.8447265625, + "y": 2174.8720703125, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 3, + "x": -1097, + "y": 2224.7499068497527, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": -1089.2978515625, + "y": 2275.072021484375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": -1103.1904296875, + "y": 2265.041748046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1141.947265625, + "y": 2307.864013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1135.6640625, + "y": 2329.578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1127.029296875, + "y": 2339.830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1120.525390625, + "y": 2356.543701171875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 10, + "x": -1116.806640625, + "y": 2383.145263671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1111.3125, + "y": 2438.118408203125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果02-清泉镇-蒙德5个.json b/repo/pathing/苹果/苹果02-清泉镇-蒙德5个.json new file mode 100644 index 00000000..a3824d28 --- /dev/null +++ b/repo/pathing/苹果/苹果02-清泉镇-蒙德5个.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "苹果02-清泉镇-蒙德5个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -914.9873046875, + "y": 1795.625 + }, + { + "id": 2, + "x": -847.3740234375, + "y": 1805.662109375, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果03-晨曦酒庄-蒙德7个.json b/repo/pathing/苹果/苹果03-晨曦酒庄-蒙德7个.json new file mode 100644 index 00000000..97a2c25b --- /dev/null +++ b/repo/pathing/苹果/苹果03-晨曦酒庄-蒙德7个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "苹果03-晨曦酒庄-蒙德7个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -578.853515625, + "y": 1853.5107421875 + }, + { + "id": 2, + "x": -560.318359375, + "y": 1799.22705078125, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 3, + "x": -549.3193359375, + "y": 1790.41064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -542.4462890625, + "y": 1772.84619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -430.2861328125, + "y": 1765.62158203125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": -421.60546875, + "y": 1785.40576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -410.3427734375, + "y": 1796.1630859375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果04-奔狼岭-蒙德3个.json b/repo/pathing/苹果/苹果04-奔狼岭-蒙德3个.json new file mode 100644 index 00000000..5b3cc7a1 --- /dev/null +++ b/repo/pathing/苹果/苹果04-奔狼岭-蒙德3个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "苹果04-奔狼岭-蒙德3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -385.4775390625, + "y": 2297.24609375 + }, + { + "id": 2, + "x": -426.2548828125, + "y": 2233.7373046875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": -445.16015625, + "y": 2213.802001953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -438.41015625, + "y": 2213.377685546875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果05-奔狼岭-蒙德3个.json b/repo/pathing/苹果/苹果05-奔狼岭-蒙德3个.json new file mode 100644 index 00000000..7cb94a55 --- /dev/null +++ b/repo/pathing/苹果/苹果05-奔狼岭-蒙德3个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "苹果05-奔狼岭-蒙德3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -385.9130859375, + "y": 2297.470458984375 + }, + { + "id": 2, + "x": -406.26171875, + "y": 2310.0966796875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -418.9072265625, + "y": 2321.431396484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -438.3916015625, + "y": 2318.38916015625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果06-地中之盐-璃月3个.json b/repo/pathing/苹果/苹果06-地中之盐-璃月3个.json new file mode 100644 index 00000000..6e0e519f --- /dev/null +++ b/repo/pathing/苹果/苹果06-地中之盐-璃月3个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "苹果06-地中之盐-璃月3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -188.5224609375, + "y": 972.50537109375 + }, + { + "id": 2, + "x": -78.3798828125, + "y": 987.20263671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": -67.8271484375, + "y": 1050.791015625, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果07-归离原-璃月6个.json b/repo/pathing/苹果/苹果07-归离原-璃月6个.json new file mode 100644 index 00000000..fbf064ce --- /dev/null +++ b/repo/pathing/苹果/苹果07-归离原-璃月6个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "苹果07-归离原-璃月6个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 341.30859375, + "y": 548.3876953125 + }, + { + "id": 2, + "x": 325.1796875, + "y": 585.771484375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 313.3876953125, + "y": 611.099609375, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 298.5029296875, + "y": 631.23779296875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果08-遁玉陵-璃月3个.json b/repo/pathing/苹果/苹果08-遁玉陵-璃月3个.json new file mode 100644 index 00000000..f8f8d81e --- /dev/null +++ b/repo/pathing/苹果/苹果08-遁玉陵-璃月3个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "苹果08-遁玉陵-璃月3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 978.7314453125, + "y": -353.625 + }, + { + "id": 2, + "x": 992.189453125, + "y": -346.8837890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1016.5546875, + "y": -311.75146484375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果09-遁玉陵-璃月3个.json b/repo/pathing/苹果/苹果09-遁玉陵-璃月3个.json new file mode 100644 index 00000000..468e465f --- /dev/null +++ b/repo/pathing/苹果/苹果09-遁玉陵-璃月3个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "苹果09-遁玉陵-璃月3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 978.638671875, + "y": -353.53759765625 + }, + { + "id": 2, + "x": 919.697265625, + "y": -342.9072265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 918.8115234375, + "y": -344.16455078125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果10-卡萨扎莱宫-须弥3个.json b/repo/pathing/苹果/苹果10-卡萨扎莱宫-须弥3个.json new file mode 100644 index 00000000..317e76b4 --- /dev/null +++ b/repo/pathing/苹果/苹果10-卡萨扎莱宫-须弥3个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "苹果10-卡萨扎莱宫-须弥3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2531.8427734375, + "y": -144.8017578125 + }, + { + "id": 2, + "x": 2434.3974609375, + "y": -261.9130859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 2437.439453125, + "y": -264.28857421875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果11-化城郭-须弥6个.json b/repo/pathing/苹果/苹果11-化城郭-须弥6个.json new file mode 100644 index 00000000..3f2a41f4 --- /dev/null +++ b/repo/pathing/苹果/苹果11-化城郭-须弥6个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "苹果11-化城郭-须弥6个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2701.619140625, + "y": -761.8779296875 + }, + { + "id": 2, + "x": 2645.9697265625, + "y": -841.34326171875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 2645.9697265625, + "y": -841.34326171875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 2624.7158203125, + "y": -851.88818359375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": 2595.67578125, + "y": -882.41650390625, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果12-天臂池-须弥6个.json b/repo/pathing/苹果/苹果12-天臂池-须弥6个.json new file mode 100644 index 00000000..1eafdae2 --- /dev/null +++ b/repo/pathing/苹果/苹果12-天臂池-须弥6个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "苹果12-天臂池-须弥6个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3067.83984375, + "y": -714.0244140625 + }, + { + "id": 2, + "x": 2994.220703125, + "y": -740.19482421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 2992.451171875, + "y": -733.66943359375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 3000.908203125, + "y": -681.830078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 3024.80078125, + "y": -609.82275390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 3054.7734375, + "y": -598.04833984375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果13-禅那园(高危)-须弥5个.json b/repo/pathing/苹果/苹果13-禅那园(高危)-须弥5个.json new file mode 100644 index 00000000..8511a4b3 --- /dev/null +++ b/repo/pathing/苹果/苹果13-禅那园(高危)-须弥5个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "苹果13-禅那园(高危)-须弥5个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3135.6630859375, + "y": -1079.6513671875 + }, + { + "id": 2, + "x": 3087.6640625, + "y": -1039.775390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 3046.595703125, + "y": -1020.9365234375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 2968.1064453125, + "y": -1006.765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 2943.98828125, + "y": -1009.28662109375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/苹果/苹果14-谒颂幽境-须弥3个.json b/repo/pathing/苹果/苹果14-谒颂幽境-须弥3个.json new file mode 100644 index 00000000..3b61faed --- /dev/null +++ b/repo/pathing/苹果/苹果14-谒颂幽境-须弥3个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "苹果14-谒颂幽境-须弥3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3591.6923828125, + "y": -787.625 + }, + { + "id": 2, + "x": 3576.9404296875, + "y": -840.5234375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 3564.4384765625, + "y": -921.2021484375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 3565.8984375, + "y": -964.0966796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 3572.44140625, + "y": -970.541015625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ 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..03a6703f Binary files /dev/null and b/repo/pathing/萃凝晶/icon.ico differ diff --git a/repo/pathing/萃凝晶/新枫丹科学院东北.json b/repo/pathing/萃凝晶/新枫丹科学院东北.json index 93dfc145..7c8c147a 100644 --- a/repo/pathing/萃凝晶/新枫丹科学院东北.json +++ b/repo/pathing/萃凝晶/新枫丹科学院东北.json @@ -14,7 +14,7 @@ "y": 4952.615234375, "action": "", "move_mode": "walk", - "type": "path" + "type": "teleport" }, { "id": 2, @@ -236,4 +236,4 @@ "type": "target" } ] -} \ No newline at end of file +} diff --git a/repo/pathing/蒲公英/01-蒲公英-蒙德城门口9个.json b/repo/pathing/蒲公英籽/01-蒲公英-蒙德城门口9个.json similarity index 59% rename from repo/pathing/蒲公英/01-蒲公英-蒙德城门口9个.json rename to repo/pathing/蒲公英籽/01-蒲公英-蒙德城门口9个.json index 3b2701b1..d0a4535b 100644 --- a/repo/pathing/蒲公英/01-蒲公英-蒙德城门口9个.json +++ b/repo/pathing/蒲公英籽/01-蒲公英-蒙德城门口9个.json @@ -10,171 +10,179 @@ "positions": [ { "id": 1, - "x": -1120.7939453125, - "y": 2190.409912109375, + "x": -1120.79, + "y": 2190.4, "action": "", "move_mode": "walk", "type": "teleport" }, { "id": 2, - "x": -1081.12109375, - "y": 2177.13623046875, + "x": -1081.12, + "y": 2177.13, "action": "", "move_mode": "walk", "type": "path" }, { "id": 3, - "x": -1069.828125, - "y": 2182.971435546875, + "x": -1069.82, + "y": 2182.97, "action": "", "move_mode": "walk", "type": "path" }, { "id": 4, - "x": -1052.0712890625, - "y": 2171.8759765625, + "x": -1052.07, + "y": 2171.87, "action": "", "move_mode": "walk", "type": "path" }, { "id": 5, - "x": -999.7822265625, - "y": 2198.776611328125, + "x": -999.78, + "y": 2198.77, "action": "", "move_mode": "walk", "type": "path" }, { "id": 6, - "x": -962.5810546875, - "y": 2216.734619140625, + "x": -962.58, + "y": 2216.73, "action": "", "move_mode": "walk", "type": "path" }, { "id": 7, - "x": -950.8837890625, - "y": 2196.876953125, + "x": -950.88, + "y": 2196.87, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 8, - "x": -943.349609375, - "y": 2194.820068359375, + "x": -943.34, + "y": 2194.82, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 9, - "x": -944.5517578125, - "y": 2184.166259765625, + "x": -944.55, + "y": 2184.16, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 10, - "x": -957.0859375, - "y": 2221.210205078125, + "x": -957.08, + "y": 2221.21, "action": "", "move_mode": "walk", "type": "path" }, { "id": 11, - "x": -976.7529296875, - "y": 2251.494140625, + "x": -976.75, + "y": 2251.49, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 12, - "x": -974.0966796875, - "y": 2241.904296875, + "x": -974.09, + "y": 2241.9, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 13, - "x": -981.869140625, - "y": 2235.80859375, + "x": -981.86, + "y": 2235.8, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 14, - "x": -976.4296875, - "y": 2229.74609375, + "x": -976.42, + "y": 2229.74, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 15, - "x": -973.1943359375, - "y": 2284.090576171875, - "type": "path", + "x": -973.19, + "y": 2284.09, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 16, - "x": -976.1904296875, - "y": 2320.13134765625, - "type": "path", + "x": -976.19, + "y": 2320.13, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 17, - "x": -970.169921875, - "y": 2321.600341796875, - "type": "path", + "x": -970.16, + "y": 2321.6, + "action": "anemo_collect", "move_mode": "walk", - "action": "anemo_collect" + "type": "path" }, { "id": 18, - "x": -938.2470703125, - "y": 2338.535888671875, - "type": "path", + "x": -938.24, + "y": 2338.53, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 19, - "x": -920.470703125, - "y": 2342.7333984375, - "type": "path", + "x": -920.47, + "y": 2342.73, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 20, - "x": -906.0439453125, - "y": 2355.616943359375, - "type": "path", + "x": -906.04, + "y": 2355.61, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 21, - "x": -903.5498046875, - "y": 2367.630859375, - "type": "target", + "x": -903.54, + "y": 2367.63, + "action": "anemo_collect", "move_mode": "walk", - "action": "anemo_collect" + "type": "target" + }, + { + "id": 22, + "x": -901.54, + "y": 2369.63, + "type": "path", + "move_mode": "walk", + "action": "" } ] } \ No newline at end of file diff --git a/repo/pathing/蒲公英籽/02-蒲公英-山脊守望西10个.json b/repo/pathing/蒲公英籽/02-蒲公英-山脊守望西10个.json new file mode 100644 index 00000000..c588d2f8 --- /dev/null +++ b/repo/pathing/蒲公英籽/02-蒲公英-山脊守望西10个.json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "02-蒲公英-山脊守望西10个", + "type": "collect", + "author": "秋云", + "version": "1.1", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -321.54, + "y": 1473.33, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -316.51, + "y": 1521.77, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -275.48, + "y": 1543.34, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -262.15, + "y": 1548.65, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -208.03, + "y": 1547.11, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": -173.47, + "y": 1542.38, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -153.29, + "y": 1555.65, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -146.82, + "y": 1591.29, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -130.57, + "y": 1588.44, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -123.63, + "y": 1586.68, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -131.98, + "y": 1600.11, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -166.95, + "y": 1648.2, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -143.61, + "y": 1674.31, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -100.25, + "y": 1686.62, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -89.26, + "y": 1649.75, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -71.51, + "y": 1636.7, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": -49.28, + "y": 1641.43, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": -43.47, + "y": 1669.87, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": -52.43, + "y": 1667.09, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": -53.95, + "y": 1666.57, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": -57.49, + "y": 1672.01, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": -59.49, + "y": 1674.01, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/03-蒲公英-西风庙宇东2个.json b/repo/pathing/蒲公英籽/03-蒲公英-西风庙宇东2个(有怪).json similarity index 100% rename from repo/pathing/蒲公英/03-蒲公英-西风庙宇东2个.json rename to repo/pathing/蒲公英籽/03-蒲公英-西风庙宇东2个(有怪).json diff --git a/repo/pathing/蒲公英籽/04-蒲公英-星落湖南3个.json b/repo/pathing/蒲公英籽/04-蒲公英-星落湖南3个.json new file mode 100644 index 00000000..9be3d2f8 --- /dev/null +++ b/repo/pathing/蒲公英籽/04-蒲公英-星落湖南3个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "04-蒲公英-星落湖南3个", + "type": "collect", + "author": "秋云", + "version": "1.1", + "description": "修复第二个蒲公英无法捡起来的情况。", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1329.46, + "y": 2564.13, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1305.52, + "y": 2545.82, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1278.29, + "y": 2535.37, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -1287.20, + "y": 2514.22, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -1282.78, + "y": 2497.62, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -1282.69, + "y": 2494.81, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1269.53, + "y": 2486.61, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/05-蒲公英-仲夏庭园3个.json b/repo/pathing/蒲公英籽/05-蒲公英-仲夏庭园3个(有怪).json similarity index 68% rename from repo/pathing/蒲公英/05-蒲公英-仲夏庭园3个.json rename to repo/pathing/蒲公英籽/05-蒲公英-仲夏庭园3个(有怪).json index 190c858b..e9581fe8 100644 --- a/repo/pathing/蒲公英/05-蒲公英-仲夏庭园3个.json +++ b/repo/pathing/蒲公英籽/05-蒲公英-仲夏庭园3个(有怪).json @@ -10,72 +10,72 @@ "positions": [ { "id": 1, - "x": -1505.880859375, - "y": 2296.201904296875, + "x": -1505.88, + "y": 2296.20, "type": "teleport", "move_mode": "walk", "action": "" }, { "id": 2, - "x": -1506.494140625, - "y": 2312.6220703125, + "x": -1506.49, + "y": 2312.62, "type": "path", "move_mode": "walk", "action": "" }, { "id": 3, - "x": -1541.291015625, - "y": 2364.279541015625, + "x": -1541.29, + "y": 2364.27, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -1541.943359375, - "y": 2365.1279296875, + "x": -1541.94, + "y": 2365.12, "type": "path", "move_mode": "walk", "action": "" }, { "id": 5, - "x": -1560.2587890625, - "y": 2413.156005859375, + "x": -1560.25, + "y": 2413.15, "type": "path", "move_mode": "walk", "action": "" }, { "id": 6, - "x": -1567.6923828125, - "y": 2442.651123046875, + "x": -1567.69, + "y": 2442.65, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 7, - "x": -1572.4775390625, - "y": 2444.308837890625, + "x": -1572.47, + "y": 2444.30, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 8, - "x": -1572.9296875, - "y": 2443.353515625, + "x": -1572.92, + "y": 2443.35, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 9, - "x": -1567.6923828125, - "y": 2442.651123046875, + "x": -1567.69, + "y": 2442.65, "type": "path", "move_mode": "walk", "action": "anemo_collect" diff --git a/repo/pathing/蒲公英/06-蒲公英-誓言岬2个.json b/repo/pathing/蒲公英籽/06-蒲公英-誓言岬2个.json similarity index 75% rename from repo/pathing/蒲公英/06-蒲公英-誓言岬2个.json rename to repo/pathing/蒲公英籽/06-蒲公英-誓言岬2个.json index b93569fc..6ad25d46 100644 --- a/repo/pathing/蒲公英/06-蒲公英-誓言岬2个.json +++ b/repo/pathing/蒲公英籽/06-蒲公英-誓言岬2个.json @@ -10,24 +10,24 @@ "positions": [ { "id": 5, - "x": -1999.0615234375, - "y": 1435.04541015625, + "x": -1999.06, + "y": 1435.04, "type": "teleport", "move_mode": "walk", "action": "" }, { "id": 6, - "x": -2022.4638671875, - "y": 1465.4189453125, + "x": -2022.46, + "y": 1465.41, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 7, - "x": -2030.4267578125, - "y": 1455.52587890625, + "x": -2030.42, + "y": 1455.52, "type": "path", "move_mode": "walk", "action": "anemo_collect" diff --git a/repo/pathing/蒲公英/07-蒲公英-达达乌帕谷3个.json b/repo/pathing/蒲公英籽/07-蒲公英-达达乌帕谷3个(有怪).json similarity index 71% rename from repo/pathing/蒲公英/07-蒲公英-达达乌帕谷3个.json rename to repo/pathing/蒲公英籽/07-蒲公英-达达乌帕谷3个(有怪).json index 41ef9006..95241bba 100644 --- a/repo/pathing/蒲公英/07-蒲公英-达达乌帕谷3个.json +++ b/repo/pathing/蒲公英籽/07-蒲公英-达达乌帕谷3个(有怪).json @@ -13,12 +13,12 @@ "action": "", "move_mode": "walk", "type": "teleport", - "x": -1867.373046875, - "y": 1331.08984375 + "x": -1867.37, + "y": 1331.08 }, { "id": 2, - "x": -1773.0119177335873, + "x": -1773.01, "y": 1383.75, "type": "path", "move_mode": "walk", @@ -26,7 +26,7 @@ }, { "id": 3, - "x": -1706.2568101334782, + "x": -1706.25, "y": 1388, "type": "path", "move_mode": "fly", @@ -34,48 +34,48 @@ }, { "id": 6, - "x": -1675.521484375, - "y": 1370.046875, + "x": -1675.52, + "y": 1370.04, "type": "path", "move_mode": "climb", "action": "anemo_collect" }, { "id": 5, - "x": -1660.982421875, - "y": 1433.0478515625, + "x": -1660.98, + "y": 1433.04, "type": "path", "move_mode": "walk", "action": "" }, { "id": 6, - "x": -1654.08203125, - "y": 1482.556640625, + "x": -1654.08, + "y": 1482.55, "type": "path", "move_mode": "walk", "action": "" }, { "id": 7, - "x": -1677.529296875, - "y": 1522.759765625, + "x": -1677.52, + "y": 1522.75, "type": "path", "move_mode": "walk", "action": "" }, { "id": 8, - "x": -1690.5849609375, - "y": 1546.92431640625, + "x": -1690.58, + "y": 1546.92, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 9, - "x": -1692.861328125, - "y": 1552.54345703125, + "x": -1692.86, + "y": 1552.54, "type": "path", "move_mode": "walk", "action": "anemo_collect" diff --git a/repo/pathing/蒲公英/08-蒲公英-达达乌帕谷南3个.json b/repo/pathing/蒲公英籽/08-蒲公英-达达乌帕谷南3个(有怪).json similarity index 70% rename from repo/pathing/蒲公英/08-蒲公英-达达乌帕谷南3个.json rename to repo/pathing/蒲公英籽/08-蒲公英-达达乌帕谷南3个(有怪).json index 9a595cb8..f8d29c65 100644 --- a/repo/pathing/蒲公英/08-蒲公英-达达乌帕谷南3个.json +++ b/repo/pathing/蒲公英籽/08-蒲公英-达达乌帕谷南3个(有怪).json @@ -10,48 +10,48 @@ "positions": [ { "id": 1, - "x": -1024.3349609375, - "y": 1174.7392578125, + "x": -1024.33, + "y": 1174.73, "type": "teleport", "move_mode": "walk", "action": "" }, { "id": 2, - "x": -1260.4775390625, - "y": 1229.67919921875, + "x": -1260.47, + "y": 1229.67, "type": "path", "move_mode": "fly", "action": "" }, { "id": 3, - "x": -1310.998046875, - "y": 1173.99267578125, + "x": -1310.99, + "y": 1173.99, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -1359.3525390625, - "y": 1126.00830078125, + "x": -1359.35, + "y": 1126.00, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 5, - "x": -1361.404296875, - "y": 1123.9404296875, + "x": -1361.40, + "y": 1123.94, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 6, - "x": -1370.2197265625, - "y": 1139.572265625, + "x": -1370.21, + "y": 1139.57, "type": "path", "move_mode": "walk", "action": "anemo_collect" diff --git a/repo/pathing/蒲公英籽/09-蒲公英-风起地南3个(有怪).json b/repo/pathing/蒲公英籽/09-蒲公英-风起地南3个(有怪).json new file mode 100644 index 00000000..174f4c92 --- /dev/null +++ b/repo/pathing/蒲公英籽/09-蒲公英-风起地南3个(有怪).json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "09-蒲公英-风起地南3个", + "type": "collect", + "author": "秋云", + "version": "1.1", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1431.67, + "y": 1661.46, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1453.73, + "y": 1680.14, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1371.33, + "y": 1664.95, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -1347.22, + "y": 1642.69, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -1322.82, + "y": 1656.37, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": -1310.74, + "y": 1663, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -1302.68, + "y": 1668.80, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 8, + "x": -1266.99, + "y": 1671.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -1259.76, + "y": 1688.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -1272.71, + "y": 1703.73, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -1279.34, + "y": 1704.74, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/09-蒲公英-奔狼领北2个.json b/repo/pathing/蒲公英籽/10-蒲公英-奔狼领北2个.json similarity index 66% rename from repo/pathing/蒲公英/09-蒲公英-奔狼领北2个.json rename to repo/pathing/蒲公英籽/10-蒲公英-奔狼领北2个.json index 6a3ff0bc..59c92649 100644 --- a/repo/pathing/蒲公英/09-蒲公英-奔狼领北2个.json +++ b/repo/pathing/蒲公英籽/10-蒲公英-奔狼领北2个.json @@ -1,6 +1,6 @@ { "info": { - "name": "09-蒲公英-奔狼领北2个", + "name": "10-蒲公英-奔狼领北2个", "type": "collect", "author": "秋云", "version": "1.0", @@ -13,45 +13,45 @@ "action": "", "move_mode": "walk", "type": "teleport", - "x": -424.4150390625, - "y": 2324.51171875 + "x": -424.41, + "y": 2324.51 }, { "id": 2, - "x": -361.7763671875, - "y": 2301.235107421875, + "x": -361.77, + "y": 2301.23, "type": "path", "move_mode": "walk", "action": "" }, { "id": 3, - "x": -341.7373046875, - "y": 2317.936279296875, + "x": -341.73, + "y": 2317.93, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -344.994140625, - "y": 2322.552001953125, + "x": -344.99, + "y": 2322.55, "type": "path", "move_mode": "climb", "action": "" }, { "id": 5, - "x": -354.98046875, - "y": 2326.62646484375, + "x": -354.98, + "y": 2326.62, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 6, - "x": -356.3505859375, - "y": 2331.69873046875, + "x": -356.35, + "y": 2331.69, "type": "path", "move_mode": "walk", "action": "anemo_collect" diff --git a/repo/pathing/蒲公英籽/11-蒲公英-晨曦酒庄东2个.json b/repo/pathing/蒲公英籽/11-蒲公英-晨曦酒庄东2个.json new file mode 100644 index 00000000..1ff17557 --- /dev/null +++ b/repo/pathing/蒲公英籽/11-蒲公英-晨曦酒庄东2个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "11-蒲公英-晨曦酒庄东2个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -578.74, + "y": 1853.35 + }, + { + "id": 2, + "x": -575.18, + "y": 1773.05, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -549.45, + "y": 1718.75, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -535.35, + "y": 1697.24, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 5, + "x": -534.59, + "y": 1695.42, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/12-蒲公英-零散3个(路远,不建议).json b/repo/pathing/蒲公英籽/12-蒲公英-晨曦酒庄北3个(路远,不建议).json similarity index 65% rename from repo/pathing/蒲公英/12-蒲公英-零散3个(路远,不建议).json rename to repo/pathing/蒲公英籽/12-蒲公英-晨曦酒庄北3个(路远,不建议).json index c42d3bff..81f99195 100644 --- a/repo/pathing/蒲公英/12-蒲公英-零散3个(路远,不建议).json +++ b/repo/pathing/蒲公英籽/12-蒲公英-晨曦酒庄北3个(路远,不建议).json @@ -1,6 +1,6 @@ { "info": { - "name": "12-蒲公英-零散3个", + "name": "12-蒲公英-晨曦酒庄北3个", "type": "collect", "author": "秋云", "version": "1.0", @@ -10,103 +10,103 @@ "positions": [ { "id": 1, - "x": -577.17578125, - "y": 1857.5478515625, + "x": -577.17, + "y": 1857.54, "action": "", "move_mode": "walk", "type": "teleport" }, { "id": 2, - "x": -540.2236328125, - "y": 1854.65869140625, + "x": -540.22, + "y": 1854.65, "action": "", "move_mode": "walk", "type": "path" }, { "id": 3, - "x": -524.8896484375, - "y": 1871.45654296875, + "x": -524.88, + "y": 1871.45, "action": "", "move_mode": "walk", "type": "path" }, { "id": 4, - "x": -486.4560546875, - "y": 1871.5283203125, + "x": -486.45, + "y": 1871.52, "action": "", "move_mode": "walk", "type": "path" }, { "id": 5, - "x": -463.7255859375, - "y": 1890.17333984375, + "x": -463.72, + "y": 1890.17, "action": "", "move_mode": "walk", "type": "path" }, { "id": 6, - "x": -447.650390625, - "y": 1926.89404296875, + "x": -447.65, + "y": 1926.89, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 7, - "x": -426.4482421875, - "y": 1955.84326171875, + "x": -426.44, + "y": 1955.84, "action": "", "move_mode": "walk", "type": "path" }, { "id": 8, - "x": -422.55078125, - "y": 1977.69482421875, + "x": -422.55, + "y": 1977.69, "action": "", "move_mode": "fly", "type": "path" }, { "id": 9, - "x": -396.8046875, - "y": 1996.4931640625, + "x": -396.8, + "y": 1996.49, "action": "", "move_mode": "walk", "type": "path" }, { "id": 10, - "x": -393.7919921875, - "y": 2030.7763671875, + "x": -393.79, + "y": 2030.77, "action": "", "move_mode": "walk", "type": "path" }, { "id": 11, - "x": -376.53515625, - "y": 2054.541748046875, + "x": -376.53, + "y": 2054.54, "action": "", "move_mode": "walk", "type": "path" }, { "id": 12, - "x": -382.6650390625, - "y": 2057.4228515625, + "x": -382.66, + "y": 2057.42, "action": "anemo_collect", "move_mode": "walk", - "type": "path" + "type": "target" }, { "id": 13, - "x": -376.2489784799782, + "x": -376.24, "y": 2054.25, "action": "", "move_mode": "walk", @@ -114,31 +114,31 @@ }, { "id": 14, - "x": -393.99863797330363, - "y": 2030, + "x": -393.99, + "y": 2030.24, "action": "", "move_mode": "walk", "type": "path" }, { "id": 15, - "x": -396.2489784799782, - "y": 1997, + "x": -396.24, + "y": 1997.54, "action": "", "move_mode": "walk", "type": "path" }, { "id": 16, - "x": -392.2497729955503, - "y": 1983, + "x": -392.24, + "y": 1983.11, "action": "", "move_mode": "walk", "type": "path" }, { "id": 17, - "x": -390.25034050667455, + "x": -390.25, "y": 1965.25, "action": "stop_flying", "move_mode": "fly", @@ -146,11 +146,11 @@ }, { "id": 18, - "x": -389.56640625, - "y": 1966.01123046875, + "x": -389.56, + "y": 1966.01, "action": "anemo_collect", "move_mode": "walk", - "type": "path" + "type": "target" } ] } \ No newline at end of file diff --git a/repo/pathing/蒲公英/13-蒲公英-零散1个(路远,不建议).json b/repo/pathing/蒲公英籽/13-蒲公英-清泉镇西1个(路远,不建议).json similarity index 67% rename from repo/pathing/蒲公英/13-蒲公英-零散1个(路远,不建议).json rename to repo/pathing/蒲公英籽/13-蒲公英-清泉镇西1个(路远,不建议).json index 55b1708b..54064e76 100644 --- a/repo/pathing/蒲公英/13-蒲公英-零散1个(路远,不建议).json +++ b/repo/pathing/蒲公英籽/13-蒲公英-清泉镇西1个(路远,不建议).json @@ -1,6 +1,6 @@ { "info": { - "name": "13-蒲公英-零散1个", + "name": "13-蒲公英-清泉镇西1个", "type": "collect", "author": "秋云", "version": "1.0", @@ -10,48 +10,48 @@ "positions": [ { "id": 1, - "x": -578.7744140625, - "y": 1858.76611328125, + "x": -578.77, + "y": 1858.76, "action": "", "move_mode": "walk", "type": "teleport" }, { "id": 2, - "x": -595.869140625, - "y": 1896.71240234375, + "x": -595.86, + "y": 1896.71, "action": "", "move_mode": "walk", "type": "path" }, { "id": 3, - "x": -608.8740234375, - "y": 1933.47265625, + "x": -608.87, + "y": 1933.47, "action": "", "move_mode": "walk", "type": "path" }, { "id": 4, - "x": -663.5849609375, - "y": 1932.00244140625, + "x": -663.58, + "y": 1932.00, "type": "path", "move_mode": "fly", "action": "stop_flying" }, { "id": 5, - "x": -663.5849609375, - "y": 1932.00244140625, + "x": -663.58, + "y": 1932.00, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 6, - "x": -666.720703125, - "y": 1931.9501953125, + "x": -666.72, + "y": 1931.95, "action": "", "move_mode": "walk", "type": "path" diff --git a/repo/pathing/蒲公英/14-蒲公英-零散1个(路远,不建议).json b/repo/pathing/蒲公英籽/14-蒲公英-清泉镇1个(路远,不建议).json similarity index 66% rename from repo/pathing/蒲公英/14-蒲公英-零散1个(路远,不建议).json rename to repo/pathing/蒲公英籽/14-蒲公英-清泉镇1个(路远,不建议).json index 6742f5a3..d9e843b7 100644 --- a/repo/pathing/蒲公英/14-蒲公英-零散1个(路远,不建议).json +++ b/repo/pathing/蒲公英籽/14-蒲公英-清泉镇1个(路远,不建议).json @@ -1,6 +1,6 @@ { "info": { - "name": "14-蒲公英-零散1个", + "name": "14-蒲公英-清泉镇1个", "type": "collect", "author": "秋云", "version": "1.0", @@ -10,48 +10,48 @@ "positions": [ { "id": 1, - "x": -867.5986328125, - "y": 1992.251953125, + "x": -867.59, + "y": 1992.25, "type": "teleport", "move_mode": "walk", "action": "" }, { "id": 2, - "x": -908.326171875, - "y": 1978.1943359375, + "x": -908.32, + "y": 1978.19, "type": "path", "move_mode": "walk", "action": "" }, { "id": 3, - "x": -953.1494140625, - "y": 1976.02880859375, + "x": -953.14, + "y": 1976.02, "type": "path", "move_mode": "fly", "action": "" }, { "id": 4, - "x": -969.1123046875, - "y": 1971.7646484375, + "x": -969.11, + "y": 1971.76, "type": "path", "move_mode": "fly", "action": "" }, { "id": 5, - "x": -968.2265625, - "y": 1946.3759765625, + "x": -968.22, + "y": 1946.37, "type": "path", "move_mode": "fly", "action": "" }, { "id": 6, - "x": -960.0029296875, - "y": 1929.07958984375, + "x": -960.00, + "y": 1929.07, "type": "path", "move_mode": "walk", "action": "anemo_collect" diff --git a/repo/pathing/蒲公英/15-蒲公英-零散1个(路远,不建议).json b/repo/pathing/蒲公英籽/15-蒲公英-望风角1个(路远,不建议).json similarity index 69% rename from repo/pathing/蒲公英/15-蒲公英-零散1个(路远,不建议).json rename to repo/pathing/蒲公英籽/15-蒲公英-望风角1个(路远,不建议).json index bc473c04..67e25ad4 100644 --- a/repo/pathing/蒲公英/15-蒲公英-零散1个(路远,不建议).json +++ b/repo/pathing/蒲公英籽/15-蒲公英-望风角1个(路远,不建议).json @@ -1,6 +1,6 @@ { "info": { - "name": "15-蒲公英-零散1个", + "name": "15-蒲公英-望风角1个", "type": "collect", "author": "秋云", "version": "1.0", @@ -10,31 +10,31 @@ "positions": [ { "id": 2, - "x": -1629.35546875, - "y": 2834.30517578125, + "x": -1629.35, + "y": 2834.30, "type": "teleport", "move_mode": "walk", "action": "" }, { "id": 3, - "x": -1634.3828125, - "y": 2846.015380859375, + "x": -1634.38, + "y": 2846.01, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -1643.2490234375, - "y": 2867.230224609375, + "x": -1643.24, + "y": 2867.23, "type": "path", "move_mode": "walk", "action": "" }, { "id": 5, - "x": -1683.2391037864345, + "x": -1683.23, "y": 2909, "type": "path", "move_mode": "fly", @@ -42,8 +42,8 @@ }, { "id": 6, - "x": -1704.0185546875, - "y": 2987.650390625, + "x": -1704.01, + "y": 2987.65, "type": "path", "move_mode": "fly", "action": "anemo_collect" diff --git a/repo/pathing/蒲公英/11-蒲公英-零散2个(路远,不建议).json b/repo/pathing/蒲公英籽/16-蒲公英-望风山地2个(路远,不建议).json similarity index 71% rename from repo/pathing/蒲公英/11-蒲公英-零散2个(路远,不建议).json rename to repo/pathing/蒲公英籽/16-蒲公英-望风山地2个(路远,不建议).json index 08c89243..1e188aa2 100644 --- a/repo/pathing/蒲公英/11-蒲公英-零散2个(路远,不建议).json +++ b/repo/pathing/蒲公英籽/16-蒲公英-望风山地2个(路远,不建议).json @@ -1,6 +1,6 @@ { "info": { - "name": "11-蒲公英-零散2个", + "name": "16-蒲公英-望风山地2个", "type": "collect", "author": "秋云", "version": "1.0", @@ -10,15 +10,15 @@ "positions": [ { "id": 1, - "x": -1273.7841796875, - "y": 2721.707763671875, + "x": -1273.78, + "y": 2721.70, "action": "", "move_mode": "walk", "type": "teleport" }, { "id": 2, - "x": -1263.252610551166, + "x": -1263.25, "y": 2735.25, "type": "path", "move_mode": "walk", @@ -26,7 +26,7 @@ }, { "id": 3, - "x": -1263.9824071551811, + "x": -1263.98, "y": 2773.25, "action": "", "move_mode": "walk", @@ -34,7 +34,7 @@ }, { "id": 4, - "x": -1248.980818124035, + "x": -1248.98, "y": 2795.25, "action": "", "move_mode": "walk", @@ -42,7 +42,7 @@ }, { "id": 5, - "x": -1216.4925088531727, + "x": -1216.49, "y": 2803.75, "action": "", "move_mode": "walk", @@ -50,39 +50,39 @@ }, { "id": 6, - "x": -1190.375, - "y": 2775.902587890625, + "x": -1190.37, + "y": 2775.90, "action": "anemo_collect", "move_mode": "walk", "type": "target" }, { "id": 7, - "x": -1142.7353515625, - "y": 2736.6279296875, + "x": -1142.73, + "y": 2736.62, "action": "", "move_mode": "walk", "type": "path" }, { "id": 8, - "x": -1118.2099609375, - "y": 2713.2958984375, + "x": -1118.20, + "y": 2713.29, "action": "stop_flying", "move_mode": "fly", "type": "path" }, { "id": 9, - "x": -1106.7822265625, - "y": 2682.40673828125, + "x": -1106.78, + "y": 2682.40, "action": "stop_flying", "move_mode": "fly", "type": "path" }, { "id": 10, - "x": -1093.2538590756376, + "x": -1093.25, "y": 2645.75, "type": "path", "move_mode": "walk", @@ -90,8 +90,8 @@ }, { "id": 11, - "x": -1096.650390625, - "y": 2595.154052734375, + "x": -1096.65, + "y": 2595.15, "action": "anemo_collect", "move_mode": "walk", "type": "path" diff --git a/repo/pathing/蒲公英/20-蒲公英-北风庙宇东3个(传送点缺失).json b/repo/pathing/蒲公英籽/20-蒲公英-北风庙宇东3个(有怪,传送点缺失).json similarity index 68% rename from repo/pathing/蒲公英/20-蒲公英-北风庙宇东3个(传送点缺失).json rename to repo/pathing/蒲公英籽/20-蒲公英-北风庙宇东3个(有怪,传送点缺失).json index 23e0ca12..ccf5e55b 100644 --- a/repo/pathing/蒲公英/20-蒲公英-北风庙宇东3个(传送点缺失).json +++ b/repo/pathing/蒲公英籽/20-蒲公英-北风庙宇东3个(有怪,传送点缺失).json @@ -13,61 +13,61 @@ "action": "", "move_mode": "walk", "type": "teleport", - "x": -1638.5673828125, - "y": 2153.915283203125 + "x": -1638.56, + "y": 2153.91 }, { "id": 2, - "x": -1645.5556640625, - "y": 2116.386474609375, + "x": -1645.55, + "y": 2116.38, "type": "path", "move_mode": "walk", "action": "" }, { "id": 3, - "x": -1643.0126953125, - "y": 2086.951171875, + "x": -1643.01, + "y": 2086.95, "type": "path", "move_mode": "fly", "action": "stop_flying" }, { "id": 4, - "x": -1658.4306640625, - "y": 2071.6384277343745, + "x": -1658.43, + "y": 2071.63, "type": "path", "move_mode": "walk", "action": "" }, { "id": 5, - "x": -1682.4306640625, - "y": 2083.638427734375, + "x": -1682.43, + "y": 2083.63, "type": "path", "move_mode": "walk", "action": "" }, { "id": 6, - "x": -1723.43359375, - "y": 2092.970947265625, + "x": -1723.43, + "y": 2092.97, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 7, - "x": -1729.3095703125, - "y": 2094.01123046875, + "x": -1729.30, + "y": 2094.01, "type": "path", "move_mode": "walk", "action": "anemo_collect" }, { "id": 8, - "x": -1728.7626953125, - "y": 2083.14990234375, + "x": -1728.76, + "y": 2083.14, "type": "path", "move_mode": "walk", "action": "anemo_collect" 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..c0ce7a13 Binary files /dev/null and b/repo/pathing/蒲公英籽/icon.ico differ diff --git a/repo/pathing/蕈兽/蕈兽-地表集中点35只.json b/repo/pathing/蕈兽/蕈兽-地表集中点35只.json new file mode 100644 index 00000000..a9b476c6 --- /dev/null +++ b/repo/pathing/蕈兽/蕈兽-地表集中点35只.json @@ -0,0 +1,220 @@ +{ + "info": { + "name": "蕈兽-地表集中点35只", + "type": "collect", + "author": "翎镞", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3254.2392578125, + "y": -189.5595703125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3238.91015625, + "y": -189.13037109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 3228.28515625, + "y": -177.95068359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 3214.947265625, + "y": -160.7802734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 3190.1162109375, + "y": -159.1689453125, + "action": "fight", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 3180.927734375, + "y": -165.41259765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 3170.9267578125, + "y": -181.88720703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 3162.05078125, + "y": -196.515625, + "action": "fight", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 3067.994140625, + "y": -713.91796875, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 10, + "x": 3059.4384765625, + "y": -685.43408203125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 3058.884765625, + "y": -670.92431640625, + "action": "fight", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 3079.853515625, + "y": -660.87109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 13, + "x": 3098.92578125, + "y": -648.3828125, + "action": "fight", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 3397.4990234375, + "y": -1174.5625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 3429.1083984375, + "y": -1198.5859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 16, + "x": 3451.94140625, + "y": -1217.96142578125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 17, + "x": 3454.599609375, + "y": -1220.4716796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 18, + "x": 3440.71875, + "y": -1242.9208984375, + "type": "target", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 19, + "x": 3444.974609375, + "y": -1245.2470703125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 20, + "x": 3476.4365234375, + "y": -1217.626953125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 21, + "x": 3487.5458984375, + "y": -1199.9345703125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 22, + "x": 3552.705078125, + "y": -1141.18310546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 23, + "x": 3591.33984375, + "y": -1136.4775390625, + "type": "target", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 24, + "x": 3574.18359375, + "y": -1107.86865234375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 25, + "x": 3591.0439453125, + "y": -1086.10986328125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 26, + "x": 3631.9521484375, + "y": -1040.26025390625, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/血斛/血斛-九条阵屋-10个 .json b/repo/pathing/血斛/血斛-九条阵屋-10个 .json new file mode 100644 index 00000000..705b1779 --- /dev/null +++ b/repo/pathing/血斛/血斛-九条阵屋-10个 .json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "血斛-九条阵屋-14个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "x": -3436.9990234375, + "y": -3319.7763671875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3419.6689453125, + "y": -3305.8251953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3404.185546875, + "y": -3286.919921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -3410.9560546875, + "y": -3263.1025390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -3395.0341796875, + "y": -3252.869140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -3394.744140625, + "y": -3243.0791015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -3392.9873046875, + "y": -3235.1943359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -3395.564453125, + "y": -3222.189453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -3369.142578125, + "y": -3224.578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -3352.05078125, + "y": -3237.07421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -3349.7578125, + "y": -3232.8935546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": -3302.31640625, + "y": -3223.3564453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": -3290.5859375, + "y": -3214.833984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -3297.8671875, + "y": -3205.8642578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": -3253.7294921875, + "y": -3175.376953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": -3235.328125, + "y": -3160.3203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 17, + "x": -3228.3369140625, + "y": -3134.0166015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": -3257.359375, + "y": -3123.7841796875, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/血斛/血斛-九条阵屋-14个(末尾纳西妲4个).json b/repo/pathing/血斛/血斛-九条阵屋-14个(末尾纳西妲4个).json new file mode 100644 index 00000000..7527a8ab --- /dev/null +++ b/repo/pathing/血斛/血斛-九条阵屋-14个(末尾纳西妲4个).json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "血斛-九条阵屋-14个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "x": -3436.9990234375, + "y": -3319.7763671875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3419.6689453125, + "y": -3305.8251953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3404.185546875, + "y": -3286.919921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -3410.9560546875, + "y": -3263.1025390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -3395.0341796875, + "y": -3252.869140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -3394.744140625, + "y": -3243.0791015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -3392.9873046875, + "y": -3235.1943359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -3395.564453125, + "y": -3222.189453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -3369.142578125, + "y": -3224.578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -3352.05078125, + "y": -3237.07421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -3349.7578125, + "y": -3232.8935546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": -3302.31640625, + "y": -3223.3564453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": -3290.5859375, + "y": -3214.833984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -3297.8671875, + "y": -3205.8642578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": -3253.7294921875, + "y": -3175.376953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": -3235.328125, + "y": -3160.3203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 17, + "x": -3228.3369140625, + "y": -3134.0166015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": -3257.359375, + "y": -3123.7841796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": -3272.830078125, + "y": -3102.984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": -3222.3935546875, + "y": -2978.4658203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": -3217.43359375, + "y": -2983.6572265625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": -3217.3759765625, + "y": -2983.787109375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/血斛/血斛-蛇神之首-12个.json b/repo/pathing/血斛/血斛-蛇神之首-12个.json new file mode 100644 index 00000000..8f55a56b --- /dev/null +++ b/repo/pathing/血斛/血斛-蛇神之首-12个.json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "血斛-蛇神之首-12个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "x": -2402.666015625, + "y": -3922.6884765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -2375.3828125, + "y": -3943.7060546875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -2375.5751953125, + "y": -3944.26953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -2380.38671875, + "y": -3953.130859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -2365.6044921875, + "y": -3963.921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -2357.8056640625, + "y": -3974.9453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -2349.578125, + "y": -3978.90625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -2338.3173828125, + "y": -3980.4140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": -2319.4033203125, + "y": -3971.4091796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -2314.4072265625, + "y": -3958.982421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -2305.1806640625, + "y": -3956.5478515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": -2403.4716796875, + "y": -3921.9853515625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -2318.298828125, + "y": -3910.404296875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 16, + "x": -2317.298828125, + "y": -3910.21484375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": -2315.0361328125, + "y": -3907.1728515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": -2317.0361328125, + "y": -3904.943359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": -2336.412109375, + "y": -3904.9072265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 20, + "x": -2339.3046875, + "y": -3904.2119140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 21, + "x": -2336.59765625, + "y": -3898.2275390625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 20, + "x": -2335.2314453125, + "y": -3896.98828125, + "type": "target", + "move_mode": "fly", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫01.json b/repo/pathing/遗迹守卫/遗迹守卫01.json new file mode 100644 index 00000000..6e7efc7f --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫01.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "遗迹守卫1", + "type": "collect", + "author": "XS", + "version": "1.1", + "description": "建议带盾芙芙万叶芭芭拉,因为点位特殊位移大的容易从平台掉下来", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1045.5537109375, + "y": 950.6259765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1011.8408203125, + "y": 942.2646484375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 979.97265625, + "y": 844.142578125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 973.60546875, + "y": 820.53564453125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 970.9951171875, + "y": 814.802734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 955.55078125, + "y": 782.3154296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 957.498046875, + "y": 781.80712890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 957.4013671875, + "y": 779.53857421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 955.2314453125, + "y": 781.53662109375, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 967.205078125, + "y": 771.04248046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 966.0302734375, + "y": 760.8203125, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 12, + "x": 964.99609375, + "y": 758.39794921875, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 13, + "x": 969.2744140625, + "y": 757.0302734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 968.2744140625, + "y": 755.29541015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 966.271484375, + "y": 753.67919921875, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫02.json b/repo/pathing/遗迹守卫/遗迹守卫02.json new file mode 100644 index 00000000..cd5a63c4 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫02.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "遗迹守卫2", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 489.404296875, + "y": 222.162109375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 487.99609375, + "y": 231.6259765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 488.408203125, + "y": 255.03759765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 491.3623046875, + "y": 255.20751953125, + "action": "fight", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫03(可回复体力).json b/repo/pathing/遗迹守卫/遗迹守卫03(可回复体力).json new file mode 100644 index 00000000..c4c319ca --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫03(可回复体力).json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "遗迹守卫3(可回复体力)", + "type": "collect", + "author": "XS", + "version": "1.1", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 978.75, + "y": -353.57421875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 988.92578125, + "y": -349.26025390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 1002.5126953125, + "y": -347.17138671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 1009.9033203125, + "y": -342.505859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 1014.654296875, + "y": -340.251953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 1101.4375, + "y": -321.30810546875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": 1101.978515625, + "y": -303.955078125, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 1115.990234375, + "y": -320.11962890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 1145.521484375, + "y": -342.9462890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 1157.8046875, + "y": -347.6630859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 1157.69921875, + "y": -343.59375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 1158.359375, + "y": -346.61328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 1158.8212890625, + "y": -348.392578125, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 14, + "x": 1164.9208984375, + "y": -341.7900390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 1180.7421875, + "y": -318.98974609375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 1187.619140625, + "y": -294.67578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 1196.111328125, + "y": -297.05224609375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 18, + "x": 1211.0859375, + "y": -280.556640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 1206.57421875, + "y": -268.76025390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 1193.5205078125, + "y": -257.5556640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 1194.72265625, + "y": -254.2333984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": 1193.701171875, + "y": -255.1416015625, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫04-瑶光滩.json b/repo/pathing/遗迹守卫/遗迹守卫04-瑶光滩.json new file mode 100644 index 00000000..cfa6ec4f --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫04-瑶光滩.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "遗迹守卫4-瑶光滩", + "type": "collect", + "author": "XS", + "version": "1.1", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -473.98828125, + "y": 441.76611328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -472.0205078125, + "y": 447.763671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -492.3203125, + "y": 480.0810546875, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 4, + "x": -512.431640625, + "y": 496.78564453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -525.63671875, + "y": 532.6513671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": -538.1123046875, + "y": 562.80712890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": -536.703125, + "y": 572.86181640625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": -540.296875, + "y": 569.24267578125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫05.json b/repo/pathing/遗迹守卫/遗迹守卫05.json new file mode 100644 index 00000000..b684acbc --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫05.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "遗迹守卫5", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 36.7763671875, + "y": 2380.891845703125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 52.775390625, + "y": 2429.708251953125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 24.462890625, + "y": 2461.031982421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 9.6416015625, + "y": 2486.349609375, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫06.json b/repo/pathing/遗迹守卫/遗迹守卫06.json new file mode 100644 index 00000000..479dddaf --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫06.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "遗迹守卫6", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -440.1708984375, + "y": 2580.79931640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -433.0966796875, + "y": 2611.168701171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": -409.7158203125, + "y": 2626.98876953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": -402.14453125, + "y": 2627.957275390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -373.3359375, + "y": 2645.537109375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": -356.572265625, + "y": 2659.134765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -353.6259765625, + "y": 2662.513671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -326.8935546875, + "y": 2695.523193359375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 10, + "x": -313.1298828125, + "y": 2697.88134765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -304.560546875, + "y": 2692.523193359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -302.9697265625, + "y": 2692.239013671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -308.0615234375, + "y": 2698.501953125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫07.json b/repo/pathing/遗迹守卫/遗迹守卫07.json new file mode 100644 index 00000000..8f5c8ab0 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫07.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "遗迹守卫7", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1629.3671875, + "y": 2834.402587890625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1646.2333984375, + "y": 2843.96630859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1669.32421875, + "y": 2842.326904296875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -1683.337890625, + "y": 2842.25390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": -1698.9775390625, + "y": 2842.450439453125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": -1724.306640625, + "y": 2850.373046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -1735.8544921875, + "y": 2852.138671875, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 8, + "x": -1741.26953125, + "y": 2849.67138671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": -1738.6259765625, + "y": 2847.89794921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -1738.6484375, + "y": 2847.86865234375, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫08.json b/repo/pathing/遗迹守卫/遗迹守卫08.json new file mode 100644 index 00000000..d3e456f3 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫08.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "遗迹守卫8", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4217.9375, + "y": -2397.8408203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4224.44140625, + "y": -2360.712890625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -4185.90625, + "y": -2323.21875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -4185.69921875, + "y": -2322.380859375, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -4194.494140625, + "y": -2318.5146484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -4225.08984375, + "y": -2301.439453125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": -4243.4140625, + "y": -2290.9912109375, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫09-孤云阁.json b/repo/pathing/遗迹守卫/遗迹守卫09-孤云阁.json new file mode 100644 index 00000000..7e73b942 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫09-孤云阁.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "遗迹守卫9-孤云阁", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -959.2722263690503, + "y": -285.21242909941975, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -934.3232421875, + "y": -280.57861328125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -911.9580078125, + "y": -276.51513671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": -891.466796875, + "y": -250.4208984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -866.2265625, + "y": -254.8837890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -855.4033203125, + "y": -287.3212890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -851.9306640625, + "y": -274.53955078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -840.255859375, + "y": -291.62939453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -826.455078125, + "y": -285.69921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -765.287109375, + "y": -305.7333984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": -745.1477467900404, + "y": -319.22991720929986, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -697.4965099183464, + "y": -357.9979425753081, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": -699.4965099183464, + "y": -355.9979425753081, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫10-离月港上.json b/repo/pathing/遗迹守卫/遗迹守卫10-离月港上.json new file mode 100644 index 00000000..0d2b38a4 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫10-离月港上.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "遗迹守卫5-离月港上", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 26.88511814553931, + "y": -128.14170512564215 + }, + { + "id": 2, + "action": "", + "move_mode": "run", + "type": "path", + "x": 55.90198687353586, + "y": -128.14170512564215 + }, + { + "id": 3, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 70.91071207767163, + "y": -87.12061652255215 + }, + { + "id": 4, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": 87.42030980222262, + "y": -68.11084375526661 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫11-枫丹.json b/repo/pathing/遗迹守卫/遗迹守卫11-枫丹.json new file mode 100644 index 00000000..9f823f08 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫11-枫丹.json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "遗迹守卫11-枫丹", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5117.455078125, + "y": 2543.357666015625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5087.6337890625, + "y": 2525.60986328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 5058.96337890625, + "y": 2492.625732421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 5011.75927734375, + "y": 2454.398681640625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 4988.5, + "y": 2428.503662109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 4967.58642578125, + "y": 2413.402587890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4981.201171875, + "y": 2401.19873046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 4983.201171875, + "y": 2401.19873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4981.15087890625, + "y": 2402.656005859375, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 11, + "x": 4876.5498046875, + "y": 2255.20703125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 12, + "x": 4893.53466796875, + "y": 2276.2255859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 4928.1015625, + "y": 2298.161376953125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 14, + "x": 4939.34375, + "y": 2314.4638671875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 15, + "x": 4955.54638671875, + "y": 2319.05517578125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 16, + "x": 4959.6279296875, + "y": 2324.054931640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 4957.6279296875, + "y": 2324.054931640625, + "type": "path", + "move_mode": "walk", + "action": "fight" + }, + { + "id": 17, + "x": 4957.6279296875, + "y": 2324.054931640625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫12-须弥沙漠.json b/repo/pathing/遗迹守卫/遗迹守卫12-须弥沙漠.json new file mode 100644 index 00000000..a1a28d7a --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫12-须弥沙漠.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "遗迹守卫12-须弥沙漠", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4592.150390625, + "y": -647.509765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4591.29931640625, + "y": -636.078125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 4588.57421875, + "y": -613.580078125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 4586.9501953125, + "y": -576.478515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4582.30615234375, + "y": -544.46044921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4583.0107421875, + "y": -511.43603515625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 4590.02978515625, + "y": -491.34326171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4590.92041015625, + "y": -493.81689453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 4589.18701171875, + "y": -495.01220703125, + "action": "fight", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫12-须弥沙漠2.json b/repo/pathing/遗迹守卫/遗迹守卫12-须弥沙漠2.json new file mode 100644 index 00000000..d851cfa8 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫12-须弥沙漠2.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "遗迹守卫12-须弥沙漠2", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5759.4990234375, + "y": -1307.73486328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5773.70654296875, + "y": -1294.60595703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 5776.49853515625, + "y": -1281.38916015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 5770.3857421875, + "y": -1256.93212890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 5752.888671875, + "y": -1223.4208984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 5740.7353515625, + "y": -1185.04638671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 5724.2607421875, + "y": -1166.6875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 5712.37548828125, + "y": -1190.1259765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 5703.33544921875, + "y": -1212.42822265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 5700.0400390625, + "y": -1223.48291015625, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫13.json b/repo/pathing/遗迹守卫/遗迹守卫13.json new file mode 100644 index 00000000..c19c00b4 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫13.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "遗迹守卫13", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1045.5224609375, + "y": 950.583984375 + }, + { + "id": 2, + "x": 1058.1015625, + "y": 959.70458984375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 1088.7529296875, + "y": 982.99755859375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": 1094.4755859375, + "y": 970.66455078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 1076.130859375, + "y": 975.6953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1079.263671875, + "y": 984.4755859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1110.3603515625, + "y": 981.8662109375, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 9, + "x": 1108.818359375, + "y": 1000.3193359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1113.0712890625, + "y": 1007.28369140625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 11, + "x": 1117.4638671875, + "y": 1016.88330078125, + "type": "path", + "move_mode": "run", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/遗迹守卫/遗迹守卫14.json b/repo/pathing/遗迹守卫/遗迹守卫14.json new file mode 100644 index 00000000..4d8e0713 --- /dev/null +++ b/repo/pathing/遗迹守卫/遗迹守卫14.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "遗迹守卫14", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4217.888671875, + "y": -2397.8349609375 + }, + { + "id": 2, + "x": -4215.853515625, + "y": -2400.166015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4221.037109375, + "y": -2402.3984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4283.529296875, + "y": -2428.38671875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": -4288.61328125, + "y": -2431.673828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": -4289.935546875, + "y": -2431.576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4288.802734375, + "y": -2432.6669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -4290.119140625, + "y": -2429.890625, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ 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..0c7e947e Binary files /dev/null and b/repo/pathing/颗粒果/icon.ico differ diff --git a/repo/pathing/颗粒果/颗粒果01-回声之子-纳塔5个.json b/repo/pathing/颗粒果/颗粒果01-回声之子-纳塔5个.json new file mode 100644 index 00000000..6584fb7c --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果01-回声之子-纳塔5个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "颗粒果01-回声之子-纳塔5个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 7759.6630859375, + "y": -1401.8046875 + }, + { + "id": 2, + "x": 7746.3623046875, + "y": -1413.41064453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 7749.185546875, + "y": -1417.72021484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 7791.32666015625, + "y": -1466.4375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 7781.33251953125, + "y": -1473.4560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 7787.12646484375, + "y": -1484.50732421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7781.78564453125, + "y": -1495.05322265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7780.75146484375, + "y": -1502.0263671875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果02-隆崛坡-纳塔6个.json b/repo/pathing/颗粒果/颗粒果02-隆崛坡-纳塔6个.json new file mode 100644 index 00000000..e41810f4 --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果02-隆崛坡-纳塔6个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "颗粒果02-隆崛坡-纳塔6个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7633.96240234375, + "y": -1646.576171875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 7670.66015625, + "y": -1669.544921875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 7680.27392578125, + "y": -1675.43359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 7708.3779296875, + "y": -1647.291015625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 5, + "x": 7705.5390625, + "y": -1646.291015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 7665.81689453125, + "y": -1608.9130859375, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 7, + "x": 7665.65380859375, + "y": -1589.1083984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 7653.96142578125, + "y": -1589.48193359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 7650.955078125, + "y": -1589.33642578125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果03-祖遗庙宇-纳塔3个.json b/repo/pathing/颗粒果/颗粒果03-祖遗庙宇-纳塔3个.json new file mode 100644 index 00000000..ff92ac21 --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果03-祖遗庙宇-纳塔3个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "颗粒果03-祖遗庙宇-纳塔3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7746.373046875, + "y": -2250.6748046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 7782.2529296875, + "y": -2266.275390625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 3, + "x": 7793.9541015625, + "y": -2275.361328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 7791.62841796875, + "y": -2277.3837890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 7789.0400390625, + "y": -2294.275390625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果04-悬木人-纳塔26个.json b/repo/pathing/颗粒果/颗粒果04-悬木人-纳塔26个.json new file mode 100644 index 00000000..58fc0635 --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果04-悬木人-纳塔26个.json @@ -0,0 +1,524 @@ +{ + "info": { + "name": "颗粒果04-悬木人-纳塔26个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8670.287109375, + "y": -2064.4697265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 8668.6728515625, + "y": -2069.66015625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 8659.47265625, + "y": -2079.5751953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 8641.9140625, + "y": -2086.71484375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 8626.265625, + "y": -2087.994140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 8656.4052734375, + "y": -2096.1865234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 8671.7451171875, + "y": -2087.8486328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 8691.474609375, + "y": -2062.9443359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 8695.12890625, + "y": -2047.25634765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 8725.833984375, + "y": -2015.396484375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 8719.6279296875, + "y": -2043.1171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 12, + "x": 8720.98046875, + "y": -2072.7685546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 13, + "x": 8735.7041015625, + "y": -2068.6015625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 14, + "x": 8734.099609375, + "y": -2089.83984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 15, + "x": 8749.5087890625, + "y": -2097.6181640625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 16, + "x": 8744.0322265625, + "y": -2105.6044921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 17, + "x": 8757.4404296875, + "y": -2123.4375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 18, + "x": 8750.50390625, + "y": -2135.044921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": 8773.9765625, + "y": -2181.7333984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": 8771.0029296875, + "y": -2183.3623046875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 21, + "x": 8780.197265625, + "y": -2181.015625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 22, + "x": 8779.4736328125, + "y": -2193.8369140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 23, + "x": 8780.0947265625, + "y": -2168.69921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 24, + "x": 8789.7421875, + "y": -2155.1416015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 8795.6044921875, + "y": -2155.0615234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 26, + "x": 8808.28515625, + "y": -2142.5751953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 27, + "x": 8858.294921875, + "y": -2122.923828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 28, + "x": 8860.62890625, + "y": -2120.7529296875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 29, + "x": 8847.728515625, + "y": -2103.470703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 30, + "x": 8855.9267578125, + "y": -2094.3994140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 31, + "x": 8881.1787109375, + "y": -2128.4677734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 32, + "x": 8893.4072265625, + "y": -2153.087890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 33, + "x": 8903.90234375, + "y": -2165.3740234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 34, + "x": 8918.7548828125, + "y": -2160.16015625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 35, + "x": 8924.6884765625, + "y": -2131.984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 36, + "x": 8969.154296875, + "y": -2152.8466796875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 37, + "x": 8969.8642578125, + "y": -2157.072265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 38, + "x": 8967.427734375, + "y": -2163.54296875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 39, + "x": 8966.9951171875, + "y": -2162.6396484375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 40, + "x": 8969.744140625, + "y": -2170.7119140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 41, + "x": 8974.4814453125, + "y": -2170.720703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 42, + "x": 8987.9697265625, + "y": -2175.5068359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 43, + "x": 8994.1083984375, + "y": -2172.076171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 44, + "x": 8990.90625, + "y": -2184.5205078125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 45, + "x": 9013.7900390625, + "y": -2187.37109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 46, + "x": 9033.97265625, + "y": -2182.162109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 47, + "x": 9033.83203125, + "y": -2179.1279296875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 48, + "x": 9037.1171875, + "y": -2166.3984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 49, + "x": 9049.3857421875, + "y": -2168.09375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 50, + "x": 9082.138671875, + "y": -2199.1171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 51, + "x": 9117.8818359375, + "y": -2219.8984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 52, + "x": 9150.2138671875, + "y": -2215.6044921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 53, + "x": 9151.908203125, + "y": -2213.0126953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 54, + "x": 9172.1708984375, + "y": -2208.9990234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 55, + "x": 9160.173828125, + "y": -2164.5556640625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 56, + "x": 9141.974609375, + "y": -2175.37109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 57, + "x": 9145.083984375, + "y": -2153.7265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 58, + "x": 9138.2421875, + "y": -2160.009765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 59, + "x": 9103.11328125, + "y": -2156.2763671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 60, + "x": 9092.759765625, + "y": -2151.3876953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 61, + "x": 9085.7060546875, + "y": -2128.025390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 62, + "x": 9066.994140625, + "y": -2122.2138671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 63, + "x": 9027.0556640625, + "y": -2100.2568359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 64, + "x": 9014.4677734375, + "y": -2087.6875, + "action": "", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果05-圣火竞技场-纳塔6个.json b/repo/pathing/颗粒果/颗粒果05-圣火竞技场-纳塔6个.json new file mode 100644 index 00000000..c5980348 --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果05-圣火竞技场-纳塔6个.json @@ -0,0 +1,164 @@ +{ + "info": { + "name": "颗粒果05-圣火竞技场-纳塔6个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8978.3232421875, + "y": -1872.337890625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 8949.5302734375, + "y": -1871.841796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 8938.4814453125, + "y": -1898.07177734375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 8931.8310546875, + "y": -1905.916015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 8953.6103515625, + "y": -1930.89208984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 8964.24609375, + "y": -1943.49755859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 8965.3818359375, + "y": -1949.63623046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 8975.3828125, + "y": -1973.4697265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 8990.7724609375, + "y": -1978.9833984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 8956.7802734375, + "y": -1974.38037109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 8937.728515625, + "y": -1986.462890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 8929.7216796875, + "y": -2005.72021484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 8903.87890625, + "y": -2006.76416015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 8898.9951171875, + "y": -1998.86865234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 8879.4296875, + "y": -1989.6728515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 8946.658203125, + "y": -2012.54296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 8968.2490234375, + "y": -2023.96142578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 8964.15625, + "y": -2043.7861328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 8954.408203125, + "y": -2050.234375, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果06-悬木人-纳塔13个.json b/repo/pathing/颗粒果/颗粒果06-悬木人-纳塔13个.json new file mode 100644 index 00000000..be24a11a --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果06-悬木人-纳塔13个.json @@ -0,0 +1,196 @@ +{ + "info": { + "name": "颗粒果06-悬木人-纳塔13个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8597.3916015625, + "y": -1927.76123046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 8619.08984375, + "y": -1946.802734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 8615.712890625, + "y": -1951.53125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 8610.701171875, + "y": -1951.9482421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 8623.8017578125, + "y": -1960.7412109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 8625.3095703125, + "y": -1962.0234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 8634.4375, + "y": -1958.74365234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 8635.951171875, + "y": -1986.64013671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 8636.0361328125, + "y": -2024.96875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 8638.8203125, + "y": -2032.10107421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 8655.80078125, + "y": -2002.9150390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 12, + "x": 8655.56640625, + "y": -2001.03369140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 13, + "x": 8671.8896484375, + "y": -1985.66845703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 14, + "x": 8681.6494140625, + "y": -1996.49365234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 15, + "x": 8685.3095703125, + "y": -1999.64453125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 16, + "x": 8708.169921875, + "y": -1998.0615234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 17, + "x": 8707.603515625, + "y": -1992.326171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 18, + "x": 8705.2685546875, + "y": -1962.0693359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": 8688.8388671875, + "y": -1943.126953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": 8741.2275390625, + "y": -1972.51318359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 21, + "x": 8757.2451171875, + "y": -1923.69921875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 22, + "x": 8761.541015625, + "y": -1923.4375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 8749.9501953125, + "y": -1905.55615234375, + "action": "", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果07-圣火竞技场-纳塔3个.json b/repo/pathing/颗粒果/颗粒果07-圣火竞技场-纳塔3个.json new file mode 100644 index 00000000..a1863f8a --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果07-圣火竞技场-纳塔3个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "颗粒果07-圣火竞技场-纳塔3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8908.94921875, + "y": -1638.97021484375 + }, + { + "id": 2, + "x": 8861.19140625, + "y": -1668.17333984375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 8859.3046875, + "y": -1669.27978515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 8858.3310546875, + "y": -1669.3740234375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果08-柴薪之丘(中危)-纳塔10个.json b/repo/pathing/颗粒果/颗粒果08-柴薪之丘(中危)-纳塔10个.json new file mode 100644 index 00000000..f5249300 --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果08-柴薪之丘(中危)-纳塔10个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "颗粒果08-柴薪之丘-纳塔10个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8706.4453125, + "y": -1574.82470703125 + }, + { + "id": 2, + "x": 8625.388671875, + "y": -1567.92578125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 8627.419921875, + "y": -1572.69873046875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 8641.095703125, + "y": -1608.7880859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 8644.896484375, + "y": -1613.30029296875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 8619.2646484375, + "y": -1660.3310546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 8646.509765625, + "y": -1702.8173828125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": 8640.90234375, + "y": -1703.42333984375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 9, + "x": 8634.8193359375, + "y": -1697.62060546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": 8603.330078125, + "y": -1699.6298828125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 11, + "x": 8594.5322265625, + "y": -1723.44287109375, + "type": "path", + "move_mode": "run", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果09-柴薪之丘(高危)-纳塔18个.json b/repo/pathing/颗粒果/颗粒果09-柴薪之丘(高危)-纳塔18个.json new file mode 100644 index 00000000..67abf2ee --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果09-柴薪之丘(高危)-纳塔18个.json @@ -0,0 +1,236 @@ +{ + "info": { + "name": "颗粒果09(高危)-柴薪之丘-纳塔18个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 9033.4482421875, + "y": -1373.1171875 + }, + { + "id": 2, + "x": 8987.2119140625, + "y": -1409.7431640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 8986.4736328125, + "y": -1434.533203125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 8980.8154296875, + "y": -1435.27783203125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 8966.6240234375, + "y": -1449.75927734375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 8966.892578125, + "y": -1453.79833984375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 8945.048828125, + "y": -1534.01806640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": 8941.0712890625, + "y": -1531.189453125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 9, + "x": 8924.6494140625, + "y": -1518.1845703125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": 8922.857421875, + "y": -1521.8056640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 11, + "x": 8918.3955078125, + "y": -1522.4580078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": 8913.40625, + "y": -1492.765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 13, + "x": 8884.8515625, + "y": -1470.36376953125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 14, + "x": 8883.947265625, + "y": -1470.7529296875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 15, + "x": 8858.6494140625, + "y": -1437.17041015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 16, + "x": 8859.853515625, + "y": -1416.2509765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 17, + "x": 8857.072265625, + "y": -1410.6748046875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 18, + "x": 8859.998046875, + "y": -1393.2880859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 19, + "x": 8866.51171875, + "y": -1390.49462890625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 20, + "x": 8877.9873046875, + "y": -1387.28857421875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 21, + "x": 8847.455078125, + "y": -1371.990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 8833.1298828125, + "y": -1366.88720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 8822.458984375, + "y": -1354.8837890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 8813.1474609375, + "y": -1336.95263671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 8810.10546875, + "y": -1336.7548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 8809.833984375, + "y": -1353.55615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 8784.8408203125, + "y": -1368.44677734375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 28, + "x": 8781.6533203125, + "y": -1371.12158203125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/颗粒果/颗粒果10-烟谜主-纳塔10个.json b/repo/pathing/颗粒果/颗粒果10-烟谜主-纳塔10个.json new file mode 100644 index 00000000..53c0f581 --- /dev/null +++ b/repo/pathing/颗粒果/颗粒果10-烟谜主-纳塔10个.json @@ -0,0 +1,140 @@ +{ + "info": { + "name": "颗粒果10-烟谜主-纳塔10个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9310.7353515625, + "y": -1423.09716796875, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9304.458984375, + "y": -1452.4091796875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 9316.7548828125, + "y": -1522.64208984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 9318.7451171875, + "y": -1521.60400390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 9371.951171875, + "y": -1537.4052734375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 9372.8447265625, + "y": -1518.06005859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 9363.361328125, + "y": -1510.31982421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 9374.4072265625, + "y": -1491.40576171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 9393.515625, + "y": -1480.10009765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 9410.74609375, + "y": -1487.05126953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 9418.1298828125, + "y": -1494.138671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 9422.1220703125, + "y": -1492.57861328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 9457.966796875, + "y": -1482.17041015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 9474.36328125, + "y": -1468.65625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 9477.771484375, + "y": -1469.484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 9526.404296875, + "y": -1479.033203125, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/铭记之谷附近蒲公英.json b/repo/pathing/颗粒果/颗粒果11-花羽会-纳塔6个.json similarity index 56% rename from repo/pathing/蒲公英/铭记之谷附近蒲公英.json rename to repo/pathing/颗粒果/颗粒果11-花羽会-纳塔6个.json index a2fd5bbe..264c1a15 100644 --- a/repo/pathing/蒲公英/铭记之谷附近蒲公英.json +++ b/repo/pathing/颗粒果/颗粒果11-花羽会-纳塔6个.json @@ -1,8 +1,8 @@ { "info": { - "name": "铭记之谷附近蒲公英", + "name": "颗粒果11-花羽会-纳塔6个", "type": "collect", - "author": "", + "author": "不瘦五十斤不改名", "version": "1.0", "description": "", "bgiVersion": "0.35.1" @@ -10,65 +10,65 @@ "positions": [ { "id": 1, - "x": -663.646484375, - "y": 1709.59716796875, + "action": "", + "move_mode": "walk", "type": "teleport", - "move_mode": "walk", - "action": "" - }, - { - "id": 2, - "x": -655.67578125, - "y": 1714.53857421875, - "type": "path", - "move_mode": "walk", - "action": "" + "x": 9587.4140625, + "y": -1279.25634765625 }, { "id": 3, - "x": -587.94140625, - "y": 1708.66943359375, + "x": 9610.0263671875, + "y": -1247.9453125, "type": "path", "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9621.5234375, + "y": -1225.89697265625, + "type": "path", + "move_mode": "walk", "action": "" }, { "id": 4, - "x": -587.94140625, - "y": 1708.66943359375, + "x": 9661.013671875, + "y": -1267.296875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 5, - "x": -547.03515625, - "y": 1709.76708984375, + "x": 9674.8427734375, + "y": -1267.48046875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 6, - "x": -536.212890625, - "y": 1696.3515625, + "x": 9694.0908203125, + "y": -1248.0390625, "type": "path", "move_mode": "walk", - "action": "elemental_skill" + "action": "" }, { "id": 7, - "x": -535.59375, - "y": 1695.5556640625, - "type": "target", + "x": 9697.849609375, + "y": -1253.1845703125, + "type": "path", "move_mode": "walk", "action": "" }, { "id": 8, - "x": -534.134765625, - "y": 1696.30224609375, - "type": "target", + "x": 9698.798828125, + "y": -1253.5771484375, + "type": "path", "move_mode": "walk", "action": "" } diff --git a/repo/pathing/风役人/枫丹风役人01.json b/repo/pathing/风役人/枫丹风役人01.json new file mode 100644 index 00000000..824d1909 --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人01.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "枫丹风役人01", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4541.71, + "y": 4230.11, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4572.286547716335, + "y": 4239.75, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 4612.768160355943, + "y": 4262, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 4660, + "y": 4280, + "action": "fight", + "move_mode": "run", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人02.json b/repo/pathing/风役人/枫丹风役人02.json new file mode 100644 index 00000000..13a8ae53 --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人02.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "枫丹风役人02", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4660, + "y": 4280, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 2, + "x": 4772.585580677382, + "y": 4272, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 4823.562426223554, + "y": 4298, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人03.json b/repo/pathing/风役人/枫丹风役人03.json new file mode 100644 index 00000000..439b8d64 --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人03.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "枫丹风役人03", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4823.562426223554, + "y": 4298, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 2, + "x": 4844.334899664033, + "y": 4306.5, + "action": "", + "move_mode": "swim", + "type": "path" + }, + { + "id": 3, + "x": 4898.845703125, + "y": 4357.0478515625, + "action": "fight", + "move_mode": "swim", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人04.json b/repo/pathing/风役人/枫丹风役人04.json new file mode 100644 index 00000000..432c8057 --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人04.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "枫丹风役人04", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4906.25146484375, + "y": 4358.3017578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 2, + "x": 4911.82373046875, + "y": 4390.6103515625, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人05.json b/repo/pathing/风役人/枫丹风役人05.json new file mode 100644 index 00000000..995491ef --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人05.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "枫丹风役人05", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4911.5413148097705, + "y": 4388.25, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 2, + "x": 4983.016344320348, + "y": 4519, + "action": "fight", + "move_mode": "run", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人06.json b/repo/pathing/风役人/枫丹风役人06.json new file mode 100644 index 00000000..b6ca63c6 --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人06.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "枫丹风役人06", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4986.66, + "y": 4465.68, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5098.266503223464, + "y": 4527, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人07.json b/repo/pathing/风役人/枫丹风役人07.json new file mode 100644 index 00000000..be382099 --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人07.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "枫丹风役人07", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5098.266503223464, + "y": 4527, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 2, + "x": 5072.810496685735, + "y": 4615.25, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人08.json b/repo/pathing/风役人/枫丹风役人08.json new file mode 100644 index 00000000..bf71c22c --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人08.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "枫丹风役人08", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4505.67, + "y": 4709.36, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4551.2998046875, + "y": 4730.78662109375, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4490.741355877758, + "y": 4635.979836495737, + "action": "fight", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 4390, + "y": 4590, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 4385.789026812108, + "y": 4622.979836495737, + "action": "fight", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人09.json b/repo/pathing/风役人/枫丹风役人09.json new file mode 100644 index 00000000..11a5e681 --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人09.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "枫丹风役人09", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4146.7, + "y": 2602.34, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4040.9541015625, + "y": 2562.65283203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4050.28125, + "y": 2562.45654296875, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4016.609643149006, + "y": 2588, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 4044.21484375, + "y": 2627.840087890625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 4044.21484375, + "y": 2627.840087890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4039.19140625, + "y": 2633.33544921875, + "action": "fight", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人10.json b/repo/pathing/风役人/枫丹风役人10.json new file mode 100644 index 00000000..21a14ccd --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人10.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "枫丹风役人10", + "type": "collect", + "author": "XS", + "version": "1.0", + "description": "第一个点位高危", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3919.09, + "y": 2570.76, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3905.0517570144366, + "y": 2530.5, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 3891.5578861345675, + "y": 2526.5, + "action": "fight", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 3872.3166258058664, + "y": 2492.75, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 3936.2875692363577, + "y": 2399, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3944.2099609375, + "y": 2395.286865234375, + "action": "fight", + "move_mode": "climb", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/风役人/枫丹风役人11.json b/repo/pathing/风役人/枫丹风役人11.json new file mode 100644 index 00000000..9ea11c40 --- /dev/null +++ b/repo/pathing/风役人/枫丹风役人11.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "枫丹风役人11", + "type": "collect", + "author": "迷茫之途", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3811.6484375, + "y": 4952.52294921875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3862.6982421875, + "y": 4941.82958984375, + "action": "fight", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-天衡山上.json b/repo/pathing/骗骗花/骗骗花-天衡山上.json new file mode 100644 index 00000000..75f460e8 --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-天衡山上.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "骗骗花-天衡山上", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "骗骗花", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 622, + "y": -298.4753109036992 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 594, + "y": -345.49948564382703 + }, + { + "id": 3, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": 593.75, + "y": -356.75192883564887 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-归离院右下.json b/repo/pathing/骗骗花/骗骗花-归离院右下.json new file mode 100644 index 00000000..f1f37078 --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-归离院右下.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "骗骗花-归离院右下", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 38, + "y": 127.71476660215467 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 32.25, + "y": 306.7833045621974 + }, + { + "id": 3, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": 46.75, + "y": 340.5028289589509 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-归离院右下2.json b/repo/pathing/骗骗花/骗骗花-归离院右下2.json new file mode 100644 index 00000000..1504b735 --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-归离院右下2.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "骗骗花-归离院右下2", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "骗骗花", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 36.25, + "y": 129.88452703917756 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": -29.25, + "y": 132.00617227407474 + }, + { + "id": 3, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -48.75, + "y": 143.51195878102044 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-渌华池右.json b/repo/pathing/骗骗花/骗骗花-渌华池右.json new file mode 100644 index 00000000..75a23c85 --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-渌华池右.json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "骗骗花-渌华池右", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 260, + "y": -26.89198520368518 + }, + { + "id": 2, + "x": 273.5, + "y": -22.253729082253813, + "move_mode": "run" + }, + { + "id": 3, + "x": 274, + "y": 167.01620221944722, + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "action": "", + "move_mode": "run", + "type": "path", + "x": 293, + "y": 171.2098573185549 + }, + { + "id": 5, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 308, + "y": 195.2222018667053 + }, + { + "id": 6, + "action": "fight", + "move_mode": "walk", + "type": "path", + "x": 312.5, + "y": 186.24292760262233 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-绝云间右上.json b/repo/pathing/骗骗花/骗骗花-绝云间右上.json new file mode 100644 index 00000000..8eb8104b --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-绝云间右上.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "骗骗花-绝云间右上", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "骗骗", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 718.9648083433167, + "y": 1070.4321049851733 + }, + { + "id": 2, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": 713.2501454200683, + "y": 1079.500257178086 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-翠块坡下.json b/repo/pathing/骗骗花/骗骗花-翠块坡下.json new file mode 100644 index 00000000..4452746c --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-翠块坡下.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "骗骗花-翠块坡下", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 838, + "y": 237.49490223818248, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 3, + "x": 854, + "y": 197.24972360275206, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 886, + "y": 213.482557690033, + "action": "fight", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-翠块坡左下.json b/repo/pathing/骗骗花/骗骗花-翠块坡左下.json new file mode 100644 index 00000000..c56fbe7d --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-翠块坡左下.json @@ -0,0 +1,67 @@ +{ + "info": { + "name": "骗骗花-翠块坡左下", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "骗骗花", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1142.999315123856, + "y": 137.02542854685362 + }, + { + "id": 2, + "action": "", + "move_mode": "run", + "type": "path", + "x": 1101.7502568285545, + "y": 111.5003316766979 + }, + { + "id": 3, + "x": 1102.5000526827807, + "y": 135.9985627343085, + "move_mode": "run", + "type": "path", + "action": "fight" + }, + { + "id": 5, + "action": "", + "move_mode": "run", + "type": "path", + "x": 1071.0001580483404, + "y": 188.5021006190882 + }, + { + "id": 6, + "x": 1044.4998946344404, + "y": 213.0014372656915, + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "action": "", + "move_mode": "run", + "type": "path", + "x": 989.9985465670761, + "y": 187.4956882029246 + }, + { + "id": 8, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": 972.0003687794615, + "y": 183.9988944110064 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-翠块坡左下2.json b/repo/pathing/骗骗花/骗骗花-翠块坡左下2.json new file mode 100644 index 00000000..8c278bad --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-翠块坡左下2.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "骗骗花-翠块坡左下2", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "骗骗花", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1148, + "y": 133.24894969045636 + }, + { + "id": 2, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": 1105.7509812167827, + "y": 37.49115528805123 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-誓言峡.json b/repo/pathing/骗骗花/骗骗花-誓言峡.json new file mode 100644 index 00000000..4a308eed --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-誓言峡.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "骗骗花-誓言峡", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "骗骗花", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2004, + "y": 1441.1992073279234 + }, + { + "id": 2, + "action": "", + "move_mode": "run", + "type": "path", + "x": -1970, + "y": 1466.252700369907 + }, + { + "id": 3, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": -1937.5, + "y": 1470.9645094240677 + }, + { + "id": 4, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -1949, + "y": 1497.0050149726867 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/骗骗花/骗骗花-风起地右.json b/repo/pathing/骗骗花/骗骗花-风起地右.json new file mode 100644 index 00000000..22971d4e --- /dev/null +++ b/repo/pathing/骗骗花/骗骗花-风起地右.json @@ -0,0 +1,66 @@ +{ + "info": { + "name": "骗骗花-风起地右", + "type": "collect", + "author": "san", + "version": "1.0", + "description": "骗骗花", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1541.5, + "y": 1981.9061299984405 + }, + { + "id": 2, + "action": "", + "move_mode": "fly", + "type": "path", + "x": -1596, + "y": 2064.9691386296236 + }, + { + "id": 3, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": -1612, + "y": 2078.4871410956766 + }, + { + "id": 4, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -1623.5, + "y": 2091.5074581645076 + }, + { + "id": 5, + "x": -1631.5, + "y": 2069.002828958952, + "move_mode": "run" + }, + { + "id": 6, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": -1625.5, + "y": 1994.9958851506162 + }, + { + "id": 7, + "action": "fight", + "move_mode": "run", + "type": "path", + "x": -1618, + "y": 1977.0095155891995 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫01-稻妻城山洞-6个(纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫01-稻妻城山洞-6个(纳西妲).json new file mode 100644 index 00000000..1e26071a --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫01-稻妻城山洞-6个(纳西妲).json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "鬼兜虫-稻妻城山洞-6个(纳西妲)", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4494.103515625, + "y": -3216.6337890625 + }, + { + "id": 2, + "x": -4532.052734375, + "y": -3203.453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -4532.70703125, + "y": -3224.4375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4529.373046875, + "y": -3235.9619140625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": -4525.8046875, + "y": -3250.236328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -4537.41796875, + "y": -3279.84375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4583.248046875, + "y": -3303.5732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -4604.541015625, + "y": -3307.361328125, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": -4607.154296875, + "y": -3333.1943359375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 10, + "x": -4608.677734375, + "y": -3352.08203125, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫02-鸣神大社-6个(纳西妲、地图缩放1.8).json b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫02-鸣神大社-6个(纳西妲、地图缩放1.8).json new file mode 100644 index 00000000..76b86893 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫02-鸣神大社-6个(纳西妲、地图缩放1.8).json @@ -0,0 +1,268 @@ +{ + "info": { + "name": "鬼兜虫-鸣神大社-6个(纳西妲)", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "x": -4375.646484375, + "y": -2498.1669921875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4371.193359375, + "y": -2500.7333984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -4382.708984375, + "y": -2511.427734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -4398.060546875, + "y": -2510.8291015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -4420.6328125, + "y": -2501.1416015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -4426.125, + "y": -2487.2177734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -4420.46484375, + "y": -2472.48828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -4419.197265625, + "y": -2462.3466796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -4428.380859375, + "y": -2471.0908203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -4433.4140625, + "y": -2481.623046875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": -4441.712890625, + "y": -2474.2490234375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 12, + "x": -4441.9765625, + "y": -2474.07421875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 13, + "x": -4440.759765625, + "y": -2472.73828125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": -4442.693359375, + "y": -2482.7646484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -4440.625, + "y": -2494.7392578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -4475.30859375, + "y": -2555.8330078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 17, + "x": -4472.666015625, + "y": -2554.466796875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": -4474.0390625, + "y": -2521.482421875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 19, + "x": -4473.935546875, + "y": -2520.517578125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 20, + "x": -4473.74609375, + "y": -2517.56640625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 21, + "x": -4525.203125, + "y": -2524.25, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 22, + "x": -4529.275390625, + "y": -2525.4375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 23, + "x": -4515.13671875, + "y": -2527.29296875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": -4507.3359375, + "y": -2519.4267578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": -4502.97265625, + "y": -2520.2841796875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 27, + "x": -4496.18359375, + "y": -2512.5478515625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 28, + "x": -4492.25, + "y": -2504.63671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": -4482.998046875, + "y": -2498.6669921875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 30, + "x": -4470.3125, + "y": -2492.2080078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": -4460.61328125, + "y": -2476.765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": -4462.865234375, + "y": -2461.146484375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 33, + "x": -4463.6875, + "y": -2458.29296875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫03-砂流之庭-1个(纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫03-砂流之庭-1个(纳西妲).json new file mode 100644 index 00000000..904126f2 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫03-砂流之庭-1个(纳西妲).json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "鬼兜虫-砂流之庭-1个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4408.83984375, + "y": -2395.3701171875 + }, + { + "id": 2, + "x": -4404.15234375, + "y": -2395.0771484375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫01-九条阵屋-4个(纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫04-九条阵屋-4个(纳西妲).json similarity index 100% rename from repo/pathing/鬼兜虫/鬼兜虫01-九条阵屋-4个(纳西妲).json rename to repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫04-九条阵屋-4个(纳西妲).json diff --git a/repo/pathing/鬼兜虫/鬼兜虫02-踏鞴砂(东北侧)-1个(纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫05-踏鞴砂(东北侧)-1个(纳西妲).json similarity index 100% rename from repo/pathing/鬼兜虫/鬼兜虫02-踏鞴砂(东北侧)-1个(纳西妲).json rename to repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫05-踏鞴砂(东北侧)-1个(纳西妲).json diff --git a/repo/pathing/鬼兜虫/鬼兜虫07-踏鞴砂(公义)-1个(需要纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫06-踏鞴砂(公义)-1个(纳西妲).json similarity index 100% rename from repo/pathing/鬼兜虫/鬼兜虫07-踏鞴砂(公义)-1个(需要纳西妲).json rename to repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫06-踏鞴砂(公义)-1个(纳西妲).json diff --git a/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫07-踏鞴砂(中部)-4个(纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫07-踏鞴砂(中部)-4个(纳西妲).json new file mode 100644 index 00000000..8007f8d9 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫(纳西妲采集)@起个名字好难/鬼兜虫07-踏鞴砂(中部)-4个(纳西妲).json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "鬼兜虫-踏鞴砂(中部)-4个(纳西妲)", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3157.6533203125, + "y": -3890.3642578125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3153.29296875, + "y": -3853.634765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3129.6025390625, + "y": -3833.5126953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -3106.6357421875, + "y": -3788.421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -3095.0810546875, + "y": -3785.42578125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -3091.474609375, + "y": -3787.1005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -3082.599609375, + "y": -3770.7568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -3089.775390625, + "y": -3764.703125, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ 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..248de0d9 Binary files /dev/null and b/repo/pathing/鳅鳅宝玉/icon.ico differ diff --git a/repo/pathing/鳅鳅宝玉/狄花洲13.json b/repo/pathing/鳅鳅宝玉/狄花洲13.json new file mode 100644 index 00000000..5aace740 --- /dev/null +++ b/repo/pathing/鳅鳅宝玉/狄花洲13.json @@ -0,0 +1,284 @@ +{ + "info": { + "name": "狄花洲13", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "带早柚或瑶瑶,实际上只能拿到6只左右", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 253.146484375, + "y": 1285.158203125 + }, + { + "id": 2, + "x": 269.3330078125, + "y": 1295.62158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 318.3349609375, + "y": 1311.2138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 341.0244140625, + "y": 1331.32421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 349.9150390625, + "y": 1327.0732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 351.296875, + "y": 1325.744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 350.232421875, + "y": 1326.98876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 1, + "x": 253.1474609375, + "y": 1285.18310546875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 249.568359375, + "y": 1284.8857421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 201.158203125, + "y": 1245.2465820312502, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 199.9482421875, + "y": 1247.63037109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 198.9248046875, + "y": 1253.4501953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 199.59375, + "y": 1255.42529296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 210.400390625, + "y": 1250.4697265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 212.2978515625, + "y": 1214.86572265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 238.3125, + "y": 1168.330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 246.7978515625, + "y": 1142.11669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 265.810546875, + "y": 1149.7353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 268.7861328125, + "y": 1151.31005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 277.6669921875, + "y": 1135.17431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 303.478515625, + "y": 1097.90283203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 320.0107421875, + "y": 1085.6318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 319.443359375, + "y": 1080.3984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 318.103515625, + "y": 1077.478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 292.8876953125, + "y": 1074.03515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 254.666015625, + "y": 1073.33544921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 239.0947265625, + "y": 1066.2734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 237.185546875, + "y": 1065.9169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 233.5654296875, + "y": 1067.2177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 230.546875, + "y": 1067.8544921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 228.6064453125, + "y": 1068.24365234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 221.49609375, + "y": 1072.69482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 219.6142578125, + "y": 1073.2744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 217.734375, + "y": 1074.12548828125, + "type": "path", + "move_mode": "walk", + "action": "" + } +] +} \ No newline at end of file diff --git a/repo/pathing/鳅鳅宝玉/石门2.json b/repo/pathing/鳅鳅宝玉/石门2.json new file mode 100644 index 00000000..3e503504 --- /dev/null +++ b/repo/pathing/鳅鳅宝玉/石门2.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "石门2", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "带早柚或瑶瑶", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 253.138671875, + "y": 1285.17626953125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 264.8701171875, + "y": 1318.50341796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 287.97265625, + "y": 1359.87890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 298.8828125, + "y": 1418.49853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 300.9150390625, + "y": 1438.3486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 278.6318359375, + "y": 1456.58203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "action": "", + "move_mode": "walk", + "type": "path", + "x": 289.3515625, + "y": 1464.72216796875 + }, + { + "id": 8, + "x": 292.2470703125, + "y": 1490.77197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 257.5869140625, + "y": 1502.93408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 226.99609375, + "y": 1498.65625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 190.23828125, + "y": 1478.91357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 186.1904296875, + "y": 1466.7900390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 190.03125, + "y": 1451.95458984375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鳗肉/1沙漠合集-17.json b/repo/pathing/鳗肉/1沙漠合集-17.json new file mode 100644 index 00000000..fbbd0678 --- /dev/null +++ b/repo/pathing/鳗肉/1沙漠合集-17.json @@ -0,0 +1,236 @@ +{ + "info": { + "name": "沙漠合集-15", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5584.05078125, + "y": -404.845703125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 3, + "x": 5588.90869140625, + "y": -403.05517578125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 5625.49609375, + "y": -365.20361328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 5622.6982421875, + "y": -363.88720703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 4272.8935546875, + "y": -520.64990234375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 7, + "x": 4271.21044921875, + "y": -516.96875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4264.2060546875, + "y": -501.24853515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 4265.6875, + "y": -474.0419921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4268.78125, + "y": -459.3935546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 4571.99658203125, + "y": -1072.0322265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 12, + "x": 4572.685546875, + "y": -1085.1376953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 4571.33740234375, + "y": -1079.42431640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 4574.42041015625, + "y": -1079.9931640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 4409.75927734375, + "y": -1874.6201171875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 14, + "x": 4425.99609375, + "y": -1834.416015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 4434.58642578125, + "y": -1828.8916015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 4437.30859375, + "y": -1824.9443359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 4434.181640625, + "y": -1823.42626953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 4437.576171875, + "y": -1824.56982421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 4433.26416015625, + "y": -1823.16015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": 4795.6328125, + "y": -2576.3681640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 19, + "x": 4804.66650390625, + "y": -2588.15625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 4805.43994140625, + "y": -2603.34765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 4806.068359375, + "y": -2625.2265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": 4808.533203125, + "y": -2638.6708984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 23, + "x": 4826.9931640625, + "y": -2654.482421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 4834.7138671875, + "y": -2657.75, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": 4837.1220703125, + "y": -2663.138671875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/02-蒲公英-山脊守望西10个.json b/repo/pathing/鳗肉/2珊瑚宫北-9.json similarity index 52% rename from repo/pathing/蒲公英/02-蒲公英-山脊守望西10个.json rename to repo/pathing/鳗肉/2珊瑚宫北-9.json index 6d686b16..7f3f2f5c 100644 --- a/repo/pathing/蒲公英/02-蒲公英-山脊守望西10个.json +++ b/repo/pathing/鳗肉/2珊瑚宫北-9.json @@ -1,172 +1,164 @@ { "info": { - "name": "02-蒲公英-山脊守望西10个", + "name": "珊瑚宫北-9", "type": "collect", - "author": "秋云", + "author": "MOMO", "version": "1.0", "description": "", "bgiVersion": "0.35.1" }, "positions": [ { - "id": 1, - "x": -321.5478515625, - "y": 1473.33544921875, + "id": 7, + "x": -765.9716796875, + "y": -3557.3896484375, "type": "teleport", "move_mode": "walk", "action": "" }, { "id": 2, - "x": -316.5166015625, - "y": 1521.7744140625, + "x": -749.166015625, + "y": -3544.671875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 3, - "x": -275.486328125, - "y": 1543.349609375, + "x": -735.4873046875, + "y": -3538.1103515625, "type": "path", "move_mode": "walk", "action": "" }, { "id": 4, - "x": -262.1552734375, - "y": 1548.65380859375, + "x": -712.7392578125, + "y": -3533.8564453125, "type": "path", "move_mode": "walk", "action": "" }, { "id": 5, - "x": -208.0341796875, - "y": 1547.119140625, + "x": -692.1162109375, + "y": -3533.083984375, "type": "path", - "move_mode": "fly", - "action": "stop_flying" + "move_mode": "walk", + "action": "" }, { "id": 6, - "x": -173.474609375, - "y": 1542.3837890625, + "x": -681.171875, + "y": -3530.3896484375, "type": "path", "move_mode": "walk", "action": "" }, { "id": 7, - "x": -153.2919921875, - "y": 1555.658203125, + "x": -657.03125, + "y": -3526.359375, "type": "path", "move_mode": "walk", "action": "" }, { "id": 8, - "x": -146.828125, - "y": 1591.294921875, + "x": -645.8955078125, + "y": -3522.814453125, "type": "path", "move_mode": "walk", "action": "" }, { "id": 9, - "x": -130.5732421875, - "y": 1588.44189453125, + "x": -634.177734375, + "y": -3504.5029296875, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "" }, { "id": 10, - "x": -123.634765625, - "y": 1586.68408203125, + "x": -630.7412109375, + "y": -3502.59765625, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "" }, { "id": 11, - "x": -131.9873046875, - "y": 1600.11669921875, + "x": -601.7939453125, + "y": -3519.6298828125, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "" }, { "id": 12, - "x": -166.95703125, - "y": 1648.2021484375, + "x": -591.3740234375, + "y": -3510.4814453125, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "" }, { "id": 13, - "x": -143.61328125, - "y": 1674.31787109375, + "x": -590.5380859375, + "y": -3509.591796875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 14, - "x": -100.2578125, - "y": 1686.6259765625, + "x": -562.8095703125, + "y": -3528.4423828125, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "" }, { "id": 15, - "x": -89.263671875, - "y": 1649.751953125, + "x": -553.630859375, + "y": -3544.2353515625, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "" }, { "id": 16, - "x": -71.513671875, - "y": 1636.705078125, + "x": -544.1162109375, + "y": -3571.759765625, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "" }, { "id": 17, - "x": -49.287109375, - "y": 1641.43408203125, + "x": -540.14453125, + "y": -3595.4697265625, "type": "path", "move_mode": "walk", "action": "" }, { "id": 18, - "x": -43.4765625, - "y": 1669.876953125, + "x": -534.3740234375, + "y": -3605.7275390625, "type": "path", "move_mode": "walk", - "action": "anemo_collect" + "action": "" }, { "id": 19, - "x": -52.4365234375, - "y": 1667.0908203125, + "x": -536.052734375, + "y": -3609.6044921875, "type": "path", "move_mode": "walk", - "action": "anemo_collect" - }, - { - "id": 20, - "x": -57.4912109375, - "y": 1672.01611328125, - "type": "path", - "move_mode": "walk", - "action": "anemo_collect" + "action": "" } ] } \ No newline at end of file diff --git a/repo/pathing/鳗肉/3曚云神社-6.json b/repo/pathing/鳗肉/3曚云神社-6.json new file mode 100644 index 00000000..cab855c3 --- /dev/null +++ b/repo/pathing/鳗肉/3曚云神社-6.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "曚云神社-6", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -575.212890625, + "y": -3832.1796875 + }, + { + "id": 2, + "x": -575.6396484375, + "y": -3850.048828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -571.6865234375, + "y": -3878.3505859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -546.6572265625, + "y": -3895.990234375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": -499.1533203125, + "y": -3903.1201171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": -472.1005859375, + "y": -3934.638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -467.5341796875, + "y": -3946.48046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -464.4443359375, + "y": -3948.6337890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -464.13671875, + "y": -3947.712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -443.0029296875, + "y": -3945.583984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -439.3056640625, + "y": -3942.7890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -440.6259765625, + "y": -3941.3837890625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鳗肉/4望泷村南-3.json b/repo/pathing/鳗肉/4望泷村南-3.json new file mode 100644 index 00000000..7e88a949 --- /dev/null +++ b/repo/pathing/鳗肉/4望泷村南-3.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "望泷村南-3", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -755.556640625, + "y": -4001.0751953125 + }, + { + "id": 2, + "x": -752.82421875, + "y": -4008.6845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -745.9609375, + "y": -4028.2119140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -742.4873046875, + "y": -4055.75390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -744.1875, + "y": -4061.4521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -732.94140625, + "y": -4064.806640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": -726.119140625, + "y": -4064.654296875, + "type": "path", + "move_mode": "run", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鳗肉/5望泷村东-6.json b/repo/pathing/鳗肉/5望泷村东-6.json new file mode 100644 index 00000000..565c69bf --- /dev/null +++ b/repo/pathing/鳗肉/5望泷村东-6.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "望泷村东-6", + "type": "collect", + "author": "MOMO", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1057.7373046875, + "y": -3946.0419921875 + }, + { + "id": 2, + "x": -1075.697265625, + "y": -3947.2685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1087.2265625, + "y": -3944.552734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1112.841796875, + "y": -3935.62109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1120.158203125, + "y": -3928.0302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1122.57421875, + "y": -3935.03515625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": -1113.6669921875, + "y": -3940.4306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1106.2705078125, + "y": -3976.7919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1113.796875, + "y": -4005.9990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1122.0859375, + "y": -4008.0517578125, + "type": "path", + "move_mode": "run", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/奔狼古上蒲公英.json b/repo/pathing/鳗肉/6水月池南-4.json similarity index 56% rename from repo/pathing/蒲公英/奔狼古上蒲公英.json rename to repo/pathing/鳗肉/6水月池南-4.json index f7f82741..ac10ed53 100644 --- a/repo/pathing/蒲公英/奔狼古上蒲公英.json +++ b/repo/pathing/鳗肉/6水月池南-4.json @@ -1,8 +1,8 @@ { "info": { - "name": "奔狼古上蒲公英", + "name": "水月池南-4", "type": "collect", - "author": "", + "author": "MOMO", "version": "1.0", "description": "", "bgiVersion": "0.35.1" @@ -10,66 +10,66 @@ "positions": [ { "id": 1, - "x": -386.1953125, - "y": 2297.678955078125, - "type": "teleport", + "action": "", "move_mode": "walk", - "action": "" + "type": "teleport", + "x": -1315.2880859375, + "y": -3776.0244140625 }, { "id": 2, - "x": -366.55859375, - "y": 2313.87744140625, + "x": -1309.1220703125, + "y": -3782.171875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 3, - "x": -362.201171875, - "y": 2316.1455078125, + "x": -1303.0673828125, + "y": -3797.947265625, "type": "path", - "move_mode": "climb", + "move_mode": "walk", "action": "" }, { "id": 4, - "x": -360.04296875, - "y": 2320.839111328125, + "x": -1294.8271484375, + "y": -3801.5654296875, "type": "path", "move_mode": "walk", "action": "" }, { "id": 5, - "x": -358.32421875, - "y": 2322.40234375, + "x": -1294.759765625, + "y": -3808.1259765625, "type": "path", - "move_mode": "climb", + "move_mode": "walk", "action": "" }, { "id": 6, - "x": -355.193359375, - "y": 2326.325927734375, + "x": -1297.81640625, + "y": -3811.3466796875, "type": "path", - "move_mode": "walk", - "action": "elemental_skill" + "move_mode": "run", + "action": "" }, { "id": 7, - "x": -356.125, - "y": 2330.59423828125, + "x": -1305.4443359375, + "y": -3817.1650390625, "type": "path", - "move_mode": "walk", + "move_mode": "run", "action": "" }, { "id": 8, - "x": -356.1259765625, - "y": 2329.755126953125, + "x": -1309.6650390625, + "y": -3820.330078125, "type": "path", - "move_mode": "walk", + "move_mode": "run", "action": "" } ] 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..88cbcebe Binary files /dev/null and b/repo/pathing/鳗肉/icon.ico differ