diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..9ddfcf1c --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..d8faca50 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# BetterGI · 更好的原神 的脚本仓库 + +[BetterGI](https://github.com/babalae/better-genshin-impact) 的 📜 脚本仓库 + +在线版:[bgi.sh](https://bgi.sh) + +作者Q群:764972801 (非作者请勿加入) + +[如何提交到本仓库?(谁都能看懂的 GitHub Pull Request 使用指南)](https://bgi.huiyadan.com/pr.html) diff --git a/bak/utf8.ps1 b/bak/utf8.ps1 new file mode 100644 index 00000000..315fbffe --- /dev/null +++ b/bak/utf8.ps1 @@ -0,0 +1,19 @@ +# 获取当前文件夹及其子目录中的所有文件 +Get-ChildItem -File -Recurse | ForEach-Object { + # 读取文件内容 + $content = Get-Content $_.FullName -Raw + + # 检查文件是否包含BOM + $bytes = [System.IO.File]::ReadAllBytes($_.FullName) + if ($bytes.Length -ge 3 -and $bytes[0] -eq 0xEF -and $bytes[1] -eq 0xBB -and $bytes[2] -eq 0xBF) { + Write-Host ("Processing file: " + $_.FullName) + + # 使用UTF8编码(无BOM)重新写入文件 + $utf8NoBom = New-Object System.Text.UTF8Encoding $false + [System.IO.File]::WriteAllText($_.FullName, $content, $utf8NoBom) + + Write-Host ("Conversion completed: " + $_.Name) -ForegroundColor Green + } +} + +Write-Host "All done!" -ForegroundColor Green \ No newline at end of file diff --git a/build/build.js b/build/build.js index 6d2e578d..ecc5f84b 100644 --- a/build/build.js +++ b/build/build.js @@ -56,9 +56,33 @@ function extractInfoFromJSFolder(folderPath) { function extractInfoFromPathingFile(filePath, parentFolders) { const content = JSON.parse(fs.readFileSync(filePath, 'utf8')); let tags = parentFolders.slice(2) // 从第三个元素开始,跳过 'pathing' 和下一级目录 - .map(tag => tag.split('@')[0]) // 取@符号前面的数据 + .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 (hasNahidaCollect) { + tags.push('纳西妲'); + } + if (hasHydroCollect) { + tags.push('水元素力收集'); + } + if (hasAnemoCollect) { + tags.push('风元素力收集'); + } + if (hasElectroCollect) { + tags.push('雷元素力收集'); + } + if (hasUpDownGrabLeaf) { + tags.push('四叶印'); + } + } + return { author: content.info && content.info.author ? content.info.author : '', description: convertNewlines(content.info && content.info.description ? content.info.description : ''), @@ -108,12 +132,19 @@ function generateDirectoryTree(dir, currentDepth = 0, parentFolders = []) { info.tags = jsInfo.tags; } } else { - info.children = fs.readdirSync(dir).map(child => { - const childPath = path.join(dir, child); - return generateDirectoryTree(childPath, currentDepth + 1, [...parentFolders, info.name]); - }); + info.children = fs.readdirSync(dir) + .filter(child => !['desktop.ini', 'icon.ico'].includes(child)) // 过滤掉 desktop.ini 和 icon.ico + .map(child => { + const childPath = path.join(dir, child); + return generateDirectoryTree(childPath, currentDepth + 1, [...parentFolders, info.name]); + }); } } else { + // 如果是 desktop.ini 或 icon.ico 文件,直接返回 null + if (['desktop.ini', 'icon.ico'].includes(info.name)) { + return null; + } + const hash = calculateSHA1(dir); info.hash = hash; info.version = hash.substring(0, 7); diff --git a/build/icon/1.filter.js b/build/icon/1.filter.js new file mode 100644 index 00000000..409583cc --- /dev/null +++ b/build/icon/1.filter.js @@ -0,0 +1,34 @@ +const fs = require('fs'); +const path = require('path'); + +// 读取JSON文件 +const jsonPath = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\Material.json'; +const jsonData = JSON.parse(fs.readFileSync(jsonPath, 'utf8')); + +// 设置源文件夹和目标文件夹 +const sourceDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\ItemIcon-tiny'; +const targetDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\newPng'; + +// 确保目标文件夹存在 +if (!fs.existsSync(targetDir)) { + fs.mkdirSync(targetDir, { recursive: true }); +} + +// 读取源文件夹中的所有文件 +fs.readdirSync(sourceDir).forEach(file => { + const fileName = path.parse(file).name; // 获取文件名(不含扩展名) + + // 在JSON数据中查找匹配项 + const matchedItem = jsonData.find(item => item.Icon === fileName); + + if (matchedItem) { + const sourcePath = path.join(sourceDir, file); + const targetPath = path.join(targetDir, `${matchedItem.Name}.png`); + + // 复制并重命名文件 + fs.copyFileSync(sourcePath, targetPath); + console.log(`已复制并重命名: ${file} -> ${matchedItem.Name}.png`); + } +}); + +console.log('处理完成'); \ No newline at end of file diff --git a/build/icon/2.match.js b/build/icon/2.match.js new file mode 100644 index 00000000..5b27828f --- /dev/null +++ b/build/icon/2.match.js @@ -0,0 +1,43 @@ +const fs = require('fs'); +const path = require('path'); + +// 定义路径 +const pathingDir = 'D:\\HuiPrograming\\Projects\\CSharp\\MiHoYo\\bettergi-scripts-list\\repo\\pathing'; +const pngDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\newPng'; +const outputDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\matchedPng'; + +// 确保输出目录存在 +if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir); +} + +// 读取 pathing 目录下的所有文件夹名称 +fs.readdir(pathingDir, { withFileTypes: true }, (err, entries) => { + if (err) { + console.error('读取 pathing 目录时出错:', err); + return; + } + + // 过滤出目录 + const directories = entries.filter(entry => entry.isDirectory()).map(dir => dir.name); + + // 遍历目录名称 + directories.forEach(dirName => { + const pngPath = path.join(pngDir, `${dirName}.png`); + const outputPath = path.join(outputDir, `${dirName}.png`); + + // 检查对应的 PNG 文件是否存在 + if (fs.existsSync(pngPath)) { + // 复制文件 + fs.copyFile(pngPath, outputPath, err => { + if (err) { + console.error(`复制 ${dirName}.png 时出错:`, err); + } else { + console.log(`成功复制 ${dirName}.png 到 matchedPng 文件夹`); + } + }); + } else { + console.log(`未找到对应的 PNG 文件: ${dirName}.png`); + } + }); +}); \ No newline at end of file diff --git a/build/icon/3.icon.js b/build/icon/3.icon.js new file mode 100644 index 00000000..7e31ed2b --- /dev/null +++ b/build/icon/3.icon.js @@ -0,0 +1,57 @@ +const fs = require('fs'); +const path = require('path'); +const { exec } = require('child_process'); + +// 定义路径 +const sourcePath = 'D:\\HuiPrograming\\Projects\\CSharp\\MiHoYo\\bettergi-scripts-list\\repo\\pathing'; +const iconSourcePath = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\matchedIco'; +const desktopIniPath = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\desktop.ini'; + +// 读取源目录 +fs.readdir(sourcePath, { withFileTypes: true }, (err, entries) => { + if (err) { + console.error('读取源目录时出错:', err); + return; + } + + // 遍历每个目录 + entries.filter(entry => entry.isDirectory()).forEach(dir => { + const dirPath = path.join(sourcePath, dir.name); + const iconSourceFile = path.join(iconSourcePath, `${dir.name}.ico`); + const iconDestFile = path.join(dirPath, 'icon.ico'); + const desktopIniDestFile = path.join(dirPath, 'desktop.ini'); + + // 检查图标源文件是否存在 + if (!fs.existsSync(iconSourceFile)) { + console.log(`警告:${dir.name} 的图标文件不存在,跳过所有操作`); + return; // 跳过当前目录的所有后续操作 + } + + // 复制图标文件 + fs.copyFile(iconSourceFile, iconDestFile, (err) => { + if (err) { + console.error(`复制图标文件到 ${dir.name} 时出错:`, err); + return; // 如果复制图标失败,跳过后续操作 + } + console.log(`成功复制图标文件到 ${dir.name}`); + + // 复制desktop.ini文件 + fs.copyFile(desktopIniPath, desktopIniDestFile, (err) => { + if (err) { + console.error(`复制desktop.ini到 ${dir.name} 时出错:`, err); + return; // 如果复制desktop.ini失败,跳过后续操作 + } + console.log(`成功复制desktop.ini到 ${dir.name}`); + + // 执行cmd命令 + exec(`attrib +R "${dirPath}"`, (err, stdout, stderr) => { + if (err) { + console.error(`执行attrib命令时出错 ${dir.name}:`, err); + return; + } + console.log(`成功为 ${dir.name} 设置只读属性`); + }); + }); + }); + }); +}); diff --git a/build/icon/4.new_transfer.js b/build/icon/4.new_transfer.js new file mode 100644 index 00000000..628de3fa --- /dev/null +++ b/build/icon/4.new_transfer.js @@ -0,0 +1,35 @@ +const fs = require('fs'); +const path = require('path'); + +// 定义路径 +const pngDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\matchedPng'; +const iconDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\matchedIco'; + +// 定义输出目录 +const outputDir = 'E:\\HuiTask\\更好的原神\\2.资料\\图标处理\\diffPng'; + +// 确保输出目录存在 +if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); +} + +// 获取两个目录中的文件列表并去除扩展名 +const getPureFilenames = (dir) => { + return fs.readdirSync(dir).map(file => path.parse(file).name); +}; + +const pngFiles = getPureFilenames(pngDir); +const icoFiles = getPureFilenames(iconDir); + +// 找出在PNG目录存在但在ICO目录不存在的文件 +const unmatchedPng = pngFiles.filter(name => !icoFiles.includes(name)); + +// 复制不匹配的PNG文件到输出目录 +unmatchedPng.forEach(filename => { + const sourcePath = path.join(pngDir, `${filename}.png`); + const destPath = path.join(outputDir, `${filename}.png`); + fs.copyFileSync(sourcePath, destPath); +}); + +console.log(`找到并复制了 ${unmatchedPng.length} 个不匹配的 PNG 文件到: ${outputDir}`); + diff --git a/build/other/firstPosTp.js b/build/other/firstPosTp.js new file mode 100644 index 00000000..5cba81be --- /dev/null +++ b/build/other/firstPosTp.js @@ -0,0 +1,52 @@ +const fs = require('fs'); +const path = require('path'); + +// 定义pathing目录的路径 +const pathingDir = path.resolve(__dirname, '..', '..', 'repo', 'pathing'); + +// 递归读取目录下的所有JSON文件 +function readJsonFilesRecursively(dir) { + const files = fs.readdirSync(dir, { withFileTypes: true }); + + files.forEach(file => { + const filePath = path.join(dir, file.name); + + if (file.isDirectory()) { + readJsonFilesRecursively(filePath); + } else if (path.extname(file.name).toLowerCase() === '.json') { + processJsonFile(filePath); + } + }); +} + +// 处理单个JSON文件 +function processJsonFile(filePath) { + try { + const data = fs.readFileSync(filePath, 'utf8'); + const jsonData = JSON.parse(data); + + // 检查并修改第一个position的type + if (jsonData.positions && jsonData.positions.length > 0) { + const firstPosition = jsonData.positions[0]; + if (firstPosition.type !== 'teleport') { + firstPosition.type = 'teleport'; + console.log(`文件 ${filePath} 中的第一个position的type已更改为teleport`); + + // 将修改后的数据写回文件 + fs.writeFileSync(filePath, JSON.stringify(jsonData, null, 2), 'utf8'); + console.log(`文件 ${filePath} 已成功更新`); + } else { + console.log(`文件 ${filePath} 中的第一个position的type已经是teleport`); + } + } else { + console.log(`文件 ${filePath} 中没有positions数组或数组为空`); + } + } catch (err) { + console.error(`处理文件 ${filePath} 时出错:`, err); + } +} + +// 开始递归读取文件 +console.log(`开始处理 ${pathingDir} 目录下的所有JSON文件`); +readJsonFilesRecursively(pathingDir); +console.log('处理完成'); diff --git a/repo.json b/repo.json index cbfe7962..99d751aa 100644 --- a/repo.json +++ b/repo.json @@ -1,5 +1,5 @@ { - "time": "20241016133309", + "time": "20241203111204", "url": "https://github.com/babalae/bettergi-scripts-list/archive/refs/heads/main.zip", "file": "repo.json", "indexes": [ @@ -7,6 +7,256 @@ "name": "pathing", "type": "directory", "children": [ + { + "name": "劫波莲", + "type": "directory", + "children": [ + { + "name": "劫波莲@jbcaaa", + "type": "directory", + "children": [ + { + "name": "劫波莲 化城郭.json", + "type": "file", + "hash": "21e00416ab61fcce4a81bd779bf7a77fffa801a4", + "version": "21e0041", + "author": "jbcaaa", + "description": "", + "tags": [ + "劫波莲" + ] + }, + { + "name": "劫波莲 天臂池左上.json", + "type": "file", + "hash": "d039f16bc41754e4327353a476adc842ad18532c", + "version": "d039f16", + "author": "jbcaaa", + "description": "", + "tags": [ + "劫波莲" + ] + }, + { + "name": "劫波莲 桓那兰那左侧.json", + "type": "file", + "hash": "62c95cc488e41f9d083cb89d0175c302d751af5b", + "version": "62c95cc", + "author": "jbcaaa", + "description": "", + "tags": [ + "劫波莲" + ] + }, + { + "name": "劫波莲 水田丛林.json", + "type": "file", + "hash": "34d2973deaefee298b2cbfa5bd54158e1ef22b84", + "version": "34d2973", + "author": "jbcaaa", + "description": "", + "tags": [ + "劫波莲" + ] + }, + { + "name": "劫波莲 水田丛林左上.json", + "type": "file", + "hash": "0255bcb220659c94f459ec95f81683e8048228bf", + "version": "0255bcb", + "author": "jbcaaa", + "description": "", + "tags": [ + "劫波莲" + ] + }, + { + "name": "劫波莲 维摩庄下方.json", + "type": "file", + "hash": "a62dbec830a5c770d1709fc25e4f233da9429466", + "version": "a62dbec", + "author": "jbcaaa", + "description": "", + "tags": [ + "劫波莲" + ] + }, + { + "name": "劫波莲 觉王之殿上方.json", + "type": "file", + "hash": "7f6ce1dafd47578a5349f27fe3f82b0c4faa22ae", + "version": "7f6ce1d", + "author": "jbcaaa", + "description": "", + "tags": [ + "劫波莲" + ] + }, + { + "name": "劫波莲 降诸魔山右下.json", + "type": "file", + "hash": "e7c01793c3858dda9e0487060c1b6527d98afde5", + "version": "e7c0179", + "author": "jbcaaa", + "description": "", + "tags": [ + "劫波莲" + ] + } + ] + }, + { + "name": "劫波莲(纳西妲采集)@lifrom", + "type": "directory", + "children": [ + { + "name": "001劫波莲 化城郭6个.json", + "type": "file", + "hash": "f7823e2495655eacf386c572c23fc647163eb30e", + "version": "f7823e2", + "author": "lifrom", + "description": "成熟的纳西妲要学会自己采材料。感谢米游社大佬“@吃瓜的喵”的优质路线!(本引导的所有路线均已精修过,请放心使用)", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "002劫波莲 降诸魔山4个.json", + "type": "file", + "hash": "489b07a27f9d9acfb33112fb39aa963c6ae8211e", + "version": "489b07a", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "003劫波莲 降诸魔山2个.json", + "type": "file", + "hash": "3dfa03816646915c99e949e63af404c8338aeb1c", + "version": "3dfa038", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "004劫波莲 维摩庄西南7个.json", + "type": "file", + "hash": "4fc0e401970a2321ba3205d68b04f2eed06d1ed7", + "version": "4fc0e40", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "005劫波莲 水天丛林7个.json", + "type": "file", + "hash": "f38e0c3e766fa54bee47f065a19544d4372e14bc", + "version": "f38e0c3", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "006劫波莲 谒颂幽境14个.json", + "type": "file", + "hash": "c8e89cef6fb8ed898aa01eac48243bc4f86092ac", + "version": "c8e89ce", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "007劫波莲 觉王之殿3个.json", + "type": "file", + "hash": "4e51a37e1ef680d784f45cd7565444a34caa0798", + "version": "4e51a37", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "008劫波莲 须弥城西边7个.json", + "type": "file", + "hash": "33cb131aa8ca515a37b05868365a49d6087015fc", + "version": "33cb131", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "009劫波莲 觉王之殿北边5个.json", + "type": "file", + "hash": "b22585ca3c3a26d2c8b4a843cd3a9207ed79faa1", + "version": "b22585c", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "010劫波莲 翠翎恐蕈西南2个.json", + "type": "file", + "hash": "5392e9dd6222a19c1b8d340707eb4d894254c994", + "version": "5392e9d", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "011劫波莲 无郁稠林西边1个.json", + "type": "file", + "hash": "00b44aa5a535f81bb41ba084aa45c19879572905", + "version": "00b44aa", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + }, + { + "name": "012劫波莲 无郁稠林东边6个.json", + "type": "file", + "hash": "9657ca000885f4ec809aebf837730c969b66fa94", + "version": "9657ca0", + "author": "lifrom", + "description": "", + "tags": [ + "劫波莲", + "纳西妲" + ] + } + ] + } + ] + }, { "name": "嘟嘟莲", "type": "directory", @@ -14,67 +264,73 @@ { "name": "嘟嘟莲1-清泉镇-11个.json", "type": "file", - "hash": "78fcac2fc8b6e4ec09d7d5228395ae055608e8f7", - "version": "78fcac2", - "author": "yulalaa", + "hash": "716718bdf0e0ee3a04c55e834411e060acc3cbff", + "version": "716718b", + "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲" + "嘟嘟莲", + "纳西妲" ] }, { "name": "嘟嘟莲2-达达乌帕谷-7个.json", "type": "file", - "hash": "dfabff068dfec235d01303ac74366ab73151af69", - "version": "dfabff0", - "author": "yulalaa", + "hash": "df7bb546d915ba00280536517177647f269d7242", + "version": "df7bb54", + "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲" + "嘟嘟莲", + "纳西妲" ] }, { "name": "嘟嘟莲3-晨曦酒庄-3个.json", "type": "file", - "hash": "6b95f01235088acf055894e829027a413ae8941b", - "version": "6b95f01", - "author": "yulalaa", + "hash": "6c22e44177ae3a737b68ea89cd4fbc630d0e7157", + "version": "6c22e44", + "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲" + "嘟嘟莲", + "纳西妲" ] }, { "name": "嘟嘟莲4-奔狼领-4个.json", "type": "file", - "hash": "ee5682b39c0d5338eac9346a949d461b7890d076", - "version": "ee5682b", - "author": "yulalaa", + "hash": "c480078260ad4e4a1eb7e78d834d0843b4996b56", + "version": "c480078", + "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲" + "嘟嘟莲", + "纳西妲" ] }, { "name": "嘟嘟莲5-千风神殿-3个.json", "type": "file", - "hash": "53a50024e0610c48978eb53cfcbeff0e9bd7b969", - "version": "53a5002", - "author": "yulalaa", + "hash": "12feeea1d40eaeefe1c3d6438c8882defb8987b7", + "version": "12feeea", + "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲" + "嘟嘟莲", + "纳西妲" ] }, { "name": "嘟嘟莲6-星落湖-2个.json", "type": "file", - "hash": "311c6b5de63b20d345082304ed635c07bb558b89", - "version": "311c6b5", - "author": "yulalaa", + "hash": "48f37a5479a312e4b667677bffa4749dae075ea8", + "version": "48f37a5", + "author": "yulalaa&不瘦五十斤不改名", "description": "", "tags": [ - "嘟嘟莲" + "嘟嘟莲", + "纳西妲" ] } ] @@ -84,465 +340,2210 @@ "type": "directory", "children": [ { - "name": "佩特莉可01 1.json", - "type": "file", - "hash": "50cb8bae8f07c1b7f75c0ef91bc63fecacc372e9", - "version": "50cb8ba", - "author": "lwh9346", - "description": "", - "tags": [ - "圣遗物" + "name": "狗粮@Tim", + "type": "directory", + "children": [ + { + "name": "狗粮_枫丹_佩特莉可镇_3.json", + "type": "file", + "hash": "8ba6c3de454b30ac0988e9f9299c8b684dc3fc68", + "version": "8ba6c3d", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_枫丹_学术讲堂_1.json", + "type": "file", + "hash": "c9caf037bba50d7db6b64a77baef1899bb0aff9f", + "version": "c9caf03", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_枫丹_新枫科院东南_7.json", + "type": "file", + "hash": "c9334cad40c986bf024db1299aa1ef685518e4f4", + "version": "c9334ca", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_枫丹_新枫科院宿舍_4.json", + "type": "file", + "hash": "4ce65da7ad9230b0063fb009e5f8870b92f3cfc1", + "version": "4ce65da", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_枫丹_新枫科院西北_3.json", + "type": "file", + "hash": "2a89633f996137eff64304c58482fe96b45583ac", + "version": "2a89633", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_枫丹_新枫科院西南_7.json", + "type": "file", + "hash": "694c6c00dfff3675d9932b159d5b77a9496e55ec", + "version": "694c6c0", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_枫丹_欧庇克莱歌剧院东南_2.json", + "type": "file", + "hash": "8a0c10591fcdf9b25b1a1285ecce6d5c8e3ac1a7", + "version": "8a0c105", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_枫丹_芒索斯山脉东麓_2.json", + "type": "file", + "hash": "8b451663dc9874f0f230c92e3e7a851a1382f99f", + "version": "8b45166", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_枫丹_黎翡区神像_3.json", + "type": "file", + "hash": "69908fd87d558ed142350831f76a78925393ac5b", + "version": "69908fd", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_璃月_地中之盐_3.json", + "type": "file", + "hash": "308ab8d4a59ebf838214f1cc08b3d107ab40167b", + "version": "308ab8d", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_璃月_沉玉谷上谷_2.json", + "type": "file", + "hash": "71822d4d3cb5d9499820174cbae63eedf90fb904", + "version": "71822d4", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_璃月_渌华池_3.json", + "type": "file", + "hash": "bbd9d6096afafbce7b178040b5108c4116d02cc9", + "version": "bbd9d60", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_璃月_老窖_6.json", + "type": "file", + "hash": "c435bf0736d1823bb3f58fb68e979b155627abf7", + "version": "c435bf0", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_璃月_荻花洲_2.json", + "type": "file", + "hash": "b336be4670259359546fe82522293c0c94178a82", + "version": "b336be4", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_璃月_轻策庄_2.json", + "type": "file", + "hash": "fccf3f0d0b2f7be4bfbd3a7cf190b8e6b3b9c8ab", + "version": "fccf3f0", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_平海砦_3.json", + "type": "file", + "hash": "e182bbf5fb01d7d042e8e9e3975b69655fb426bb", + "version": "e182bbf", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_惑饲滩西_2.json", + "type": "file", + "hash": "4b3027c0be0da4be10d8df376ca42ee450b14a6a", + "version": "4b3027c", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_望泷村西南_4.json", + "type": "file", + "hash": "068103290e346624c3edd60d0e8bb2f0b97c62a5", + "version": "0681032", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_浅籁神社_3.json", + "type": "file", + "hash": "15e36303a4132a1d1ec596f2b349e4b0b2b09d63", + "version": "15e3630", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_海祈岛东_2.json", + "type": "file", + "hash": "43105adbf0d23ed7d0447e3246aceb0cc6a5c529", + "version": "43105ad", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_清籁丸_7.json", + "type": "file", + "hash": "c775285bfbf6aae297b7d9a20916b87fbbbe7953", + "version": "c775285", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_神无冢_3.json", + "type": "file", + "hash": "8ed9d163c16800f5e02a75b090c74148dc17c07c", + "version": "8ed9d16", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_越石村_5.json", + "type": "file", + "hash": "0fe3e1a7e4f6a0ad84600cd7086bf07495367570", + "version": "0fe3e1a", + "author": "Tim", + "description": "狗粮_越石村_5个", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_稻妻_鹤观神像_3.json", + "type": "file", + "hash": "3d7ee154271887399b89852de479c65d4d769bd1", + "version": "3d7ee15", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_纳塔_圣火竞技场东_3.json", + "type": "file", + "hash": "a189ba441d5e4f4709601aca13594a3a72abe7c6", + "version": "a189ba4", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_纳塔_流泉之众_4.json", + "type": "file", + "hash": "01258624a5c4a5ad07e72b3fcd117eebd04dda8f", + "version": "0125862", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_须弥_化城郭西_2.json", + "type": "file", + "hash": "062f866b31805a6015194b48f8d9bb04d979387d", + "version": "062f866", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_须弥_无郁绸林_3.json", + "type": "file", + "hash": "fd3a523d1e76a228ca7751ae3f2b1e2e5be57a02", + "version": "fd3a523", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_须弥_水天丛林水泡点_7.json", + "type": "file", + "hash": "e01d098dfc402f5a833f9258be33a7dba82a6560", + "version": "e01d098", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_须弥_神的棋盘_3.json", + "type": "file", + "hash": "377f06b88819971e824afbd50ed44951306cabba", + "version": "377f06b", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_须弥_维摩庄_3.json", + "type": "file", + "hash": "90866fce9cf790fd346bf302a3f0528cd7017172", + "version": "90866fc", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_须弥_表恒纳兰那_9.json", + "type": "file", + "hash": "8d99542bb7db79bc1d9e00b15cdced39e6366f6c", + "version": "8d99542", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_须弥_觉王之殿南_4.json", + "type": "file", + "hash": "5780fe36c200ea1440db1bf4fbb0aff61273e9ee", + "version": "5780fe3", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮_须弥_须弥城北_2.json", + "type": "file", + "hash": "df9e7681769867a680bedccc42b376bc28cd5a5a", + "version": "df9e768", + "author": "Tim", + "description": "", + "tags": [ + "圣遗物" + ] + } ] }, { - "name": "地中之岩01 3.json", - "type": "file", - "hash": "07225347941699a1d93ad41525cf66421ffe58e6", - "version": "0722534", - "author": "lwh9346", - "description": "", - "tags": [ - "圣遗物" + "name": "狗粮@lwh9346", + "type": "directory", + "children": [ + { + "name": "佩特莉可01 1.json", + "type": "file", + "hash": "50cb8bae8f07c1b7f75c0ef91bc63fecacc372e9", + "version": "50cb8ba", + "author": "lwh9346", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "地中之岩01 3.json", + "type": "file", + "hash": "07225347941699a1d93ad41525cf66421ffe58e6", + "version": "0722534", + "author": "lwh9346", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "天云峠 01 6.json", + "type": "file", + "hash": "23e2c18d14dfcaa5bac2efe927f0fbe8506f77f0", + "version": "23e2c18", + "author": "lwh9346", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "海祇岛01 8.json", + "type": "file", + "hash": "31d6134982cd37a0c7f73bb648b2e8cf738a1310", + "version": "31d6134", + "author": "lwh9346", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "特尔柯西01 4.json", + "type": "file", + "hash": "02121dbda4dd4c559580e289504f535085e8d969", + "version": "02121db", + "author": "lwh9346", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "碧水原01 5.json", + "type": "file", + "hash": "1e4dfa6b12f373f7f64a8d2c86d59bd71731c34c", + "version": "1e4dfa6", + "author": "lwh9346", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "碧水原02 9.json", + "type": "file", + "hash": "d4e3f69769402aedadc40cae6c0a9ae82616b709", + "version": "d4e3f69", + "author": "lwh9346", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "神的棋盘01 2.json", + "type": "file", + "hash": "192ccf6594e5a308369b7f7b88d67307c65f719c", + "version": "192ccf6", + "author": "lwh9346", + "description": "", + "tags": [ + "圣遗物" + ] + } ] }, { - "name": "天云峠 01 6.json", - "type": "file", - "hash": "23e2c18d14dfcaa5bac2efe927f0fbe8506f77f0", - "version": "23e2c18", - "author": "lwh9346", - "description": "", - "tags": [ - "圣遗物" + "name": "狗粮A线@Yang-z", + "type": "directory", + "children": [ + { + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个.json", + "type": "file", + "hash": "b6336b687bf96dc8d08e71955bcbd413bb747344", + "version": "b6336b6", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json", + "type": "file", + "hash": "b12f3315cb9b22fa84fbbc8acd29d7d190a55596", + "version": "b12f331", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json", + "type": "file", + "hash": "dde6098a8718e25f897925685a5fc6b80630fd6f", + "version": "dde6098", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "备选", + "type": "directory", + "children": [ + { + "name": "(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json", + "type": "file", + "hash": "4236db2dd129e15061b8007c425e6569d2c977d8", + "version": "4236db2", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json", + "type": "file", + "hash": "140b1f56c8b274b317f85a273c037a85590889b7", + "version": "140b1f5", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json", + "type": "file", + "hash": "8145c8157203cf13db83bb3fa44859b1a44a2b7a", + "version": "8145c81", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json", + "type": "file", + "hash": "6901b306364624e6e5eead07db8e92de755783d5", + "version": "6901b30", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-层岩巨渊-采樵谷-4个.json", + "type": "file", + "hash": "ab3b04e09018f2278a4655dfca584898666dee45", + "version": "ab3b04e", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json", + "type": "file", + "hash": "3cb517695f9a6530ffc386ace5436d9ee56f35fb", + "version": "3cb5176", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-沉玉谷上谷-东-2个.json", + "type": "file", + "hash": "0c6302955b4e1b9a70570d31f85a21eaec801797", + "version": "0c63029", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json", + "type": "file", + "hash": "06cd71801a43d548af2a5178e4e18021fbcacd94", + "version": "06cd718", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-沉玉谷上谷-遗珑埠东-4/5个(第5个有干扰).json", + "type": "file", + "hash": "9edd17a44ef2481a360246b6e98d6829004045d9", + "version": "9edd17a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-沉玉谷南陵-3个/4个(另一个太远).json", + "type": "file", + "hash": "0dfa2b34149ba68907947e8acdcd171cd7a56d64", + "version": "0dfa2b3", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-珉林-华光林-2个(飞偏).json", + "type": "file", + "hash": "75f903a121bb4fda5368e749ce19c202153e24b5", + "version": "75f903a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-珉林-天道谷-3个.json", + "type": "file", + "hash": "b4852368e30dc23d1329d7e291cbd340b0abaa10", + "version": "b485236", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-珉林-奥藏山南-3个.json", + "type": "file", + "hash": "cbf79575988fc80b5a8328444f0be7edaffce452", + "version": "cbf7957", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-珉林-绝云间-3个.json", + "type": "file", + "hash": "10acfd4fd85aac95851fd281955c640524d4a8ce", + "version": "10acfd4", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-碧水源-望舒客栈-1个.json", + "type": "file", + "hash": "37a4ad936e6321f8f682abc8d4c0ed110a0c1586", + "version": "37a4ad9", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-碧水源-石门-1个(飞偏).json", + "type": "file", + "hash": "ef8fb13902fa32d2bf2e7a7e590bd56633f44cda", + "version": "ef8fb13", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-碧水源-轻策庄-3个.json", + "type": "file", + "hash": "6b8fae5cd2d91bb8cbe30614a8bd9f3df8dae967", + "version": "6b8fae5", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json", + "type": "file", + "hash": "08b6a4435867552dbcee8f62d4d4d175828be3f5", + "version": "08b6a44", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json", + "type": "file", + "hash": "ed7d121aeccaa0c9c13d262b356ad064cfc83f53", + "version": "ed7d121", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,不测试了).json", + "type": "file", + "hash": "9d35ece538368097f224f1dc1629a6ec7956cf76", + "version": "9d35ece", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-奥奇卡纳塔-流灰之街-4个.json", + "type": "file", + "hash": "d6b73c0c0423968a6ebc635f4c13a69a582afef9", + "version": "d6b73c0", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json", + "type": "file", + "hash": "c7c175bbeab2587cfe35cd53a15525a411e0a099", + "version": "c7c175b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-涌流地-北部山洞-1个.json", + "type": "file", + "hash": "b1c4223787cea849e13534c816e2fb1f8d3b2833", + "version": "b1c4223", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-翘枝崖-花羽会北-4个.json", + "type": "file", + "hash": "f892e8e2dbab92a2c3eb6e450cef8e0787760755", + "version": "f892e8e", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-踞石山-东-1个.json", + "type": "file", + "hash": "ad54f18c4b3c8d1ae15f058d182dab1f10f8a788", + "version": "ad54f18", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json", + "type": "file", + "hash": "b3b938185044e5d445a74d843d6719434e0e5d2f", + "version": "b3b9381", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-下风蚀地-阿如村-北-1个.json", + "type": "file", + "hash": "32a918db5b0dc2448ca0ccb429190d5ecef3efd0", + "version": "32a918d", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-下风蚀地-阿如村-西北-2个.json", + "type": "file", + "hash": "281ebfee0531b33e57018457bc42fc9669541a62", + "version": "281ebfe", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-二净甸-七天神像-4个/8个(重兵把守,其余不拿).json", + "type": "file", + "hash": "88b9f896b7e5b26750f81b7e6290a499b7cf3a29", + "version": "88b9f89", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json", + "type": "file", + "hash": "3030768283c75aaf99f57e3f5553e03e6ccda109", + "version": "3030768", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-圣显厅西-3个.json", + "type": "file", + "hash": "8a6e754db557e506ae1137d4e90cc85afc046baf", + "version": "8a6e754", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-神的棋盘-1个/3个(只拿第一个).json", + "type": "file", + "hash": "6e30b42cefab43b7c0dd977c3e381b429883467b", + "version": "6e30b42", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json", + "type": "file", + "hash": "7990233d1eb682f627b52c1e80a8c84028bcd9f0", + "version": "7990233", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json", + "type": "file", + "hash": "1dcb57a06545034436a4fd10902da6b08b5d707a", + "version": "1dcb57a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-护世森-卡萨扎莱宫南-2个.json", + "type": "file", + "hash": "37e17b738fc158d6c31e1c4eaf7f07359aeb049d", + "version": "37e17b7", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json", + "type": "file", + "hash": "91b8fc765cc45eec1d037409b1fdcb74cc140c51", + "version": "91b8fc7", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json", + "type": "file", + "hash": "1297a2b01b4a99c15c3be2eb6dd57815c38660cd", + "version": "1297a2b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json", + "type": "file", + "hash": "15a556a626896d5b5afa2aa4784b98ab8f228fd9", + "version": "15a556a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-须弥城-3个/4个(有一个剧烈摇晃,不拿).json", + "type": "file", + "hash": "ecb628e683d6b6651852b446c4f2ed12ca29fd06", + "version": "ecb628e", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-须弥城西-4个(重兵把守).json", + "type": "file", + "hash": "74c0123e6e0da39bfeb665c9a9c4b2f883c20f90", + "version": "74c0123", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(恢复)狗粮-璃月-沉玉谷南陵.json", + "type": "file", + "hash": "6d0ba98f9eb9725021e4706002f26874cb41faab", + "version": "6d0ba98", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(恢复)狗粮-璃月-珉林.json", + "type": "file", + "hash": "5b851e2a77d257f4587fe777071fe2c048f430a7", + "version": "5b851e2", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(恢复)狗粮-纳塔-镜璧山(旁边有采集点,容易点卡神像).json", + "type": "file", + "hash": "ae9ffa9dd2d34426e6dbea44aac4f03cf5ea34c1", + "version": "ae9ffa9", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(恢复)狗粮-须弥-千壑沙地.json", + "type": "file", + "hash": "947eecedb2cac74a444413575a959fe96fc13dc8", + "version": "947eece", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + } + ] + }, + { + "name": "狗粮-璃月-珉林-东北-9个.json", + "type": "file", + "hash": "d0d7f3a43a9cf3d70f8ee3951ff70bb670f2f550", + "version": "d0d7f3a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-珉林-北-5个.json", + "type": "file", + "hash": "a377a025fe4a10a3d4720bd1d199e861880cc3a5", + "version": "a377a02", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-琼玑野-绿华池-3个.json", + "type": "file", + "hash": "28bf47caad292733be6ec0b8e9c620bfa64bc480", + "version": "28bf47c", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-碧水源-盐中之地-3个.json", + "type": "file", + "hash": "15de694dd7bfdd9a758a4a3ae997af36b9d6c4f3", + "version": "15de694", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-万火之瓯-竞技场东-4个.json", + "type": "file", + "hash": "7f39e79bc8fe6ff403969fa2881247adf278a9ed", + "version": "7f39e79", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-坚岩隘谷-回声之子南-6个/7个 .json", + "type": "file", + "hash": "db42398df7987065967f323aa04bf2ef141bc553", + "version": "db42398", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json", + "type": "file", + "hash": "9e09a8c1fc60bdb69d327d1a43c83dc3091d618e", + "version": "9e09a8c", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个.json", + "type": "file", + "hash": "8f513432e129cb95dc5d8f2a2666f49920608995", + "version": "8f51343", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-涌流地-流泉之众-4个.json", + "type": "file", + "hash": "5fc6f19b4fe5bd57974a9f81cea12c4f0b2052f9", + "version": "5fc6f19", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-翘枝崖-北-6个.json", + "type": "file", + "hash": "df531ada5dc52c36fcb5d192a0b50afe3bfd26c4", + "version": "df531ad", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-镜璧山-南-9个.json", + "type": "file", + "hash": "bb553b3828784c2a84780fc759d34783a66e0604", + "version": "bb553b3", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-上风蚀地-东北营地-2个.json", + "type": "file", + "hash": "7092642f7a0e8ddb0296a9897194bb444a798321", + "version": "7092642", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-下风蚀地-阿如村-4个.json", + "type": "file", + "hash": "fb1b20870a85a80f5695354852b599fbe94ebfb6", + "version": "fb1b208", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-二净甸-觉王之殿南-6个.json", + "type": "file", + "hash": "56ce6939a98c8d2ca56ea2f658fa85b85b76ac35", + "version": "56ce693", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-塔尼特露营地-3个/5个.json", + "type": "file", + "hash": "0a600d9a942397505cb003a4d5a8c735a46ac087", + "version": "0a600d9", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-失落的苗圃-南-8个.json", + "type": "file", + "hash": "f7a5aa1642998586edbeaf18917764088ebd0f28", + "version": "f7a5aa1", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-浮罗囿-甘露花海北-4个.json", + "type": "file", + "hash": "8cd2eda5b1a4cef8b1d705ee35cad198c84df1ae", + "version": "8cd2eda", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-道成林-化城郭-西-3个.json", + "type": "file", + "hash": "b90902861f006d31d50fa91d9af2b041edfe3a98", + "version": "b909028", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-璃月-琼玑野.json", + "type": "file", + "hash": "35654bedcfc52eb819d8428e155bf6bbcd10a078", + "version": "35654be", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-稻妻-神无冢.json", + "type": "file", + "hash": "f3b0c8bd9adc3f219fe05cf4662ca845d4ceb018", + "version": "f3b0c8b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-纳塔-涌流地.json", + "type": "file", + "hash": "caabee992cca79374f8b831cd095182f7be229d5", + "version": "caabee9", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-须弥-二净甸.json", + "type": "file", + "hash": "4c21def660c0ea14e36af93a8b5269adb7803cc3", + "version": "4c21def", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + } ] }, { - "name": "海祇岛01 8.json", - "type": "file", - "hash": "31d6134982cd37a0c7f73bb648b2e8cf738a1310", - "version": "31d6134", - "author": "lwh9346", - "description": "", - "tags": [ - "圣遗物" + "name": "狗粮B线@Yang-z", + "type": "directory", + "children": [ + { + "name": "【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json", + "type": "file", + "hash": "1b14fe4c9b0eb06a237a6e05b573674f74bd449e", + "version": "1b14fe4", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "备选", + "type": "directory", + "children": [ + { + "name": "(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json", + "type": "file", + "hash": "ac522c368f131ddc561f1be958155825649c9521", + "version": "ac522c3", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json", + "type": "file", + "hash": "134708bd7ebd1a61b301f03f79e30cbb1f1e3f13", + "version": "134708b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json", + "type": "file", + "hash": "878d6c92956392266ffb5648c17517213329be0d", + "version": "878d6c9", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json", + "type": "file", + "hash": "51a541b491b4cfd95b31e61f3a4bd81594e35353", + "version": "51a541b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json", + "type": "file", + "hash": "f4250f9fb4efe9a89739a7dab23fe912a75aff0d", + "version": "f4250f9", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-研究院区-东-3个(重兵把守).json", + "type": "file", + "hash": "729c34552514bae0f787d11860c3c997a8cce887", + "version": "729c345", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json", + "type": "file", + "hash": "705ddc366649b5738ff663ee632330616c628f4a", + "version": "705ddc3", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-研究院区-中部塔内-9个.json", + "type": "file", + "hash": "7ea5cf28a48f42ebe828a131dcb8cbe555c897b1", + "version": "7ea5cf2", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-莫尔泰区-七天神像-1个.json", + "type": "file", + "hash": "e8c2942ad3e1b378362043bfc455a099b50824cd", + "version": "e8c2942", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json", + "type": "file", + "hash": "c31e5df69fce2db78d50f06c384e086b359f713d", + "version": "c31e5df", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(恢复)狗粮-枫丹-莫尔泰区.json", + "type": "file", + "hash": "12faa459e729b637c4547cdda7a0920435d54d5a", + "version": "12faa45", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "(恢复)狗粮-稻妻-鹤观.json", + "type": "file", + "hash": "3741d68e434ec2158255dc14e1c40a5711b09e06", + "version": "3741d68", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + } + ] + }, + { + "name": "狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json", + "type": "file", + "hash": "c52b0714cc009ed884914f4a75ee1fccfc42ff17", + "version": "c52b071", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-白露区-秋分山东侧-2个.json", + "type": "file", + "hash": "43ce18fdfdce41ae407df67b4d2564239b2483de", + "version": "43ce18f", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-白露区-秋分山西侧-北-2个.json", + "type": "file", + "hash": "c990f25a3ef40b0d35a8b09f4e689a0d3358dcd9", + "version": "c990f25", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json", + "type": "file", + "hash": "97077de07b1052052d8be514d278227270b25d9d", + "version": "97077de", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-学术会堂-1个/2个.json", + "type": "file", + "hash": "89acbb48911388546ffbe6211e4dd4f0959e88b0", + "version": "89acbb4", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json", + "type": "file", + "hash": "35789b55062f3dd4714107368811b9770defc333", + "version": "35789b5", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-西北-6个/7个.json", + "type": "file", + "hash": "9a83d36240a4ca0ffa2efd1e9910128dec7486c2", + "version": "9a83d36", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-西南偏南-6个.json", + "type": "file", + "hash": "9a38ab629394e9b4fad1fcf6ba90607949512c26", + "version": "9a38ab6", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-西南偏西-4个.json", + "type": "file", + "hash": "0f6ff5422c446d491f1334fc5befb6bb89a3db14", + "version": "0f6ff54", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-黎翡区-七天神像-5个.json", + "type": "file", + "hash": "7802ad1280b4755c9246e5f3b38064a891df7e2a", + "version": "7802ad1", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-黎翡区-芒索斯山东-3个.json", + "type": "file", + "hash": "4df5aa05912f1bc1756798ce64f983ff0b8e5ef2", + "version": "4df5aa0", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-海祇岛-东方小岛-2个.json", + "type": "file", + "hash": "d35b52c4b4c6027106900ca1ca6df789db32f899", + "version": "d35b52c", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-海祇岛-望泷村西南-4个.json", + "type": "file", + "hash": "852ed5b25c43584b3278dff5bcd0251eb1ef23c7", + "version": "852ed5b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json", + "type": "file", + "hash": "75e50ebb8676ecffa3d958fcac5eb709b9c64224", + "version": "75e50eb", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-清籁岛-平海砦西-8个.json", + "type": "file", + "hash": "d642721b4f111c1c4f28cbcc1f38845059e79203", + "version": "d642721", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-清籁岛-浅濑神社-3个.json", + "type": "file", + "hash": "77f6f7cf3ad2334729c0b915de3a70f7b04de95b", + "version": "77f6f7c", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-清籁岛-越石村-8个.json", + "type": "file", + "hash": "e3bdfd1b9398e9839b4d48af81282cfe1f87a40a", + "version": "e3bdfd1", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-神无冢-东-5个/6个.json", + "type": "file", + "hash": "24c7a334aeec064c0a558d082bdf2a431320726b", + "version": "24c7a33", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-神无冢-九条阵屋-3个.json", + "type": "file", + "hash": "d7f4e3b964dd3b4225d9b28f54658bbe538a9e62", + "version": "d7f4e3b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-神无冢-堇色之庭-4个.json", + "type": "file", + "hash": "cbae4e784fb779056fd82bc08158d1121f662b72", + "version": "cbae4e7", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-神无冢-无相之火-4个/5个.json", + "type": "file", + "hash": "bad7feb3b65df8df0b032c27219b67ac5a76ac2a", + "version": "bad7feb", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-鹤观-东-3个.json", + "type": "file", + "hash": "78bec4df1765ed358767953a909f34e0d8fbb44b", + "version": "78bec4d", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-鹤观-东偏中-2个.json", + "type": "file", + "hash": "6038b67b81765753d34f24813ac3fda2831294c1", + "version": "6038b67", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-鹤观-南-2个.json", + "type": "file", + "hash": "5fab14ba98662e20b58fcbe7b4c86e90fc930926", + "version": "5fab14b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-枫丹-研究院区.json", + "type": "file", + "hash": "807363019ebb5e22cc76e0b5d85629cc72b0eac9", + "version": "8073630", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-枫丹-黎翡区.json", + "type": "file", + "hash": "9dc54443523bfd6e7269fb7f83ee74b29cbd2da4", + "version": "9dc5444", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-稻妻-清籁岛.json", + "type": "file", + "hash": "0b6f89ca625882cf463c459aa4fe473bc23e3cac", + "version": "0b6f89c", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-稻妻-神无冢.json", + "type": "file", + "hash": "b98d943bd3f84b6e6afe25d2355011f711f62e72", + "version": "b98d943", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + } ] }, { - "name": "特尔柯西01 4.json", + "name": "狗粮额外@Yang-z", + "type": "directory", + "children": [ + { + "name": "【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个.json", + "type": "file", + "hash": "36a48297d2100f8b20c5a6c91aac86481ffcba0b", + "version": "36a4829", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "【额外】狗粮-纳塔+7个.json", + "type": "file", + "hash": "068ee40a2634b04ab345644d563eb89bcff96eb2", + "version": "068ee40", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "【额外】狗粮-须弥-水天丛林+7个.json", + "type": "file", + "hash": "4029396919abf41c9c35d778cd2f0784d5877fb6", + "version": "4029396", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + } + ] + } + ] + }, + { + "name": "圣金虫", + "type": "directory", + "children": [ + { + "name": "圣金虫_丰饶绿洲东南_4.json", "type": "file", - "hash": "02121dbda4dd4c559580e289504f535085e8d969", - "version": "02121db", - "author": "lwh9346", - "description": "", + "hash": "a101637c91d34857366f0cad32c01c6f2fed2bee", + "version": "a101637", + "author": "Tim", + "description": "少一个点要用四叶印", "tags": [ - "圣遗物" + "圣金虫" ] }, { - "name": "狗粮_枫丹_佩特莉可镇_3.json", + "name": "圣金虫_丰饶绿洲北_4.json", "type": "file", - "hash": "8ba6c3de454b30ac0988e9f9299c8b684dc3fc68", - "version": "8ba6c3d", + "hash": "0c4cef182c687999168c6ab98238552405aa2de7", + "version": "0c4cef1", "author": "Tim", "description": "", "tags": [ - "圣遗物" + "圣金虫" ] }, { - "name": "狗粮_枫丹_学术讲堂_1.json", + "name": "圣金虫_丰饶绿洲南_1.json", "type": "file", - "hash": "c9caf037bba50d7db6b64a77baef1899bb0aff9f", - "version": "c9caf03", + "hash": "6a295488031c719d196b8fb4d94c58f84868b5d0", + "version": "6a29548", "author": "Tim", "description": "", "tags": [ - "圣遗物" + "圣金虫" ] }, { - "name": "狗粮_枫丹_新枫科院东南_7.json", + "name": "圣金虫_显圣厅西_4.json", "type": "file", - "hash": "c9334cad40c986bf024db1299aa1ef685518e4f4", - "version": "c9334ca", + "hash": "f325d2c0591200f2642e1ef82bc82473c6e3ed7a", + "version": "f325d2c", "author": "Tim", "description": "", "tags": [ - "圣遗物" + "圣金虫" ] }, { - "name": "狗粮_枫丹_新枫科院宿舍_4.json", + "name": "圣金虫_秘仪圣殿北_1.json", "type": "file", - "hash": "4ce65da7ad9230b0063fb009e5f8870b92f3cfc1", - "version": "4ce65da", + "hash": "d17371d1809461dd57fc21fd31d0b66c6bdfd161", + "version": "d17371d", "author": "Tim", "description": "", "tags": [ - "圣遗物" + "圣金虫" ] }, { - "name": "狗粮_枫丹_新枫科院西北_3.json", + "name": "圣金虫_荼诃落谷西_3.json", "type": "file", - "hash": "2a89633f996137eff64304c58482fe96b45583ac", - "version": "2a89633", + "hash": "c044a3c4b3c4122f0028247a3dfb65cc55d718ae", + "version": "c044a3c", + "author": "Tim", + "description": "少一个点要用四叶印", + "tags": [ + "圣金虫" + ] + }, + { + "name": "圣金虫_阿如村东_1.json", + "type": "file", + "hash": "f3a9fcf808f37e7a104dd0ea791060314d6c27e8", + "version": "f3a9fcf", "author": "Tim", "description": "", "tags": [ - "圣遗物" + "圣金虫" ] }, { - "name": "狗粮_枫丹_新枫科院西南_7.json", + "name": "圣金虫_阿如村西北_5.json", "type": "file", - "hash": "694c6c00dfff3675d9932b159d5b77a9496e55ec", - "version": "694c6c0", + "hash": "0d2978ba94e6063496c330f62817a49568f032b8", + "version": "0d2978b", "author": "Tim", "description": "", "tags": [ - "圣遗物" + "圣金虫" ] }, { - "name": "狗粮_枫丹_欧庇克莱歌剧院东南_2.json", + "name": "圣金虫_饱饮之丘西_5.json", "type": "file", - "hash": "fb16cfde9b3c3306da8cb3b6266c5d86ee63a65b", - "version": "fb16cfd", + "hash": "0d3e254f775f5d54c0c072f26834f37fc6660ae5", + "version": "0d3e254", "author": "Tim", "description": "", "tags": [ - "圣遗物" + "圣金虫" ] - }, + } + ] + }, + { + "name": "塞西莉亚花", + "type": "directory", + "children": [ { - "name": "狗粮_枫丹_芒索斯山脉东麓_2.json", + "name": "塞西莉亚花37个.json", "type": "file", - "hash": "8b451663dc9874f0f230c92e3e7a851a1382f99f", - "version": "8b45166", - "author": "Tim", + "hash": "86dc52e7d17722fc519f4495310a31a545ef1baf", + "version": "86dc52e", + "author": "yulalaa", "description": "", "tags": [ - "圣遗物" + "塞西莉亚花" + ] + } + ] + }, + { + "name": "墩墩桃", + "type": "directory", + "children": [ + { + "name": "墩墩桃1.json", + "type": "file", + "hash": "2806de48fcc4a404772c82f7f39a68a815ecb124", + "version": "2806de4", + "author": "风埠", + "description": "卡萨扎莱宫左边墩墩桃20个", + "tags": [ + "墩墩桃" ] }, { - "name": "狗粮_枫丹_黎翡区神像_3.json", + "name": "墩墩桃10.json", "type": "file", - "hash": "69908fd87d558ed142350831f76a78925393ac5b", - "version": "69908fd", - "author": "Tim", + "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": "狗粮_璃月_地中之盐_3.json", + "name": "墩墩桃16.json", "type": "file", - "hash": "308ab8d4a59ebf838214f1cc08b3d107ab40167b", - "version": "308ab8d", - "author": "Tim", + "hash": "6ac6282355661540d134b14e42d7f236c5360e81", + "version": "6ac6282", + "author": "风埠", "description": "", "tags": [ - "圣遗物" + "墩墩桃" ] }, { - "name": "狗粮_璃月_沉玉谷上谷_2.json", + "name": "墩墩桃18.json", "type": "file", - "hash": "71822d4d3cb5d9499820174cbae63eedf90fb904", - "version": "71822d4", - "author": "Tim", + "hash": "810b3d3fc882adb6979153dccbf30b5befcca779", + "version": "810b3d3", + "author": "风埠", "description": "", "tags": [ - "圣遗物" + "墩墩桃" ] }, { - "name": "狗粮_璃月_渌华池_3.json", + "name": "墩墩桃19.json", "type": "file", - "hash": "bbd9d6096afafbce7b178040b5108c4116d02cc9", - "version": "bbd9d60", - "author": "Tim", + "hash": "de9078fb87cb9c7dd928f0971914916dfecf6a2b", + "version": "de9078f", + "author": "风埠", "description": "", "tags": [ - "圣遗物" + "墩墩桃" ] }, { - "name": "狗粮_璃月_老窖_6.json", + "name": "墩墩桃2.json", "type": "file", - "hash": "c435bf0736d1823bb3f58fb68e979b155627abf7", - "version": "c435bf0", - "author": "Tim", + "hash": "a1398398b62f23339d79a2b3151540dd64ea87d3", + "version": "a139839", + "author": "风埠", + "description": "卡萨扎莱宫右下4个墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃20 .json", + "type": "file", + "hash": "6c9e59fde6a387a4ac6031d7950862f9dbe6bf32", + "version": "6c9e59f", + "author": "风埠", "description": "", "tags": [ - "圣遗物" + "墩墩桃" ] }, { - "name": "狗粮_璃月_荻花洲_2.json", + "name": "墩墩桃3.json", "type": "file", - "hash": "b336be4670259359546fe82522293c0c94178a82", - "version": "b336be4", - "author": "Tim", + "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": "狗粮_璃月_轻策庄_2.json", + "name": "墩墩桃8.json", "type": "file", - "hash": "fccf3f0d0b2f7be4bfbd3a7cf190b8e6b3b9c8ab", - "version": "fccf3f0", - "author": "Tim", + "hash": "7febef44e5b097c898f1d8e5fa06d43400d88fcc", + "version": "7febef4", + "author": "风埠", + "description": "墩墩桃", + "tags": [ + "墩墩桃" + ] + }, + { + "name": "墩墩桃9.json", + "type": "file", + "hash": "2a03746b8ab512268453ad13378ca08a9a569f37", + "version": "2a03746", + "author": "风埠", "description": "", "tags": [ - "圣遗物" + "墩墩桃" ] - }, + } + ] + }, + { + "name": "天云草实", + "type": "directory", + "children": [ { - "name": "狗粮_稻妻_平海砦_3.json", + "name": "天云草实-天云峠02-10个.json", "type": "file", - "hash": "e182bbf5fb01d7d042e8e9e3975b69655fb426bb", - "version": "e182bbf", - "author": "Tim", + "hash": "210fb8bee65e43403563dac64257af6ee49dc1df", + "version": "210fb8b", + "author": "曦", "description": "", "tags": [ - "圣遗物" + "天云草实" ] }, { - "name": "狗粮_稻妻_惑饲滩西_2.json", + "name": "天云草实-天云峠左下角-26个.json", "type": "file", - "hash": "4b3027c0be0da4be10d8df376ca42ee450b14a6a", - "version": "4b3027c", - "author": "Tim", + "hash": "a6dd2c338fb2ac1c6604eaf59162ec628a6bcaff", + "version": "a6dd2c3", + "author": "曦", "description": "", "tags": [ - "圣遗物" + "天云草实" ] }, { - "name": "狗粮_稻妻_望泷村西南_4.json", + "name": "天云草实-石越村-6个.json", "type": "file", - "hash": "068103290e346624c3edd60d0e8bb2f0b97c62a5", - "version": "0681032", - "author": "Tim", + "hash": "7a74abab5288290c68ba579c33b11cfedaf39f27", + "version": "7a74aba", + "author": "曦", "description": "", "tags": [ - "圣遗物" + "天云草实" ] }, { - "name": "狗粮_稻妻_浅籁神社_3.json", + "name": "天云草实-越石村右侧-6个.json", "type": "file", - "hash": "15e36303a4132a1d1ec596f2b349e4b0b2b09d63", - "version": "15e3630", - "author": "Tim", + "hash": "ba2b622fe819c2cfdf531a65f7718a947fa7ec76", + "version": "ba2b622", + "author": "曦", "description": "", "tags": [ - "圣遗物" + "天云草实" ] - }, + } + ] + }, + { + "name": "子探测单元", + "type": "directory", + "children": [ { - "name": "狗粮_稻妻_海祈岛东_2.json", + "name": "子探测单元-1(共4个).json", "type": "file", - "hash": "43105adbf0d23ed7d0447e3246aceb0cc6a5c529", - "version": "43105ad", - "author": "Tim", + "hash": "df47fd583e3f5fbe6a9f4d09e99ae518f6c29cab", + "version": "df47fd5", + "author": "宇寒", "description": "", "tags": [ - "圣遗物" + "子探测单元" ] }, { - "name": "狗粮_稻妻_清籁丸_7.json", + "name": "子探测单元-2(共9个).json", "type": "file", - "hash": "c775285bfbf6aae297b7d9a20916b87fbbbe7953", - "version": "c775285", - "author": "Tim", + "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": "狗粮_稻妻_神无冢_3.json", + "name": "子探测单元-4(共6个).json", "type": "file", - "hash": "8ed9d163c16800f5e02a75b090c74148dc17c07c", - "version": "8ed9d16", - "author": "Tim", - "description": "", + "hash": "1fca9236acda03f95739aeebc6716328bf3c0cf1", + "version": "1fca923", + "author": "宇寒", + "description": "略", "tags": [ - "圣遗物" + "子探测单元" ] }, { - "name": "狗粮_稻妻_越石村_5.json", + "name": "子探测单元-5(共3个).json", "type": "file", - "hash": "0fe3e1a7e4f6a0ad84600cd7086bf07495367570", - "version": "0fe3e1a", - "author": "Tim", - "description": "狗粮_越石村_5个", + "hash": "0d5fe721e3e3c9b0975ddd64d962e1c2f3f50354", + "version": "0d5fe72", + "author": "宇寒", + "description": "略", "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_稻妻_鹤观神像_3.json", - "type": "file", - "hash": "3d7ee154271887399b89852de479c65d4d769bd1", - "version": "3d7ee15", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_纳塔_圣火竞技场东_3.json", - "type": "file", - "hash": "a189ba441d5e4f4709601aca13594a3a72abe7c6", - "version": "a189ba4", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_纳塔_流泉之众_4.json", - "type": "file", - "hash": "01258624a5c4a5ad07e72b3fcd117eebd04dda8f", - "version": "0125862", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_须弥_化城郭西_2.json", - "type": "file", - "hash": "062f866b31805a6015194b48f8d9bb04d979387d", - "version": "062f866", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_须弥_无郁绸林_3.json", - "type": "file", - "hash": "fd3a523d1e76a228ca7751ae3f2b1e2e5be57a02", - "version": "fd3a523", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_须弥_水天丛林水泡点_7.json", - "type": "file", - "hash": "e01d098dfc402f5a833f9258be33a7dba82a6560", - "version": "e01d098", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_须弥_神的棋盘_3.json", - "type": "file", - "hash": "377f06b88819971e824afbd50ed44951306cabba", - "version": "377f06b", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_须弥_维摩庄_3.json", - "type": "file", - "hash": "90866fce9cf790fd346bf302a3f0528cd7017172", - "version": "90866fc", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_须弥_表恒纳兰那_9.json", - "type": "file", - "hash": "8d99542bb7db79bc1d9e00b15cdced39e6366f6c", - "version": "8d99542", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_须弥_觉王之殿南_4.json", - "type": "file", - "hash": "5780fe36c200ea1440db1bf4fbb0aff61273e9ee", - "version": "5780fe3", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "狗粮_须弥_须弥城北_2.json", - "type": "file", - "hash": "df9e7681769867a680bedccc42b376bc28cd5a5a", - "version": "df9e768", - "author": "Tim", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "碧水原01 5.json", - "type": "file", - "hash": "1e4dfa6b12f373f7f64a8d2c86d59bd71731c34c", - "version": "1e4dfa6", - "author": "lwh9346", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "碧水原02 9.json", - "type": "file", - "hash": "d4e3f69769402aedadc40cae6c0a9ae82616b709", - "version": "d4e3f69", - "author": "lwh9346", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "name": "神的棋盘01 2.json", - "type": "file", - "hash": "192ccf6594e5a308369b7f7b88d67307c65f719c", - "version": "192ccf6", - "author": "lwh9346", - "description": "", - "tags": [ - "圣遗物" + "子探测单元" ] } ] @@ -620,8 +2621,8 @@ { "name": "小灯草-晨曦酒庄-蒙德4个.json", "type": "file", - "hash": "d9da599543ee9753e69985877432968d0f05d992", - "version": "d9da599", + "hash": "8b041e749219ddcf804785fffc87240e94a58dc9", + "version": "8b041e7", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -641,6 +2642,100 @@ } ] }, + { + "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", @@ -663,8 +2758,8 @@ { "name": "幽光星星2.json", "type": "file", - "hash": "18ad79c2ff4cb224a0b0af1cdd2f08f9cde5c67a", - "version": "18ad79c", + "hash": "4b4347ac0ac1496c9bf43f1a151da893e1f58984", + "version": "4b4347a", "author": "jbcaaa", "description": "", "tags": [ @@ -852,6 +2947,117 @@ } ] }, + { + "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": "悼灵花-铁穆山-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", @@ -864,7 +3070,8 @@ "author": "yulalaa", "description": "", "tags": [ - "慕风蘑菇" + "慕风蘑菇", + "纳西妲" ] }, { @@ -875,7 +3082,8 @@ "author": "yulalaa", "description": "", "tags": [ - "慕风蘑菇" + "慕风蘑菇", + "纳西妲" ] }, { @@ -886,7 +3094,254 @@ "author": "yulalaa", "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": [ + "日落果", + "纳西妲" ] } ] @@ -952,6 +3407,78 @@ } ] }, + { + "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", @@ -1068,6 +3595,622 @@ } ] }, + { + "name": "松果", + "type": "directory", + "children": [ + { + "name": "松果1.json", + "type": "file", + "hash": "c182e463ed132b3d311225f8fa9ceaf78aa274fa", + "version": "c182e46", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "松果", + "纳西妲" + ] + }, + { + "name": "松果2.json", + "type": "file", + "hash": "61db6a818e2123d3512cc48d63b78ec649d8a284", + "version": "61db6a8", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "松果", + "纳西妲" + ] + }, + { + "name": "松果3.json", + "type": "file", + "hash": "4961a18c48da8119d662899f8c166277a7087617", + "version": "4961a18", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "松果", + "纳西妲" + ] + }, + { + "name": "松果4.json", + "type": "file", + "hash": "3b65fe5334cb354e9adfa4eeafd6a7fc5bdbe57c", + "version": "3b65fe5", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "松果", + "纳西妲" + ] + }, + { + "name": "松果5.json", + "type": "file", + "hash": "ecc1bfc3eee95566328de2d53d0bd0ca5054e4ae", + "version": "ecc1bfc", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "松果", + "纳西妲" + ] + }, + { + "name": "松果6.json", + "type": "file", + "hash": "642d626db97f1d5d601de2a8577ab28a4984dc5a", + "version": "642d626", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "松果", + "纳西妲" + ] + }, + { + "name": "松果7.json", + "type": "file", + "hash": "06ca59790f1b6c44e212d5a3d2c8643639c494fb", + "version": "06ca597", + "author": "玛卡巴卡", + "description": "", + "tags": [ + "松果", + "纳西妲" + ] + } + ] + }, + { + "name": "松茸", + "type": "directory", + "children": [ + { + "name": "松茸1.json", + "type": "file", + "hash": "c1e9df8b12e0be3bbec5405667217ce1c626d026", + "version": "c1e9df8", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸10.json", + "type": "file", + "hash": "ab81c723fe56e857baec124b280078a4be466b0e", + "version": "ab81c72", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸11.json", + "type": "file", + "hash": "7ea7ab5ddbf893ce334a42db8bb0b05d337b3382", + "version": "7ea7ab5", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸12.json", + "type": "file", + "hash": "be4dfe9b13af2ac2be38719e2bbce24326e9a489", + "version": "be4dfe9", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸13.json", + "type": "file", + "hash": "3baa9a28f10b41e2c559554a28e5872ad6318c6a", + "version": "3baa9a2", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸14.json", + "type": "file", + "hash": "60ed0a1f3b7e96f08e2779721cd56a00598c2c21", + "version": "60ed0a1", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸15.json", + "type": "file", + "hash": "721852e27265fa23c20aaf8dbb764370c6cfa7a3", + "version": "721852e", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸16.json", + "type": "file", + "hash": "586616da05364c23a98d2ac8a3510a4979e4432e", + "version": "586616d", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸17.json", + "type": "file", + "hash": "6e4a2b1a0a9332d0fcc5a6cb5721bba6d5172445", + "version": "6e4a2b1", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸18.json", + "type": "file", + "hash": "10c7b847a2a550ff3e3166402c769b214f2ab971", + "version": "10c7b84", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸19.json", + "type": "file", + "hash": "15bcf6610d8b32737a5c7be45b91a56945ace859", + "version": "15bcf66", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸2.json", + "type": "file", + "hash": "730a675b7979f6bef91a37f009f9c33330a51cdc", + "version": "730a675", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸20.json", + "type": "file", + "hash": "2fb5ea8fa35ade43e7ea0bbebcb87275f7b143ca", + "version": "2fb5ea8", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸21.json", + "type": "file", + "hash": "5c9a00d10a99000609e43cca1a0d71301169ee01", + "version": "5c9a00d", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸22.json", + "type": "file", + "hash": "5ecabe307df29d07a309edc5b32dfeab7c89187b", + "version": "5ecabe3", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸23.json", + "type": "file", + "hash": "d89885da74f5bcf07a6180a470978d1aeb403b71", + "version": "d89885d", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸24.json", + "type": "file", + "hash": "54404a23b8e18e6e993e6de63a96d12d0d7d0bf5", + "version": "54404a2", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸25.json", + "type": "file", + "hash": "263edc54e89b5461e0959f14ed0d3923af1a961a", + "version": "263edc5", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸26.json", + "type": "file", + "hash": "48ef4a944b5187b416b5877269c7841d83e5bdd3", + "version": "48ef4a9", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸27.json", + "type": "file", + "hash": "c88cc2895dd62f2543e20c435398a987b479caa9", + "version": "c88cc28", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸28.json", + "type": "file", + "hash": "51b55dc57537b5cb7f2c16aab37709b854a03e46", + "version": "51b55dc", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸29.json", + "type": "file", + "hash": "3204a539941b473a633e52a388813ad9c0c316b9", + "version": "3204a53", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸3.json", + "type": "file", + "hash": "47ec2f1586bbca658b2aae549f6a0da3971974cc", + "version": "47ec2f1", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸4.json", + "type": "file", + "hash": "80021d46a190e16bd30b2605daa180eb3da65619", + "version": "80021d4", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸5.json", + "type": "file", + "hash": "cd974373390b0901595b445940c5f601ee3e2bce", + "version": "cd97437", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸6.json", + "type": "file", + "hash": "f9964ce0d34839a76d916c809d260cab62b45a6d", + "version": "f9964ce", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸7.json", + "type": "file", + "hash": "ac0882a1fdb4cb914243c8dfdb3cdd02fd9f3dca", + "version": "ac0882a", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸8.json", + "type": "file", + "hash": "3d3b838be4b672b3d8ece49a771ae587ddaee882", + "version": "3d3b838", + "author": "", + "description": "", + "tags": [ + "松茸", + "纳西妲" + ] + }, + { + "name": "松茸9.json", + "type": "file", + "hash": "784730b43de8f23b9b2dd73089682ed64b2e0383", + "version": "784730b", + "author": "", + "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": "枯叶紫英", + "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", @@ -1173,6 +4316,558 @@ } ] }, + { + "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", @@ -1256,6 +4951,143 @@ } ] }, + { + "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", @@ -1263,8 +5095,8 @@ { "name": "浪沫羽鳃1-流泉之众上-11个.json", "type": "file", - "hash": "34e69cbe2a3c3180d44a6a2bd069141d3d81d735", - "version": "34e69cb", + "hash": "9d89514979df0906def126ca5ae435795348f142", + "version": "9d89514", "author": "黎歌", "description": "", "tags": [ @@ -1365,39 +5197,6 @@ "海灵芝" ] }, - { - "name": "海灵芝_天云峠右上2_稻妻_3个.json", - "type": "file", - "hash": "db15e0cbb318f7205728f373c36bdb4daa510771", - "version": "db15e0c", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_天云峠右上_稻妻_4个.json", - "type": "file", - "hash": "239459115f5ee621736618e91f8fcb6dbbbd9eca", - "version": "2394591", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, - { - "name": "海灵芝_天云峠右下_稻妻_10个.json", - "type": "file", - "hash": "d149a71273057b835255197963c067b22959c79f", - "version": "d149a71", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, { "name": "海灵芝_曚云神社西_稻妻_6个.json", "type": "file", @@ -1475,17 +5274,6 @@ "海灵芝" ] }, - { - "name": "海灵芝_神里屋敷右小角小岛_稻妻_5个.json", - "type": "file", - "hash": "9b2f6b6804581d4e111f3b005f125f1110015487", - "version": "9b2f6b6", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, { "name": "海灵芝_绀田村左上角_稻妻_5个.json", "type": "file", @@ -1497,17 +5285,6 @@ "海灵芝" ] }, - { - "name": "海灵芝_荒海右边_稻妻_4个.json", - "type": "file", - "hash": "23cf5e1d15c02845bd80433a52f291747a3babaa", - "version": "23cf5e1", - "author": "tignioj", - "description": "", - "tags": [ - "海灵芝" - ] - }, { "name": "海灵芝_蛇神之首右_稻妻_5个.json", "type": "file", @@ -1554,6 +5331,306 @@ } ] }, + { + "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", @@ -1743,7 +5820,7 @@ ] }, { - "name": "珊瑚珍珠", + "name": "珊瑚真珠", "type": "directory", "children": [ { @@ -1754,7 +5831,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -1765,7 +5842,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -1776,7 +5853,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -1787,7 +5864,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -1798,7 +5875,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -1809,7 +5886,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] } ] @@ -1908,6 +5985,120 @@ } ] }, + { + "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", @@ -2027,129 +6218,7 @@ { "name": "石珀", "type": "directory", - "children": [ - { - "name": "石珀1-虎牢山1-4个.json", - "type": "file", - "hash": "08aeeea5a5a516fdce8f988cbebe52239d90f438", - "version": "08aeeea", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀10-无妄坡1-2个.json", - "type": "file", - "hash": "67af8793393eff53ba1b5d2983ddc862a7888f23", - "version": "67af879", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀11-孤云阁1-1个.json", - "type": "file", - "hash": "e69e3096ed0436c38578e660977744ac1ecd4cc7", - "version": "e69e309", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀2-虎牢山2-2个.json", - "type": "file", - "hash": "145326b0ae962ecb83d54e5924d87efdd0edf85b", - "version": "145326b", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀3-虎牢山2-4个.json", - "type": "file", - "hash": "b831946d52408a7bd5c6fb1b13198d99d7f8db32", - "version": "b831946", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀4-层岩巨渊1-2个.json", - "type": "file", - "hash": "123f20d5e199f612d1aad4f1e53f190e4d798e1f", - "version": "123f20d", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀5-清策庄1-2个.json", - "type": "file", - "hash": "2803cf49862a21ef7a69e1bb7c00cafd2bd0480b", - "version": "2803cf4", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀6-清策庄2-2个.json", - "type": "file", - "hash": "a276a18c5aabdda654d62dbcf69a6dc064b36a39", - "version": "a276a18", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀7-清策庄3-1个.json", - "type": "file", - "hash": "0cc08bf072993675c528513b5d2bc22bd8a0fe8d", - "version": "0cc08bf", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀8-清策庄4-2个.json", - "type": "file", - "hash": "84d9ba79b5a6d0e32ea4c1197dfb998636f5d66c", - "version": "84d9ba7", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - }, - { - "name": "石珀9-奥藏山1-2个.json", - "type": "file", - "hash": "465ae5bf8049c393221d1d828c8bb7e4c047961e", - "version": "465ae5b", - "author": "yulalaa", - "description": "", - "tags": [ - "石珀" - ] - } - ] + "children": [] }, { "name": "竹笋", @@ -2158,8 +6227,19 @@ { "name": "竹笋(容易爬树).json", "type": "file", - "hash": "4ee60bae91b24809ffa81f5f2756666ad85bc485", - "version": "4ee60ba", + "hash": "fe4c69d4e668b4a8e6331d6664fe618ab39aa8f0", + "version": "fe4c69d", + "author": "", + "description": "", + "tags": [ + "竹笋" + ] + }, + { + "name": "竹笋1-轻策庄-璃月14个.json", + "type": "file", + "hash": "e97e3d384965f51a14e74eb4a765a5f26935e4c9", + "version": "e97e3d3", "author": "不瘦五十斤不改名", "description": "", "tags": [ @@ -2168,85 +6248,467 @@ } ] }, + { + "name": "紫晶块", + "type": "directory", + "children": [ + { + "name": "稻妻八云岛01 (1).json", + "type": "file", + "hash": "9829df06468f377067fdab63d56eecc1032ddcdb", + "version": "9829df0", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻八云岛02.json", + "type": "file", + "hash": "4711e3e8b12f71122f2a53fb39b8d71a2402e4bd", + "version": "4711e3e", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻八云岛03非木村.json", + "type": "file", + "hash": "6d7771f56441487df1a0b5d9af1db9409c647d7d", + "version": "6d7771f", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻八云岛04非木村.json", + "type": "file", + "hash": "9de4ef9f647c07740e7901ec392f9139c99539ef", + "version": "9de4ef9", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻八云岛05上.json", + "type": "file", + "hash": "abbec0cd0177e62db3ffd0bc7644235ad80eb4a4", + "version": "abbec0c", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻八云岛06华染.json", + "type": "file", + "hash": "43fa7f6f1591c3c2e8483f7393a3b5dda2da2ece", + "version": "43fa7f6", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻八云岛07名稚.json", + "type": "file", + "hash": "4a23598b35c8f568709054ab941bea2defa768f4", + "version": "4a23598", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻揉备沙01 (1).json", + "type": "file", + "hash": "f7a5cf9e2ad23af26e18482d4fe4abfbf2b80605", + "version": "f7a5cf9", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻揉备沙02借景.json", + "type": "file", + "hash": "7fcf314fa6bab0110caa1b3bf4cb4927943fda0c", + "version": "7fcf314", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻揉备沙03神无冢.json", + "type": "file", + "hash": "7d1b96810cc0e474fb6f888c1a2dead75d25683a", + "version": "7d1b968", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻揉备沙04神无冢 (1).json", + "type": "file", + "hash": "5e7f7ed146b222793618bfbb346417def79adc41", + "version": "5e7f7ed", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻揉备沙05九条 (1).json", + "type": "file", + "hash": "e09a3ab1f728f6798371a52a687855fdeb1d6be9", + "version": "e09a3ab", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻海祗岛01.json", + "type": "file", + "hash": "900d81f3cf81615e3ec2403186c3d53c17537d9b", + "version": "900d81f", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻海祗岛02.json", + "type": "file", + "hash": "bf46b5f5c0a0250bbadf97ea625ea3acaf535d71", + "version": "bf46b5f", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻海祗岛03.json", + "type": "file", + "hash": "57cf05b7480f462ece2030cc4296748547c1294e", + "version": "57cf05b", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻海祗岛04.json", + "type": "file", + "hash": "e4c3034538a850256c43aa29bc0a326932f9bbd4", + "version": "e4c3034", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻海祗岛05珊瑚宫.json", + "type": "file", + "hash": "242cc52296a85c5bfae8dbf685a6281e80f607ac", + "version": "242cc52", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻海祗岛06神像.json", + "type": "file", + "hash": "5aa5932c8343db11946c7f6940fa9ffcb6f09410", + "version": "5aa5932", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻鸣神01甘田 (1).json", + "type": "file", + "hash": "37613085e023376b4a5d5f541ae4f3ffd4f8270e", + "version": "3761308", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻鸣神02甘田 (1).json", + "type": "file", + "hash": "e4a5a8c966944ebaf8a827b6a9bd34be9f2443a1", + "version": "e4a5a8c", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻鸣神03荒海 (1).json", + "type": "file", + "hash": "1711f305e6e5d3b7dd5d16c523c9b3d936619440", + "version": "1711f30", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + }, + { + "name": "稻妻鸣神04甘田.json", + "type": "file", + "hash": "f3923470017a3562c4cc2fbd7f24919989de645e", + "version": "f392347", + "author": "mfkvfhpdx", + "description": "", + "tags": [ + "紫晶块" + ] + } + ] + }, { "name": "绝云椒椒", "type": "directory", "children": [ { - "name": "绝云椒椒-奥藏山(一)-璃月1×3个.json", - "type": "file", - "hash": "c1ba4a6b96964ecb08a19556011db4d6073770fc", - "version": "c1ba4a6", - "author": "不瘦五十斤不改名", - "description": "", - "tags": [ - "绝云椒椒" + "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": "绝云椒椒-奥藏山(二)-璃月6×3个.json", + "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": "5e50bee3df069d929a690a00197f0db101e9f332", - "version": "5e50bee", - "author": "不瘦五十斤不改名", + "hash": "0c7ed9d4c25633a9a416e5f2f74e96f2ce3097ae", + "version": "0c7ed9d", + "author": "起个名字好难", "description": "", "tags": [ - "绝云椒椒" + "绯樱绣球", + "雷元素力收集" ] }, { - "name": "绝云椒椒-宗室本-璃月4×3个.json", + "name": "02绯樱绣球-绀田村-3个.json", "type": "file", - "hash": "6121853f58efbfd2da2b460f4d837be7cb6232b2", - "version": "6121853", - "author": "不瘦五十斤不改名", + "hash": "9146083c93314d62486c3a5f028c8ed01119607c", + "version": "9146083", + "author": "起个名字好难", "description": "", "tags": [ - "绝云椒椒" + "绯樱绣球", + "雷元素力收集" ] }, { - "name": "绝云椒椒-苍白本-璃月7×3个.json", + "name": "03绯樱绣球-荒海-7个.json", "type": "file", - "hash": "42fd102f24ab486920f40b7116b49054d973a0f7", - "version": "42fd102", - "author": "不瘦五十斤不改名", + "hash": "5c5a98e723695cbf60206a25c83390ceb8391ba0", + "version": "5c5a98e", + "author": "起个名字好难", "description": "", "tags": [ - "绝云椒椒" + "绯樱绣球", + "雷元素力收集" ] }, { - "name": "绝云椒椒-轻策庄(一)-璃月1×3个.json", + "name": "04绯樱绣球-稻妻城-4个(途经一个半空的不采).json", "type": "file", - "hash": "6ffb99454fb1f65f19aa4e966a1f2635fdbafc72", - "version": "6ffb994", - "author": "不瘦五十斤不改名", + "hash": "18aab98468dd74bcfb093edf64f45ecb64eb2315", + "version": "18aab98", + "author": "起个名字好难", "description": "", "tags": [ - "绝云椒椒" + "绯樱绣球", + "雷元素力收集" ] }, { - "name": "绝云椒椒-轻策庄(三)-璃月1×3个.json", + "name": "05绯樱绣球-鸣神大社-3个.json", "type": "file", - "hash": "910d7711ff91a31e20297c8b0baca05b221b2232", - "version": "910d771", - "author": "不瘦五十斤不改名", + "hash": "1c6fabb739b35ea278cb0315472d3237ec0de263", + "version": "1c6fabb", + "author": "起个名字好难", "description": "", "tags": [ - "绝云椒椒" + "绯樱绣球", + "雷元素力收集" ] }, { - "name": "绝云椒椒-轻策庄(二)-璃月7×3个.json", + "name": "06绯樱绣球-镇守之森-4个.json", "type": "file", - "hash": "15598e7a2e3fe300a3340a86dc88ce5c1800e151", - "version": "15598e7", - "author": "不瘦五十斤不改名", + "hash": "5035afae058f7af2cd4b1c9698d62eb9214df87f", + "version": "5035afa", + "author": "起个名字好难", "description": "", "tags": [ - "绝云椒椒" + "绯樱绣球", + "雷元素力收集" ] } ] @@ -2269,8 +6731,8 @@ { "name": "肉龙掌2-坚岩隘谷上-18个.json", "type": "file", - "hash": "94f3f024eb9e0d96dcad1489600e28859c5851d4", - "version": "94f3f02", + "hash": "8e796f725fe870ade1beaad7d3385da7f947166b", + "version": "8e796f7", "author": "黎歌", "description": "", "tags": [ @@ -2280,8 +6742,8 @@ { "name": "肉龙掌3-坚岩隘谷右-14个.json", "type": "file", - "hash": "cafc3189fc69301fb2bbdd0e03591d32ea35a63a", - "version": "cafc318", + "hash": "050c8bd3396d97be8749d16d74c7615a6551f06a", + "version": "050c8bd", "author": "黎歌", "description": "", "tags": [ @@ -2302,8 +6764,8 @@ { "name": "肉龙掌5-硫晶支脉左-5个.json", "type": "file", - "hash": "63d0cd7c9f40f97c82c14577a64d1fd4b87f0925", - "version": "63d0cd7", + "hash": "6003693c3d35160fb9eebd4865b4667ed7036c68", + "version": "6003693", "author": "黎歌", "description": "", "tags": [ @@ -2324,8 +6786,8 @@ { "name": "肉龙掌7-隆崛坡-13个.json", "type": "file", - "hash": "659b84615b0f040620a9579de71289cde2cc982b", - "version": "659b846", + "hash": "5bddab762717370f12b5bd7d5904351668904c7f", + "version": "5bddab7", "author": "黎歌", "description": "", "tags": [ @@ -2567,40 +7029,1398 @@ ] }, { - "name": "落落梅", + "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": "98b6a556f1a9e1d81d10dd603f76e9a626a39c5d", - "version": "98b6a55", + "hash": "113131274b932057cf7ba6327c9ef6ed10fa4a3e", + "version": "1131312", "author": "yulalaa", "description": "", "tags": [ - "落落梅" + "落落莓" ] }, { "name": "望风山地2x28.json", "type": "file", - "hash": "e2c3fd8eb169de45b059b0758a3131e3efdd42a3", - "version": "e2c3fd8", + "hash": "d447b3278f23c56409ee8240b1953ec780931c7c", + "version": "d447b32", "author": "yulalaa", "description": "", "tags": [ - "落落梅" + "落落莓" ] }, { "name": "望风山地3x16.json", "type": "file", - "hash": "455834f003aac51340796de051d88dbe6acb473a", - "version": "455834f", + "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": [ + "蒲公英" ] } ] @@ -2738,6 +8558,519 @@ } ] }, + { + "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": "金鱼草-南天门-1个.json", + "type": "file", + "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", @@ -2761,7 +9094,8 @@ "author": "不瘦五十斤不改名", "description": "", "tags": [ - "钩钩果" + "钩钩果", + "纳西妲" ] } ] @@ -2878,7 +9212,8 @@ "author": "不瘦五十斤不改名", "description": "", "tags": [ - "须弥蔷薇" + "须弥蔷薇", + "纳西妲" ] }, { @@ -2889,7 +9224,8 @@ "author": "不瘦五十斤不改名", "description": "", "tags": [ - "须弥蔷薇" + "须弥蔷薇", + "纳西妲" ] }, { @@ -2900,7 +9236,8 @@ "author": "不瘦五十斤不改名", "description": "", "tags": [ - "须弥蔷薇" + "须弥蔷薇", + "纳西妲" ] }, { @@ -2911,7 +9248,8 @@ "author": "不瘦五十斤不改名", "description": "", "tags": [ - "须弥蔷薇" + "须弥蔷薇", + "纳西妲" ] }, { @@ -2922,7 +9260,8 @@ "author": "不瘦五十斤不改名", "description": "", "tags": [ - "须弥蔷薇" + "须弥蔷薇", + "纳西妲" ] }, { @@ -2933,7 +9272,8 @@ "author": "不瘦五十斤不改名", "description": "", "tags": [ - "须弥蔷薇" + "须弥蔷薇", + "纳西妲" ] }, { @@ -2944,7 +9284,8 @@ "author": "不瘦五十斤不改名", "description": "", "tags": [ - "须弥蔷薇" + "须弥蔷薇", + "纳西妲" ] } ] @@ -3076,6 +9417,391 @@ } ] }, + { + "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": "马尾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": "鬼兜虫01-九条阵屋-4个(纳西妲).json", + "type": "file", + "hash": "72ec02fb5a8dfbf343d299bbac18436308c53a19", + "version": "72ec02f", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + }, + { + "name": "鬼兜虫02-踏鞴砂(东北侧)-1个(纳西妲).json", + "type": "file", + "hash": "ab5c5b6fcee49a69b22af5c36c21f7744eec263e", + "version": "ab5c5b6", + "author": "起个名字好难", + "description": "", + "tags": [ + "鬼兜虫", + "纳西妲" + ] + }, + { + "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": "鬼兜虫07-踏鞴砂(公义)-1个(需要纳西妲).json", + "type": "file", + "hash": "935538f6e1d4d389fbedb1f601f5703726c987b1", + "version": "935538f", + "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": "鸟蛋-云来海-璃月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", @@ -3083,10 +9809,10 @@ { "name": "鸣草_九条阵屋_3个.json", "type": "file", - "hash": "3e6c4e0b55a6fa4545e41d7f04a3987b3435ee3e", - "version": "3e6c4e0", + "hash": "405fe41ab05f7aad40f79e9b8a4ff356464dab2d", + "version": "405fe41", "author": "花见木易", - "description": "", + "description": "鸣草_九条阵屋_3个 的初始点类型修改为“传送”", "tags": [ "鸣草" ] @@ -3143,15 +9869,51 @@ "name": "js", "type": "directory", "children": [ + { + "name": "Auto Commission && Expedition", + "type": "directory", + "hash": "e6352ba625ef16e41aa2dbb0b09cce114bb83e5c", + "version": "1.0", + "author": "yemaxul", + "description": "自动领取委托或派遣~|~自动传送到枫丹并领取每日委托或探索派遣,两个都要请运行两次,建议搭配领取历练点使用", + "tags": [] + }, { "name": "AutoArtifacts", "type": "directory", - "hash": "a0a967b4293f14e74f4bddf079e4c62768403451", - "version": "1.7", - "author": "HZYgrandma", + "hash": "65a6fa5a9e77bf72bea88aa1d59c530500d490ae", + "version": "2.0", + "author": "HZYgrandma & Tim", "description": "自动狗粮~|~自动调查离传送点较近的狗粮。请使用琳妮特前台,双风共鸣。并保证所有传送点都已经激活!", "tags": [] }, + { + "name": "AutoArtifacts [RouteAB]", + "type": "directory", + "hash": "5870770ed6f26c9bccd8558c33df0c7b56014337", + "version": "1.1", + "author": "愚溪 & Yang-z", + "description": "自动狗粮 [AB线]~|~分AB线隔天运行", + "tags": [] + }, + { + "name": "AutoArtifacts_A_B_Extra", + "type": "directory", + "hash": "f60d1cc63a1784e3cf6d6387a5e510afa562cc3f", + "version": "1.6", + "author": "Yang-z", + "description": "狗粮ABE路线,自动拾取分解~|~圣遗物狗粮AB路线自动轮换,及额外点位拾取,途中自动分解。更新纳塔5.2优质点位。", + "tags": [] + }, + { + "name": "AutoCatherine", + "type": "directory", + "hash": "a3560a0a4198f7e6ba32f5871b893d7a6feb58c0", + "version": "1.0", + "author": "½", + "description": "自动找凯瑟琳~|~去找凯瑟琳(基于路径追踪)", + "tags": [] + }, { "name": "AutoCrystalfly", "type": "directory", @@ -3164,21 +9926,66 @@ { "name": "AutoDomain", "type": "directory", - "hash": "ce6bf4513243c391c4026c49b243cf0376417dc2", + "hash": "ae4964062c04cb6eff02890dff78a98510503036", + "version": "1.3", + "author": "huiyadanli&iris", + "description": "传送并自动秘境~|~BetterGI自带脚本,用于传送后并执行自动秘境。秘境中角色死亡复活后继续回去战斗。", + "tags": [] + }, + { + "name": "AutoFriendship", + "type": "directory", + "hash": "fc5fe084ae6893a46f1aba467b8c35b3cf2fdee1", "version": "1.0", - "author": "huiyadanli", - "description": "传送并自动秘境~|~BetterGI自带脚本,用于传送后并执行自动秘境", + "author": "HZYgrandma & 愚溪", + "description": "自动好感度~|~通过突发事件刷好感度,请配合好感度战斗脚本使用", + "tags": [] + }, + { + "name": "AutoWoodcutting", + "type": "directory", + "hash": "a9e0ac5fa840a3c27857e04735a2070b92919206", + "version": "1.0", + "author": "愚溪 & ½ ", + "description": "自动伐木~|~前往并自动伐木", + "tags": [] + }, + { + "name": "Autopermission", + "type": "directory", + "hash": "b12820598212771beec9265ae499102c680a9d16", + "version": "1.0", + "author": "½", + "description": "自动设置权限~|~设置进入世界的权限,默认锁门", + "tags": [] + }, + { + "name": "Back", + "type": "directory", + "hash": "e4734389cd7ae20c0191028cec8103cca691313d", + "version": "1.0", + "author": "LL", + "description": "返回主界面~|~强制返回主界面", "tags": [] }, { "name": "BattlePass", "type": "directory", - "hash": "db466bcc84c3f4440178eabd5e702a637d5651fc", - "version": "1.0", + "hash": "bf4f4b380e4ea7c4b233c5a73b3dd03ff3afe49a", + "version": "1.1", "author": "HZYgrandma", "description": "领取纪行~|~用于领取纪行", "tags": [] }, + { + "name": "Collect Dongtian Xuyu Resin", + "type": "directory", + "hash": "97dabf44b35ac89fecca034f01db10e8cde7339f", + "version": "1.0", + "author": "风埠", + "description": "领取洞天百宝须臾树脂,只领取须臾树脂,前面是领取洞天宝钱和好感~|~领取洞天须臾树脂", + "tags": [] + }, { "name": "Condensed Resin", "type": "directory", @@ -3191,8 +9998,8 @@ { "name": "Daily Commission", "type": "directory", - "hash": "a14741afc9423d685755af4c533a83b2ab0fc9d8", - "version": "1.0", + "hash": "ac2832491f84e5b62a44432e85b24e44f3160561", + "version": "1.2", "author": "鹤望兰", "description": "领取每日委托奖励~|~用于领取每日委托奖励", "tags": [] @@ -3225,12 +10032,21 @@ "tags": [] }, { - "name": "Experience points", + "name": "JustAwait", "type": "directory", - "hash": "713c2cc2c7a38ca2788461ed33d1572937ef0ee7", + "hash": "b16b4f6e53345769b489706b860ab212f630dd31", "version": "1.0", - "author": "鹤望兰", - "description": "领取历练点~|~用于领取历练点", + "author": "HZYgrandma", + "description": "只是等待一下~|~只用于等待,方便在调度器为不同性能的设备配置等待", + "tags": [] + }, + { + "name": "JustMove", + "type": "directory", + "hash": "b7f32fba15de1c0d7877ea6967167be483ac5ace", + "version": "1.0", + "author": "½", + "description": "只是移动一下~|~用于自定义移动", "tags": [] }, { @@ -3251,6 +10067,24 @@ "description": "切换上一队~|~用于切换到上一队", "tags": [] }, + { + "name": "Login", + "type": "directory", + "hash": "9dcb76f04355a12c406c17542d9829aeee2b59a8", + "version": "1.0", + "author": "愚溪", + "description": "登录游戏~|~输入账号和密码并进入游戏", + "tags": [] + }, + { + "name": "Logout", + "type": "directory", + "hash": "af9c587f98f4b419d1a901024003bd1d006f2abc", + "version": "1.0", + "author": "愚溪", + "description": "退出并重登~|~退出游戏并退出账号", + "tags": [] + }, { "name": "Mail", "type": "directory", @@ -3260,6 +10094,15 @@ "description": "领取邮件~|~用于领取邮件", "tags": [] }, + { + "name": "MeetKatheryne", + "type": "directory", + "hash": "33304861b4990790cfee96e27a4495612c26d58d", + "version": "1.1", + "author": "Lix", + "description": "传送到凯瑟琳~|~传送到枫丹凯瑟琳旁边,可搭配领取每日奖励或重新派遣", + "tags": [] + }, { "name": "NextParty", "type": "directory", @@ -3269,6 +10112,15 @@ "description": "切换下一队~|~用于切换到下一队", "tags": [] }, + { + "name": "PathingBenchmark", + "type": "directory", + "hash": "01ae361f9862a9bb0e5bd1a9d14fcab5014f7d4f", + "version": "1.0", + "author": "HZYgrandma", + "description": "路径追踪配队跑分~|~对配队的路径追踪性能进行量化呈现", + "tags": [] + }, { "name": "QuitGame", "type": "directory", @@ -3287,6 +10139,42 @@ "description": "分解狗粮~|~用于分解狗粮", "tags": [] }, + { + "name": "SereniteaPot", + "type": "directory", + "hash": "9a264c82fe44108751cbd5f747d88a42bfac0ee6", + "version": "1.2", + "author": "愚溪", + "description": "尘歌壶~|~自动领诚哥壶奖励", + "tags": [] + }, + { + "name": "SetMapZoom", + "type": "directory", + "hash": "5507d53813d0f23116e4453316eb2a7b425b581f", + "version": "1.0", + "author": "Tim", + "description": "设置大地图缩放~|~通过左侧缩放条调整大地图缩放,1为最大放大,6为最小,3.5为中间", + "tags": [] + }, + { + "name": "SetTime", + "type": "directory", + "hash": "6689fc3d1c34e32f4e965488d9ac7f3c21b4bd8a", + "version": "1.0", + "author": "愚溪", + "description": "调整游戏时间~|~用于调整游戏时间,请在调度器中使用", + "tags": [] + }, + { + "name": "SetTimeMinute", + "type": "directory", + "hash": "f5c2547dfc286fc643c733d630f775e8fbf12971", + "version": "1.0", + "author": "Tim", + "description": "精确调整游戏时间到分钟~|~用于调整游戏时间,精确到分钟,请在调度器中使用", + "tags": [] + }, { "name": "Shutdown", "type": "directory", @@ -3297,13 +10185,184 @@ "tags": [] }, { - "name": "Wait 10min", + "name": "Switch roles", + "type": "directory", + "hash": "5e7a09e72e055956c2e2ffa370e9efba747c65e9", + "version": "1.0", + "author": "LL", + "description": "切换角色~|~用于切换角色", + "tags": [] + }, + { + "name": "Switch teams", + "type": "directory", + "hash": "3542e15dc96914ac9ef6f7ef9b304fc1795d9138", + "version": "1.0", + "author": "LL", + "description": "切换队伍~|~按顺序切换至队伍", + "tags": [] + }, + { + "name": "TheTable", + "type": "directory", + "hash": "6f6cc2a7c6cb6f0a963f6465bf283fb3ebe4a82e", + "version": "1.1", + "author": "Lix", + "description": "传送到合成台~|~传送到枫丹合成台旁边,可搭配合成浓缩树脂", + "tags": [] + }, + { + "name": "Wait 10s", "type": "directory", "hash": "7ab31d6a55b5addc95fa039a513aef29ecbb4279", "version": "1.0", "author": "鹤望兰", "description": "等待十秒~|~用于等待十秒", "tags": [] + }, + { + "name": "切换1号角色", + "type": "directory", + "hash": "78723b61bda4c6dbd22b17c5dd0626818bd7901e", + "version": "1.0", + "author": "风埠", + "description": "切换1号角色~|~用于切换1号角色", + "tags": [] + }, + { + "name": "切换2号角色", + "type": "directory", + "hash": "84a8df39639e3f7ef7a3c241088c52038a7fc5df", + "version": "1.0", + "author": "风埠", + "description": "切换2号角色~|~用于切换2号角色", + "tags": [] + }, + { + "name": "切换3号角色", + "type": "directory", + "hash": "3503d94566f29a769efbf3d6439dc3766c336851", + "version": "1.0", + "author": "风埠", + "description": "切换3号角色~|~用于切换3号角色", + "tags": [] + }, + { + "name": "切换4号角色", + "type": "directory", + "hash": "4217e048714e8b25c7a869d70c7730b11283df55", + "version": "1.0", + "author": "风埠", + "description": "切换4号角色~|~用于切换4号角色", + "tags": [] + }, + { + "name": "向前行走5秒", + "type": "directory", + "hash": "cc8661adca942daccde9382c6273a717d469e254", + "version": "1.0", + "author": "风埠", + "description": "向前行走5秒,搭配进尘歌壶脚本并在入口处放合成台,可以自动走到到合成台~|~用于向前走5秒", + "tags": [] + }, + { + "name": "向右行走5秒", + "type": "directory", + "hash": "436780fcb71177b87ef8ad043f533ec9de410951", + "version": "1.0", + "author": "风埠", + "description": "向右行走5秒~|~向右行走5秒", + "tags": [] + }, + { + "name": "向后行走5秒", + "type": "directory", + "hash": "5b352df3f3a2dc5952b02e099f289ad412c0bed4", + "version": "1.0", + "author": "风埠", + "description": "向后行走5秒~|~向后行走5秒", + "tags": [] + }, + { + "name": "向左行走5秒", + "type": "directory", + "hash": "e5b458d5e39772f27201e9e7fe11250a4ffb28e4", + "version": "1.0", + "author": "风埠", + "description": "向左行走5秒~|~向左行走5秒", + "tags": [] + }, + { + "name": "尘歌壶妙香林找阿圆", + "type": "directory", + "hash": "8d71612bcaeedfc49353e66871d86bd7b56928f8", + "version": "1.0", + "author": "风埠", + "description": "向右行走1.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值(这个成男角色容易掉下去比如那维莱特)~|~向右行走1.5秒", + "tags": [] + }, + { + "name": "尘歌壶清琼岛找阿圆", + "type": "directory", + "hash": "4ad41397cea9a9cf5bab2e191fcf117a6aea3a24", + "version": "1.0", + "author": "风埠", + "description": "向左行走1.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值~|~向左行走1.5秒", + "tags": [] + }, + { + "name": "尘歌壶罗浮洞找阿圆", + "type": "directory", + "hash": "e06cf53fc71fbcd00f32cb44adc8ad130f70ad6b", + "version": "1.0", + "author": "风埠", + "description": "向右行走0.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值~|~向右行走0.5秒", + "tags": [] + }, + { + "name": "尘歌壶翠黛峰找阿圆", + "type": "directory", + "hash": "e06cf53fc71fbcd00f32cb44adc8ad130f70ad6b", + "version": "1.0", + "author": "风埠", + "description": "向右行走0.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值~|~向右行走0.5秒", + "tags": [] + }, + { + "name": "稻妻合成台", + "type": "directory", + "hash": "add45a9c0df33c1895d8a67c642fc7a31dbea186", + "version": "1.0", + "author": "fengbu", + "description": "稻妻合成台~|~去稻妻合成台“那位莱特不行,他冲刺比其他成男角色远”(成男角色冲刺右键8下,A左走5秒,跳跃找交互,停顿)", + "tags": [] + }, + { + "name": "芙芙挂机暗杀流", + "type": "directory", + "hash": "b7583ad76a762f7931f08014d5be49753ae2db4f", + "version": "1.0", + "author": "起个名字好难", + "description": "芙芙挂机暗杀流~|~用于芙宁娜海鲜挂机暗杀地方传奇", + "tags": [] + }, + { + "name": "进入尘歌壶", + "type": "directory", + "hash": "89cb2141693f861a1a79d2cff60f687fabdbf76e", + "version": "1.0", + "author": "风埠", + "description": "进入尘歌壶~|~用于进入尘歌壶", + "tags": [] + }, + { + "name": "领取洞天宝钱和好感", + "type": "directory", + "hash": "bf0ee2547be5fa41bb222cea37f920fd77c71dc8", + "version": "1.0", + "author": "风埠", + "description": "领取洞天宝钱和好感~|~领取洞天宝钱和好感", + "tags": [] } ] }, @@ -3344,6 +10403,46 @@ "宵宫" ] }, + { + "name": "[好感度]芙宁娜芭芭拉.txt", + "type": "file", + "hash": "71d1a46a9dda8cc4a59f28a84dbb9dbcd6509307", + "version": "71d1a46", + "author": "HZYgrandma", + "description": "用于自动好感度脚本,另外两个位置带需要刷好感度的角色", + "tags": [ + "芙宁娜", + "芭芭拉" + ] + }, + { + "name": "[效率低]二命优菈钟离挂机队.txt", + "type": "file", + "hash": "2b201766d08ad690c73c0ace5caca41a8cd1371b", + "version": "2b20176", + "author": "容小狸", + "description": "一个基于优菈,钟离的自动打本机制\n钟离开盾,雷电将军挂雷,芭芭拉挂水 + 可能的掉血回复\n本脚本效率较低,有些过时,不使用大招,仍有优化空间\n由于该循环需要优菈二段E后长E后马上续盾、挂雷、回血或挂水,\n非二命优菈跟不上节奏,因此强制需要二命\n但这个脚本对于打无机制圣遗物和天赋材料来说没什么问题,\n生存能力较好,所以我也就放上来了。", + "tags": [ + "钟离", + "雷电将军", + "芭芭拉", + "优菈" + ] + }, + { + "name": "万离国际.txt", + "type": "file", + "hash": "7e166942be07076cd7173314f78527271535d2de", + "version": "7e16694", + "author": "鹤望兰", + "description": "虹灵的净土特供,即便充能不够加低练度也能快速打完", + "tags": [ + "钟离", + "班尼特", + "香菱", + "枫原万叶" + ] + }, { "name": "久岐忍超绽放.txt", "type": "file", @@ -3386,6 +10485,34 @@ "夏沃蕾" ] }, + { + "name": "仆班莱夜(增加存活).txt", + "type": "file", + "hash": "bc14c434f2931c18c893d67538c86f493b1af9f0", + "version": "bc14c43", + "author": "深久", + "description": "莱依拉盾薄容易暴毙,有条件换成钟离,莱依拉开盾前受击可能会被打断(概率不高),班尼特为了增加队伍存活能力", + "tags": [ + "仆人", + "莱依拉", + "班尼特", + "夜阑" + ] + }, + { + "name": "仆芙莱夜(建议把莱依拉换成钟离).txt", + "type": "file", + "hash": "248c4fbb089d120c27860564366153ae4d1cd8a7", + "version": "248c4fb", + "author": "深久", + "description": "莱依拉盾薄容易暴毙,有条件换成钟离,莱依拉开盾前受击可能会被打断(概率不高),芙芙烧血容易导致暴毙,建议用班尼特", + "tags": [ + "仆人", + "莱依拉", + "芙宁娜", + "夜阑" + ] + }, { "name": "仆钟班希.txt", "type": "file", @@ -3402,6 +10529,19 @@ "枫原万叶" ] }, + { + "name": "凝光钟离五郎.txt", + "type": "file", + "hash": "7bfd284fe39083e3c3284ad774be85c524881401", + "version": "7bfd284", + "author": "johsang", + "description": "五郎钟离推荐带西风武器保证充能,高防短轴全程护盾多无敌帧,四号位自由可放好感", + "tags": [ + "五郎", + "钟离", + "凝光" + ] + }, { "name": "四神队(进阶版).txt", "type": "file", @@ -3604,6 +10744,34 @@ "久岐忍" ] }, + { + "name": "莱芭芙枫(1命万叶).txt", + "type": "file", + "hash": "dbd16dcf24d03432811d8f971f1c9eadb60b90fc", + "version": "dbd16dc", + "author": "烧冻鸡翅", + "description": "莱依拉、芭芭拉、芙宁娜三方保生存,芙宁娜和万叶聚怪输出,芭芭拉配置海染套", + "tags": [ + "莱依拉", + "芙宁娜", + "枫原万叶", + "芭芭拉" + ] + }, + { + "name": "莱芭芙枫(0命万叶).txt", + "type": "file", + "hash": "05716f0c9dd00a190868efb0d42444864bfb3df8", + "version": "05716f0", + "author": "烧冻鸡翅", + "description": "莱依拉、芭芭拉、芙宁娜三方保生存,芙宁娜和万叶聚怪输出,芭芭拉配置海染套", + "tags": [ + "莱依拉", + "芙宁娜", + "枫原万叶", + "芭芭拉" + ] + }, { "name": "莱芭芙纳.txt", "type": "file", @@ -3618,6 +10786,20 @@ "纳西妲" ] }, + { + "name": "调香师燃烧-调香师,迪西娅,万叶,瑶瑶.txt", + "type": "file", + "hash": "a384e1f01c3801dd5c9107417d02c6c51d523e93", + "version": "a384e1f", + "author": "½", + "description": "", + "tags": [ + "艾梅莉埃", + "迪希雅", + "枫原万叶", + "瑶瑶" + ] + }, { "name": "那芙万希.txt", "type": "file", @@ -3961,9 +11143,9 @@ { "name": "皇女白术林尼.txt", "type": "file", - "hash": "6bcaad967f26dfd276dc4def3c455cef29c87003", - "version": "6bcaad9", - "author": "", + "hash": "a399f89612ba38167f0f20a8c4a657770ec94f6b", + "version": "a399f89", + "author": "HZYgrandma", "description": "", "tags": [ "皇女", @@ -4023,6 +11205,19 @@ "琴" ] }, + { + "name": "迪希雅八重神子纯水精灵.txt", + "type": "file", + "hash": "e9b81d5fd56cd55013a7f245e888c0fb5998d049", + "version": "e9b81d5", + "author": "johsang", + "description": "对面出伤快、元素盾、耐耗王可用,多种召唤物稳定赚费补强生存,应对一些刁钻局有奇效", + "tags": [ + "迪希雅", + "八重神子", + "纯水精灵" + ] + }, { "name": "迪希雅白术皇女.txt", "type": "file", diff --git a/repo/combat/[好感度]芙宁娜芭芭拉.txt b/repo/combat/[好感度]芙宁娜芭芭拉.txt new file mode 100644 index 00000000..35793895 --- /dev/null +++ b/repo/combat/[好感度]芙宁娜芭芭拉.txt @@ -0,0 +1,7 @@ +// 作者:HZYgrandma +// 描述:用于自动好感度脚本,另外两个位置带需要刷好感度的角色 + +芙宁娜 e,q +芭芭拉 e,attack(8) +芙宁娜 e,q +芭芭拉 e,attack(6) \ No newline at end of file diff --git a/repo/combat/[效率低]二命优菈钟离挂机队.txt b/repo/combat/[效率低]二命优菈钟离挂机队.txt new file mode 100644 index 00000000..e034c18b --- /dev/null +++ b/repo/combat/[效率低]二命优菈钟离挂机队.txt @@ -0,0 +1,16 @@ +// 作者: 容小狸 +// 描述: 一个基于优菈,钟离的自动打本机制\n钟离开盾,雷电将军挂雷,芭芭拉挂水 + 可能的掉血回复\n本脚本效率较低,有些过时,不使用大招,仍有优化空间\n由于该循环需要优菈二段E后长E后马上续盾、挂雷、回血或挂水,\n非二命优菈跟不上节奏,因此强制需要二命\n但这个脚本对于打无机制圣遗物和天赋材料来说没什么问题,\n生存能力较好,所以我也就放上来了。 + +// cycle 1 start +钟离 e(hold) +雷电将军 e +芭芭拉 e +优菈 e,attack(3),e,attack(3),e(hold) +// cycle 1 end + +//cycle 2 start +钟离 e(hold) +雷电将军 e +芭芭拉 charge +优菈 e,attack(3),e,attack(3),e(hold) +//cycle 2 end diff --git a/repo/combat/万离国际.txt b/repo/combat/万离国际.txt new file mode 100644 index 00000000..2464e720 --- /dev/null +++ b/repo/combat/万离国际.txt @@ -0,0 +1,8 @@ +// 作者:鹤望兰 +// 描述:虹灵的净土特供,即便充能不够加低练度也能快速打完 + + +钟离 e(hold) +班尼特 q,e +香菱 q,e +枫原万叶 e(hold),attack,q \ No newline at end of file diff --git a/repo/combat/仆班莱夜(增加存活).txt b/repo/combat/仆班莱夜(增加存活).txt new file mode 100644 index 00000000..d541d5a3 --- /dev/null +++ b/repo/combat/仆班莱夜(增加存活).txt @@ -0,0 +1,16 @@ +//作者:深久 +//描述:莱依拉盾薄容易暴毙,有条件换成钟离,莱依拉开盾前受击可能会被打断(概率不高),班尼特为了增加队伍存活能力 +仆人 e +莱依拉 s(0.1),e,e,wait(0.1),q,e +班尼特 e,wait(0.2),q +夜阑 e,q +仆人 charge +莱依拉 e,e,e,e +仆人 attack(6.0) +仆人 e +莱依拉 s(0.1),e,e,wait(0.1),q +班尼特 e,wait(0.2),q +夜阑 e,q +仆人 charge +莱依拉 e,e,e,e +仆人 attack(5.0),e,q,e \ No newline at end of file diff --git a/repo/combat/仆芙莱夜(建议把莱依拉换成钟离).txt b/repo/combat/仆芙莱夜(建议把莱依拉换成钟离).txt new file mode 100644 index 00000000..0809ea2a --- /dev/null +++ b/repo/combat/仆芙莱夜(建议把莱依拉换成钟离).txt @@ -0,0 +1,16 @@ +//作者:深久 +//描述:莱依拉盾薄容易暴毙,有条件换成钟离,莱依拉开盾前受击可能会被打断(概率不高),芙芙烧血容易导致暴毙,建议用班尼特 +仆人 e +莱依拉 s(0.1),e,e,wait(0.1),q,e +芙宁娜 e,wait(0.2),q +夜阑 e,q +仆人 charge +莱依拉 e,e,e,e +仆人 attack(6.0) +仆人 e +莱依拉 s(0.1),e,e,wait(0.1),q +芙宁娜 e,wait(0.2),q +夜阑 e,q +仆人 charge +莱依拉 e,e,e,e +仆人 attack(5.0),e,q,e \ No newline at end of file diff --git a/repo/combat/凝光钟离五郎.txt b/repo/combat/凝光钟离五郎.txt new file mode 100644 index 00000000..62555a9c --- /dev/null +++ b/repo/combat/凝光钟离五郎.txt @@ -0,0 +1,6 @@ +// 作者: johsang +// 描述: 五郎钟离推荐带西风武器保证充能,高防短轴全程护盾多无敌帧,四号位自由可放好感 + +五郎 e,q +钟离 e(hold),q +凝光 e,q,wait(1),charge(1),wait(1) \ No newline at end of file diff --git a/repo/combat/莱芭芙枫(1命万叶).txt b/repo/combat/莱芭芙枫(1命万叶).txt new file mode 100644 index 00000000..e37f3f4b --- /dev/null +++ b/repo/combat/莱芭芙枫(1命万叶).txt @@ -0,0 +1,8 @@ +// 作者:烧冻鸡翅 +// 描述:莱依拉、芭芭拉、芙宁娜三方保生存,芙宁娜和万叶聚怪输出,芭芭拉配置海染套 + +莱依拉 e,q,e +芙宁娜 e,wait(0.3),q,wait(0.3),charge(1) +枫原万叶 e(hold),wait(0.3),attack,q,wait(1.5),e(hold),wait(0.3),attack +莱依拉 e,q,e +芭芭拉 e,q,e,attack(2),e,attack(2) diff --git a/repo/combat/莱芭芙枫(0命万叶).txt b/repo/combat/莱芭芙枫(0命万叶).txt new file mode 100644 index 00000000..2ea634c1 --- /dev/null +++ b/repo/combat/莱芭芙枫(0命万叶).txt @@ -0,0 +1,8 @@ +// 作者:烧冻鸡翅 +// 描述:莱依拉、芭芭拉、芙宁娜三方保生存,芙宁娜和万叶聚怪输出,芭芭拉配置海染套 + +莱依拉 e,q,e +芙宁娜 e,wait(0.3),q,wait(0.3),charge(1) +枫原万叶 e(hold),wait(0.3),attack,q, +莱依拉 e,q,e +芭芭拉 e,q,e,attack(2),e,attack(2) diff --git a/repo/combat/调香师燃烧-调香师,迪西娅,万叶,瑶瑶.txt b/repo/combat/调香师燃烧-调香师,迪西娅,万叶,瑶瑶.txt new file mode 100644 index 00000000..0d803605 --- /dev/null +++ b/repo/combat/调香师燃烧-调香师,迪西娅,万叶,瑶瑶.txt @@ -0,0 +1,15 @@ +//作者:½ +//迪希雅点火减伤,瑶瑶负责恢复,调香师不怎么需要万叶聚怪,带万叶只是为了方便拣凋落物。 + +艾梅莉埃 e +迪希雅 e +枫原万叶 e(hold),attack +迪希雅 wait(2) +艾梅莉埃 q +瑶瑶 e,wait(2),q,w(1),a(1),s(1),d(1) +迪希雅 e +枫原万叶 e(hold),attack,q +艾梅莉埃 q +瑶瑶 e,wait(2),q,w(1),a(1),s(1),d(1) +迪希雅 e +枫原万叶 e(hold),attack \ No newline at end of file diff --git a/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json b/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json new file mode 100644 index 00000000..5d7c226f --- /dev/null +++ b/repo/js/Auto Commission && Expedition/assets/AutoPath/冒险家协会_枫丹.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "冒险家协会_枫丹", + "type": "collect", + "author": "yemaxul", + "version": "2.0", + "description": "传送到枫丹冒险家协会", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4508.97509765625, + "y": 3630.557373046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 4495.7001953125, + "y": 3637.89501953125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/Auto Commission && Expedition/main.js b/repo/js/Auto Commission && Expedition/main.js new file mode 100644 index 00000000..471154db --- /dev/null +++ b/repo/js/Auto Commission && Expedition/main.js @@ -0,0 +1,11 @@ +(async function () { + //传送到枫丹 + log.info('开始传送到枫丹廷'); + let Catherine_Egeria = `assets/AutoPath/冒险家协会_枫丹.json`; + await pathingScript.runFile(Catherine_Egeria); + log.info('开始每日委托或探索派遣,若无退出对话,则说明重复领取或未完成派遣'); + // 自动每日或纪行 + await keyPress("f"); + dispatcher.addTimer(new RealtimeTimer("AutoSkip", { "forceInteraction": true })); + +})(); \ No newline at end of file diff --git a/repo/js/Auto Commission && Expedition/manifest.json b/repo/js/Auto Commission && Expedition/manifest.json new file mode 100644 index 00000000..227c4625 --- /dev/null +++ b/repo/js/Auto Commission && Expedition/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "自动领取委托或派遣", + "version": "1.0", + "description": "自动传送到枫丹并领取每日委托或探索派遣,两个都要请运行两次,建议搭配领取历练点使用", + "authors": [ + { + "name": "yemaxul", + "link": "https://github.com/yemaxul" + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json new file mode 100644 index 00000000..15ee29d4 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json @@ -0,0 +1,852 @@ +{ + "info": { + "name": "【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个", + "type": "collect", + "author": "Yang-z", + "version": "", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3288.212890625, + "y": -3652.501953125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3268.4306640625, + "y": -3650.8837890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3267.6240234375, + "y": -3643.1455078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -3264.39453125, + "y": -3641.43359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -3259.05859375, + "y": -3639.08984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -3261.376953125, + "y": -3644.6572265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -3253.990234375, + "y": -3647.380859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -3248.65625, + "y": -3648.939453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -3243.9580078125, + "y": -3651.015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -3240.224609375, + "y": -3647.794921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": -3209.8427734375, + "y": -3605.6376953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 12, + "x": -3209.8427734375, + "y": -3605.6376953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": -3209.9853515625, + "y": -3604.7265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": -3207.0830078125, + "y": -3606.623046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": -3215.0595703125, + "y": -3612.5361328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -3216.4609375, + "y": -3627.3212890625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 17, + "x": -3206.4365234375, + "y": -3614.490234375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 18, + "x": -3206.25, + "y": -3614.3671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": -3208.1083984375, + "y": -3614.806640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 20, + "x": -3205.6845703125, + "y": -3616.7685546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 21, + "x": -3204.03125, + "y": -3615.5517578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": -3156.5830078125, + "y": -3886.0986328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 23, + "x": -3154.5869140625, + "y": -3833.73828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 24, + "x": -3145.6025390625, + "y": -3775.583984375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 25, + "x": -3149.576171875, + "y": -3829.484375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 26, + "x": -3152.970703125, + "y": -3831.783203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 27, + "x": -3152.970703125, + "y": -3831.783203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 28, + "x": -3148.33984375, + "y": -3831.6015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": -3144.0634765625, + "y": -3831.697265625, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 30, + "x": -3144.0830078125, + "y": -3831.6953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 31, + "x": -3144.5859375, + "y": -3831.451171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 32, + "x": -3156.5380859375, + "y": -3886.1474609375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 33, + "x": -3156.634765625, + "y": -3870.7353515625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 34, + "x": -3154.0478515625, + "y": -3835.5107421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 35, + "x": -3152.74609375, + "y": -3733.8955078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 36, + "x": -3155.7451171875, + "y": -3719.76953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": -3156.0673828125, + "y": -3716.6884765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 38, + "x": -3163.8154296875, + "y": -3710.796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 39, + "x": -3164.5810546875, + "y": -3702.015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 40, + "x": -3166.8525390625, + "y": -3704.3955078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 41, + "x": -3164.1953125, + "y": -3706.4267578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 42, + "x": -3164.6044921875, + "y": -3701.8447265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 43, + "x": -3160.455078125, + "y": -3701.7998046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 44, + "x": -3148.009765625, + "y": -3693.4609375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 45, + "x": -3108.439453125, + "y": -3655.1953125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 46, + "x": -3103.35546875, + "y": -3647.599609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 47, + "x": -3098, + "y": -3639.703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 48, + "x": -3093.2978515625, + "y": -3637.5732421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 49, + "x": -3113.5029296875, + "y": -3625.0078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 50, + "x": -3116.8349609375, + "y": -3623.0576171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 51, + "x": -3118.3505859375, + "y": -3622.375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 52, + "x": -3119.169921875, + "y": -3621.8486328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 53, + "x": -3127.1142578125, + "y": -3602.75390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 54, + "x": -3149.3203125, + "y": -3568.7509765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 55, + "x": -3144.365234375, + "y": -3567.513671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 56, + "x": -3137.3466796875, + "y": -3567.291015625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 57, + "x": -3139.185546875, + "y": -3570.66796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 58, + "x": -3139.2177734375, + "y": -3570.6630859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 59, + "x": -3139.5498046875, + "y": -3569.8544921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 60, + "x": -3156.5849609375, + "y": -3886.06640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 61, + "x": -3134.7626953125, + "y": -3876.654296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 62, + "x": -3139.6357421875, + "y": -3873.5673828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 63, + "x": -3123.3125, + "y": -3798.5703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 64, + "x": -3128.7255859375, + "y": -3755.45703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 65, + "x": -3156.3916015625, + "y": -3754.88671875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 66, + "x": -3123.923828125, + "y": -3742.3173828125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 67, + "x": -3122.5849609375, + "y": -3732.068359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 68, + "x": -3122.255859375, + "y": -3731.25390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 69, + "x": -3120.4677734375, + "y": -3731.875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 70, + "x": -3116.55078125, + "y": -3735.6328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 71, + "x": -3112.4150390625, + "y": -3730.458984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 72, + "x": -3115.4189453125, + "y": -3729.2060546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 73, + "x": -3114.466796875, + "y": -3726.51953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 74, + "x": -3115.0478515625, + "y": -3724.44921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 75, + "x": -3115.0478515625, + "y": -3724.44921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 76, + "x": -3115.0478515625, + "y": -3724.44921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 77, + "x": -3112.560546875, + "y": -3723.8798828125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 78, + "x": -3112.73046875, + "y": -3722.8701171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 79, + "x": -3116.73828125, + "y": -3720.2392578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 80, + "x": -3120.67578125, + "y": -3714.5673828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 81, + "x": -3128.521484375, + "y": -3714.7255859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 82, + "x": -3153.703125, + "y": -3718.9189453125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 83, + "x": -3162.361328125, + "y": -3716.51953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 84, + "x": -3161.1396484375, + "y": -3710.4248046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 85, + "x": -3160.287109375, + "y": -3704.8359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 86, + "x": -3160.28515625, + "y": -3704.8525390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 87, + "x": -3160.29296875, + "y": -3704.857421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 88, + "x": -3164.3984375, + "y": -3703.9912109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 89, + "x": -3160.7744140625, + "y": -3698.0908203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 90, + "x": -3158.619140625, + "y": -3695.8984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 91, + "x": -3154.22265625, + "y": -3689.6806640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 92, + "x": -3154.22265625, + "y": -3689.6806640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 93, + "x": -3154.22265625, + "y": -3689.6806640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 94, + "x": -3152.4462890625, + "y": -3696.4912109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 95, + "x": -3152.4462890625, + "y": -3696.4912109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 96, + "x": -3152.4462890625, + "y": -3696.4912109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 97, + "x": -3147.033203125, + "y": -3694.96484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 98, + "x": -3138.47265625, + "y": -3701.4287109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 99, + "x": -3143.0439453125, + "y": -3704.70703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 100, + "x": -3144.181640625, + "y": -3703.8671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 101, + "x": -3144.181640625, + "y": -3703.8671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 110, + "x": -3016.837890625, + "y": -3623.62890625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 111, + "x": -3028.2724609375, + "y": -3633.7685546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 112, + "x": -3031.4462890625, + "y": -3639.341796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 113, + "x": -3031.7705078125, + "y": -3640.3203125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-沉玉谷上谷-东-2个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-沉玉谷上谷-东-2个.json new file mode 100644 index 00000000..d6bcda82 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-沉玉谷上谷-东-2个.json @@ -0,0 +1,67 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1114.80859375, + "y": 1948.03759765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1141.548828125, + "y": 1945.61279296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1152.22265625, + "y": 1942.20263671875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1152.126953125, + "y": 1940.09423828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 1114.783203125, + "y": 1948.05615234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1091.1240234375, + "y": 1987.32958984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1080.4931640625, + "y": 1984.5078125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1079.203125, + "y": 1984.3525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json new file mode 100644 index 00000000..b7e4fe43 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json @@ -0,0 +1,181 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2323.88818359375, + "y": 1604.99609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2267.73388671875, + "y": 1596.66650390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2263.44873046875, + "y": 1592.49951171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2262.45751953125, + "y": 1588.75732421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2267.0810546875, + "y": 1590.2548828125, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 2066.17431640625, + "y": 1484.46533203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2071.8984375, + "y": 1459.54052734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 2072.35888671875, + "y": 1459.1875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2072.04248046875, + "y": 1460.07421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2072.03857421875, + "y": 1460.0771484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2072.93115234375, + "y": 1461.66455078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1863.6064453125, + "y": 1590.98193359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1773.6396484375, + "y": 1678.48388671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1781.892578125, + "y": 1690.83056640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 1787.728515625, + "y": 1690.94775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1789.4140625, + "y": 1687.59521484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1787.8935546875, + "y": 1684.31689453125, + "type": "path", + "move_mode": "walk" + } + + + + + ], + + "not_used": [ + { + "x": 1863.61328125, + "y": 1590.99853515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1883.6064453125, + "y": 1565.44677734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1857.6552734375, + "y": 1546.0576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1827.8681640625, + "y": 1529.21630859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1802.58984375, + "y": 1504.70751953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1741.5927734375, + "y": 1456.94775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1734.97265625, + "y": 1454.08447265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1730.9130859375, + "y": 1455.25537109375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-东北-9个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-东北-9个.json new file mode 100644 index 00000000..fb0608a5 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-东北-9个.json @@ -0,0 +1,353 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 730.2568359375, + "y": 1062.2294921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 739.3203125, + "y": 1069.82421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 774.2177734375, + "y": 1069.30615234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 773.095703125, + "y": 1065.32958984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 772.3125, + "y": 1062.54541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 771.220703125, + "y": 1060.974609375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 772.5947265625, + "y": 1063.66455078125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 772.654296875, + "y": 1064.009765625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 730.482421875, + "y": 1062.408203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 718.5, + "y": 1042.6474609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 667.0361328125, + "y": 1010.57568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 634.7490234375, + "y": 947.455078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 642.0517578125, + "y": 941.64453125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 642.0498046875, + "y": 941.73486328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 641.3134765625, + "y": 941.08837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 643.544921875, + "y": 941.38330078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 625.1875, + "y": 927.0615234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 582.587890625, + "y": 908.26318359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 578.025390625, + "y": 907.7900390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + + + { + "x": 579.1728515625, + "y": 915.19921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 557.4853515625, + "y": 907.4248046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 545.697265625, + "y": 894.28857421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 541.2587890625, + "y": 893.3466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 529.9072265625, + "y": 901.82958984375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 523.5693359375, + "y": 907.1611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + + + + + + + { + "x": 528.3486328125, + "y": 904.05029296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 541.3017578125, + "y": 902.4697265625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 555.9248046875, + "y": 896.3095703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 566.8603515625, + "y": 888.94140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 578.40234375, + "y": 895.48291015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 629.001953125, + "y": 848.5849609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 631.0849609375, + "y": 845.2314453125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 643.9921875, + "y": 841.00927734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 648.8515625, + "y": 839.12109375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 649.83984375, + "y": 831.625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 649.708984375, + "y": 831.6279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 649.0048828125, + "y": 831.23583984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 646.3505859375, + "y": 833.35546875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 645.8408203125, + "y": 832.71533203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 646.037109375, + "y": 832.7724609375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + + { + "x": 645.37109375, + "y": 833.572265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "8" + }, + { + "x": 645.076171875, + "y": 834.3232421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "8" + }, + + { + "x": 645.8359375, + "y": 835.81396484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "9" + }, + { + "x": 645.671875, + "y": 835.916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "9" + }, + { + "x": 646.037109375, + "y": 832.7724609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 646.2255859375, + "y": 836.51025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 646.80859375, + "y": 837.4140625, + "type": "path", + "move_mode": "walk" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-北-5个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-北-5个.json new file mode 100644 index 00000000..20b30b90 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-北-5个.json @@ -0,0 +1,134 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1121.0517578125, + "y": 1190.40087890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1126.859375, + "y": 1206.17333984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1139.2626953125, + "y": 1255.87060546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1142.0625, + "y": 1266.26513671875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1141.517578125, + "y": 1274.34228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1141.2353515625, + "y": 1276.4130859375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1123.3408203125, + "y": 1290.84765625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1120.1875, + "y": 1284.3994140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + + + { + "x": 1115.29296875, + "y": 1284.30615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 1118.7373046875, + "y": 1285.69921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1104.076171875, + "y": 1289.1982421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1032.5712890625, + "y": 1253.9130859375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1033.4248046875, + "y": 1254.021484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1030.2197265625, + "y": 1257.08447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 1033.470703125, + "y": 1252.2080078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1030.97265625, + "y": 1252.08447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 1029.7646484375, + "y": 1251.83447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-天道谷-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-天道谷-3个.json new file mode 100644 index 00000000..24b38dfb --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-天道谷-3个.json @@ -0,0 +1,142 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1145.5419921875, + "y": 174.658203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1120.2646484375, + "y": 233.7236328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1100.5517578125, + "y": 260.28466796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1071.4072265625, + "y": 297.130859375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1078.4931640625, + "y": 303.58642578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1085.669921875, + "y": 302.48291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 1084.857421875, + "y": 302.73388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 1091.9775390625, + "y": 301.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1089.2724609375, + "y": 306.5068359375, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": 1053.951171875, + "y": 321.84619140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 1045.9287109375, + "y": 319.76123046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 1046.69921875, + "y": 320.9365234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 1041.296875, + "y": 327.16015625, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": 1066.4765625, + "y": 350.84326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1068.8486328125, + "y": 354.8173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 1069.1162109375, + "y": 354.8681640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 1069.2744140625, + "y": 355.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 1067.06640625, + "y": 361.15478515625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-奥藏山南-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-奥藏山南-3个.json new file mode 100644 index 00000000..204fe315 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-奥藏山南-3个.json @@ -0,0 +1,127 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1451.4638671875, + "y": 1028.59423828125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1499.21875, + "y": 1039.97021484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1496.373046875, + "y": 1047.833984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1496.2822265625, + "y": 1048.83056640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1496.0771484375, + "y": 1048.14404296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 1501.791015625, + "y": 1040.484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1514.02734375, + "y": 1041.53076171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1510.2353515625, + "y": 1042.525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1510.369140625, + "y": 1043.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1510.552734375, + "y": 1044.3828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + + + { + "x": 1451.478515625, + "y": 1028.56396484375, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 1427.0634765625, + "y": 1068.23193359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1420.34765625, + "y": 1074.18310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1404.0517578125, + "y": 1083.30517578125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1378.041015625, + "y": 1112.5146484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1374.865234375, + "y": 1118.765625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-绝云间-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-绝云间-3个.json new file mode 100644 index 00000000..a7c0af20 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-珉林-绝云间-3个.json @@ -0,0 +1,137 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1182.685546875, + "y": 626.04638671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1191.91015625, + "y": 629.23388671875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1178.974609375, + "y": 573.78271484375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1169.703125, + "y": 569.39404296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1170.05078125, + "y": 569.162109375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1170.009765625, + "y": 569.158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 1163.396484375, + "y": 573.80615234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1155.759765625, + "y": 560.82421875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1158.318359375, + "y": 557.587890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1158.7294921875, + "y": 557.53369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1158.7294921875, + "y": 557.53369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1161.9443359375, + "y": 556.87646484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1159.6865234375, + "y": 555.2060546875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1152.5556640625, + "y": 559.8544921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1147.025390625, + "y": 561.1103515625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + + { + "x": 1145.19140625, + "y": 560.70458984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1145.2890625, + "y": 563.20654296875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-琼玑野-绿华池-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-琼玑野-绿华池-3个.json new file mode 100644 index 00000000..cf770c0f --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-琼玑野-绿华池-3个.json @@ -0,0 +1,35 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 489.443359375, + "y": 222.12353515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 432.3994140625, + "y": 228.15869140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 425.634765625, + "y": 231.4072265625, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 424.2900390625, + "y": 234.669921875, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-望舒客栈-1个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-望舒客栈-1个.json new file mode 100644 index 00000000..703f171a --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-望舒客栈-1个.json @@ -0,0 +1,29 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 328.943359375, + "y": 873.60302734375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 293.6943359375, + "y": 903.01806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 294.0498046875, + "y": 900.10302734375, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-盐中之地-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-盐中之地-3个.json new file mode 100644 index 00000000..74fc56ee --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-盐中之地-3个.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -164.5927734375, + "y": 1182.50537109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -171.73828125, + "y": 1225.6494140625, + "type": "path", + "move_mode": "run" + }, + { + "x": -147.2490234375, + "y": 1261.24951171875, + "type": "path", + "move_mode": "run" + }, + { + "x": -95.0634765625, + "y": 1238.294921875, + "type": "target", + "move_mode": "run", + "action":"" + }, + { + "x": -94.11328125, + "y": 1235.544921875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": -90.9267578125, + "y": 1235.23193359375, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-轻策庄-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-轻策庄-3个.json new file mode 100644 index 00000000..049e9fb9 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-璃月-碧水源-轻策庄-3个.json @@ -0,0 +1,114 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 547.7548828125, + "y": 1766.8134765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 541.0166015625, + "y": 1764.2119140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 508.18359375, + "y": 1772.28662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 500.2392578125, + "y": 1756.2626953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 513.4267578125, + "y": 1743.66748046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 516.4453125, + "y": 1740.47509765625, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + { + "x": 516.7373046875, + "y": 1739.90576171875, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + { + "x": 516.7373046875, + "y": 1739.90576171875, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + { + "x": 533.5380859375, + "y": 1729.44580078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 569.8974609375, + "y": 1730.1142578125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 617.072265625, + "y": 1707.46630859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 620.662109375, + "y": 1707.00732421875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 624.7138671875, + "y": 1715.44189453125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 631.5205078125, + "y": 1716.6064453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 663.2763671875, + "y": 1720.21630859375, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 663.013671875, + "y": 1720.08642578125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-万火之瓯-竞技场东-4个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-万火之瓯-竞技场东-4个.json new file mode 100644 index 00000000..efe16a9b --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-万火之瓯-竞技场东-4个.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8738.201171875, + "y": -1857.45947265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8723.4375, + "y": -1863.22314453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8723.4375, + "y": -1863.22314453125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1 && 2" + }, + { + "x": 8725.23828125, + "y": -1862.1806640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 8725.2158203125, + "y": -1862.1767578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 8726.3984375, + "y": -1862.20703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8724.8876953125, + "y": -1861.7841796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8723.2392578125, + "y": -1864.27978515625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8721.26953125, + "y": -1856.9326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8660.845703125, + "y": -1797.1259765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8651.423828125, + "y": -1785.03662109375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8667.1689453125, + "y": -1767.51904296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8672.138671875, + "y": -1766.37451171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8672.3203125, + "y": -1769.1220703125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 8672.775390625, + "y": -1770.39208984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 8672.783203125, + "y": -1770.392578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 8630.39453125, + "y": -1771.56494140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8613.8095703125, + "y": -1766.69580078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8596.5390625, + "y": -1763.8193359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8593.53125, + "y": -1763.08837890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8591.849609375, + "y": -1763.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 8591.1875, + "y": -1763.3173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json new file mode 100644 index 00000000..2b05cbd6 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json @@ -0,0 +1,355 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 7633.83349609375, + "y": -1646.67431640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7618.5380859375, + "y": -1624.78173828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 7708.3408203125, + "y": -1527.4580078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7702.9697265625, + "y": -1523.55126953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 7703.7802734375, + "y": -1528.4541015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7703.18701171875, + "y": -1536.9375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7703.3671875, + "y": -1537.8984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7703.3671875, + "y": -1537.8984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7706.0556640625, + "y": -1536.0087890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7700.876953125, + "y": -1536.57666015625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 7727.3740234375, + "y": -1545.806640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7739.4453125, + "y": -1539.29296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 7738.73681640625, + "y": -1539.34033203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 7738.73681640625, + "y": -1539.34033203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + + + + { + "x": 7735.0078125, + "y": -1541.712890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7731.54833984375, + "y": -1543.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7731.4609375, + "y": -1527.24267578125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 7781.7685546875, + "y": -1498.65966796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 7784.13427734375, + "y": -1479.99072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7776.4736328125, + "y": -1457.95556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7771.8525390625, + "y": -1451.56494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 7772.35595703125, + "y": -1450.89892578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 7771.8525390625, + "y": -1451.56494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + + + { + "x": 7633.7626953125, + "y": -1646.72509765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7609.90234375, + "y": -1627.96533203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 7531.28125, + "y": -1560.5849609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7531.33935546875, + "y": -1560.20458984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 7532.33984375, + "y": -1559.291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 7532.33984375, + "y": -1559.291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + + + + + + { + "x": 7633.8603515625, + "y": -1646.7119140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7642.7734375, + "y": -1768.53564453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 7616.7890625, + "y": -1802.326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 7564.453125, + "y": -1871.23291015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 7557.89453125, + "y": -1880.544921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + + + { + "x": 7633.8095703125, + "y": -1646.69482421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7643.09619140625, + "y": -1656.97509765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7741.162109375, + "y": -1743.72314453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + } + + + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-涌流地-流泉之众-4个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-涌流地-流泉之众-4个.json new file mode 100644 index 00000000..dc7fd561 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-纳塔-涌流地-流泉之众-4个.json @@ -0,0 +1,184 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8918.939453125, + "y": -2679.103515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8955.6015625, + "y": -2675.927734375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 8956.306640625, + "y": -2684.4296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 8956.560546875, + "y": -2684.478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + + { + "x": 8959.0654296875, + "y": -2679.1455078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8985.650390625, + "y": -2691.57421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8994.60546875, + "y": -2709.45703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 8985.96484375, + "y": -2733.546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8985.3251953125, + "y": -2756.3505859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9029.7822265625, + "y": -2792.57421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9044.7001953125, + "y": -2797.5087890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9050.962890625, + "y": -2799.9375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9058.2021484375, + "y": -2800.046875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 9054.9326171875, + "y": -2798.36328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 9054.9326171875, + "y": -2798.36328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 9052.96484375, + "y": -2796.4638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 9059.974609375, + "y": -2792.4677734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 9067.0380859375, + "y": -2798.1220703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-上风蚀地-东北营地-2个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-上风蚀地-东北营地-2个.json new file mode 100644 index 00000000..e3260d87 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-上风蚀地-东北营地-2个.json @@ -0,0 +1,74 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4209.83935546875, + "y": -2712.0439453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4166.1396484375, + "y": -2730.453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4140.98681640625, + "y": -2729.94140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4135.51513671875, + "y": -2738.9423828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4135.29443359375, + "y": -2743.03515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4135.99365234375, + "y": -2744.66796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4131.20654296875, + "y": -2734.072265625, + "type": "fly", + "move_mode": "fly" + }, + { + "x": 4120.2685546875, + "y": -2707.25390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4119.091796875, + "y": -2703.1494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4117.6025390625, + "y": -2700.8681640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-下风蚀地-阿如村-4个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-下风蚀地-阿如村-4个.json new file mode 100644 index 00000000..e31a020f --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-下风蚀地-阿如村-4个.json @@ -0,0 +1,164 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4096.0234375, + "y": -2025.943359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4098.26416015625, + "y": -2008.10498046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4093.42138671875, + "y": -1986.2099609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4092.91748046875, + "y": -1983.70556640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4092.96142578125, + "y": -1983.70654296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4091.94970703125, + "y": -1984.6796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": 4096.03369140625, + "y": -2025.90576171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4056.8447265625, + "y": -2034.43115234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4056.1015625, + "y": -2034.58544921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.8447265625, + "y": -2034.43115234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.65771484375, + "y": -2034.53955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.98583984375, + "y": -2032.7099609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4058.92333984375, + "y": -2033.771484375, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 4096.01708984375, + "y": -2025.9365234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4121.60498046875, + "y": -2046.70361328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4201.2890625, + "y": -2050.662109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + { + "x": 4200.22802734375, + "y": -2047.04541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4200.05126953125, + "y": -2046.39306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + + { + "x": 4212.25146484375, + "y": -2026.8671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4215.18701171875, + "y": -2025.05859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + } + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-下风蚀地-阿如村-北-1个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-下风蚀地-阿如村-北-1个.json new file mode 100644 index 00000000..a6dd1fb1 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-下风蚀地-阿如村-北-1个.json @@ -0,0 +1,40 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4271.57421875, + "y": -1666.736328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4283.01953125, + "y": -1671.53515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4286.05810546875, + "y": -1672.95751953125, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 4284.041015625, + "y": -1676.71826171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4287.4296875, + "y": -1670.16015625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json new file mode 100644 index 00000000..0fafcf06 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json @@ -0,0 +1,158 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3252.849609375, + "y": -591.28125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3241.24365234375, + "y": -593.07373046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3233.39404296875, + "y": -674.443359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3236.7236328125, + "y": -673.8662109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3236.62353515625, + "y": -673.77734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3239.46044921875, + "y": -671.60595703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3242.97216796875, + "y": -670.22607421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3242.96044921875, + "y": -670.197265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3242.9482421875, + "y": -670.20166015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + + { + "x": 3207.63134765625, + "y": -662.05224609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3183.31591796875, + "y": -670.1142578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3177.10400390625, + "y": -668.5361328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 3167.27490234375, + "y": -667.78662109375, + "type": "target", + "move_mode": "walk", + "action": "" + } + + + + + ], + "not_used1":[ + { + "x": 3247.1513671875, + "y": -677.9443359375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3249.44580078125, + "y": -667.3544921875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3249.44580078125, + "y": -667.3544921875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3249.572265625, + "y": -666.5732421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3248.04931640625, + "y": -666.294921875, + "type": "path", + "move_mode": "walk" + } + ], + + + "not_used2":[ + { + "x": 3166.2568359375, + "y": -663.19921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3169.171875, + "y": -663.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3171.65087890625, + "y": -661.556640625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-二净甸-觉王之殿南-6个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-二净甸-觉王之殿南-6个.json new file mode 100644 index 00000000..bcc1b075 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-二净甸-觉王之殿南-6个.json @@ -0,0 +1,219 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3592.20458984375, + "y": -786.109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3598.11328125, + "y": -733.58740234375, + "type": "path", + "move_mode": "fly", + "action":"stop_flying" + }, + { + "x": 3593.56640625, + "y": -722.83349609375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3592.201171875, + "y": -733.0078125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "1" + }, + + + { + "x": 3601.267578125, + "y": -729.6943359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3608.17724609375, + "y": -729.5029296875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "2" + }, + + { + "x": 3624.04638671875, + "y": -756.8173828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3626.0986328125, + "y": -763.63330078125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "3" + }, + + { + "x": 3640.95849609375, + "y": -778.646484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3645.10498046875, + "y": -782.201171875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "4" + }, + { + "x": 3644.919921875, + "y": -783.19384765625, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "4" + }, + { + "x": 3644.62109375, + "y": -781.72998046875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "4" + }, + + + { + "x": 3631.9404296875, + "y": -779.18017578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3660.69677734375, + "y": -842.3798828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3671.57470703125, + "y": -864.06591796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3673.45361328125, + "y": -867.6865234375, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "5" + }, + + { + "x": 3722.0322265625, + "y": -834.7041015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3729.73681640625, + "y": -826.98779296875, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3731.77978515625, + "y": -825.93408203125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3737.98095703125, + "y": -822.12646484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3736.7841796875, + "y": -824.4833984375, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + }, + { + "x": 3737.2265625, + "y": -825.7314453125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + }, + { + "x": 3736.72412109375, + "y": -826.1982421875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + }, + { + "x": 3738.3408203125, + "y": -824.96240234375, + "type": "path", + "move_mode": "walk" + } + + + ], + "positions_7": [ + { + "x": 3760.6845703125, + "y": -833.935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3790.6494140625, + "y": -799.51171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3795.19970703125, + "y": -789.6767578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3803.39404296875, + "y": -791.34326171875, + "type": "target", + "move_mode": "walk", + "action":"pick_around", + "NO.": "7 (重兵把守,不去)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-圣显厅西-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-圣显厅西-3个.json new file mode 100644 index 00000000..9f56e934 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-圣显厅西-3个.json @@ -0,0 +1,218 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + + + + { + "x": 4777.30859375, + "y": -1434.5498046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4840.98388671875, + "y": -1410.3779296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4843.49609375, + "y": -1402.5771484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4837.75244140625, + "y": -1402.7421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4834.49658203125, + "y": -1400.30078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4815.84423828125, + "y": -1286.494140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4794.83203125, + "y": -1291.39697265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4794.83203125, + "y": -1291.39697265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4794.212890625, + "y": -1292.20751953125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4803.328125, + "y": -1269.1611328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4782.0380859375, + "y": -1268.50390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4773.7275390625, + "y": -1268.28466796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4770.61279296875, + "y": -1276.41064453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4757.501953125, + "y": -1276.81787109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4752.56689453125, + "y": -1269.2265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4743.0732421875, + "y": -1265.8564453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4743.0732421875, + "y": -1265.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4742.533203125, + "y": -1267.22021484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4741.55419921875, + "y": -1266.90478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4740.51708984375, + "y": -1264.25244140625, + "type": "path", + "move_mode": "fly" + } + + + + ], + + "positions0": [ + { + "x": 4773.03271484375, + "y": -1432.97216796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4821.62890625, + "y": -1436.17529296875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4807.806640625, + "y": -1401.18603515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4812.33447265625, + "y": -1370.73486328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4797.80810546875, + "y": -1313.27294921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4732.00048828125, + "y": -1193.6533203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4725.24658203125, + "y": -1198.544921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4724.17578125, + "y": -1198.8515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4722.3232421875, + "y": -1199.953125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4741.50537109375, + "y": -1267.5439453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4717.30224609375, + "y": -1201.232421875, + "type": "path", + "move_mode": "fly" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json new file mode 100644 index 00000000..4b3f83df --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json @@ -0,0 +1,224 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + + + { + "x": 5063.70263671875, + "y": -1587.78515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5095.08740234375, + "y": -1547.1875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5098.67578125, + "y": -1540.923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 5098.67578125, + "y": -1540.923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 5098.23974609375, + "y": -1542.16650390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 5101.90771484375, + "y": -1540.3505859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5098.45361328125, + "y": -1541.93701171875, + "type": "path", + "move_mode": "walk" + }, + + + + + + + { + "x": 5095.0478515625, + "y": -1560.07080078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5115.654296875, + "y": -1579.087890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5119.06494140625, + "y": -1575.28662109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5119.556640625, + "y": -1570.14306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 5118.291015625, + "y": -1569.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5122.73681640625, + "y": -1568.61767578125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5124.4140625, + "y": -1579.7197265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 5074.4140625, + "y": -1577.09033203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5068.55224609375, + "y": -1577.5400390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5063.34375, + "y": -1580.521484375, + "type": "path", + "move_mode": "walk" + } + + ], + + "not_used": [ + { + "x": 5063.38623046875, + "y": -1587.76904296875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5047.763671875, + "y": -1587.5712890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4944.57958984375, + "y": -1534.50390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4955.68017578125, + "y": -1491.10595703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4958.37353515625, + "y": -1493.20166015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4960.90771484375, + "y": -1494.58642578125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4966.5419921875, + "y": -1489.2705078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5005.3583984375, + "y": -1391.74658203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5023.9091796875, + "y": -1408.6962890625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 5026.16552734375, + "y": -1411.1865234375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json new file mode 100644 index 00000000..88574d6f --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json @@ -0,0 +1,118 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 5759.4482421875, + "y": -1307.61572265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5763.57861328125, + "y": -1304.89208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5761.02490234375, + "y": -1303.5673828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 5760.51416015625, + "y": -1302.2685546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 5760.51416015625, + "y": -1302.2685546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + } + + + + + + + ], + + "not_used": [ + { + "x": 5766, + "y": -1289.69482421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5767.05615234375, + "y": -1284.27783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5767.15869140625, + "y": -1282.28173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5767.859375, + "y": -1282.056640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5768.44140625, + "y": -1281.2861328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5763.10791015625, + "y": -1282.4404296875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5760.3447265625, + "y": -1271.13818359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "No.": "3" + }, + { + "x": 5762.13671875, + "y": -1268.00830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5760.24267578125, + "y": -1271.06005859375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-失落的苗圃-南-8个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-失落的苗圃-南-8个.json new file mode 100644 index 00000000..c09950ea --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-失落的苗圃-南-8个.json @@ -0,0 +1,268 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3993.8232421875, + "y": -989.39599609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4001.17333984375, + "y": -1050.7236328125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4007.56982421875, + "y": -1054.05859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4011.3349609375, + "y": -1055.27490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": 4010.53076171875, + "y": -1062.2978515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4014.65087890625, + "y": -1059.46484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4021.8759765625, + "y": -1053.74755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4025.90185546875, + "y": -1049.61962890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4031.04833984375, + "y": -1044.80419921875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4028.52001953125, + "y": -1042.6025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4025.60107421875, + "y": -1040.6708984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4024.7744140625, + "y": -1040.77001953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4024.052734375, + "y": -1040.53564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + { + "x": 4030.0244140625, + "y": -1048.982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4026.0380859375, + "y": -1061.95068359375, + "type": "path", + "move_mode": "walk" + }, + + + + + { + "x": 4027.53076171875, + "y": -1056.11669921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4027.8017578125, + "y": -1054.716796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4027.83349609375, + "y": -1054.7333984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4028.6748046875, + "y": -1055.15771484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": 4025.77099609375, + "y": -1056.43212890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4021.49072265625, + "y": -1059.29443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4022.77783203125, + "y": -1058.47802734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + + + { + "x": 4025.650390625, + "y": -1077.04345703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4010.73388671875, + "y": -1081.44921875, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4007.63037109375, + "y": -1073.99560546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4007.23583984375, + "y": -1072.94384765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4007.1171875, + "y": -1071.9248046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": 3993.650390625, + "y": -1085.62353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + + + { + "x": 3990.36474609375, + "y": -1086.3388671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3996.50048828125, + "y": -1052.4130859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 3994.17724609375, + "y": -1048.4873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json new file mode 100644 index 00000000..7cb96700 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json @@ -0,0 +1,134 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2531.99609375, + "y": -144.71728515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2587.1318359375, + "y": -124.6181640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2594.72607421875, + "y": -119.916015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2595.1875, + "y": -119.6875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2593.3017578125, + "y": -116.9755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.21142578125, + "y": -115.7158203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2597.29296875, + "y": -116.5322265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2598.080078125, + "y": -121.06884765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.21533203125, + "y": -121.9150390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2599.23388671875, + "y": -118.87890625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 2617.57177734375, + "y": -122.33984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 2639.771484375, + "y": -135.43994140625, + "type": "path", + "move_mode": "run", + "?": "swin" + }, + + + + + + + { + "x": 2652.158203125, + "y": -146.6689453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2653.005859375, + "y": -147.19140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2650.6064453125, + "y": -146.19384765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2654.810546875, + "y": -144.01318359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2656.55078125, + "y": -148.0029296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2651.720703125, + "y": -150.6376953125, + "type": "path", + "move_mode": "walk" + } + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-浮罗囿-甘露花海北-4个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-浮罗囿-甘露花海北-4个.json new file mode 100644 index 00000000..eef6f523 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-浮罗囿-甘露花海北-4个.json @@ -0,0 +1,178 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 5789.85888671875, + "y": 797.70654296875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5762.5234375, + "y": 774.61083984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 5715.38623046875, + "y": 784.3720703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5625.75732421875, + "y": 820.8271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 5606.166015625, + "y": 835.81298828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5607.62841796875, + "y": 823.79736328125, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5608.9873046875, + "y": 820.6103515625, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5607.3095703125, + "y": 821.779296875, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5604.7353515625, + "y": 825.044921875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5593.55078125, + "y": 824.56591796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5591.55078125, + "y": 825.56591796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5592.14208984375, + "y": 825.87841796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5589.43017578125, + "y": 825.6611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5589.25830078125, + "y": 826.619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 5587.75146484375, + "y": 825.91748046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5627.1865234375, + "y": 900.5830078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5634.10693359375, + "y": 896.34619140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5638.16845703125, + "y": 893.82373046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 5641.98193359375, + "y": 892.064453125, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": 5603.14794921875, + "y": 890.646484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + { + "x": 5546.05126953125, + "y": 938.8857421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5535.748046875, + "y": 932.04736328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5531.740234375, + "y": 927.4580078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5529.603515625, + "y": 913.49169921875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-道成林-化城郭-西-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-道成林-化城郭-西-3个.json new file mode 100644 index 00000000..e667b18f --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-道成林-化城郭-西-3个.json @@ -0,0 +1,81 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2701.490234375, + "y": -761.826171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2706.1455078125, + "y": -791.9501953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2706.263671875, + "y": -789.10791015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2685.17236328125, + "y": -834.3212890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2683.966796875, + "y": -840.43798828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + + { + "x": 2681.02490234375, + "y": -828.7421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2647.09765625, + "y": -839.2470703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2593.4287109375, + "y": -853.74169921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2593.67236328125, + "y": -856.54736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.0654296875, + "y": -860.89111328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2596.41259765625, + "y": -861.82568359375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json new file mode 100644 index 00000000..57bad3df --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(A)/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json @@ -0,0 +1,214 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 2786.98974609375, + "y": -503.11328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2786.341796875, + "y": -498.572265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2774.0693359375, + "y": -497.90869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2762.78173828125, + "y": -497.47119140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2756.00732421875, + "y": -497.2060546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2753.373046875, + "y": -497.19482421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 2752.4443359375, + "y": -497.17431640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 2751.44580078125, + "y": -497.18212890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 2753.1005859375, + "y": -500.892578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2751.81640625, + "y": -494.93603515625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 2877.02099609375, + "y": -292.10693359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2872.7255859375, + "y": -295.822265625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 2867.53515625, + "y": -299.7080078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2864.76025390625, + "y": -301.87109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 2866.697265625, + "y": -303.7685546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2863.0380859375, + "y": -304.970703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2860.95068359375, + "y": -300.78662109375, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 2849.13623046875, + "y": -293.02978515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2835.787109375, + "y": -291.748046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2796.3759765625, + "y": -303.3466796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 2791.39990234375, + "y": -288.56201171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2787.72021484375, + "y": -284.9580078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 2788.046875, + "y": -281.259765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2785.822265625, + "y": -282.744140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2784.81005859375, + "y": -285.798828125, + "type": "path", + "move_mode": "walk" + } + ], + + "剧烈摇晃": [ + { + "x": 2694.087890625, + "y": -416.45068359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2721.0556640625, + "y": -409.85302734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2725.0712890625, + "y": -413.4677734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 2728.34619140625, + "y": -415.7119140625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2730.34326171875, + "y": -416.42236328125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json new file mode 100644 index 00000000..d5712b47 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json @@ -0,0 +1,653 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3891.556640625, + "y": -4389.8505859375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE1" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE1" + }, + { + "x": -3850.1796875, + "y": -4510.3369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE2" + }, + { + "x": -3850.1796875, + "y": -4510.3369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE2" + }, + { + "x": -3847.23046875, + "y": -4508.517578125, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3847.4970703125, + "y": -4511.7373046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3853.224609375, + "y": -4513.228515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3852.6337890625, + "y": -4509.5849609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.908203125, + "y": -4508.10546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.3916015625, + "y": -4507.1513671875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3835.259765625, + "y": -4488.0927734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3840.205078125, + "y": -4483.6513671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE3" + }, + { + "x": -3838.8935546875, + "y": -4484.923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE3" + }, + + + + { + "x": -3821.767578125, + "y": -4488.9599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3774.337890625, + "y": -4462.90625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3780.5498046875, + "y": -4452.0966796875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3782.16015625, + "y": -4445.1845703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3783.3681640625, + "y": -4439.068359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.029296875, + "y": -4437.59375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.07421875, + "y": -4430.5234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.515625, + "y": -4424.65625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": -3789.146484375, + "y": -4417.970703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3785.60546875, + "y": -4422.544921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -3789.0947265625, + "y": -4418.2265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3789.9228515625, + "y": -4422.2587890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.2919921875, + "y": -4429.623046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3789.244140625, + "y": -4436.77734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3782.248046875, + "y": -4438.5615234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3776.099609375, + "y": -4440.3583984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3773.71875, + "y": -4441.14453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3778.50390625, + "y": -4441.3349609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3774.2529296875, + "y": -4440.9345703125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3767.0634765625, + "y": -4441.94921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3757.8115234375, + "y": -4442.099609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3747.5400390625, + "y": -4441.6630859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3740.89453125, + "y": -4441.400390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": -3739.6875, + "y": -4440.29296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3738.7763671875, + "y": -4440.2119140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3740.857421875, + "y": -4439.6904296875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3742.279296875, + "y": -4432.4248046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + + + { + "x": -3739.787109375, + "y": -4426.6416015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.9111328125, + "y": -4424.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3753.9892578125, + "y": -4424.9609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3747.310546875, + "y": -4427.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.921875, + "y": -4436.001953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.7294921875, + "y": -4441.98828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3738.73046875, + "y": -4441.6044921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + { + "x": -3738.58203125, + "y": -4442.154296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + { + "x": -3738.0673828125, + "y": -4439.9228515625, + "type": "target", + "move_mode": "walk" + }, + + + + + { + "x": -3740.6142578125, + "y": -4435.5537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3741.0341796875, + "y": -4425.9443359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3747.4462890625, + "y": -4427.6396484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3759.4287109375, + "y": -4433.74609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3767.8017578125, + "y": -4437.771484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3772.146484375, + "y": -4439.849609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "10" + }, + { + "x": -3775.4658203125, + "y": -4439.1611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "11" + }, + { + "x": -3776.8251953125, + "y": -4439.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "11" + }, + { + "x": -3777.375, + "y": -4440.0869140625, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -3777.162109375, + "y": -4439.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3767.134765625, + "y": -4439.3466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3756.236328125, + "y": -4437.08203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3746.0966796875, + "y": -4434.9072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3741.365234375, + "y": -4432.560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + + + + { + "x": -3742.904296875, + "y": -4436.3154296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3738.1171875, + "y": -4437.6005859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3728.7265625, + "y": -4437.8623046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3726.888671875, + "y": -4433.171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "13" + }, + { + "x": -3727.03515625, + "y": -4431.9111328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3727.1845703125, + "y": -4431.47265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + + + + { + "x": -3728.6552734375, + "y": -4438.9716796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3732.8681640625, + "y": -4434.9453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3735.7177734375, + "y": -4432.310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3736.7138671875, + "y": -4432.3427734375, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3734.021484375, + "y": -4432.607421875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3727.3017578125, + "y": -4432.943359375, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3719.958984375, + "y": -4433.7001953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3717.3798828125, + "y": -4432.24609375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3717.326171875, + "y": -4434.6328125, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3721.1396484375, + "y": -4434.50390625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3720.18359375, + "y": -4430.9423828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3719.9521484375, + "y": -4430.4619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3719.9375, + "y": -4430.4326171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + + { + "x": -3719.064453125, + "y": -4431.0537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3722.5244140625, + "y": -4430.033203125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3725.986328125, + "y": -4429.5283203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3726.0458984375, + "y": -4429.078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3726.8388671875, + "y": -4428.9970703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + + { + "x": -3726.9306640625, + "y": -4428.8232421875, + "type": "path", + "move_mode": "walk" + } + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json new file mode 100644 index 00000000..2d3db541 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json @@ -0,0 +1,67 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3595.623046875, + "y": 3254.41259765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3611.2626953125, + "y": 3270.2216796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3615.7001953125, + "y": 3276.17138671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 3615.302734375, + "y": 3276.057373046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 3611.1953125, + "y": 3278.960693359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3594.375, + "y": 3287.00341796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3586.56982421875, + "y": 3288.8876953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 3583.556640625, + "y": 3287.450439453125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-白露区-秋分山东侧-2个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-白露区-秋分山东侧-2个.json new file mode 100644 index 00000000..4d6fa909 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-白露区-秋分山东侧-2个.json @@ -0,0 +1,40 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3917.1767578125, + "y": 2576.28662109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3900.44189453125, + "y": 2544.161865234375, + "type": "target", + "move_mode": "run", + "action":"", + "#" : "1" + }, + { + "x": 3900.49267578125, + "y": 2544.146728515625, + "type": "target", + "move_mode": "walk", + "action":"", + "#" : "1" + }, + + { + "x": 3883.83203125, + "y": 2525.96435546875, + "type": "target", + "move_mode": "walk", + "action":"", + "#" : "2" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-白露区-秋分山西侧-北-2个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-白露区-秋分山西侧-北-2个.json new file mode 100644 index 00000000..73d3119a --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-白露区-秋分山西侧-北-2个.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4146.75146484375, + "y": 2606.25634765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4082.158203125, + "y": 2597.589599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4043.56982421875, + "y": 2606.634521484375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4043.56982421875, + "y": 2606.634521484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + { + "x": 4146.76171875, + "y": 2606.19140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4192.82666015625, + "y": 2694.12109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4197.68408203125, + "y": 2694.229736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4199.623046875, + "y": 2694.54052734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4203.59423828125, + "y": 2692.78955078125, + "type": "path", + "move_mode": "walk" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-东-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-东-3个.json new file mode 100644 index 00000000..9370b872 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-东-3个.json @@ -0,0 +1,72 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3636.08251953125, + "y": 4795.94384765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3583.2978515625, + "y": 4719.6875, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3580.31884765625, + "y": 4716.52587890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + { + "x": 3580.74853515625, + "y": 4714.1611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 3580.75732421875, + "y": 4714.05810546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + { + "x": 3585.587890625, + "y": 4717.0830078125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3556.82568359375, + "y": 4736.08056640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3552.07763671875, + "y": 4737.794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json new file mode 100644 index 00000000..cf84052d --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json @@ -0,0 +1,133 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4001.06298828125, + "y": 4878.43701171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3951.5068359375, + "y": 4831.5673828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3951.25634765625, + "y": 4835.40869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3948.80908203125, + "y": 4844.0986328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3945.87353515625, + "y": 4850.1220703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3942.392578125, + "y": 4861.06591796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3950.94970703125, + "y": 4864.2421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3953.22021484375, + "y": 4857.1064453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3953.05126953125, + "y": 4853.205078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 3953.2607421875, + "y": 4857.310546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3946.5185546875, + "y": 4876.19873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 3947.05419921875, + "y": 4876.5859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 3955.32080078125, + "y": 4877.55859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3955.33349609375, + "y": 4879.58984375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3955.875, + "y": 4881.54345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 3954.81787109375, + "y": 4875.39111328125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3959.8349609375, + "y": 4875.939453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 3960.79150390625, + "y": 4876.11279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json new file mode 100644 index 00000000..f512e4da --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json @@ -0,0 +1,77 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4143.8984375, + "y": 4423.59228515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4145.66552734375, + "y": 4418.8349609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 4145.66552734375, + "y": 4418.8349609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + + + + + + + ], + "position1": [ + { + "x": 3923.07763671875, + "y": 4233.857421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4097.6533203125, + "y": 4326.37890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4097.95361328125, + "y": 4324.28125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + { + "x": 4096.02294921875, + "y": 4327.2353515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4099.0654296875, + "y": 4328.869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4098.09765625, + "y": 4325.27490234375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json new file mode 100644 index 00000000..a6e6a5ad --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json @@ -0,0 +1,247 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4301.29443359375, + "y": 4765.06494140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4309.482421875, + "y": 4770.5947265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4313.7529296875, + "y": 4774.91015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4285.86669921875, + "y": 4791.9169921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4212.12548828125, + "y": 4820.1083984375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4204.53515625, + "y": 4816.443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4204.47802734375, + "y": 4816.4580078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": 4199.63134765625, + "y": 4803.568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4197.98876953125, + "y": 4779.876953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4196.68310546875, + "y": 4697.35986328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4196.9599609375, + "y": 4692.5341796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4195.91455078125, + "y": 4690.79541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4188.525390625, + "y": 4676.29345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4188.35546875, + "y": 4676.408203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": 4194.46875, + "y": 4670.7802734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4194.05615234375, + "y": 4641.67822265625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4209.77197265625, + "y": 4629.9794921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4214.97509765625, + "y": 4628.59423828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4214.72607421875, + "y": 4628.869140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4215.1982421875, + "y": 4628.6455078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4216.16015625, + "y": 4628.5517578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + { + "x": 4206.83203125, + "y": 4619.00927734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4207.0263671875, + "y": 4618.68701171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4207.25244140625, + "y": 4619.9873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4206.8193359375, + "y": 4621.3759765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4209.15869140625, + "y": 4618.73046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4206.95751953125, + "y": 4616.6552734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4196.42578125, + "y": 4624.1474609375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4117.1728515625, + "y": 4661.068359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4114.39453125, + "y": 4667.30078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 4112.87060546875, + "y": 4667.14794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": 4111.79736328125, + "y": 4666.82373046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": 4111.0791015625, + "y": 4668.72021484375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json new file mode 100644 index 00000000..4eb314ca --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json @@ -0,0 +1,197 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4624.3583984375, + "y": 4951.76953125, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 4611.33056640625, + "y": 4929.84326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4604.48583984375, + "y": 4934.646484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4605.20068359375, + "y": 4934.0498046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": 4695.14013671875, + "y": 4995.1630859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4682.68798828125, + "y": 5008.39306640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4677.40771484375, + "y": 4998.9794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4678.38671875, + "y": 5000.13232421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + + { + "x": 4712.2392578125, + "y": 4928.29638671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4717.4814453125, + "y": 4929.82568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4720.08154296875, + "y": 4930.87353515625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4723.99169921875, + "y": 4932.6865234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4706.38916015625, + "y": 4924.84423828125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4720.16943359375, + "y": 4909.900390625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4737.955078125, + "y": 4910.080078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4736.24169921875, + "y": 4903.6689453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4735.5859375, + "y": 4904.025390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4735.5859375, + "y": 4904.025390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + { + "x": 4748.9189453125, + "y": 4913.61279296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4751.97314453125, + "y": 4913.095703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4751.9345703125, + "y": 4912.9609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4746.45166015625, + "y": 4908.9140625, + "type": "path", + "move_mode": "fly" + }, + + + { + "x": 4758.13330078125, + "y": 4900.38427734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4758.13330078125, + "y": 4900.38427734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4758.90966796875, + "y": 4899.86083984375, + "type": "pth", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西南偏南-6个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西南偏南-6个.json new file mode 100644 index 00000000..5b89b0b2 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西南偏南-6个.json @@ -0,0 +1,209 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 4498.20947265625, + "y": 4710.75146484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4525.82373046875, + "y": 4690.53173828125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4529.05322265625, + "y": 4688.23828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-1" + }, + { + "x": 4529.04541015625, + "y": 4688.23388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-1" + }, + { + "x": 4515.21630859375, + "y": 4644.78662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4514.89208984375, + "y": 4641.73046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-2" + }, + { + "x": 4480.251953125, + "y": 4633.33447265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4468.74658203125, + "y": 4584.3046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4463.68505859375, + "y": 4587.0361328125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4461.123046875, + "y": 4587.23095703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4456.05517578125, + "y": 4591.11376953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-3" + }, + { + "x": 4455.90185546875, + "y": 4591.2568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-3" + }, + { + "x": 4464.26611328125, + "y": 4594.8037109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4450.900390625, + "y": 4616.18310546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4444.26708984375, + "y": 4577.2490234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + + + + + { + "x": 4446.62255859375, + "y": 4611.61083984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4423.56396484375, + "y": 4605.86572265625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4426.4755859375, + "y": 4590.9287109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4429.02001953125, + "y": 4583.8310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4429.33349609375, + "y": 4582.79541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-5" + }, + + { + "x": 4426.63037109375, + "y": 4577.1171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4431.89453125, + "y": 4567.55859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-6" + }, + { + "x": 4431.8466796875, + "y": 4567.9443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-6" + } + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西南偏西-4个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西南偏西-4个.json new file mode 100644 index 00000000..2f7db5fb --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-研究院区-西南偏西-4个.json @@ -0,0 +1,133 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + + { + "x": 4498.2177734375, + "y": 4710.80224609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4566.91064453125, + "y": 4733.60009765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4563.70947265625, + "y": 4737.5703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4561.50537109375, + "y": 4743.1923828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4561.50537109375, + "y": 4743.1923828125, + "move_mode": "walk", + "action": "", + "#": "2- 1+2" + }, + { + "x": 4560.0244140625, + "y": 4742.79296875, + "move_mode": "walk", + "action": "", + "#": "2-1" + }, + { + "x": 4562.60009765625, + "y": 4743.57568359375, + "move_mode": "walk", + "action": "", + "#": "2-2" + }, + { + "x": 4564.2783203125, + "y": 4746.8251953125, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 4557.90283203125, + "y": 4778.6806640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4555.578125, + "y": 4838.611328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4568.578125, + "y": 4830.916015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4569.1552734375, + "y": 4826.7236328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-3" + }, + { + "x": 4568.302734375, + "y": 4827.03173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-3 repeat" + }, + + { + "x": 4540.765625, + "y": 4846.49951171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4534.837890625, + "y": 4847.81298828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + }, + { + "x": 4534.4267578125, + "y": 4848.03515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + }, + { + "x": 4534.80419921875, + "y": 4847.86279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + } + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-莫尔泰区-七天神像-1个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-莫尔泰区-七天神像-1个.json new file mode 100644 index 00000000..b2ae36e4 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-莫尔泰区-七天神像-1个.json @@ -0,0 +1,55 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3563.25537109375, + "y": 3018.392578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3579.912109375, + "y": 3031.2421875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3591.27197265625, + "y": 3063.642578125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3588.08544921875, + "y": 3069.444580078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3586.4267578125, + "y": 3070.46240234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": 3583.62255859375, + "y": 3071.27734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3585.4072265625, + "y": 3068.656494140625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-黎翡区-七天神像-5个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-黎翡区-七天神像-5个.json new file mode 100644 index 00000000..2a811c88 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-黎翡区-七天神像-5个.json @@ -0,0 +1,225 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4545.568359375, + "y": 4225.68896484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4540.85595703125, + "y": 4198.55712890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4536.45751953125, + "y": 4202.59912109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4535.7255859375, + "y": 4210.13916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4535.8486328125, + "y": 4211.103515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4537.20947265625, + "y": 4210.876953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": 4539.25, + "y": 4200.2626953125, + "type": "path", + "move_mode": "walk" + }, + + + + + { + "x": 4547.75439453125, + "y": 4205.93310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4555.5087890625, + "y": 4207.8681640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4555.4658203125, + "y": 4207.78759765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + { + "x": 4552.4453125, + "y": 4219.98291015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4564.38232421875, + "y": 4231.63427734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4571.62548828125, + "y": 4226.84228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4571.7685546875, + "y": 4226.6708984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4573.83251953125, + "y": 4223.65283203125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4572.8642578125, + "y": 4221.751953125, + "type": "path", + "move_mode": "walk" + }, + + + + + + + { + "x": 4545.53076171875, + "y": 4225.73583984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4537.87109375, + "y": 4231.0810546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4511.12353515625, + "y": 4260.70654296875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4445.537109375, + "y": 4307.8427734375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4383.1318359375, + "y": 4338.974609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4341.67919921875, + "y": 4334.3154296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4323.0908203125, + "y": 4335.3369140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4315.45751953125, + "y": 4336.32861328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4408.38232421875, + "y": 4299.90869140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4425.123046875, + "y": 4297.01806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4433.6787109375, + "y": 4309.984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4435.56689453125, + "y": 4313.78564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4435.46240234375, + "y": 4315.6640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4438.86474609375, + "y": 4313.9345703125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-黎翡区-芒索斯山东-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-黎翡区-芒索斯山东-3个.json new file mode 100644 index 00000000..cd285a58 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-枫丹-黎翡区-芒索斯山东-3个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4984.806640625, + "y": 4462.95556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4948.05712890625, + "y": 4457.57470703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4947.35400390625, + "y": 4458.25146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + { + "x": 4957.111328125, + "y": 4451.796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4957.14306640625, + "y": 4451.896484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + + + { + "x": 4956.78759765625, + "y": 4451.00390625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4873.21484375, + "y": 4377.4365234375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4868.2734375, + "y": 4381.03857421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": 4868.22998046875, + "y": 4381.02294921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-东方小岛-2个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-东方小岛-2个.json new file mode 100644 index 00000000..5d9cfe36 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-东方小岛-2个.json @@ -0,0 +1,80 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -1315.1552734375, + "y": -3776.1455078125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -1331.330078125, + "y": -3769.791015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -1354.482421875, + "y": -3761.173828125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -1363.6240234375, + "y": -3758.392578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -1364.7578125, + "y": -3757.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -1364.833984375, + "y": -3757.751953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": -1366.6474609375, + "y": -3756.6708984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -1366.5625, + "y": -3756.7568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -1366.6787109375, + "y": -3756.6015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-望泷村西南-4个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-望泷村西南-4个.json new file mode 100644 index 00000000..e37585b7 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-望泷村西南-4个.json @@ -0,0 +1,111 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -755.556640625, + "y": -4001.0576171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -725.943359375, + "y": -4029.255859375, + "type": "path", + "move_mode": "run" + }, + { + "x": -709.2138671875, + "y": -4045.4638671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -704.0361328125, + "y": -4050.1259765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -700.99609375, + "y": -4057.7744140625, + "type": "path", + "move_mode": "run" + }, + { + "x": -676.8798828125, + "y": -4045.4677734375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -673.548828125, + "y": -4043.82421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -672.419921875, + "y": -4043.4560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -684.21484375, + "y": -4042.994140625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -687.501953125, + "y": -4042.25390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -688.423828125, + "y": -4042.2841796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": -682.83203125, + "y": -4064.791015625, + "type": "path", + "move_mode": "run" + }, + { + "x": -691.1435546875, + "y": -4081.1015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -694.2724609375, + "y": -4087.099609375, + "type": "target", + "move_mode": "run", + "action": "", + "#": "4" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json new file mode 100644 index 00000000..1ad5de1f --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json @@ -0,0 +1,190 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -1057.765625, + "y": -3946.099609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -1064.2255859375, + "y": -3900.314453125, + "type": "path", + "move_mode": "run" + }, + { + "x": -1062.611328125, + "y": -3876.7705078125, + "type": "path", + "move_mode": "run" + }, + { + "x": -1061.4912109375, + "y": -3875.04296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -1059.796875, + "y": -3876.1328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -1043.0927734375, + "y": -3873.9521484375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -978.849609375, + "y": -3767.724609375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -992.6708984375, + "y": -3712.111328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + { + "x": -989.744140625, + "y": -3705.7880859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -988.1533203125, + "y": -3703.9931640625, + "type": "path", + "move_mode": "fly" + }, + + + + { + "x": -985.392578125, + "y": -3703.5595703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -985.6689453125, + "y": -3703.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -988.6318359375, + "y": -3701.8916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -996.2705078125, + "y": -3695.244140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -996.8271484375, + "y": -3691.2900390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -995.3642578125, + "y": -3690.1416015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -994.6083984375, + "y": -3688.154296875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -996.140625, + "y": -3701.3984375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -1007.9033203125, + "y": -3708.10546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -1009.0302734375, + "y": -3707.2490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + }, + + + { + "x": -1016.1298828125, + "y": -3714.86328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.720703125, + "y": -3715.3662109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.1474609375, + "y": -3715.806640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.1181640625, + "y": -3717.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -1017.8671875, + "y": -3717, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-平海砦西-8个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-平海砦西-8个.json new file mode 100644 index 00000000..f527274a --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-平海砦西-8个.json @@ -0,0 +1,198 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -4185.0078125, + "y": -4244.4521484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -4164.5859375, + "y": -4246.80859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4161.0205078125, + "y": -4245.0068359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -4161.0458984375, + "y": -4244.984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": -4163.865234375, + "y": -4241.2314453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -4162.2724609375, + "y": -4241.0673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4158.0791015625, + "y": -4234.8876953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4157.6640625, + "y": -4234.2001953125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4157.876953125, + "y": -4232.55078125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4157.876953125, + "y": -4232.55078125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4163.0869140625, + "y": -4229.8125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -4227.162109375, + "y": -4201.326171875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -4241.8564453125, + "y": -4219.84375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -4246.2978515625, + "y": -4234.4384765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -4258.7373046875, + "y": -4229.5126953125, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": -4248.2919921875, + "y": -4261.1123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": -4240.349609375, + "y": -4260.5869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4237.306640625, + "y": -4260.6796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + + + + { + "x": -4224.4462890625, + "y": -4255.716796875, + "type": "path", + "move_mode": "fly" + }, + + + + { + "x": -4228.125, + "y": -4239.2822265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -4228.341796875, + "y": -4238.9560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + + { + "x": -4217.38671875, + "y": -4248.9228515625, + "type": "path", + "move_mode": "run" + }, + { + "x": -4216.552734375, + "y": -4251.2568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + + { + "x": -4216.3388671875, + "y": -4269.9912109375, + "type": "path", + "move_mode": "run" + }, + { + "x": -4185.7373046875, + "y": -4300.0029296875, + "type": "target", + "move_mode": "run", + "action": "", + "#": "8" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-浅濑神社-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-浅濑神社-3个.json new file mode 100644 index 00000000..89ca748e --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-浅濑神社-3个.json @@ -0,0 +1,56 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3704.0693359375, + "y": -4694.578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3720.130859375, + "y": -4711.158203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3740.8837890625, + "y": -4738.6845703125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3737.982421875, + "y": -4746.4609375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3712.8046875, + "y": -4748.9580078125, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "x": -3712.994140625, + "y": -4748.5810546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -3711.8955078125, + "y": -4747.560546875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-越石村-8个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-越石村-8个.json new file mode 100644 index 00000000..f8707553 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-清籁岛-越石村-8个.json @@ -0,0 +1,233 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -4023.263671875, + "y": -4428.8388671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3987.2587890625, + "y": -4454.291015625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3977.22265625, + "y": -4453.3837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -3977.22265625, + "y": -4453.3837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": -3973.921875, + "y": -4440.8544921875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3981.27734375, + "y": -4437.328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3982.7822265625, + "y": -4437.41015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -3983.701171875, + "y": -4437.736328125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3982.19140625, + "y": -4437.0654296875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3971.8154296875, + "y": -4439.5927734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3970.37890625, + "y": -4439.1357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -3967.498046875, + "y": -4435.380859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3965.841796875, + "y": -4435.798828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3965.6923828125, + "y": -4438.0966796875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3965.6494140625, + "y": -4432.896484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3964.7197265625, + "y": -4429.9228515625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3968.4609375, + "y": -4425.71875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3970.2626953125, + "y": -4425.4140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3972.595703125, + "y": -4425.369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": -3977.9921875, + "y": -4425.24609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3978.4775390625, + "y": -4424.634765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3969.28515625, + "y": -4427.4111328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3966.9580078125, + "y": -4425.4560546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3966.9677734375, + "y": -4422.5, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3967.12890625, + "y": -4403.732421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": -3966.86328125, + "y": -4403.1083984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": -3966.5634765625, + "y": -4402.4775390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + { + "x": -3969.20703125, + "y": -4384.0546875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3969.20703125, + "y": -4384.0546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3969.2138671875, + "y": -4383.59375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json new file mode 100644 index 00000000..a08efd60 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json @@ -0,0 +1,175 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3393.1181640625, + "y": -3556.0556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3394.71484375, + "y": -3552.19921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3396.7734375, + "y": -3549.205078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + { + "x": -3399.2900390625, + "y": -3543.2275390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3403.35546875, + "y": -3543.359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -3404.2822265625, + "y": -3543.5341796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + { + "x": -3405.5810546875, + "y": -3534.466796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -3405.6494140625, + "y": -3534.298828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -3405.6533203125, + "y": -3534.3056640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + + + { + "x": -3406.099609375, + "y": -3534.6865234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3446.3759765625, + "y": -3552.9873046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3446.3759765625, + "y": -3552.9873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -3446.40625, + "y": -3553.130859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -3444.8505859375, + "y": -3551.546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + + { + "x": -3437.0693359375, + "y": -3562.0283203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3435.5322265625, + "y": -3566.9013671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + } + ], + + "not_used": [ + + + { + "x": -3442.427734375, + "y": -3569.3125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3437.7919921875, + "y": -3573.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3427.4033203125, + "y": -3573.28125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3422.0302734375, + "y": -3575.3935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3420.580078125, + "y": -3574.71875, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "#" : "6" + }, + { + "x": -3418.3681640625, + "y": -3574.56640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-九条阵屋-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-九条阵屋-3个.json new file mode 100644 index 00000000..113b0335 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-九条阵屋-3个.json @@ -0,0 +1,113 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3437.0263671875, + "y": -3319.755859375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3420.0283203125, + "y": -3306.0888671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3406.646484375, + "y": -3286.25, + "type": "path", + "move_mode": "run" + }, + { + "x": -3405.4697265625, + "y": -3232.3525390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3407.9404296875, + "y": -3234.4228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -3407.193359375, + "y": -3234.5576171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -3407.830078125, + "y": -3236.0400390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + + { + "x": -3437.0322265625, + "y": -3319.720703125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3460.4150390625, + "y": -3325.6875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3487.1845703125, + "y": -3326.2333984375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3521.6376953125, + "y": -3341.205078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3531.95703125, + "y": -3342.421875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3537.845703125, + "y": -3343.4345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -3539.8330078125, + "y": -3345.8359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-堇色之庭-4个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-堇色之庭-4个.json new file mode 100644 index 00000000..80c5cd2d --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-堇色之庭-4个.json @@ -0,0 +1,166 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3931.2216796875, + "y": -3202.7919921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3934.5068359375, + "y": -3201.48046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3936.80859375, + "y": -3203.115234375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3940.4013671875, + "y": -3205.8408203125, + "type": "path", + "move_mode": "fly" + }, + + + { + "x": -3946.095703125, + "y": -3203.814453125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3958.9462890625, + "y": -3197.0888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": -3958.0400390625, + "y": -3197.517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": -3959.95703125, + "y": -3196.861328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": -3961.4462890625, + "y": -3197.841796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3956.3203125, + "y": -3207.42578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3940.55859375, + "y": -3223.7568359375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": -3928.0673828125, + "y": -3239.0546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3925.3115234375, + "y": -3264.466796875, + "type": "path", + "move_mode": "fly" + }, + + + { + "x": -3929.943359375, + "y": -3269.751953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": -3929.943359375, + "y": -3269.751953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + + { + "x": -3984.2021484375, + "y": -3242.8232421875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3988.7119140625, + "y": -3228.68359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": -3990.63671875, + "y": -3227.7421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json new file mode 100644 index 00000000..62229160 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json @@ -0,0 +1,163 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3234.0810546875, + "y": -3155.5439453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3224.7939453125, + "y": -3140.484375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3203.8857421875, + "y": -3105.0390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3146.64453125, + "y": -3056.3671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3137.4912109375, + "y": -3051.470703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": -3139.8037109375, + "y": -3045.876953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3135.611328125, + "y": -3025.775390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3138.00390625, + "y": -3024.306640625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3142.8115234375, + "y": -3022.87890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3138.84765625, + "y": -3023.9462890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3155.2236328125, + "y": -3014.216796875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3164.201171875, + "y": -2974.904296875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3210.8642578125, + "y": -2965.259765625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3219.095703125, + "y": -2964.89453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -3225.208984375, + "y": -2957.173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3256.2265625, + "y": -2981.8115234375, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": -3285.53125, + "y": -2971.0166015625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3287.6435546875, + "y": -2964.935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3288.8740234375, + "y": -2963.955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + } + + + + + + ], + + "not_used": [ + { + "x": -3287.2421875, + "y": -2965.2568359375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3283.380859375, + "y": -2967.396484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-鹤观-东-3个.json b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-鹤观-东-3个.json new file mode 100644 index 00000000..e4e6a22c --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/assets/AutoArtifacts(B)/狗粮-稻妻-鹤观-东-3个.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3269.3486328125, + "y": -6136.1025390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3241.349609375, + "y": -6193.00390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3231.896484375, + "y": -6214.564453125, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3229.609375, + "y": -6218.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -3228.822265625, + "y": -6218.640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3229.384765625, + "y": -6221.478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -3229.384765625, + "y": -6221.478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3230.751953125, + "y": -6224.287109375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3256.541015625, + "y": -6223.8203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3270.1845703125, + "y": -6216.2060546875, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3270.6044921875, + "y": -6215.556640625, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + }, + { + "x": -3271.138671875, + "y": -6215.7783203125, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + }, + { + "x": -3271.083984375, + "y": -6215.830078125, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/main.js b/repo/js/AutoArtifacts [RouteAB]/main.js new file mode 100644 index 00000000..f9d81d1c --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/main.js @@ -0,0 +1,176 @@ +(async function () { + setGameMetrics(1920, 1080, 2); + + async function logTaskStart() { + const messages = [ + '确保地图的按键为M键', + '左上角派蒙头像未被其他悬浮窗遮挡', + '运行时默认使用常用路径追踪队伍', + '请于【路径追踪】选项卡自行配置', + '【自动】将以每天4点为界限交替运行' + ]; + + for (let message of messages) { + log.info(message); + 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 AutoPathA(locationName) { + log.info(`前往 ${locationName}`); + try { + let filePath = `assets/AutoArtifacts(A)/${locationName}.json`; + await pathingScript.runFile(filePath); + } catch (error) { + log.error(`执行 ${locationName} 路径时发生错误`); + } + await sleep(2000); + } + async function AutoPathB(locationName) { + log.info(`前往 ${locationName}`); + try { + let filePath = `assets/AutoArtifacts(B)/${locationName}.json`; + await pathingScript.runFile(filePath); + } catch (error) { + log.error(`执行 ${locationName} 路径时发生错误`); + } + await sleep(2000); + } + + 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}`); + } + + //判断AB线 + async function runAlternateTasks() { + const dayDifference = Math.floor((Date.now() + 1000 * 60 * 60 * 4) / (1000 * 60 * 60 * 24)); + if (settings.selectway === undefined){ + log.info('未设置自定义选项,将默认【自动】选择路线'); + } + if ((dayDifference % 2 == 0 && (settings.selectway == "自动" || settings.selectway === undefined)) || settings.selectway == "A线") { + log.info("{xx}","---今天运行A线---"); + // 执行 A 的代码 + await logTaskStart(); + + await resetMap();//重置地图大小避免传错 + + log.info('前往地区:璃月'); + await AutoPathA('狗粮-璃月-沉玉谷上谷-东-2个'); + await AutoPathA('狗粮-璃月-沉玉谷南陵-3个(另一个太远)'); + await AutoPathA('狗粮-璃月-珉林-东北-9个'); + await AutoPathA('狗粮-璃月-珉林-北-5个'); + await AutoPathA('狗粮-璃月-珉林-天道谷-3个'); + await AutoPathA('狗粮-璃月-珉林-奥藏山南-3个'); + await resetMap();//重置地图大小避免传错 + await AutoPathA('狗粮-璃月-珉林-绝云间-3个');//会传到太山府。已解决 + await AutoPathA('狗粮-璃月-琼玑野-绿华池-3个'); + await AutoPathA('狗粮-璃月-碧水源-望舒客栈-1个'); + await AutoPathA('狗粮-璃月-碧水源-盐中之地-3个'); + await AutoPathA('狗粮-璃月-碧水源-轻策庄-3个'); + logTimeTaken(startTime); + + log.info('前往地区:须弥'); + await AutoPathA('狗粮-须弥-上风蚀地-东北营地-2个'); + await AutoPathA('狗粮-须弥-下风蚀地-阿如村-4个'); + await AutoPathA('狗粮-须弥-下风蚀地-阿如村-北-1个'); + await AutoPathA('狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿)'); + await AutoPathA('狗粮-须弥-二净甸-觉王之殿南-6个'); + await AutoPathA('狗粮-须弥-千壑沙地-圣显厅西-3个'); + await AutoPathA('狗粮-须弥-千壑沙地-塔尼特露营地-3个'); + await AutoPathA('狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个)'); + await AutoPathA('狗粮-须弥-失落的苗圃-南-8个'); + await AutoPathA('狗粮-须弥-护世森-卡萨扎莱宫南-2个'); + await AutoPathA('狗粮-须弥-浮罗囿-甘露花海北-4个'); + await AutoPathA('狗粮-须弥-道成林-化城郭-西-3个'); + await AutoPathA('狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿)'); + logTimeTaken(startTime); + + log.info('前往地区:纳塔'); + await AutoPathA('狗粮-纳塔-万火之瓯-竞技场东-4个'); + await AutoPathA('狗粮-纳塔-坚岩隘谷-回声之子南-7个'); + await AutoPathA('狗粮-纳塔-涌流地-流泉之众-4个'); + logTimeTaken(startTime); + + log.info('前往地区:稻妻'); + await AutoPathA('【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个');//飞行体力不够,被火深渊法师击落,爬墙卡死,冲刺摔落。已解决:删除了两个调查点位 + logTimeTaken(startTime); + // 计算并输出总时长 + 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}`); + } + else { + log.info("{xx}","---今天运行B线---"); + + await logTaskStart(); + await resetMap();//重置地图大小避免传错 + + log.info('前往地区:枫丹'); + await AutoPathB('狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个'); + //await AutoPathB('狗粮-枫丹-白露区-秋分山东侧-2个');//有役人,点位过多,或许可删除。已删除 + await AutoPathB('狗粮-枫丹-白露区-秋分山西侧-北-2个'); + await AutoPathB('狗粮-枫丹-研究院区-东-3个'); + await AutoPathB('狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个'); + await AutoPathB('狗粮-枫丹-研究院区-学术会堂-1个(另一个太远)'); + await AutoPathB('狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个'); + await AutoPathB('狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰)'); + await AutoPathB('狗粮-枫丹-研究院区-西南偏南-6个'); + await AutoPathB('狗粮-枫丹-研究院区-西南偏西-4个'); + await AutoPathB('狗粮-枫丹-莫尔泰区-七天神像-1个'); + await AutoPathB('狗粮-枫丹-黎翡区-七天神像-5个'); + await AutoPathB('狗粮-枫丹-黎翡区-芒索斯山东-3个'); + logTimeTaken(startTime); + + log.info('前往地区:稻妻'); + await AutoPathB('狗粮-稻妻-海祇岛-东方小岛-2个'); + await AutoPathB('狗粮-稻妻-海祇岛-望泷村西南-4个'); + await AutoPathB('狗粮-稻妻-海祇岛-珊瑚宫东北-6个'); + await AutoPathB('狗粮-稻妻-清籁岛-平海砦西-8个'); + await AutoPathB('狗粮-稻妻-清籁岛-浅濑神社-3个'); + await AutoPathB('狗粮-稻妻-清籁岛-越石村-8个'); + await AutoPathB('狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守)'); + await AutoPathB('狗粮-稻妻-神无冢-九条阵屋-3个');//有概率被挡住导致只能捡一个。忽略。 + await AutoPathB('狗粮-稻妻-神无冢-堇色之庭-4个'); + await AutoPathB('狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿)'); + await AutoPathB('狗粮-稻妻-鹤观-东-3个'); + await AutoPathB('【收尾】狗粮-稻妻-清籁岛-清籁丸-20个'); + logTimeTaken(startTime); + + // 计算并输出总时长 + 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}`); + } + }; + // 启用自动拾取的实时任务 + dispatcher.addTimer(new RealtimeTimer("AutoPick")); + const startTime = Date.now(); + await runAlternateTasks(); +})(); \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/manifest.json b/repo/js/AutoArtifacts [RouteAB]/manifest.json new file mode 100644 index 00000000..b0d63a71 --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "自动狗粮 [AB线]", + "version": "1.1", + "description": "分AB线隔天运行", + "authors": [ + { + "name": "愚溪 & Yang-z", + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts [RouteAB]/settings.json b/repo/js/AutoArtifacts [RouteAB]/settings.json new file mode 100644 index 00000000..9acfa62e --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/settings.json @@ -0,0 +1,12 @@ +[ + { + "name": "selectway", + "type": "select", + "label": "线路选择", + "options": [ + "A线", + "B线", + "自动" + ] + } +] diff --git a/repo/js/AutoArtifacts [RouteAB]/更新说明.txt b/repo/js/AutoArtifacts [RouteAB]/更新说明.txt new file mode 100644 index 00000000..a1ca36ba --- /dev/null +++ b/repo/js/AutoArtifacts [RouteAB]/更新说明.txt @@ -0,0 +1,5 @@ +V1.1版本更新内容: +1. 根据B线的使用反馈,删除了部分生存威胁较大的点位,并确保B线能够成功收尾; +2. 根据A线的使用反馈,修复了A线中绝云间误传送到太府山的BUG; +3. 优化了A线的收尾路线,提高了其可用性; +4. 增加了+8时区以及凌晨4点调查点刷新时间对AB线切换的影响 \ No newline at end of file diff --git a/repo/js/AutoArtifacts/assets/AutoPath/二净甸神像.json b/repo/js/AutoArtifacts/assets/AutoPath/二净甸神像.json new file mode 100644 index 00000000..cf06a33d --- /dev/null +++ b/repo/js/AutoArtifacts/assets/AutoPath/二净甸神像.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "二净甸神像", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 5, + "x": 3252.810546875, + "y": -591.326171875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3242.787109375, + "y": -607.115234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 3232.74853515625, + "y": -673.2236328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 3236.552734375, + "y": -673.55859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 3241.642578125, + "y": -670.6220703125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_须弥_化城郭西_2.json b/repo/js/AutoArtifacts/assets/AutoPath/化城郭西.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_须弥_化城郭西_2.json rename to repo/js/AutoArtifacts/assets/AutoPath/化城郭西.json diff --git a/repo/js/AutoArtifacts/assets/AutoPath/塔尼特营地.json b/repo/js/AutoArtifacts/assets/AutoPath/塔尼特营地.json new file mode 100644 index 00000000..12c2b449 --- /dev/null +++ b/repo/js/AutoArtifacts/assets/AutoPath/塔尼特营地.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "狗粮_须弥_塔尼特营地_4", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 5063.81103515625, + "y": -1587.734375 + }, + { + "id": 2, + "x": 5094.9765625, + "y": -1547.99658203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 5098.1201171875, + "y": -1541.771484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 5083.83740234375, + "y": -1550.5673828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 5059.3310546875, + "y": -1572.44775390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": 5064.13818359375, + "y": -1579.64892578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 5081.541015625, + "y": -1573.60595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 5119.51220703125, + "y": -1570.22216796875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 5136.69189453125, + "y": -1577.34765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 5170.701171875, + "y": -1559.78369140625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_枫丹_新枫科院宿舍_4.json b/repo/js/AutoArtifacts/assets/AutoPath/新枫科院宿舍.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_枫丹_新枫科院宿舍_4.json rename to repo/js/AutoArtifacts/assets/AutoPath/新枫科院宿舍.json diff --git a/repo/pathing/圣遗物/狗粮_枫丹_新枫科院西南_7.json b/repo/js/AutoArtifacts/assets/AutoPath/新枫科院西南.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_枫丹_新枫科院西南_7.json rename to repo/js/AutoArtifacts/assets/AutoPath/新枫科院西南.json diff --git a/repo/pathing/圣遗物/狗粮_须弥_无郁绸林_3.json b/repo/js/AutoArtifacts/assets/AutoPath/无郁绸林.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_须弥_无郁绸林_3.json rename to repo/js/AutoArtifacts/assets/AutoPath/无郁绸林.json diff --git a/repo/pathing/圣遗物/狗粮_稻妻_望泷村西南_4.json b/repo/js/AutoArtifacts/assets/AutoPath/望泷村西南.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_望泷村西南_4.json rename to repo/js/AutoArtifacts/assets/AutoPath/望泷村西南.json diff --git a/repo/js/AutoArtifacts/assets/AutoPath/欧庇克莱歌剧院东南.json b/repo/js/AutoArtifacts/assets/AutoPath/欧庇克莱歌剧院东南.json new file mode 100644 index 00000000..a8c12f9e --- /dev/null +++ b/repo/js/AutoArtifacts/assets/AutoPath/欧庇克莱歌剧院东南.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "狗粮_枫丹_欧庇克莱歌剧院东南_2", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": 3595.5517578125, + "y": 3254.333251953125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 3615.38427734375, + "y": 3265.42529296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3614.9833984375, + "y": 3276.674072265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3589.9384765625, + "y": 3296.404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3585.0244140625, + "y": 3290.032958984375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/圣遗物/狗粮_须弥_神的棋盘_3.json b/repo/js/AutoArtifacts/assets/AutoPath/神的棋盘.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_须弥_神的棋盘_3.json rename to repo/js/AutoArtifacts/assets/AutoPath/神的棋盘.json diff --git a/repo/js/AutoArtifacts/assets/AutoPath/维摩庄.json b/repo/js/AutoArtifacts/assets/AutoPath/维摩庄.json index 3656845f..9df157cd 100644 --- a/repo/js/AutoArtifacts/assets/AutoPath/维摩庄.json +++ b/repo/js/AutoArtifacts/assets/AutoPath/维摩庄.json @@ -1,100 +1,68 @@ { "info": { - "name": "狗粮_须弥_维摩庄_3", + "name": "维摩庄", "type": "collect", - "author": "Tim", + "author": "HZYgrandma", "version": "1.0", "description": "", - "bgiVersion": "0.34.5" + "bgiVersion": "0.35.0" }, "positions": [ { "id": 1, + "x": 2794.1982421875, + "y": -1216.46484375, "action": "", "move_mode": "walk", - "type": "teleport", - "x": 2794.1982421875, - "y": -1216.46484375 + "type": "teleport" }, { "id": 2, "x": 2789.333984375, "y": -1187.43701171875, - "type": "path", + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 3, "x": 2786.8701171875, "y": -1163.32275390625, - "type": "path", + "action": "stop_flying", "move_mode": "fly", - "action": "stop_flying" + "type": "path" + }, + { + "id": 4, + "x": 2719.05517578125, + "y": -1131.2958984375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" }, { "id": 5, - "x": 2719.05517578125, - "y": -1131.2958984375, - "type": "path", - "move_mode": "fly", - "action": "stop_flying" + "x": 2698.4287109375, + "y": -1146.67626953125, + "action": "", + "move_mode": "walk", + "type": "target" }, { "id": 6, - "x": 2698.4287109375, - "y": -1146.67626953125, - "type": "target", + "x": 2705.5283203125, + "y": -1145.05712890625, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 7, - "x": 2705.5283203125, - "y": -1145.05712890625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 8, "x": 2701.0869140625, "y": -1137.603515625, - "type": "target", + "action": "", "move_mode": "walk", - "action": "" - }, - { - "id": 9, - "x": 2704.130859375, - "y": -1143.216796875, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 10, - "x": 2714.32373046875, - "y": -1116.52978515625, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 11, - "x": 2722.77099609375, - "y": -1095.1630859375, - "type": "path", - "move_mode": "fly", - "action": "" - }, - { - "id": 12, - "x": 2724.68359375, - "y": -1083.13525390625, - "type": "target", - "move_mode": "walk", - "action": "" + "type": "target" } ] } \ No newline at end of file diff --git a/repo/js/AutoArtifacts/assets/AutoPath/莫尔泰神像.json b/repo/js/AutoArtifacts/assets/AutoPath/莫尔泰神像.json new file mode 100644 index 00000000..746439a0 --- /dev/null +++ b/repo/js/AutoArtifacts/assets/AutoPath/莫尔泰神像.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "莫尔泰神像", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3563.2939453125, + "y": 3018.47998046875 + }, + { + "id": 2, + "x": 3579.97265625, + "y": 3048.275390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3592.68408203125, + "y": 3066.919189453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3586.05859375, + "y": 3071.087158203125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_稻妻_越石村_5.json b/repo/js/AutoArtifacts/assets/AutoPath/越石村.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_越石村_5.json rename to repo/js/AutoArtifacts/assets/AutoPath/越石村.json diff --git a/repo/js/AutoArtifacts/assets/AutoPath/轻策庄.json b/repo/js/AutoArtifacts/assets/AutoPath/轻策庄.json index 2a4f5162..a0f416ee 100644 --- a/repo/js/AutoArtifacts/assets/AutoPath/轻策庄.json +++ b/repo/js/AutoArtifacts/assets/AutoPath/轻策庄.json @@ -1,84 +1,84 @@ { "info": { - "name": "狗粮_璃月_轻策庄_2", + "name": "轻策庄", "type": "collect", - "author": "Tim", + "author": "HZYgrandma", "version": "1.0", "description": "", - "bgiVersion": "0.34.5" + "bgiVersion": "0.35.0" }, "positions": [ { "id": 1, + "x": 547.7373046875, + "y": 1766.75341796875, "action": "", "move_mode": "walk", - "type": "teleport", - "x": 547.7373046875, - "y": 1766.75341796875 + "type": "teleport" }, { "id": 2, "x": 551.017578125, "y": 1755.98291015625, - "type": "path", + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 3, "x": 589.1337890625, "y": 1724.79931640625, - "type": "path", + "action": "", "move_mode": "fly", - "action": "" + "type": "path" }, { "id": 4, "x": 613.7158203125, "y": 1710.28564453125, - "type": "path", + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 5, "x": 621.2431640625, "y": 1706.30419921875, - "type": "target", + "action": "", "move_mode": "walk", - "action": "" + "type": "target" }, { "id": 6, "x": 620.2861328125, - "y": 1711.07568359375, - "type": "path", + "y": 1716.07568359375, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" }, { "id": 7, "x": 650.8642578125, - "y": 1703.021484375, - "type": "path", + "y": 1713.021484375, + "action": "", "move_mode": "walk", - "action": "" + "type": "path" + }, + { + "id": 8, + "x": 664.81640625, + "y": 1713.56689453125, + "action": "", + "move_mode": "walk", + "type": "path" }, { "id": 9, - "x": 664.81640625, - "y": 1713.56689453125, - "type": "path", - "move_mode": "walk", - "action": "" - }, - { - "id": 10, "x": 662.853515625, "y": 1720.2998046875, - "type": "target", + "action": "", "move_mode": "walk", - "action": "" + "type": "target" } ] } \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_璃月_老窖_6.json b/repo/js/AutoArtifacts/assets/AutoPath/酒窖.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_璃月_老窖_6.json rename to repo/js/AutoArtifacts/assets/AutoPath/酒窖.json diff --git a/repo/js/AutoArtifacts/main.js b/repo/js/AutoArtifacts/main.js index d04bc36f..11378600 100644 --- a/repo/js/AutoArtifacts/main.js +++ b/repo/js/AutoArtifacts/main.js @@ -6,7 +6,8 @@ async function logTaskStart() { const messages = [ - `确保地图的按键为M键`, + '此脚本运行时间约45-50分钟', + '确保地图的按键为M键', '左上角派蒙头像未被其他悬浮窗遮挡', '游戏以60帧运行', '游戏视角灵敏度保持默认为3', @@ -21,26 +22,44 @@ } } - async function KeyMouse(locationName, sec, x, y) - { + async function KeyMouse(locationName, sec, x, y) { + try { if (x !== undefined && y !== undefined) { - log.info(`前往 {name}`, locationName); + log.info(`前往 ${locationName}`); await genshin.tp(x, y); await sleep(1000); } - - let filePath = `assets/KeyMouse/${locationName}.json`; - await keyMouseScript.runFile(filePath); + let filePath = `assets/KeyMouse/${locationName}.json`; + await keyMouseScript.runFile(filePath); + } catch (error) { + log.error(`执行 ${locationName} 脚本时发生错误`); + } await sleep(sec * 1000); // 将秒转换为毫秒 } async function AutoPath(locationName) { + try { + log.info(`前往 ${locationName}`); let filePath = `assets/AutoPath/${locationName}.json`; - await pathingScript.runFile(filePath); + await pathingScript.runFile(filePath); + } catch (error) { + log.error(`执行 ${locationName} 路径时发生错误`); + } + await sleep(2000); + } + + 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}`); } await logTaskStart(); + log.info('前往地区:璃月') await KeyMouse('地中之盐北', 1, -321, 1470); await KeyMouse('无相之冰', 1, -410, 1161); await KeyMouse('解除冰元素附着', 4, -255, 629); @@ -53,7 +72,9 @@ await KeyMouse('沉玉谷狗洞', 2, 1114, 1948); await KeyMouse('奥藏山', 2, 1451, 1029); await KeyMouse('酒窖', 2, 730, 1062); + logTimeTaken(startTime); + log.info('前往地区:稻妻') await KeyMouse('神无冢1', 2, -3405, -3534); await KeyMouse('神无冢2', 2, -3405, -3534); await KeyMouse('炉心1', 2, -3289, -3654); @@ -65,7 +86,9 @@ await KeyMouse('鹤观神像1', 2, -3269, -6135); await KeyMouse('鹤观神像2', 2, -3269, -6135); await KeyMouse('黄金王兽北', 2, -2612, -6507); + logTimeTaken(startTime); + log.info('前往地区:须弥') await KeyMouse('须弥城', 2, 2786, -503); await KeyMouse('须弥城东', 2, 2694, -416); await KeyMouse('须弥城西北1', 2, 2876, -292); @@ -73,7 +96,9 @@ await KeyMouse('圣显厅南', 2, 4271, -1666); await KeyMouse('圣显厅西', 2, 4775, -1437); await KeyMouse('神的棋盘', 2, 5759, -1309); + logTimeTaken(startTime); + log.info('前往地区:枫丹') await KeyMouse('枫丹廷1', 2, 4509, 3630); await KeyMouse('枫丹廷2', 2, 4509, 3630); await KeyMouse('欧庇克莱歌剧院东南', 2, 3595, 3254); @@ -87,10 +112,11 @@ await KeyMouse('科学院西', 2, 4498, 4711); await KeyMouse('缩小地图', 1); await KeyMouse('海露港', 6, 4984, 1700); - await KeyMouse('遗忘之路', 2, 5990, 1212); await KeyMouse('佩特莉可神像', 2, 4454, 1255); await KeyMouse('佩特莉可镇', 2, 4322, 1172); + logTimeTaken(startTime); + log.info('前往地区:纳塔') await KeyMouse('楚汶市集1', 2, 9059, -1847); await KeyMouse('楚汶市集2', 2, 9059, -1847); await KeyMouse('竞技场东', 2, 8734, -1856); @@ -99,20 +125,31 @@ await KeyMouse('虹灵的净土', 2, 9038, -2428); await KeyMouse('流泉之众', 2, 8918, -2678); await KeyMouse('悬木人', 2, 8433, -2108); + logTimeTaken(startTime); - await AutoPath('渌华池'); - await AutoPath('轻策庄'); - await AutoPath('荻花洲'); - await AutoPath('维摩庄'); - + log.info('前往地区:其他') await KeyMouse('精石铜城', 2, 6323, 821); + + await AutoPath('荻花洲'); + await AutoPath('轻策庄'); + await AutoPath('酒窖'); + await AutoPath('渌华池'); + await AutoPath('望泷村西南'); + await AutoPath('越石村'); + await AutoPath('化城郭西'); + await AutoPath('二净甸神像'); + await AutoPath('无郁绸林'); + await AutoPath('塔尼特营地'); + await AutoPath('神的棋盘'); + await AutoPath('莫尔泰神像'); + await AutoPath('欧庇克莱歌剧院东南'); + await AutoPath('新枫科院西南'); + await AutoPath('新枫科院宿舍'); // 计算并输出总时长 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}`); -})(); \ No newline at end of file +})(); diff --git a/repo/js/AutoArtifacts/manifest.json b/repo/js/AutoArtifacts/manifest.json index 834e0545..847217ce 100644 --- a/repo/js/AutoArtifacts/manifest.json +++ b/repo/js/AutoArtifacts/manifest.json @@ -1,11 +1,11 @@ { "manifest_version": 1, "name": "自动狗粮", - "version": "1.7", + "version": "2.0", "description": "自动调查离传送点较近的狗粮。请使用琳妮特前台,双风共鸣。并保证所有传送点都已经激活!", "authors": [ { - "name": "HZYgrandma", + "name": "HZYgrandma & Tim", } ], "main": "main.js" diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个.json new file mode 100644 index 00000000..7ce3c08d --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个.json @@ -0,0 +1,247 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + + "positions": [ + { + "x": -3288.212890625, + "y": -3652.501953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3268.4306640625, + "y": -3650.8837890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3267.6240234375, + "y": -3643.1455078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3264.39453125, + "y": -3641.43359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3259.05859375, + "y": -3639.08984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3261.376953125, + "y": -3644.6572265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3253.990234375, + "y": -3647.380859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3248.65625, + "y": -3648.939453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3243.9580078125, + "y": -3651.015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3240.224609375, + "y": -3647.794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3209.8427734375, + "y": -3605.6376953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": -3209.8427734375, + "y": -3605.6376953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3211.962890625, + "y": -3603.951171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3212.4130859375, + "y": -3605.99609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3215.0595703125, + "y": -3612.5361328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3216.4609375, + "y": -3627.3212890625, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3206.4365234375, + "y": -3614.490234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3206.25, + "y": -3614.3671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3208.1083984375, + "y": -3614.806640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3205.6845703125, + "y": -3616.7685546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3204.03125, + "y": -3615.5517578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + + { + "x": -3156.5830078125, + "y": -3886.0986328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3170.4130859375, + "y": -3850.8359375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3168.654296875, + "y": -3839.994140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3151.0654296875, + "y": -3842.669921875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3149.3564453125, + "y": -3837.0224609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3152.970703125, + "y": -3831.783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": -3152.970703125, + "y": -3831.783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": -3147.2763671875, + "y": -3831.7646484375, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -3144.0830078125, + "y": -3831.6953125, + "type": "target", + "move_mode": "fly", + "action": "", + "#": "6" + }, + { + "x": -3144.0830078125, + "y": -3831.6953125, + "type": "target", + "move_mode": "fly", + "action": "", + "#": "6" + }, + { + "x": -3144.5859375, + "y": -3831.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + } + + + ] + +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json new file mode 100644 index 00000000..3279b013 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json @@ -0,0 +1,289 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + + "positions": [ + + { + "x": -3156.5380859375, + "y": -3886.1474609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3156.634765625, + "y": -3870.7353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3154.0478515625, + "y": -3835.5107421875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3152.74609375, + "y": -3733.8955078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3152.74609375, + "y": -3733.8955078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3149.0771484375, + "y": -3739.6552734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": -3149.0908203125, + "y": -3739.7705078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + { + "x": -3155.703125, + "y": -3729.7724609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3157.0185546875, + "y": -3727.5537109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3157.0185546875, + "y": -3727.5537109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + + + { + "x": -3159.232421875, + "y": -3724.658203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + { + "x": -3159.232421875, + "y": -3724.658203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + + { + "x": -3155.7451171875, + "y": -3719.76953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3156.0673828125, + "y": -3716.6884765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3163.8154296875, + "y": -3710.796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3164.5810546875, + "y": -3702.015625, + "type": "path", + "move_mode": "walk", + "#": "drop" + }, + { + "x": -3166.8525390625, + "y": -3704.3955078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3164.1953125, + "y": -3706.4267578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "10" + }, + { + "x": -3164.146484375, + "y": -3706.44921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "10" + }, + + + + { + "x": -3164.6044921875, + "y": -3701.8447265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3160.455078125, + "y": -3701.7998046875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3148.009765625, + "y": -3693.4609375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3108.439453125, + "y": -3655.1953125, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3103.35546875, + "y": -3647.599609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3098, + "y": -3639.703125, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3093.2978515625, + "y": -3637.5732421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "11" + }, + + + { + "x": -3113.5029296875, + "y": -3625.0078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3116.8349609375, + "y": -3623.0576171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + { + "x": -3118.3505859375, + "y": -3622.375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + { + "x": -3119.169921875, + "y": -3621.8486328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + + { + "x": -3127.1142578125, + "y": -3602.75390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3149.3203125, + "y": -3568.7509765625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3144.365234375, + "y": -3567.513671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3134.7275390625, + "y": -3566.712890625, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3136.1005859375, + "y": -3568.3203125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3138.798828125, + "y": -3570.107421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "13" + }, + { + "x": -3139.0625, + "y": -3571.1171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "13" + } + + + ] + +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json new file mode 100644 index 00000000..085b78b3 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json @@ -0,0 +1,435 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + + "positions": [ + + { + "x": -3156.5849609375, + "y": -3886.06640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3139.6357421875, + "y": -3873.5673828125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3118.478515625, + "y": -3801.2685546875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3128.7255859375, + "y": -3755.45703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3156.3916015625, + "y": -3754.88671875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3124.9794921875, + "y": -3742.8154296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": -3122.5849609375, + "y": -3732.068359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3122.255859375, + "y": -3731.25390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3120.4677734375, + "y": -3731.875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + + { + "x": -3119.1494140625, + "y": -3733.4775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3115.4189453125, + "y": -3729.2060546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3114.466796875, + "y": -3726.51953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3112.560546875, + "y": -3723.8798828125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3112.73046875, + "y": -3722.8701171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3116.73828125, + "y": -3720.2392578125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3120.67578125, + "y": -3714.5673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3128.521484375, + "y": -3714.7255859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3153.703125, + "y": -3718.9189453125, + "type": "path", + "move_mode": "fly", + "//": "stop_flying" + }, + { + "x": -3162.361328125, + "y": -3716.51953125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3161.1396484375, + "y": -3710.4248046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3160.287109375, + "y": -3704.8359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3160.28515625, + "y": -3704.8525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3160.29296875, + "y": -3704.857421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + + { + "x": -3164.3984375, + "y": -3703.9912109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3160.7744140625, + "y": -3698.0908203125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3158.619140625, + "y": -3695.8984375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3156.2685546875, + "y": -3693.1943359375, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -3154.5517578125, + "y": -3688.9306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3154.5517578125, + "y": -3688.9306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3154.22265625, + "y": -3689.6806640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + + { + "x": -3153.6904296875, + "y": -3693.7529296875, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3152.80859375, + "y": -3697.337890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "18" + }, + { + "x": -3152.4462890625, + "y": -3696.4912109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "18" + }, + + { + "x": -3147.033203125, + "y": -3694.96484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3140.6904296875, + "y": -3700.126953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3143.0439453125, + "y": -3704.70703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "19" + }, + { + "x": -3143.9716796875, + "y": -3704.447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "19" + }, + { + "x": -3144.181640625, + "y": -3703.8671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "19" + }, + + { + "x": -3144.9853515625, + "y": -3708.4521484375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3146.5185546875, + "y": -3713.2802734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3148.638671875, + "y": -3716.90234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3153.908203125, + "y": -3718.08203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3160.7529296875, + "y": -3717.9111328125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3160.779296875, + "y": -3720.1904296875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3161.1572265625, + "y": -3721.9765625, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3154.974609375, + "y": -3736.6025390625, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3147.8583984375, + "y": -3741.576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3142.1376953125, + "y": -3741.7470703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3134.73828125, + "y": -3736.9609375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3135.3974609375, + "y": -3734.583984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "20" + }, + { + "x": -3134.900390625, + "y": -3734.37890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "20" + }, + + + + { + "x": -3016.837890625, + "y": -3623.62890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3026.8125, + "y": -3635.3583984375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3027.4208984375, + "y": -3641.755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3027.904296875, + "y": -3641.369140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3031.6767578125, + "y": -3640.1640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "21" + }, + { + "x": -3031.67578125, + "y": -3640.154296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "21" + } + ] + +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json new file mode 100644 index 00000000..9ca691af --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json @@ -0,0 +1,374 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 730.2568359375, + "y": 1062.2294921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 739.3203125, + "y": 1069.82421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 774.2177734375, + "y": 1069.30615234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 773.095703125, + "y": 1065.32958984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 772.3125, + "y": 1062.54541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 771.220703125, + "y": 1060.974609375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 772.5947265625, + "y": 1063.66455078125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 772.654296875, + "y": 1064.009765625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 730.482421875, + "y": 1062.408203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 718.5, + "y": 1042.6474609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 667.0361328125, + "y": 1010.57568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 634.7490234375, + "y": 947.455078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 642.0517578125, + "y": 941.64453125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 642.0498046875, + "y": 941.73486328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 641.3134765625, + "y": 941.08837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 643.544921875, + "y": 941.38330078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 625.1875, + "y": 927.0615234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 582.587890625, + "y": 908.26318359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 578.025390625, + "y": 907.7900390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + + + { + "x": 579.1728515625, + "y": 915.19921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 557.4853515625, + "y": 907.4248046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 545.697265625, + "y": 894.28857421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 541.2587890625, + "y": 893.3466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 529.9072265625, + "y": 901.82958984375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 523.5693359375, + "y": 907.1611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + + + + { + "x": 528.3486328125, + "y": 904.05029296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 541.3017578125, + "y": 902.4697265625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 555.9248046875, + "y": 896.3095703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 566.8603515625, + "y": 888.94140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 575.05078125, + "y": 898.53662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 602.28515625, + "y": 878.0556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 629.001953125, + "y": 848.5849609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 631.0849609375, + "y": 845.2314453125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 643.9921875, + "y": 841.00927734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 648.8515625, + "y": 839.12109375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 649.83984375, + "y": 831.625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 649.708984375, + "y": 831.6279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 649.0048828125, + "y": 831.23583984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 646.3505859375, + "y": 833.35546875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 645.8408203125, + "y": 832.71533203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 646.037109375, + "y": 832.7724609375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + + { + "x": 645.37109375, + "y": 833.572265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "8" + }, + { + "x": 645.076171875, + "y": 834.3232421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "8" + }, + + { + "x": 645.8359375, + "y": 835.81396484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "9" + }, + { + "x": 645.671875, + "y": 835.916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "9" + }, + { + "x": 646.037109375, + "y": 832.7724609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 646.2255859375, + "y": 836.51025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 646.80859375, + "y": 837.4140625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 646.8876953125, + "y": 834.0068359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 648.2548828125, + "y": 829.93701171875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 645.55859375, + "y": 830.66357421875, + "type": "path", + "move_mode": "walk" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json new file mode 100644 index 00000000..84de6e18 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json @@ -0,0 +1,134 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1121.0517578125, + "y": 1190.40087890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1126.859375, + "y": 1206.17333984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1149.5205078125, + "y": 1261.96435546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1143.5537109375, + "y": 1266.68212890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1141.517578125, + "y": 1274.34228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1141.2353515625, + "y": 1276.4130859375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1123.3408203125, + "y": 1290.84765625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1120.1875, + "y": 1284.3994140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + + + { + "x": 1115.29296875, + "y": 1284.30615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 1118.7373046875, + "y": 1285.69921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1104.076171875, + "y": 1289.1982421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1032.5712890625, + "y": 1253.9130859375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1033.4248046875, + "y": 1254.021484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1030.2197265625, + "y": 1257.08447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 1033.470703125, + "y": 1252.2080078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1030.97265625, + "y": 1252.08447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 1029.7646484375, + "y": 1251.83447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json new file mode 100644 index 00000000..43a37d3b --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json @@ -0,0 +1,41 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 489.443359375, + "y": 222.12353515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 432.3994140625, + "y": 228.15869140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 425.634765625, + "y": 231.4072265625, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 424.2900390625, + "y": 234.669921875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 425.9228515625, + "y": 232.67333984375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json new file mode 100644 index 00000000..74fc56ee --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -164.5927734375, + "y": 1182.50537109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -171.73828125, + "y": 1225.6494140625, + "type": "path", + "move_mode": "run" + }, + { + "x": -147.2490234375, + "y": 1261.24951171875, + "type": "path", + "move_mode": "run" + }, + { + "x": -95.0634765625, + "y": 1238.294921875, + "type": "target", + "move_mode": "run", + "action":"" + }, + { + "x": -94.11328125, + "y": 1235.544921875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": -90.9267578125, + "y": 1235.23193359375, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json new file mode 100644 index 00000000..163e712e --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8738.201171875, + "y": -1857.45947265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8720.2763671875, + "y": -1866.86328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8724.6240234375, + "y": -1863.77734375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 8724.533203125, + "y": -1862.7119140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 8725.2158203125, + "y": -1862.1767578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 8726.3984375, + "y": -1862.20703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8724.8876953125, + "y": -1861.7841796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8722.646484375, + "y": -1864.64208984375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8721.26953125, + "y": -1856.9326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8660.845703125, + "y": -1797.1259765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8651.423828125, + "y": -1785.03662109375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8667.1689453125, + "y": -1767.51904296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8672.138671875, + "y": -1766.37451171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8672.3203125, + "y": -1769.1220703125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 8672.775390625, + "y": -1770.39208984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 8672.783203125, + "y": -1770.392578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 8630.39453125, + "y": -1771.56494140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8613.8095703125, + "y": -1766.69580078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8596.5390625, + "y": -1763.8193359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8593.53125, + "y": -1763.08837890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8591.849609375, + "y": -1763.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 8591.1875, + "y": -1763.3173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-6个/7个 .json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-6个/7个 .json new file mode 100644 index 00000000..91ef446f --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-6个/7个 .json @@ -0,0 +1,359 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 7633.83349609375, + "y": -1646.67431640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7618.5380859375, + "y": -1624.78173828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 7708.3408203125, + "y": -1527.4580078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7702.9697265625, + "y": -1523.55126953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 7703.7802734375, + "y": -1528.4541015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7703.18701171875, + "y": -1536.9375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7703.3671875, + "y": -1537.8984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7703.3671875, + "y": -1537.8984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7706.0556640625, + "y": -1536.0087890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7700.876953125, + "y": -1536.57666015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 7727.3740234375, + "y": -1545.806640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7732.88671875, + "y": -1542.5927734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 7737.70751953125, + "y": -1541.71484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 7739.0556640625, + "y": -1538.3515625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 7738.9873046875, + "y": -1539.18212890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 7739.42822265625, + "y": -1539.6357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 7735.0078125, + "y": -1541.712890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7731.54833984375, + "y": -1543.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7731.4609375, + "y": -1527.24267578125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 7781.7685546875, + "y": -1498.65966796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 7784.13427734375, + "y": -1479.99072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7776.4736328125, + "y": -1457.95556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7771.8525390625, + "y": -1451.56494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 7772.35595703125, + "y": -1450.89892578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 7771.8525390625, + "y": -1451.56494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + + + + { + "x": 7633.7626953125, + "y": -1646.72509765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7609.90234375, + "y": -1627.96533203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 7531.28125, + "y": -1560.5849609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7531.33935546875, + "y": -1560.20458984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 7532.33984375, + "y": -1559.291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 7532.33984375, + "y": -1559.291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + + + + { + "x": 7633.8095703125, + "y": -1646.69482421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7643.09619140625, + "y": -1656.97509765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7741.162109375, + "y": -1743.72314453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + } + + ], + + + + "positions_not_actived": [ + { "#": "也有点远" }, + + { + "x": 7633.8603515625, + "y": -1646.7119140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7642.7734375, + "y": -1768.53564453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 7616.7890625, + "y": -1802.326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 7558.35693359375, + "y": -1870.9873046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 7557.3818359375, + "y": -1882.10546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + } + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json new file mode 100644 index 00000000..556cd5bd --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json @@ -0,0 +1,193 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9757.9697265625, + "y": -613.59716796875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + + { + "x": 9759.7265625, + "y": -618.5703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9759.3642578125, + "y": -624.9482421875, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9749.4638671875, + "y": -622.73681640625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9749.728515625, + "y": -620.53759765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9751.447265625, + "y": -617.3203125, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9750.8564453125, + "y": -608.7265625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + { + "x": 9759.390625, + "y": -611.439453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9767.208984375, + "y": -604.23486328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9772.1845703125, + "y": -611.49169921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9765.08203125, + "y": -613.0517578125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9765.7685546875, + "y": -619.1064453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9759.865234375, + "y": -625.8095703125, + "type": "target", + "move_mode": "walk", + "#": "5 6" + }, + { + "x": 9760.0087890625, + "y": -625.75, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 9726.82421875, + "y": -670.78466796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9727.59375, + "y": -670.8193359375, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + { + "x": 9785.7392578125, + "y": -669.693359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9796.419921875, + "y": -669.0380859375, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + { + "x": 9794.921875, + "y": -657.755859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9793.3125, + "y": -650.712890625, + "type": "target", + "move_mode": "walk", + "#": "9" + }, + { + "x": 9809.7958984375, + "y": -629.44189453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9811.6796875, + "y": -623.65625, + "type": "target", + "move_mode": "walk", + "#": "10" + }, + { + "x": 9814.60546875, + "y": -592.00244140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9814.396484375, + "y": -585.39794921875, + "type": "target", + "move_mode": "walk", + "#": "11" + }, + { + "x": 9826.3203125, + "y": -572.1123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9831.451171875, + "y": -567.2568359375, + "type": "target", + "move_mode": "walk", + "#": "12" + }, + { + "x": 9834.365234375, + "y": -563.93701171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9831.587890625, + "y": -563.4140625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个.json new file mode 100644 index 00000000..9e480c76 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个.json @@ -0,0 +1,143 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9670.130859375, + "y": 171.31884765625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9663.6328125, + "y": 183.66162109375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9663.6328125, + "y": 183.66162109375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9672.03515625, + "y": 189.12353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9677.35546875, + "y": 225.80224609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9683.83984375, + "y": 230.5029296875, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9683.7568359375, + "y": 230.51806640625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9687.234375, + "y": 230.724609375, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9687.234375, + "y": 230.724609375, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9694.974609375, + "y": 220.93896484375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9694.974609375, + "y": 220.93896484375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9673.7939453125, + "y": 227.576171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9665.4150390625, + "y": 230.7529296875, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + { + "x": 9664.90234375, + "y": 230.03662109375, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + + + + { + "x": 9670.130859375, + "y": 171.31884765625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9602.4921875, + "y": 157.63427734375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9587.501953125, + "y": 171.46044921875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9587.2451171875, + "y": 171.51171875, + "type": "target", + "move_mode": "walk", + "#": "6" + }, + { + "x": 9587.501953125, + "y": 171.46044921875, + "type": "target", + "move_mode": "walk", + "#": "6" + } + + ] + +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json new file mode 100644 index 00000000..045c5f7c --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json @@ -0,0 +1,169 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8918.939453125, + "y": -2679.103515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8955.6015625, + "y": -2675.927734375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 8956.306640625, + "y": -2684.4296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 8956.560546875, + "y": -2684.478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + { + "x": 8959.0654296875, + "y": -2679.1455078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 8985.650390625, + "y": -2691.57421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8994.60546875, + "y": -2709.45703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 8985.96484375, + "y": -2733.546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8985.3251953125, + "y": -2756.3505859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9029.7822265625, + "y": -2792.57421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9044.7001953125, + "y": -2797.5087890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9050.962890625, + "y": -2799.9375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9058.2021484375, + "y": -2800.046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9054.9326171875, + "y": -2798.36328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 9054.9326171875, + "y": -2798.36328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 9052.96484375, + "y": -2796.4638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个.json new file mode 100644 index 00000000..f7b669d8 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个.json @@ -0,0 +1,142 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9719.171875, + "y": -852.11669921875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + + { + "x": 9760.36328125, + "y": -809.44921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9764.8671875, + "y": -805.47998046875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 9766.494140625, + "y": -804.9052734375, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 9768.205078125, + "y": -806.55517578125, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9768.197265625, + "y": -806.56494140625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 9766.7099609375, + "y": -800.212890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9777.76953125, + "y": -774.345703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9777.1875, + "y": -769.76904296875, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9782.1328125, + "y": -767.8994140625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9788.591796875, + "y": -755.54150390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9792.294921875, + "y": -749.29248046875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + + + { + "x": 9719.1982421875, + "y": -852.04931640625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9706.2421875, + "y": -863.09375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9701.865234375, + "y": -872.02490234375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9701.3681640625, + "y": -872.40869140625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9699.0625, + "y": -870.73193359375, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + { + "x": 9643.5654296875, + "y": -898.142578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9623.0859375, + "y": -894.71435546875, + "type": "target", + "move_mode": "walk", + "#": "6" + } + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个.json new file mode 100644 index 00000000..64bdb0d6 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个.json @@ -0,0 +1,178 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9638.033203125, + "y": -1854.703125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9596.3798828125, + "y": -1884.70263671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9586.3076171875, + "y": -1939.7900390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9584.697265625, + "y": -1947.31640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9583.6640625, + "y": -1949.44970703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9585.4951171875, + "y": -1951.11376953125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 9589.12890625, + "y": -1952.841796875, + "type": "target", + "move_mode": "walk", + "#" : "1" + }, + { + "x": 9585.60546875, + "y": -1950.939453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9584.490234375, + "y": -1954.5810546875, + "type": "target", + "move_mode": "walk", + "#" : "2 躲技能" + }, + { + "x": 9586.87890625, + "y": -1959.71240234375, + "type": "target", + "move_mode": "walk", + "#" : "3" + }, + { + "x": 9579.3232421875, + "y": -1961.0849609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9576.55078125, + "y": -1960.44677734375, + "type": "target", + "move_mode": "fly", + "action": "", + "#" : "4 5 6" + }, + { + "x": 9576.55078125, + "y": -1960.44677734375, + "type": "target", + "move_mode": "fly", + "action": "", + "#" : "4 5 6" + }, + { + "x": 9578.65234375, + "y": -1957.75830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9578.4482421875, + "y": -1962.03125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 9638.0859375, + "y": -1854.6728515625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9613.099609375, + "y": -1848.04833984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9617.1337890625, + "y": -1843.072265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "7" + }, + { + "x": 9616.623046875, + "y": -1837.8388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "8" + }, + + { + "x": 9607.533203125, + "y": -1804.2431640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9605.40625, + "y": -1763.8310546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9612.7529296875, + "y": -1758.2841796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9616.951171875, + "y": -1752.6650390625, + "type": "target", + "move_mode": "walk", + "#" : "9" + }, + { + "x": 9616.7041015625, + "y": -1751.63330078125, + "type": "target", + "move_mode": "walk", + "#" : "9" + }, + { + "x": 9616.783203125, + "y": -1751.5556640625, + "type": "target", + "move_mode": "walk", + "#" : "9" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json new file mode 100644 index 00000000..243cb26c --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json @@ -0,0 +1,80 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4209.83935546875, + "y": -2712.0439453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4176.16455078125, + "y": -2726.15234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4166.1396484375, + "y": -2730.453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4140.98681640625, + "y": -2729.94140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4135.51513671875, + "y": -2738.9423828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4135.29443359375, + "y": -2743.03515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4135.99365234375, + "y": -2744.66796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4131.20654296875, + "y": -2734.072265625, + "type": "fly", + "move_mode": "fly" + }, + { + "x": 4120.2685546875, + "y": -2707.25390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4119.091796875, + "y": -2703.1494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4117.6025390625, + "y": -2700.8681640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json new file mode 100644 index 00000000..0c74eb5f --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json @@ -0,0 +1,175 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4096.0234375, + "y": -2025.943359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4098.26416015625, + "y": -2008.10498046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4093.42138671875, + "y": -1986.2099609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4092.91748046875, + "y": -1983.70556640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4093.37158203125, + "y": -1981.90478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4094.7978515625, + "y": -1983.18310546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4091.06103515625, + "y": -1985.2490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": 4096.03369140625, + "y": -2025.90576171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4056.8447265625, + "y": -2034.43115234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4056.1015625, + "y": -2034.58544921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.8447265625, + "y": -2034.43115234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.65771484375, + "y": -2034.53955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.98583984375, + "y": -2032.7099609375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4058.92333984375, + "y": -2033.771484375, + "type": "target", + "move_mode": "walk" + }, + + + + { + "x": 4096.01708984375, + "y": -2025.9365234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4121.60498046875, + "y": -2046.70361328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4201.2890625, + "y": -2050.662109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4200.22802734375, + "y": -2047.04541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4200.05126953125, + "y": -2046.39306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 4212.25146484375, + "y": -2026.8671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4215.06982421875, + "y": -2024.91357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4215.0322265625, + "y": -2024.9189453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + } + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json new file mode 100644 index 00000000..c26e46da --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json @@ -0,0 +1,203 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3592.20458984375, + "y": -786.109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3598.11328125, + "y": -733.58740234375, + "type": "path", + "move_mode": "fly", + "action":"stop_flying" + }, + { + "x": 3593.56640625, + "y": -722.83349609375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3592.201171875, + "y": -733.0078125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "1" + }, + + + { + "x": 3601.267578125, + "y": -729.6943359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3608.17724609375, + "y": -729.5029296875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "2" + }, + + { + "x": 3624.04638671875, + "y": -756.8173828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3626.0986328125, + "y": -763.63330078125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "3" + }, + + { + "x": 3640.95849609375, + "y": -778.646484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3645.10498046875, + "y": -782.201171875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "4" + }, + { + "x": 3644.62109375, + "y": -781.72998046875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "4" + }, + + + { + "x": 3631.9404296875, + "y": -779.18017578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3660.69677734375, + "y": -842.3798828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3671.57470703125, + "y": -864.06591796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3673.45361328125, + "y": -867.6865234375, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "5" + }, + + { + "x": 3722.0322265625, + "y": -834.7041015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3729.73681640625, + "y": -826.98779296875, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3731.77978515625, + "y": -825.93408203125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3737.98095703125, + "y": -822.12646484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3736.7841796875, + "y": -824.4833984375, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + }, + { + "x": 3736.72412109375, + "y": -826.1982421875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + }, + { + "x": 3738.3408203125, + "y": -824.96240234375, + "type": "path", + "move_mode": "walk" + } + + + ], + "positions_7": [ + { + "x": 3760.6845703125, + "y": -833.935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3790.6494140625, + "y": -799.51171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3795.19970703125, + "y": -789.6767578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3803.39404296875, + "y": -791.34326171875, + "type": "target", + "move_mode": "walk", + "action":"pick_around", + "NO.": "7 (重兵把守,不去)" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个/5个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个/5个.json new file mode 100644 index 00000000..51f9a248 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个/5个.json @@ -0,0 +1,211 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 5063.70263671875, + "y": -1587.78515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5095.08740234375, + "y": -1547.1875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5098.50439453125, + "y": -1542.10205078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 5101.54736328125, + "y": -1542.041015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5098.45361328125, + "y": -1541.93701171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5096.35107421875, + "y": -1543.46240234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5095.0478515625, + "y": -1560.07080078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5115.654296875, + "y": -1579.087890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5119.06494140625, + "y": -1575.28662109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5119.556640625, + "y": -1570.14306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 5118.291015625, + "y": -1569.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5122.73681640625, + "y": -1568.61767578125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5124.4140625, + "y": -1579.7197265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 5074.4140625, + "y": -1577.09033203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5068.55224609375, + "y": -1577.5400390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5063.34375, + "y": -1580.521484375, + "type": "path", + "move_mode": "walk" + } + + ], + + + + "positions_not_actived": [ + { "#": "偏远" }, + + { + "x": 5063.38623046875, + "y": -1587.76904296875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5047.763671875, + "y": -1587.5712890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4944.57958984375, + "y": -1534.50390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4955.68017578125, + "y": -1491.10595703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4958.37353515625, + "y": -1493.20166015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4960.90771484375, + "y": -1494.58642578125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4966.5419921875, + "y": -1489.2705078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5005.3583984375, + "y": -1391.74658203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5023.9091796875, + "y": -1408.6962890625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 5026.16552734375, + "y": -1411.1865234375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json new file mode 100644 index 00000000..b7e2c676 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json @@ -0,0 +1,248 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3993.8232421875, + "y": -989.39599609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4001.17333984375, + "y": -1050.7236328125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4007.56982421875, + "y": -1054.05859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4010.419921875, + "y": -1055.11181640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 4010.53076171875, + "y": -1062.2978515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4014.65087890625, + "y": -1059.46484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4021.8759765625, + "y": -1053.74755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4025.90185546875, + "y": -1049.61962890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4031.04833984375, + "y": -1044.80419921875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4028.52001953125, + "y": -1042.6025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4024.9404296875, + "y": -1040.6513671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": 4030.0244140625, + "y": -1048.982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4026.0380859375, + "y": -1061.95068359375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4027.53076171875, + "y": -1056.11669921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4027.8017578125, + "y": -1054.716796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4027.83349609375, + "y": -1054.7333984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4028.6748046875, + "y": -1055.15771484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 4025.77099609375, + "y": -1056.43212890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4022.77783203125, + "y": -1058.47802734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4021.642578125, + "y": -1058.65966796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4022.77783203125, + "y": -1058.47802734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + { + "x": 4025.650390625, + "y": -1077.04345703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4010.73388671875, + "y": -1081.44921875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4007.63037109375, + "y": -1073.99560546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4007.23583984375, + "y": -1072.94384765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4007.1171875, + "y": -1071.9248046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": 3993.650390625, + "y": -1085.62353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + + { + "x": 3990.36474609375, + "y": -1086.3388671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3996.8916015625, + "y": -1052.46142578125, + "type": "target", + "move_mode": "run", + "action": "", + "#": "7" + }, + { + "x": 3994.17724609375, + "y": -1048.4873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": 3994.71826171875, + "y": -1048.44091796875, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json new file mode 100644 index 00000000..3ec45c3f --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json @@ -0,0 +1,180 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 5789.85888671875, + "y": 797.70654296875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5762.5234375, + "y": 774.61083984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 5715.38623046875, + "y": 784.3720703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5625.75732421875, + "y": 820.8271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 5606.166015625, + "y": 835.81298828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5607.62841796875, + "y": 823.79736328125, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5608.9873046875, + "y": 820.6103515625, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5607.3095703125, + "y": 821.779296875, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5604.7353515625, + "y": 825.044921875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5593.55078125, + "y": 824.56591796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5591.55078125, + "y": 825.56591796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5592.14208984375, + "y": 825.87841796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5589.43017578125, + "y": 825.6611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5589.25830078125, + "y": 826.619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 5587.75146484375, + "y": 825.91748046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5627.1865234375, + "y": 900.5830078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5634.10693359375, + "y": 896.34619140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5639.48388671875, + "y": 893.79638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 5639.455078125, + "y": 893.81201171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + { + "x": 5603.14794921875, + "y": 890.646484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 5546.05126953125, + "y": 938.8857421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5535.748046875, + "y": 932.04736328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5531.740234375, + "y": 927.4580078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5529.603515625, + "y": 913.49169921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json new file mode 100644 index 00000000..e667b18f --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json @@ -0,0 +1,81 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2701.490234375, + "y": -761.826171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2706.1455078125, + "y": -791.9501953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2706.263671875, + "y": -789.10791015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2685.17236328125, + "y": -834.3212890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2683.966796875, + "y": -840.43798828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + + { + "x": 2681.02490234375, + "y": -828.7421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2647.09765625, + "y": -839.2470703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2593.4287109375, + "y": -853.74169921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2593.67236328125, + "y": -856.54736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.0654296875, + "y": -860.89111328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2596.41259765625, + "y": -861.82568359375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json new file mode 100644 index 00000000..dd3b5101 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 259.4794921875, + "y": -14.0263671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 253.5419921875, + "y": -13.31884765625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 250.76953125, + "y": -12.35986328125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 250.9697265625, + "y": -10.29248046875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 252.9775390625, + "y": -9.94775390625, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json new file mode 100644 index 00000000..5eb7eb3c --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -0,0 +1,33 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3233.2021484375, + "y": -3534.1865234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3238.7421875, + "y": -3532.2880859375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3239.8271484375, + "y": -3532.509765625, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3238.783203125, + "y": -3532.20703125, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json new file mode 100644 index 00000000..afa376ca --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8582.041015625, + "y": -2675.1962890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8579.4150390625, + "y": -2657.970703125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 8578.6396484375, + "y": -2656.0966796875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 8579.435546875, + "y": -2656.6953125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 8579.17578125, + "y": -2657.7470703125, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json new file mode 100644 index 00000000..640c18aa --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3252.81591796875, + "y": -591.2958984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3252.95458984375, + "y": -600.35107421875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3251.63916015625, + "y": -603.21923828125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3249.7099609375, + "y": -602.333984375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3249.13427734375, + "y": -599.64306640625, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json new file mode 100644 index 00000000..58509f4c --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json @@ -0,0 +1,669 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3891.556640625, + "y": -4389.8505859375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE1" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE1" + }, + { + "x": -3849.619140625, + "y": -4510.076171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE2" + }, + { + "x": -3849.4716796875, + "y": -4510.6220703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE2" + }, + { + "x": -3847.23046875, + "y": -4508.517578125, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3847.4970703125, + "y": -4511.7373046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3853.224609375, + "y": -4513.228515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3852.6337890625, + "y": -4509.5849609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.908203125, + "y": -4508.10546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.3916015625, + "y": -4507.1513671875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3835.259765625, + "y": -4488.0927734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3840.205078125, + "y": -4483.6513671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE3" + }, + { + "x": -3838.8935546875, + "y": -4484.923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE3" + }, + + + + { + "x": -3821.767578125, + "y": -4488.9599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3774.337890625, + "y": -4462.90625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3780.5498046875, + "y": -4452.0966796875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3782.16015625, + "y": -4445.1845703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3783.3681640625, + "y": -4439.068359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.029296875, + "y": -4437.59375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.07421875, + "y": -4430.5234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.515625, + "y": -4424.65625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": -3789.146484375, + "y": -4417.970703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3785.60546875, + "y": -4422.544921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -3789.0947265625, + "y": -4418.2265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3789.9228515625, + "y": -4422.2587890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.2919921875, + "y": -4429.623046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3789.244140625, + "y": -4436.77734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3782.248046875, + "y": -4438.5615234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3776.099609375, + "y": -4440.3583984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3773.71875, + "y": -4441.14453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3778.50390625, + "y": -4441.3349609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3772.587890625, + "y": -4442.869140625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3767.0634765625, + "y": -4441.94921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3757.8115234375, + "y": -4442.099609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3747.5400390625, + "y": -4441.6630859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3740.89453125, + "y": -4441.400390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": -3739.6875, + "y": -4440.29296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3738.7763671875, + "y": -4440.2119140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3740.857421875, + "y": -4439.6904296875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3742.279296875, + "y": -4432.4248046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + { + "x": -3739.787109375, + "y": -4426.6416015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.4375, + "y": -4424.3310546875, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3753.9892578125, + "y": -4424.9609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3747.310546875, + "y": -4427.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.921875, + "y": -4436.001953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.7294921875, + "y": -4441.98828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3738.73046875, + "y": -4441.6044921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + { + "x": -3738.58203125, + "y": -4442.154296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + { + "x": -3738.0673828125, + "y": -4439.9228515625, + "type": "target", + "move_mode": "walk" + }, + + + + + { + "x": -3740.6142578125, + "y": -4435.5537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3741.0341796875, + "y": -4425.9443359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3746.287109375, + "y": -4424.287109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3759.4287109375, + "y": -4433.74609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3767.8017578125, + "y": -4437.771484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3772.146484375, + "y": -4439.849609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "10" + }, + { + "x": -3775.4658203125, + "y": -4439.1611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "11" + }, + { + "x": -3776.8251953125, + "y": -4439.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "11" + }, + { + "x": -3777.375, + "y": -4440.0869140625, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -3777.162109375, + "y": -4439.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3767.134765625, + "y": -4439.3466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3756.236328125, + "y": -4437.08203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3746.0966796875, + "y": -4434.9072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3741.365234375, + "y": -4432.560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + + { + "x": -3742.904296875, + "y": -4436.3154296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3740.294921875, + "y": -4437.44921875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3738.1171875, + "y": -4437.6005859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3728.7265625, + "y": -4437.8623046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3726.888671875, + "y": -4433.171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "13" + }, + { + "x": -3727.03515625, + "y": -4431.9111328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3727.1845703125, + "y": -4431.47265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3729.2822265625, + "y": -4429.0654296875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3726.6845703125, + "y": -4438.4697265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3730.7236328125, + "y": -4437.998046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3732.982421875, + "y": -4434.646484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3736.7138671875, + "y": -4432.3427734375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3734.474609375, + "y": -4432.3515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3727.3017578125, + "y": -4432.943359375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3719.958984375, + "y": -4433.7001953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3717.3798828125, + "y": -4432.24609375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3717.326171875, + "y": -4434.6328125, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3721.1396484375, + "y": -4434.50390625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3720.18359375, + "y": -4430.9423828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3719.9521484375, + "y": -4430.4619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3719.9375, + "y": -4430.4326171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + + { + "x": -3718.8193359375, + "y": -4432.46484375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3719.064453125, + "y": -4431.0537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3722.5244140625, + "y": -4430.033203125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3725.986328125, + "y": -4429.5283203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3726.0458984375, + "y": -4429.078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3726.8388671875, + "y": -4428.9970703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + + { + "x": -3726.9306640625, + "y": -4428.8232421875, + "type": "path", + "move_mode": "walk" + } + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json new file mode 100644 index 00000000..856db2e9 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json @@ -0,0 +1,73 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3595.623046875, + "y": 3254.41259765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3611.2626953125, + "y": 3270.2216796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3615.6, + "y": 3277.05, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 3615.302734375, + "y": 3276.057373046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 3611.1953125, + "y": 3278.960693359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3594.375, + "y": 3287.00341796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3585.166015625, + "y": 3289.40185546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 3583.4326171875, + "y": 3287.7548828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3583.5732421875, + "y": 3290.464599609375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json new file mode 100644 index 00000000..4c0b9258 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json @@ -0,0 +1,50 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3917.1767578125, + "y": 2576.28662109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3904.10498046875, + "y": 2547.26171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3899.5673828125, + "y": 2543.31640625, + "type": "target", + "move_mode": "walk", + "action":"", + "#" : "1" + }, + + { + "x": 3888.63525390625, + "y": 2531.804443359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3883.02880859375, + "y": 2526.17431640625, + "type": "target", + "move_mode": "walk", + "action":"", + "#" : "2" + }, + { + "x": 3879.810546875, + "y": 2521.3203125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json new file mode 100644 index 00000000..73d3119a --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4146.75146484375, + "y": 2606.25634765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4082.158203125, + "y": 2597.589599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4043.56982421875, + "y": 2606.634521484375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4043.56982421875, + "y": 2606.634521484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + { + "x": 4146.76171875, + "y": 2606.19140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4192.82666015625, + "y": 2694.12109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4197.68408203125, + "y": 2694.229736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4199.623046875, + "y": 2694.54052734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4203.59423828125, + "y": 2692.78955078125, + "type": "path", + "move_mode": "walk" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json new file mode 100644 index 00000000..eeac4245 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json @@ -0,0 +1,139 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4001.06298828125, + "y": 4878.43701171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3951.5068359375, + "y": 4831.5673828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3951.25634765625, + "y": 4835.40869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3948.80908203125, + "y": 4844.0986328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3945.87353515625, + "y": 4850.1220703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3942.392578125, + "y": 4861.06591796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3950.94970703125, + "y": 4864.2421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3952.46728515625, + "y": 4862.3974609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3953.22021484375, + "y": 4857.1064453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3953.05126953125, + "y": 4853.205078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 3953.2607421875, + "y": 4857.310546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3946.5185546875, + "y": 4876.19873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 3947.05419921875, + "y": 4876.5859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 3955.32080078125, + "y": 4877.55859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3955.33349609375, + "y": 4879.58984375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3955.875, + "y": 4881.54345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 3954.81787109375, + "y": 4875.39111328125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3959.8349609375, + "y": 4875.939453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 3960.79150390625, + "y": 4876.11279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个.json new file mode 100644 index 00000000..465a51fa --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个.json @@ -0,0 +1,78 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4143.8984375, + "y": 4423.59228515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4145.66552734375, + "y": 4418.8349609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 4145.66552734375, + "y": 4418.8349609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + + ], + + + + "position_not_actived": [ + { "#": "太远" }, + + { + "x": 3923.07763671875, + "y": 4233.857421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4097.6533203125, + "y": 4326.37890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4097.95361328125, + "y": 4324.28125, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "#": "2" + }, + + { + "x": 4096.02294921875, + "y": 4327.2353515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4099.0654296875, + "y": 4328.869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4098.09765625, + "y": 4325.27490234375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json new file mode 100644 index 00000000..5594b6c0 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json @@ -0,0 +1,241 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4301.29443359375, + "y": 4765.06494140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4309.482421875, + "y": 4770.5947265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4313.7529296875, + "y": 4774.91015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4285.86669921875, + "y": 4791.9169921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4212.12548828125, + "y": 4820.1083984375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4204.53515625, + "y": 4816.443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4204.53515625, + "y": 4816.443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 4199.63134765625, + "y": 4803.568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4197.98876953125, + "y": 4779.876953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4196.68310546875, + "y": 4697.35986328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4196.9599609375, + "y": 4692.5341796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4195.91455078125, + "y": 4690.79541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4188.525390625, + "y": 4676.29345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 4202.1494140625, + "y": 4662.65185546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4213.69580078125, + "y": 4647.7880859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4209.56982421875, + "y": 4630.24658203125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4214.72607421875, + "y": 4628.869140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4215.1982421875, + "y": 4628.6455078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4216.16015625, + "y": 4628.5517578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + { + "x": 4202.34814453125, + "y": 4620.67626953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4207.0263671875, + "y": 4618.68701171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4207.25244140625, + "y": 4619.9873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4206.8193359375, + "y": 4621.3759765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4209.15869140625, + "y": 4618.73046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4206.95751953125, + "y": 4616.6552734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4206.43310546875, + "y": 4622.3056640625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4196.42578125, + "y": 4624.1474609375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4117.1728515625, + "y": 4661.068359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4114.39453125, + "y": 4667.30078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 4112.87060546875, + "y": 4667.14794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": 4111.79736328125, + "y": 4666.82373046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": 4111.0791015625, + "y": 4668.72021484375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4115.34521484375, + "y": 4671.7236328125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json new file mode 100644 index 00000000..d3bbe3dd --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json @@ -0,0 +1,217 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4624.3583984375, + "y": 4951.76953125, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 4609.60595703125, + "y": 4937.71826171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4604.48583984375, + "y": 4934.646484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4604.48583984375, + "y": 4934.646484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4609.60595703125, + "y": 4937.71826171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4695.14013671875, + "y": 4995.1630859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4682.68798828125, + "y": 5008.39306640625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4681.24267578125, + "y": 5003.5537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4678.181640625, + "y": 4999.17431640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4678.181640625, + "y": 4999.17431640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4688.0302734375, + "y": 4989.86865234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4712.2392578125, + "y": 4928.29638671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4717.4814453125, + "y": 4929.82568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4720.08154296875, + "y": 4930.87353515625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4723.99169921875, + "y": 4932.6865234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4723.48974609375, + "y": 4933.87158203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4706.38916015625, + "y": 4924.84423828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4720.16943359375, + "y": 4909.900390625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4737.955078125, + "y": 4910.080078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4737.34423828125, + "y": 4906.07568359375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4735.310546875, + "y": 4902.712890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4735.37744140625, + "y": 4902.59423828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + { + "x": 4748.302734375, + "y": 4913.12890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4751.97314453125, + "y": 4913.095703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4751.9345703125, + "y": 4912.9609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4746.45166015625, + "y": 4908.9140625, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 4758.13330078125, + "y": 4900.38427734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4758.13330078125, + "y": 4900.38427734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4758.90966796875, + "y": 4899.86083984375, + "type": "pth", + "move_mode": "walk" + } + ], + + "positions_not_actived": [ + { "#": "有一个不拿,有干扰(就没录)" } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json new file mode 100644 index 00000000..5b89b0b2 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json @@ -0,0 +1,209 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 4498.20947265625, + "y": 4710.75146484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4525.82373046875, + "y": 4690.53173828125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4529.05322265625, + "y": 4688.23828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-1" + }, + { + "x": 4529.04541015625, + "y": 4688.23388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-1" + }, + { + "x": 4515.21630859375, + "y": 4644.78662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4514.89208984375, + "y": 4641.73046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-2" + }, + { + "x": 4480.251953125, + "y": 4633.33447265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4468.74658203125, + "y": 4584.3046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4463.68505859375, + "y": 4587.0361328125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4461.123046875, + "y": 4587.23095703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4456.05517578125, + "y": 4591.11376953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-3" + }, + { + "x": 4455.90185546875, + "y": 4591.2568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-3" + }, + { + "x": 4464.26611328125, + "y": 4594.8037109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4450.900390625, + "y": 4616.18310546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4444.26708984375, + "y": 4577.2490234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + + + + + { + "x": 4446.62255859375, + "y": 4611.61083984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4423.56396484375, + "y": 4605.86572265625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4426.4755859375, + "y": 4590.9287109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4429.02001953125, + "y": 4583.8310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4429.33349609375, + "y": 4582.79541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-5" + }, + + { + "x": 4426.63037109375, + "y": 4577.1171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4431.89453125, + "y": 4567.55859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-6" + }, + { + "x": 4431.8466796875, + "y": 4567.9443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-6" + } + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json new file mode 100644 index 00000000..c43a3a66 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json @@ -0,0 +1,141 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + + { + "x": 4498.2177734375, + "y": 4710.80224609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4566.91064453125, + "y": 4733.60009765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4563.70947265625, + "y": 4737.5703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4561.50537109375, + "y": 4743.1923828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4561.50537109375, + "y": 4743.1923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2- 1+2" + }, + { + "x": 4560.0244140625, + "y": 4742.79296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-1" + }, + { + "x": 4562.60009765625, + "y": 4743.57568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-2" + }, + { + "x": 4566.13623046875, + "y": 4743.39306640625, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 4564.2783203125, + "y": 4746.8251953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4557.90283203125, + "y": 4778.6806640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4555.578125, + "y": 4838.611328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4568.578125, + "y": 4830.916015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4569.1552734375, + "y": 4826.7236328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-3" + }, + { + "x": 4568.302734375, + "y": 4827.03173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-3 repeat" + }, + + { + "x": 4540.765625, + "y": 4846.49951171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4534.837890625, + "y": 4847.81298828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + }, + { + "x": 4534.4267578125, + "y": 4848.03515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + }, + { + "x": 4534.80419921875, + "y": 4847.86279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + } + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json new file mode 100644 index 00000000..2a811c88 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json @@ -0,0 +1,225 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4545.568359375, + "y": 4225.68896484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4540.85595703125, + "y": 4198.55712890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4536.45751953125, + "y": 4202.59912109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4535.7255859375, + "y": 4210.13916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4535.8486328125, + "y": 4211.103515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4537.20947265625, + "y": 4210.876953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": 4539.25, + "y": 4200.2626953125, + "type": "path", + "move_mode": "walk" + }, + + + + + { + "x": 4547.75439453125, + "y": 4205.93310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4555.5087890625, + "y": 4207.8681640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4555.4658203125, + "y": 4207.78759765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + { + "x": 4552.4453125, + "y": 4219.98291015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4564.38232421875, + "y": 4231.63427734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4571.62548828125, + "y": 4226.84228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4571.7685546875, + "y": 4226.6708984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4573.83251953125, + "y": 4223.65283203125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4572.8642578125, + "y": 4221.751953125, + "type": "path", + "move_mode": "walk" + }, + + + + + + + { + "x": 4545.53076171875, + "y": 4225.73583984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4537.87109375, + "y": 4231.0810546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4511.12353515625, + "y": 4260.70654296875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4445.537109375, + "y": 4307.8427734375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4383.1318359375, + "y": 4338.974609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4341.67919921875, + "y": 4334.3154296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4323.0908203125, + "y": 4335.3369140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4315.45751953125, + "y": 4336.32861328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4408.38232421875, + "y": 4299.90869140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4425.123046875, + "y": 4297.01806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4433.6787109375, + "y": 4309.984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4435.56689453125, + "y": 4313.78564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4435.46240234375, + "y": 4315.6640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4438.86474609375, + "y": 4313.9345703125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json new file mode 100644 index 00000000..6fb6acc9 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json @@ -0,0 +1,90 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4984.806640625, + "y": 4462.95556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4948.05712890625, + "y": 4457.57470703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4947.35400390625, + "y": 4458.25146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + { + "x": 4950.8251953125, + "y": 4452.81201171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4957.111328125, + "y": 4451.796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4957.14306640625, + "y": 4451.896484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + + + { + "x": 4956.78759765625, + "y": 4451.00390625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4873.21484375, + "y": 4377.4365234375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4868.2734375, + "y": 4381.03857421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": 4868.22998046875, + "y": 4381.02294921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json new file mode 100644 index 00000000..bb6c9088 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -1315.1552734375, + "y": -3776.1455078125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -1331.330078125, + "y": -3769.791015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -1354.482421875, + "y": -3761.173828125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -1364.560546875, + "y": -3757.7734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -1364.7578125, + "y": -3757.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -1363.892578125, + "y": -3756.333984375, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -1366.6474609375, + "y": -3756.6708984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -1366.6787109375, + "y": -3756.6015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -1366.2890625, + "y": -3753.4658203125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json new file mode 100644 index 00000000..020b6756 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json @@ -0,0 +1,119 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -755.556640625, + "y": -4001.0576171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -725.943359375, + "y": -4029.255859375, + "type": "path", + "move_mode": "run" + }, + { + "x": -709.2138671875, + "y": -4045.4638671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -704.0361328125, + "y": -4050.1259765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -700.99609375, + "y": -4057.7744140625, + "type": "path", + "move_mode": "run" + }, + { + "x": -677.654296875, + "y": -4045.9296875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -672.419921875, + "y": -4043.4560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -673.548828125, + "y": -4043.82421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + { + "x": -682.07421875, + "y": -4042.4619140625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -688.423828125, + "y": -4042.2841796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -689.103515625, + "y": -4042.796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -682.83203125, + "y": -4064.791015625, + "type": "path", + "move_mode": "run" + }, + { + "x": -689.36328125, + "y": -4084.0888671875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -694.6552734375, + "y": -4087.5498046875, + "type": "target", + "move_mode": "run", + "action": "", + "#": "4" + }, + { + "x": -692.21875, + "y": -4089.1806640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json new file mode 100644 index 00000000..da40f229 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json @@ -0,0 +1,190 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -1057.765625, + "y": -3946.099609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -1064.2255859375, + "y": -3900.314453125, + "type": "path", + "move_mode": "run" + }, + { + "x": -1062.611328125, + "y": -3876.7705078125, + "type": "path", + "move_mode": "run" + }, + { + "x": -1061.4912109375, + "y": -3875.04296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -1059.796875, + "y": -3876.1328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -1043.0927734375, + "y": -3873.9521484375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -978.849609375, + "y": -3767.724609375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -992.6708984375, + "y": -3712.111328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + { + "x": -989.744140625, + "y": -3705.7880859375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -988.1533203125, + "y": -3703.9931640625, + "type": "path", + "move_mode": "fly" + }, + + + + { + "x": -985.392578125, + "y": -3703.5595703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -985.6689453125, + "y": -3703.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -988.6318359375, + "y": -3701.8916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -996.2705078125, + "y": -3695.244140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -996.8271484375, + "y": -3691.2900390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -995.3642578125, + "y": -3690.1416015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -994.6083984375, + "y": -3688.154296875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -996.140625, + "y": -3701.3984375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -1007.9033203125, + "y": -3708.10546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -1009.0302734375, + "y": -3707.2490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + }, + + + { + "x": -1016.1298828125, + "y": -3714.86328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.720703125, + "y": -3715.3662109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.1474609375, + "y": -3715.806640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.1181640625, + "y": -3717.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -1017.8671875, + "y": -3717, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json new file mode 100644 index 00000000..fb6f335d --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json @@ -0,0 +1,206 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -4185.0078125, + "y": -4244.4521484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -4164.5859375, + "y": -4246.80859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4161.0205078125, + "y": -4245.0068359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -4161.0458984375, + "y": -4244.984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": -4163.865234375, + "y": -4241.2314453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -4162.2724609375, + "y": -4241.0673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4158.0791015625, + "y": -4234.8876953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4157.6640625, + "y": -4234.2001953125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4157.876953125, + "y": -4232.55078125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4157.876953125, + "y": -4232.55078125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4163.0869140625, + "y": -4229.8125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -4227.162109375, + "y": -4201.326171875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -4241.8564453125, + "y": -4219.84375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -4246.2978515625, + "y": -4234.4384765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -4258.7373046875, + "y": -4229.5126953125, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": -4248.2919921875, + "y": -4261.1123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": -4240.349609375, + "y": -4260.5869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4237.306640625, + "y": -4260.6796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + + + + { + "x": -4224.4462890625, + "y": -4255.716796875, + "type": "path", + "move_mode": "fly" + }, + + + + { + "x": -4228.125, + "y": -4239.2822265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -4228.341796875, + "y": -4238.9560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + + { + "x": -4217.38671875, + "y": -4248.9228515625, + "type": "path", + "move_mode": "run" + }, + { + "x": -4216.552734375, + "y": -4251.2568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + + { + "x": -4216.3388671875, + "y": -4269.9912109375, + "type": "path", + "move_mode": "run" + }, + { + "x": -4185.7373046875, + "y": -4300.0029296875, + "type": "target", + "move_mode": "run", + "action": "", + "#": "8" + }, + { + "x": -4185.59375, + "y": -4300.9140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json new file mode 100644 index 00000000..609c42fc --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json @@ -0,0 +1,54 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3704.0693359375, + "y": -4694.578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3720.130859375, + "y": -4711.158203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3740.8837890625, + "y": -4738.6845703125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3737.982421875, + "y": -4746.4609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3711.8173828125, + "y": -4749.169921875, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "x": -3710.8828125, + "y": -4747.0546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -3712.4990234375, + "y": -4746.32421875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json new file mode 100644 index 00000000..1f64ab68 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json @@ -0,0 +1,239 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -4023.263671875, + "y": -4428.8388671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3987.2587890625, + "y": -4454.291015625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3978.23828125, + "y": -4453.8369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -3977.22265625, + "y": -4453.3837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": -3973.921875, + "y": -4440.8544921875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3981.27734375, + "y": -4437.328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3982.7822265625, + "y": -4437.41015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -3983.701171875, + "y": -4437.736328125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3982.19140625, + "y": -4437.0654296875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3971.8154296875, + "y": -4439.5927734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3970.37890625, + "y": -4439.1357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -3967.498046875, + "y": -4435.380859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3965.841796875, + "y": -4435.798828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3965.6923828125, + "y": -4438.0966796875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3965.6494140625, + "y": -4432.896484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3964.7197265625, + "y": -4429.9228515625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3968.4609375, + "y": -4425.71875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3970.2626953125, + "y": -4425.4140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3972.595703125, + "y": -4425.369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": -3977.9921875, + "y": -4425.24609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3978.4775390625, + "y": -4424.634765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3969.28515625, + "y": -4427.4111328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3966.9580078125, + "y": -4425.4560546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3966.9677734375, + "y": -4422.5, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3967.12890625, + "y": -4403.732421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": -3966.86328125, + "y": -4403.1083984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": -3966.5634765625, + "y": -4402.4775390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + { + "x": -3969.20703125, + "y": -4384.0546875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3969.20703125, + "y": -4384.0546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3969.2138671875, + "y": -4383.59375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3965.51171875, + "y": -4383.279296875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个.json new file mode 100644 index 00000000..081a8c83 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个.json @@ -0,0 +1,184 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3393.1181640625, + "y": -3556.0556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3394.71484375, + "y": -3552.19921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3396.7734375, + "y": -3549.205078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + { + "x": -3399.2900390625, + "y": -3543.2275390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3403.35546875, + "y": -3543.359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -3404.2822265625, + "y": -3543.5341796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + { + "x": -3405.5810546875, + "y": -3534.466796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -3405.6494140625, + "y": -3534.298828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -3405.6533203125, + "y": -3534.3056640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + + { + "x": -3406.099609375, + "y": -3534.6865234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3446.3759765625, + "y": -3552.9873046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3446.3759765625, + "y": -3552.9873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -3446.40625, + "y": -3553.130859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -3444.8505859375, + "y": -3551.546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + + { + "x": -3438.2578125, + "y": -3560.6640625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3436.1572265625, + "y": -3565.29296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + }, + { + "x": -3435.5322265625, + "y": -3566.9013671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + } + + ], + + + + "positions_not_actived": [ + { "#": "最后一个不拿,重兵把守" }, + + { + "x": -3442.427734375, + "y": -3569.3125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3437.7919921875, + "y": -3573.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3427.4033203125, + "y": -3573.28125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3422.0302734375, + "y": -3575.3935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3420.580078125, + "y": -3574.71875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -3418.3681640625, + "y": -3574.56640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json new file mode 100644 index 00000000..113b0335 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json @@ -0,0 +1,113 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3437.0263671875, + "y": -3319.755859375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3420.0283203125, + "y": -3306.0888671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3406.646484375, + "y": -3286.25, + "type": "path", + "move_mode": "run" + }, + { + "x": -3405.4697265625, + "y": -3232.3525390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3407.9404296875, + "y": -3234.4228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -3407.193359375, + "y": -3234.5576171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -3407.830078125, + "y": -3236.0400390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + + { + "x": -3437.0322265625, + "y": -3319.720703125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3460.4150390625, + "y": -3325.6875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3487.1845703125, + "y": -3326.2333984375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3521.6376953125, + "y": -3341.205078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3531.95703125, + "y": -3342.421875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3537.845703125, + "y": -3343.4345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -3539.8330078125, + "y": -3345.8359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + + + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json new file mode 100644 index 00000000..e8992e42 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json @@ -0,0 +1,168 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3931.2216796875, + "y": -3202.7919921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3934.5068359375, + "y": -3201.48046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3936.80859375, + "y": -3203.115234375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3940.4013671875, + "y": -3205.8408203125, + "type": "path", + "move_mode": "fly" + }, + + + { + "x": -3946.095703125, + "y": -3203.814453125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3958.9462890625, + "y": -3197.0888671875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 1 + }, + { + "x": -3958.0400390625, + "y": -3197.517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": -3959.95703125, + "y": -3196.861328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": -3961.4462890625, + "y": -3197.841796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3956.3203125, + "y": -3207.42578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3940.55859375, + "y": -3223.7568359375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": -3928.0673828125, + "y": -3239.0546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3925.3115234375, + "y": -3264.466796875, + "type": "path", + "move_mode": "fly" + }, + + + { + "x": -3929.943359375, + "y": -3269.751953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": -3929.943359375, + "y": -3269.751953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + + { + "x": -3984.2021484375, + "y": -3242.8232421875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3988.7119140625, + "y": -3228.68359375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 4 + }, + { + "x": -3990.63671875, + "y": -3227.7421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个/5个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个/5个.json new file mode 100644 index 00000000..c5cf5f31 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个/5个.json @@ -0,0 +1,150 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3234.0810546875, + "y": -3155.5439453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3224.7939453125, + "y": -3140.484375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3203.8857421875, + "y": -3105.0390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3146.64453125, + "y": -3056.3671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3137.4912109375, + "y": -3051.470703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3143.033203125, + "y": -3036.3447265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3143.990234375, + "y": -3021.7373046875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3138.84765625, + "y": -3023.9462890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3155.2236328125, + "y": -3014.216796875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3164.201171875, + "y": -2974.904296875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3210.8642578125, + "y": -2965.259765625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3219.095703125, + "y": -2964.89453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -3225.208984375, + "y": -2957.173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3256.2265625, + "y": -2981.8115234375, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": -3285.53125, + "y": -2971.0166015625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3287.6435546875, + "y": -2964.935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3288.8740234375, + "y": -2963.955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + } + + ], + + + + "position_not_actived": [ + { "#": "有干扰,不拿" }, + + { + "x": -3287.2421875, + "y": -2965.2568359375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3283.380859375, + "y": -2967.396484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json new file mode 100644 index 00000000..ece7ae22 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3269.3486328125, + "y": -6136.1025390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3220.759765625, + "y": -6183.2890625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3219.5185546875, + "y": -6216.2353515625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3228.1904296875, + "y": -6219.2265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3228.859375, + "y": -6222.716796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3260.61328125, + "y": -6212.1015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3271.361328125, + "y": -6215.748046875, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + }, + { + "x": -3270.759765625, + "y": -6215.4892578125, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + }, + + { + "x": -3270.3818359375, + "y": -6217.875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个.json new file mode 100644 index 00000000..4221252c --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个.json @@ -0,0 +1,43 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3103.740234375, + "y": -6268.5400390625, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": -3037.77734375, + "y": -6187.048828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3034.861328125, + "y": -6182.2666015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -3032.9755859375, + "y": -6182.5380859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -3035.11328125, + "y": -6182.3037109375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个.json new file mode 100644 index 00000000..6a1cd95c --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个.json @@ -0,0 +1,43 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -2612.30078125, + "y": -6508.21875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -2581.470703125, + "y": -6529.7802734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -2581.470703125, + "y": -6529.7802734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -2579.80859375, + "y": -6533.02734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": -2582.0341796875, + "y": -6525.9619140625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json new file mode 100644 index 00000000..a89f83f9 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json @@ -0,0 +1,33 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3865.14990234375, + "y": 4492.30517578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3868.4013671875, + "y": 4498.7373046875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3867.43310546875, + "y": 4496.9462890625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3869.60791015625, + "y": 4499.50341796875, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json new file mode 100644 index 00000000..139587c9 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4545.4990234375, + "y": 4225.52587890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4540.9921875, + "y": 4229.86328125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4541.85888671875, + "y": 4230.1533203125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4542.966796875, + "y": 4231.7197265625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4542.669921875, + "y": 4230.775390625, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json new file mode 100644 index 00000000..5b1a7850 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -4023.2431640625, + "y": -4428.8046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -4028.0732421875, + "y": -4434.740234375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -4030.4990234375, + "y": -4434.8369140625, + "type": "target", + "move_mode": "walk" + }, + { + "x": -4027.447265625, + "y": -4435.0537109375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -4027.6953125, + "y": -4437.0771484375, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json new file mode 100644 index 00000000..5076200d --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3233.248046875, + "y": -3534.1748046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3238.814453125, + "y": -3535.791015625, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3241.732421875, + "y": -3534.873046875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3241.0966796875, + "y": -3531.9755859375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3238.228515625, + "y": -3532.2783203125, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个.json new file mode 100644 index 00000000..2d818092 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个.json @@ -0,0 +1,190 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4498.1982421875, + "y": 4710.67626953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4445.49267578125, + "y": 4615.71533203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4376.025390625, + "y": 4583.8095703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4282.06689453125, + "y": 4596, + "type": "path", + "move_mode": "run" + }, + { + "x": 4274.20458984375, + "y": 4584.49267578125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4278.322265625, + "y": 4581.658203125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4280.720703125, + "y": 4579.73193359375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 1 + }, + { + "x": 4281.57421875, + "y": 4579.0537109375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 1 + }, + { + "x": 4281.57421875, + "y": 4579.0537109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 4301.3232421875, + "y": 4764.947265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4302.1103515625, + "y": 4765.9833984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4309.046875, + "y": 4769.8505859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4334.97705078125, + "y": 4785.810546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4386.19287109375, + "y": 4822.47314453125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4385.12109375, + "y": 4825.5810546875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4383.2890625, + "y": 4827.6865234375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 2 + }, + { + "x": 4382.4169921875, + "y": 4828.38720703125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 2 + }, + { + "x": 4381.66357421875, + "y": 4828.92529296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 4428.43798828125, + "y": 4838.923828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4452.7392578125, + "y": 4861.34375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4457.26513671875, + "y": 4866.49365234375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4458.3935546875, + "y": 4867.66015625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 3 + }, + { + "x": 4459.04248046875, + "y": 4868.44873046875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 3 + }, + { + "x": 4459.04248046875, + "y": 4868.44873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 4461.5029296875, + "y": 4870.7666015625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json new file mode 100644 index 00000000..f6b07453 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json @@ -0,0 +1,276 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 7857.4638671875, + "y": -1751.333984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8003.58984375, + "y": -1744.78076171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7994.86328125, + "y": -1745.2353515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 7994.86328125, + "y": -1745.2353515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 8008.7412109375, + "y": -1738.15478515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8053.34326171875, + "y": -1713.03271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 8056.2685546875, + "y": -1715.15673828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 8056.2685546875, + "y": -1715.15673828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 8056.9794921875, + "y": -1716.3125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + { + "x": 8258.3486328125, + "y": -1744.6220703125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8234.75, + "y": -1720.24462890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8230.8564453125, + "y": -1712.17041015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 8230.8564453125, + "y": -1712.17041015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": 8400.59765625, + "y": -1221.3232421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8374.5419921875, + "y": -1222.99951171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8213.8203125, + "y": -1255.82275390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8132.12255859375, + "y": -1276.19970703125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 8127.0625, + "y": -1278.81005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 8127.0625, + "y": -1278.81005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 8127.0625, + "y": -1278.81005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + + { + "x": 8124.8818359375, + "y": -1276.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 8124.8818359375, + "y": -1276.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 8124.8818359375, + "y": -1276.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 8124.2548828125, + "y": -1277.1796875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8125.6845703125, + "y": -1281.18212890625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 8124.62060546875, + "y": -1290.23388671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8123.27001953125, + "y": -1330.814453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 8121.0458984375, + "y": -1400.533203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8140.86962890625, + "y": -1458.4140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8143.2216796875, + "y": -1469.74072265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 8144.7275390625, + "y": -1470.783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 8146.091796875, + "y": -1475.33837890625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8738.1943359375, + "y": -1857.46533203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8766.15234375, + "y": -1834.3193359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8766.4541015625, + "y": -1825.40478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 8766.4541015625, + "y": -1825.40478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + } + + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json new file mode 100644 index 00000000..ee11fd87 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/assets/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json @@ -0,0 +1,272 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3128.6962890625, + "y": -1734.62841796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3160.330078125, + "y": -1784.9462890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3161.2568359375, + "y": -1780.14697265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3162.83740234375, + "y": -1776.4501953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 3165.9248046875, + "y": -1770.85107421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3170.3037109375, + "y": -1771.859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3175.1484375, + "y": -1776.59130859375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3178.7470703125, + "y": -1766.18896484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3185.72119140625, + "y": -1755.3798828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3178.9228515625, + "y": -1743.14306640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3170.59619140625, + "y": -1737.13427734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3174.05126953125, + "y": -1723.1484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3177.01318359375, + "y": -1719.6650390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 3210.4833984375, + "y": -1727.45556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3221.9130859375, + "y": -1706.65869140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3238.64013671875, + "y": -1669.9541015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3243.7470703125, + "y": -1675.4912109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3247.74853515625, + "y": -1670.6923828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3247.03955078125, + "y": -1668.3232421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + + { + "x": 3259.34619140625, + "y": -1663.18896484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3280.98681640625, + "y": -1663.34814453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3303.05859375, + "y": -1658.505859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3308.69287109375, + "y": -1649.82666015625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3333.64697265625, + "y": -1609.5849609375, + "type": "target", + "move_mode": "run", + "action": "", + "#": "4" + }, + { + "x": 3341.15234375, + "y": -1621.7734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3352.87890625, + "y": -1650.6552734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3343.59326171875, + "y": -1723.4775390625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3331.9384765625, + "y": -1733.673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3330.30322265625, + "y": -1734.029296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": 3317.349609375, + "y": -1764.421875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3300.36376953125, + "y": -1788.787109375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3282.2421875, + "y": -1822.77490234375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3236.48193359375, + "y": -1828.24462890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3233.76513671875, + "y": -1830.1875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 3232.25341796875, + "y": -1826.51806640625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 3206.49755859375, + "y": -1832.580078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3204.3251953125, + "y": -1832.138671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 3202.92138671875, + "y": -1832.1591796875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/main.js b/repo/js/AutoArtifacts_A_B_Extra/main.js new file mode 100644 index 00000000..0b2b21ae --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/main.js @@ -0,0 +1,184 @@ +(async function () { + + const folderA = 'assets/狗粮A线@Yang-z/'; + const folderB = 'assets/狗粮B线@Yang-z/'; + const folderE = 'assets/狗粮额外@Yang-z/'; + + const pathingA = [ + "狗粮-璃月-珉林-北-5个.json", + "狗粮-璃月-珉林-东北-9个.json", + "(恢复)狗粮-璃月-琼玑野.json", + "狗粮-璃月-琼玑野-绿华池-3个.json", + "狗粮-璃月-碧水源-盐中之地-3个.json", + "狗粮-须弥-道成林-化城郭-西-3个.json", + "狗粮-须弥-二净甸-觉王之殿南-6个.json", + "(恢复)狗粮-须弥-二净甸.json", + "狗粮-须弥-失落的苗圃-南-8个.json", + "狗粮-须弥-上风蚀地-东北营地-2个.json", + "狗粮-须弥-下风蚀地-阿如村-4个.json", + "狗粮-须弥-千壑沙地-塔尼特露营地-3个/5个.json", + "狗粮-须弥-浮罗囿-甘露花海北-4个.json", + "狗粮-纳塔-坚岩隘谷-回声之子南-6个/7个 .json", + "狗粮-纳塔-万火之瓯-竞技场东-4个.json", + "狗粮-纳塔-涌流地-流泉之众-4个.json", + "(恢复)狗粮-纳塔-涌流地.json", + "狗粮-纳塔-镜璧山-南-9个.json", + "狗粮-纳塔-翘枝崖-北-6个.json", + "狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json", + "狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个.json", + "(恢复)狗粮-稻妻-神无冢.json", + "【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个.json", + "【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json", + "【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json" + ]; // 97+21个 + + const pathingB = [ + "狗粮-枫丹-白露区-秋分山东侧-2个.json", + "狗粮-枫丹-白露区-秋分山西侧-北-2个.json", + "狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json", + "(恢复)狗粮-枫丹-研究院区.json", + "狗粮-枫丹-研究院区-学术会堂-1个/2个.json", + "狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json", + "狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json", + "狗粮-枫丹-研究院区-西南偏南-6个.json", + "狗粮-枫丹-研究院区-西南偏西-4个.json", + "狗粮-枫丹-研究院区-西北-6个/7个.json", + "(恢复)狗粮-枫丹-黎翡区.json", + "狗粮-枫丹-黎翡区-七天神像-5个.json", + "狗粮-枫丹-黎翡区-芒索斯山东-3个.json", + "狗粮-稻妻-神无冢-堇色之庭-4个.json", + "狗粮-稻妻-神无冢-九条阵屋-3个.json", + "狗粮-稻妻-神无冢-无相之火-4个/5个.json", + "狗粮-稻妻-神无冢-东-5个/6个.json", + "(恢复)狗粮-稻妻-神无冢.json", + "狗粮-稻妻-海祇岛-东方小岛-2个.json", + "狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json", + "狗粮-稻妻-海祇岛-望泷村西南-4个.json", + "狗粮-稻妻-清籁岛-浅濑神社-3个.json", + "狗粮-稻妻-清籁岛-越石村-8个.json", + "狗粮-稻妻-清籁岛-平海砦西-8个.json", + "狗粮-稻妻-鹤观-东-3个.json", + "狗粮-稻妻-鹤观-东偏中-2个.json", + "狗粮-稻妻-鹤观-南-2个.json", + "(恢复)狗粮-稻妻-清籁岛.json", + "【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json" + ]; // 97+20个 + + const pathingE = [ + "【额外】狗粮-纳塔+7个.json", // 凌晨刷新 + "【额外】狗粮-须弥-水天丛林+7个.json", // 24小时刷新 + "【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个.json" // 24小时刷新 + ]; // 17个(其中纳塔第2个似乎是一次性的) + + + // 读取用户设置(JS脚本直接运行已不会抛出异常,但默认值还不支持[bgi0.37.1]) + let path = settings.path != undefined ? settings.path : ''; + let swapPath = settings.swapPath != undefined && settings.swapPath != '否' ? true : false; + let extra = settings.extra != undefined && settings.extra != '是' ? false : true; + let autoSalvage = settings.autoSalvage != undefined && settings.autoSalvage != '是' ? false : true; + let autoSalvage4 = settings.autoSalvage4 != undefined && autoSalvage4 != '否' ? true : false; + let autoSalvageSpan = settings.autoSalvageSpan != undefined && ~~settings.autoSalvageSpan > 0 ? ~~settings.autoSalvageSpan : 10; + + log.debug(`path: ${path}; swapPath: ${swapPath}; extra: ${extra}; autoSalvage: ${autoSalvage}; autoSalvage4: ${autoSalvage4}; autoSalvageSpan: ${autoSalvageSpan};`); + // await sleep(30000); + + // 路线 + function determinePath() { + if (path != 'A' && path != 'B') { + const benchmark = new Date("2024-11-20T04:00:00"); + const now = new Date(); + const delta = now - benchmark; + const days = delta / (1000 * 60 * 60 * 24); + path = days % 2 < 1 ? 'A' : 'B'; + + if (swapPath) path = path == 'A' ? 'B' : 'A'; + } + } + + // 准备 + async function init(resizeMap = true) { + // restore and alignment + await genshin.tp("253.146484375", "1285.14306640625"); await sleep(3000); + + if (resizeMap) { + // zoom map to 75% + keyPress("M"); await sleep(1000); + for (let i = 0; i < 5; i++) { + click(42, 420); await sleep(500); // zoom in + } + click(42, 645); await sleep(1000); // zoom out + keyPress("M"); await sleep(1000); + } + + } + + // 分解圣遗物 + async function salvage() { + if (!autoSalvage) return; + + keyPress("B"); await sleep(2000); + click(670, 40); await sleep(1000); // 圣遗物 + click(660, 1010); await sleep(1000); // 分解 + click(300, 1020); await sleep(1000); // 快速选择 + + click(200, 140); await sleep(500); // 1 + click(200, 220); await sleep(500); // 2 + click(200, 300); await sleep(500); // 3 + if (autoSalvage4) click(200, 380); await sleep(500); // 4 + + click(340, 1000); await sleep(1000); // 确认选择 + click(1720, 1015); await sleep(1500); // 分解 + click(1180, 750); await sleep(1000); // 进行分解 + + click(1840, 45); await sleep(1500); // 取消 + click(1840, 45); await sleep(1000); // 取消 + click(1840, 45); await sleep(1000); // 取消 + } + + // 单一脚本执行 + async function runFile(filePath, times = 2) { + log.info(filePath); + try { + times--; + await pathingScript.runFile(filePath); + } + catch (error) { // bgi已捕获可预期异常,此处仅做兜底 + log.error(error.toString()); + await sleep(3000); + if (times > 0) await runFile(filePath, times); + } + } + + // 批量执行 + async function batch(folder, files, forceInteraction = false) { + // 打开自动拾取 + dispatcher.addTimer(new RealtimeTimer("AutoPick", { "forceInteraction": forceInteraction })); + + for (let i = 0; i < files.length; i++) { + if (i % autoSalvageSpan == 0) await salvage(); + const filePath = folder + files[i]; + await runFile(filePath); + } + } + + // main + setGameMetrics(1920, 1080, 1); + determinePath(); + + // A or B + await init(); + log.info(`开始执行${path}线路。`); + if (path == 'A') await batch(folderA, pathingA); + else await batch(folderB, pathingB); + + // Extra + if (extra) { + await init(false); + log.info(`开始执行额外线路。`); + await batch(folderE, pathingE, true); // 强制交互 + } + + log.info(`今日狗粮拾取任务完成。拾取路线:${path}+E`); + await sleep(3000); + +})(); \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/manifest.json b/repo/js/AutoArtifacts_A_B_Extra/manifest.json new file mode 100644 index 00000000..9eeb8512 --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/manifest.json @@ -0,0 +1,15 @@ +{ + "manifest_version": 1, + "name": "狗粮ABE路线,自动拾取分解", + "version": "1.6", + "bgi_version": "0.37.1", + "description": "圣遗物狗粮AB路线自动轮换,及额外点位拾取,途中自动分解。更新纳塔5.2优质点位。", + "authors": [ + { + "name": "Yang-z", + "link": "https://github.com/Yang-z" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/AutoArtifacts_A_B_Extra/settings.json b/repo/js/AutoArtifacts_A_B_Extra/settings.json new file mode 100644 index 00000000..eaef0bbc --- /dev/null +++ b/repo/js/AutoArtifacts_A_B_Extra/settings.json @@ -0,0 +1,55 @@ +[ + { + "name": "path", + "type": "select", + "label": "路线(默认:自动)", + "options": [ + "A", + "B", + "自动" + ] + }, + { + "name": "swapPath", + "type": "select", + "label": "自动选择路线时,交换AB路线(默认:否)", + "options": [ + "是", + "否" + ] + }, + + { + "name": "extra", + "type": "select", + "label": "拾取额外点位(默认:是)", + "options": [ + "是", + "否" + ] + }, + + { + "name": "autoSalvage", + "type": "select", + "label": "自动分解(默认:是)", + "options": [ + "是", + "否" + ] + }, + { + "name": "autoSalvage4", + "type": "select", + "label": "自动分解包括4星圣遗物(默认:否)", + "options": [ + "是", + "否" + ] + }, + { + "name": "autoSalvageSpan", + "type": "input-text", + "label": "自动分解在多少路径后执行一次(默认:10)" + } +] \ No newline at end of file diff --git a/repo/js/AutoCatherine/assets/枫丹凯瑟琳.json b/repo/js/AutoCatherine/assets/枫丹凯瑟琳.json new file mode 100644 index 00000000..0da20f2c --- /dev/null +++ b/repo/js/AutoCatherine/assets/枫丹凯瑟琳.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "枫丹凯瑟琳", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4509.96044921875, + "y": 3630.826904296875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 4496.73193359375, + "y": 3638.144287109375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoCatherine/assets/璃月凯瑟琳.json b/repo/js/AutoCatherine/assets/璃月凯瑟琳.json new file mode 100644 index 00000000..3aecb4e5 --- /dev/null +++ b/repo/js/AutoCatherine/assets/璃月凯瑟琳.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "璃月凯瑟琳", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 267.958984375, + "y": -665.10888671875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 258.3662109375, + "y": -663.82177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 246.689453125, + "y": -662.83740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 233.8564453125, + "y": -661.95849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 219.0625, + "y": -657.271484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 203.84765625, + "y": -659.7158203125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoCatherine/assets/稻妻凯瑟琳.json b/repo/js/AutoCatherine/assets/稻妻凯瑟琳.json new file mode 100644 index 00000000..2e81f39b --- /dev/null +++ b/repo/js/AutoCatherine/assets/稻妻凯瑟琳.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "稻妻凯瑟琳", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4402.556640625, + "y": -3053.041015625 + }, + { + "id": 2, + "x": -4408.984375, + "y": -3068.2470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4418.185546875, + "y": -3086.4326171875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoCatherine/assets/纳塔凯瑟琳.json b/repo/js/AutoCatherine/assets/纳塔凯瑟琳.json new file mode 100644 index 00000000..2261d33b --- /dev/null +++ b/repo/js/AutoCatherine/assets/纳塔凯瑟琳.json @@ -0,0 +1,20 @@ +{ + "info": { + "name": "纳塔凯瑟琳", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 9046.666015625, + "y": -1855.35791015625 + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoCatherine/assets/蒙德凯瑟琳.json b/repo/js/AutoCatherine/assets/蒙德凯瑟琳.json new file mode 100644 index 00000000..52c7fd36 --- /dev/null +++ b/repo/js/AutoCatherine/assets/蒙德凯瑟琳.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "蒙德凯瑟琳", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -867.6884765625, + "y": 2281.365966796875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -882.1455078125, + "y": 2262.399658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -893.3056640625, + "y": 2249.19482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -914.3564453125, + "y": 2233.071044921875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoCatherine/assets/须弥凯瑟琳.json b/repo/js/AutoCatherine/assets/须弥凯瑟琳.json new file mode 100644 index 00000000..50f496f8 --- /dev/null +++ b/repo/js/AutoCatherine/assets/须弥凯瑟琳.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "须弥凯瑟琳", + "type": "collect", + "author": "½", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2786.97265625, + "y": -503.10498046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 2787.900390625, + "y": -494.41162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2786.150390625, + "y": -486.7470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2781.1748046875, + "y": -483.95751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2774.4716796875, + "y": -480.65478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2771.126953125, + "y": -476.7919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2765.76953125, + "y": -476.0498046875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoCatherine/main.js b/repo/js/AutoCatherine/main.js new file mode 100644 index 00000000..a8bca7e0 --- /dev/null +++ b/repo/js/AutoCatherine/main.js @@ -0,0 +1,29 @@ +(async function () { + // 所有的代码必须由 async function 包裹 + async function AutoPath(locationName) { + log.info(`前往 ${locationName}`); + try { + let filePath = `assets/${locationName}.json`; + await pathingScript.runFile(filePath); + } catch (error) { + log.error(`执行 ${locationName} 路径时发生错误`); + } + await sleep(2000); + if (locationName == "纳塔凯瑟琳") + keyDown("w"); + await sleep(4500); + keyUp("w"); + keyDown("d"); + await sleep(2000); + keyUp("d"); + } + let filePath; + + if (settings.selectway === undefined) + filePath = "枫丹凯瑟琳" + else + filePath = settings.selectway; + + log.info("开始执行路径脚本"); + await AutoPath(filePath); +})(); diff --git a/repo/js/AutoCatherine/manifest.json b/repo/js/AutoCatherine/manifest.json new file mode 100644 index 00000000..59da9f52 --- /dev/null +++ b/repo/js/AutoCatherine/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/AutoCatherine/settings.json b/repo/js/AutoCatherine/settings.json new file mode 100644 index 00000000..54386d95 --- /dev/null +++ b/repo/js/AutoCatherine/settings.json @@ -0,0 +1,16 @@ +[ + { + "name": "selectValue", // 变量名,在js内使用 settings.变量名 获取对应的配置值 + "type": "select", // 类型 + "label": "选项框", // 显示标签 + "options": [ //选项 + "蒙德凯瑟琳", + "璃月凯瑟琳", + "稻妻凯瑟琳", + "须弥凯瑟琳", + "枫丹凯瑟琳", + "纳塔凯瑟琳" + ] + } + ] + \ No newline at end of file diff --git a/repo/js/AutoDomain/main.js b/repo/js/AutoDomain/main.js index 4a76dde1..49697b8e 100644 --- a/repo/js/AutoDomain/main.js +++ b/repo/js/AutoDomain/main.js @@ -251,6 +251,11 @@ 213.12219238281, 9041.2890625 ] + }, + { + "description": "Domain", + "name": "昏识塔", + "position": [-93.67, 0, 3015.46] } ] @@ -261,16 +266,34 @@ let domainInfo = domainList.find(function (domain) { return domain.name === domainName; }); - await genshin.tp(domainInfo.position[2], domainInfo.position[0]); - await sleep(1000); + while(true){ + try{ + await genshin.tp(domainInfo.position[2], domainInfo.position[0]); + await sleep(1000); - // 向前走 - keyDown("w"); - await sleep(2500); - keyUp("w"); + // 向前走 + keyDown("w"); + await sleep(2500); + keyUp("w"); - await sleep(500); + await sleep(500); - // 执行自动秘境 - await dispatcher.runTask(new SoloTask("AutoDomain")); + // 执行自动秘境 + await dispatcher.runTask(new SoloTask("AutoDomain")); + await sleep(500); + break; + }catch (ex) + { + if (ex.message.includes("检测到复苏界面")) + { + log.info("复活后,继续执行自动秘境。"); + continue; + } + else + { + // 如果不包含 "检测到复苏界面",则继续抛出异常 + throw ex; + } + } + } })(); \ No newline at end of file diff --git a/repo/js/AutoDomain/manifest.json b/repo/js/AutoDomain/manifest.json index 5a6ed205..48ab91bb 100644 --- a/repo/js/AutoDomain/manifest.json +++ b/repo/js/AutoDomain/manifest.json @@ -1,11 +1,11 @@ { "manifest_version": 1, "name": "传送并自动秘境", - "version": "1.0", - "description": "BetterGI自带脚本,用于传送后并执行自动秘境", + "version": "1.3", + "description": "BetterGI自带脚本,用于传送后并执行自动秘境。秘境中角色死亡复活后继续回去战斗。", "authors": [ { - "name": "huiyadanli", + "name": "huiyadanli&iris", "link": "https://github.com/huiyadanli" } ], diff --git a/repo/js/AutoDomain/settings.json b/repo/js/AutoDomain/settings.json index 2f7d9e4c..7a6f12c8 100644 --- a/repo/js/AutoDomain/settings.json +++ b/repo/js/AutoDomain/settings.json @@ -31,7 +31,8 @@ "褪色的剧场", "蕴火的幽墟", "深古瞭望所", - "虹灵的净土" + "虹灵的净土", + "昏识塔" ] } ] \ No newline at end of file diff --git a/repo/js/AutoFriendship/assets/AutoPath/两武士.json b/repo/js/AutoFriendship/assets/AutoPath/两武士.json new file mode 100644 index 00000000..7d689ec0 --- /dev/null +++ b/repo/js/AutoFriendship/assets/AutoPath/两武士.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "两武士", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2738.38671875, + "y": -3414.45703125 + }, + { + "id": 2, + "x": -2739.7236328125, + "y": -3400.15625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoFriendship/assets/AutoPath/清理原住民.json b/repo/js/AutoFriendship/assets/AutoPath/清理原住民.json new file mode 100644 index 00000000..ee8a2bd4 --- /dev/null +++ b/repo/js/AutoFriendship/assets/AutoPath/清理原住民.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "清理原住民", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2740.609375, + "y": -3410.6923828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -2739.4873046875, + "y": -3437.853515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -2764.4423828125, + "y": -3465.810546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -2771.2705078125, + "y": -3453.2373046875, + "action": "fight", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -2776.25, + "y": -3454.6982421875, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoFriendship/assets/AutoPath/盗宝团.json b/repo/js/AutoFriendship/assets/AutoPath/盗宝团.json new file mode 100644 index 00000000..cb600fff --- /dev/null +++ b/repo/js/AutoFriendship/assets/AutoPath/盗宝团.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "盗宝团", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 3, + "x": -2739.7197265625, + "y": -3399.060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2738.671875, + "y": -3427.38671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": -2756.6748046875, + "y": -3467.6328125, + "type": "path", + "move_mode": "walk", + "action": "fight" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoFriendship/assets/KeyMouse/重新上线.json b/repo/js/AutoFriendship/assets/KeyMouse/重新上线.json new file mode 100644 index 00000000..6061b2a7 --- /dev/null +++ b/repo/js/AutoFriendship/assets/KeyMouse/重新上线.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":0,"keyCode":27,"mouseX":0,"mouseY":0,"time":1122.9274},{"type":1,"keyCode":27,"mouseX":0,"mouseY":0,"time":1240.7044},{"type":2,"mouseX":1870,"mouseY":1118,"time":2664.8132},{"type":2,"mouseX":1784,"mouseY":1180,"time":2685.6454},{"type":2,"mouseX":1670,"mouseY":1258,"time":2706.5437},{"type":2,"mouseX":1546,"mouseY":1332,"time":2726.5673},{"type":2,"mouseX":1412,"mouseY":1402,"time":2747.7062},{"type":2,"mouseX":1272,"mouseY":1472,"time":2768.5555},{"type":2,"mouseX":1124,"mouseY":1548,"time":2789.6126},{"type":2,"mouseX":972,"mouseY":1622,"time":2810.6044},{"type":2,"mouseX":848,"mouseY":1696,"time":2831.5239},{"type":2,"mouseX":742,"mouseY":1764,"time":2851.559},{"type":2,"mouseX":662,"mouseY":1820,"time":2872.4909},{"type":2,"mouseX":598,"mouseY":1862,"time":2892.5456},{"type":2,"mouseX":550,"mouseY":1896,"time":2912.5464},{"type":2,"mouseX":512,"mouseY":1926,"time":2932.5727},{"type":2,"mouseX":480,"mouseY":1952,"time":2953.5265},{"type":2,"mouseX":446,"mouseY":1978,"time":2973.5507},{"type":2,"mouseX":406,"mouseY":2004,"time":2993.5764},{"type":2,"mouseX":362,"mouseY":2028,"time":3013.5889},{"type":2,"mouseX":322,"mouseY":2044,"time":3034.4793},{"type":2,"mouseX":280,"mouseY":2058,"time":3054.5477},{"type":2,"mouseX":234,"mouseY":2070,"time":3074.5642},{"type":2,"mouseX":186,"mouseY":2082,"time":3095.5541},{"type":2,"mouseX":138,"mouseY":2092,"time":3116.4905},{"type":2,"mouseX":92,"mouseY":2098,"time":3136.491},{"type":2,"mouseX":50,"mouseY":2102,"time":3156.5594},{"type":2,"mouseX":22,"mouseY":2104,"time":3177.5705},{"type":2,"mouseX":20,"mouseY":2102,"time":3288.5778},{"type":2,"mouseX":24,"mouseY":2094,"time":3367.5595},{"type":2,"mouseX":34,"mouseY":2084,"time":3389.5297},{"type":2,"mouseX":40,"mouseY":2078,"time":3411.5745},{"type":2,"mouseX":42,"mouseY":2074,"time":3436.6056},{"type":2,"mouseX":44,"mouseY":2074,"time":3483.5373},{"type":2,"mouseX":46,"mouseY":2072,"time":3520.6473},{"type":2,"mouseX":48,"mouseY":2070,"time":3559.6061},{"type":4,"mouseX":48,"mouseY":2070,"mouseButton":"Left","time":3984.903},{"type":5,"mouseX":48,"mouseY":2070,"mouseButton":"Left","time":4082.6738},{"type":2,"mouseX":78,"mouseY":2062,"time":4957.6286},{"type":2,"mouseX":138,"mouseY":2050,"time":4978.6012},{"type":2,"mouseX":234,"mouseY":2038,"time":4999.5416},{"type":2,"mouseX":338,"mouseY":2026,"time":5020.4912},{"type":2,"mouseX":462,"mouseY":2010,"time":5040.5611},{"type":2,"mouseX":604,"mouseY":1990,"time":5061.536},{"type":2,"mouseX":782,"mouseY":1960,"time":5081.6434},{"type":2,"mouseX":982,"mouseY":1924,"time":5101.678},{"type":2,"mouseX":1166,"mouseY":1894,"time":5122.495},{"type":2,"mouseX":1342,"mouseY":1864,"time":5142.5646},{"type":2,"mouseX":1498,"mouseY":1828,"time":5163.5151},{"type":2,"mouseX":1636,"mouseY":1786,"time":5183.5272},{"type":2,"mouseX":1752,"mouseY":1744,"time":5204.5365},{"type":2,"mouseX":1856,"mouseY":1706,"time":5224.5715},{"type":2,"mouseX":1944,"mouseY":1672,"time":5245.4829},{"type":2,"mouseX":2012,"mouseY":1644,"time":5265.4856},{"type":2,"mouseX":2066,"mouseY":1622,"time":5285.4891},{"type":2,"mouseX":2112,"mouseY":1602,"time":5305.5373},{"type":2,"mouseX":2150,"mouseY":1586,"time":5325.5417},{"type":2,"mouseX":2184,"mouseY":1568,"time":5346.4815},{"type":2,"mouseX":2216,"mouseY":1546,"time":5366.6434},{"type":2,"mouseX":2246,"mouseY":1530,"time":5387.6075},{"type":2,"mouseX":2248,"mouseY":1528,"time":5424.6108},{"type":2,"mouseX":2250,"mouseY":1528,"time":5444.6396},{"type":2,"mouseX":2250,"mouseY":1526,"time":5472.6497},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":5643.7549},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":5762.743},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":8268.7556},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":8387.7549},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":8613.6933},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":8726.0548},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":8952.6574},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":9099.797},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":9542.6674},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":9697.9887},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":9989.8661},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":10143.8407},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":10399.7083},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":10593.791},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":11281.6748},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":11430.0178},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":11666.7071},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":11826.0618},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":12008.6323},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":12167.7781},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":12829.7735},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":12948.7237},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":13221.7528},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":13347.77},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":13592.7016},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":13723.0118},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":14348.7659},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":14485.8766},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":14737.6095},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":14868.0844},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":15029.7218},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":15169.7923},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":15925.8354},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":16080.7169},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":16347.2035},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":16472.7231},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":16724.6727},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":16865.753},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":17570.856},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":17703.8783},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":17973.8694},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":18136.0331},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":18359.7388},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":18489.1749},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":19144.1518},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":19269.7756},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":19536.6995},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":19669.8495},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":19914.7508},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":20077.1151},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":20756.6676},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":20889.8675},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":21174.6944},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":21300.8239},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":21627.8502},{"type":5,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":21761.8121},{"type":4,"mouseX":2250,"mouseY":1526,"mouseButton":"Left","time":22499.6697},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":22671.741},{"type":2,"mouseX":1919,"mouseY":1079,"time":22671.7439},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":22833.7527},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":22971.3175},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":23237.79},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":23352.8653},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":23687.6834},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":23823.798},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":24630.7364},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":24738.7543},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":25033.7012},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":25148.7702},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":25483.8293},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":25623.7151},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":26369.796},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":26455.7445},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":26729.7737},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":26869.7356},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":27193.7203},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":27369.7173},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":28233.7905},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":28363.7387},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":28748.7844},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":28871.7629},{"type":4,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":29259.7691},{"type":5,"mouseX":1919,"mouseY":1079,"mouseButton":"Left","time":29425.6976}],"info":{"name":"","description":"","x":0,"y":0,"width":3840,"height":2160,"recordDpi":2}} \ No newline at end of file diff --git a/repo/js/AutoFriendship/main.js b/repo/js/AutoFriendship/main.js new file mode 100644 index 00000000..5460da04 --- /dev/null +++ b/repo/js/AutoFriendship/main.js @@ -0,0 +1,109 @@ +(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 runGameActionsMultipleTimes() { + await sleep(1000); + keyPress("ESCAPE"); + await sleep(1000); + click(50, 1030); + await sleep(1000); + click(1000, 750); + await sleep(validatedExitDelay * 1000); + click(1000, 550); + await sleep(validatedLoadingDelay * 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} 路径时发生错误`); + } + await sleep(2000); + } + + async function AutoFriendshipDev(times) { + await resetMap(); + log.info(`清理原住民...`); + await AutoPath('清理原住民'); + log.info(`自动好感开始...`); + for (let i = 0; i < times; i++) { + await AutoPath('两武士'); + await runGameActionsMultipleTimes(); + log.info(`自动好感当前次数:${i + 1}/${times}`); + await AutoPath('盗宝团'); + 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 = [ + '请确保当前队伍为好感度队伍', + '好感度队伍:用待刷好感角色替换战斗策略中的人物即可', + '随后将自动匹配到战斗策略脚本', + ]; + 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/AutoFriendship/manifest.json b/repo/js/AutoFriendship/manifest.json new file mode 100644 index 00000000..bafcff32 --- /dev/null +++ b/repo/js/AutoFriendship/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "自动好感度", + "version": "1.0", + "description": "通过突发事件刷好感度,请配合好感度战斗脚本使用", + "authors": [ + { + "name": "HZYgrandma & 愚溪", + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/AutoFriendship/settings.json b/repo/js/AutoFriendship/settings.json new file mode 100644 index 00000000..acc8d0a4 --- /dev/null +++ b/repo/js/AutoFriendship/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/js/AutoWoodcutting/assets/AutoPath/tp/桃椰子木12个tp.json b/repo/js/AutoWoodcutting/assets/AutoPath/tp/桃椰子木12个tp.json new file mode 100644 index 00000000..b76e1b8d --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/tp/桃椰子木12个tp.json @@ -0,0 +1,20 @@ +{ + "info": { + "name": "桃椰子木12个tp", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8350.8408203125, + "y": -2844.587890625, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/tp/炬木15个tp.json b/repo/js/AutoWoodcutting/assets/AutoPath/tp/炬木15个tp.json new file mode 100644 index 00000000..296df5a9 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/tp/炬木15个tp.json @@ -0,0 +1,20 @@ +{ + "info": { + "name": "炬木15个tp", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4716.53271484375, + "y": 2382.36767578125, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/业果木15个(辉木15个).json b/repo/js/AutoWoodcutting/assets/AutoPath/业果木15个(辉木15个).json new file mode 100644 index 00000000..cae15190 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/业果木15个(辉木15个).json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "业果木15个(辉木15个)", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3135.693359375, + "y": -1079.69189453125 + }, + { + "id": 2, + "x": 3168.45068359375, + "y": -1080.99462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3171.7421875, + "y": -1064.4404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3185.36083984375, + "y": -1064.46875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3194.23291015625, + "y": -1082.80029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3210.9462890625, + "y": -1085.4306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 3212.19482421875, + "y": -1077.3984375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/刺葵木6个.json b/repo/js/AutoWoodcutting/assets/AutoPath/刺葵木6个.json new file mode 100644 index 00000000..2a3d86eb --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/刺葵木6个.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "刺葵木6个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4209.8037109375, + "y": -2711.9990234375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 4204.03271484375, + "y": -2726.19140625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/却砂木12个.json b/repo/js/AutoWoodcutting/assets/AutoPath/却砂木12个.json new file mode 100644 index 00000000..3a3d533e --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/却砂木12个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "却砂木12个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 341.3154296875, + "y": 548.126953125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 404.1220703125, + "y": 515.765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 418.2958984375, + "y": 485.41650390625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/垂香木15个.json b/repo/js/AutoWoodcutting/assets/AutoPath/垂香木15个.json new file mode 100644 index 00000000..fa52ea83 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/垂香木15个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "垂香木15个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -521.603515625, + "y": 2181.3447265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -545.5341796875, + "y": 2167.464599609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -541.90625, + "y": 2160.69091796875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/御伽木9个(孔雀木6个).json b/repo/js/AutoWoodcutting/assets/AutoPath/御伽木9个(孔雀木6个).json new file mode 100644 index 00000000..598bc4ee --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/御伽木9个(孔雀木6个).json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "御伽木9个(孔雀木6个)", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "有怪,快速退出重进能够刷新仇恨", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4217.919921875, + "y": -2397.8359375 + }, + { + "id": 2, + "x": -4188.4814453125, + "y": -2418.57421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": -4186.791015625, + "y": -2429.5341796875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/悬铃木18个.json b/repo/js/AutoWoodcutting/assets/AutoPath/悬铃木18个.json new file mode 100644 index 00000000..8265a08d --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/悬铃木18个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "悬铃木18个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 4663.3974609375, + "y": 2446.1669921875 + }, + { + "id": 2, + "x": 4580.466796875, + "y": 2339.714111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4570.798828125, + "y": 2339.628173828125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/杉木12个.json b/repo/js/AutoWoodcutting/assets/AutoPath/杉木12个.json new file mode 100644 index 00000000..60b215e4 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/杉木12个.json @@ -0,0 +1,61 @@ +{ + "info": { + "name": "木材", + "type": "collect", + "country": "蒙德", + "author": "½", + "version": "", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -252.22467041015625, + "y": 2256.0646362304688, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -218.61431884765625, + "y": 2284.0081787109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -164.74041748046875, + "y": 2277.0416870117188, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -122.7860107421875, + "y": 2247.2214965820312, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -113.906005859375, + "y": 2256.1220703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -32.19244384765625, + "y": 2237.5419921875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/松木24个.json b/repo/js/AutoWoodcutting/assets/AutoPath/松木24个.json new file mode 100644 index 00000000..cda38b46 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/松木24个.json @@ -0,0 +1,37 @@ +{ + "info": { + "name": "木材", + "type": "collect", + "country": "蒙德", + "author": "½", + "version": "", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -749.86376953125, + "y": 2262.6113891601562, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -788.388427734375, + "y": 2304.58642578125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -788.2122802734375, + "y": 2303.1715698242188, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/枫木9个.json b/repo/js/AutoWoodcutting/assets/AutoPath/枫木9个.json new file mode 100644 index 00000000..086ba31c --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/枫木9个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "枫木9个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3812.6591796875, + "y": -2546.5625 + }, + { + "id": 2, + "x": -3795.1669921875, + "y": -2617.5458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3766.388671875, + "y": -2601.5546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -3759.7255859375, + "y": -2593.5146484375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/柽木15个.json b/repo/js/AutoWoodcutting/assets/AutoPath/柽木15个.json new file mode 100644 index 00000000..645e3954 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/柽木15个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "柽木15个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4096.009765625, + "y": -2025.96435546875 + }, + { + "id": 2, + "x": 4110.787109375, + "y": -2041.79638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4126.13525390625, + "y": -2046.67822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4148.607421875, + "y": -2041.6953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4204.21337890625, + "y": -2080.595703125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": 4216.78125, + "y": -2076.8701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4215.2216796875, + "y": -2063.080078125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/桦木15个.json b/repo/js/AutoWoodcutting/assets/AutoPath/桦木15个.json new file mode 100644 index 00000000..6d99c328 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/桦木15个.json @@ -0,0 +1,29 @@ +{ + "info": { + "name": "木材", + "type": "collect", + "country": "蒙德", + "author": "½", + "version": "", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1330.6689453125, + "y": 2563.420654296875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1344.431884765625, + "y": 2520.51025390625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/梦见木12个.json b/repo/js/AutoWoodcutting/assets/AutoPath/梦见木12个.json new file mode 100644 index 00000000..0f368278 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/梦见木12个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "梦见木12个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4232.123046875, + "y": -3001.9501953125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -4208.490234375, + "y": -2948.349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4187.43359375, + "y": -2906.2412109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4131.2900390625, + "y": -2905.8564453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4043.876953125, + "y": -2950.7861328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3986.6220703125, + "y": -2952.34375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -3986.4638671875, + "y": -2967.8447265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -3980.66796875, + "y": -2978.8486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -3999.20703125, + "y": -2977.005859375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/椴木9个(悬铃木9个).json b/repo/js/AutoWoodcutting/assets/AutoPath/椴木9个(悬铃木9个).json new file mode 100644 index 00000000..240cb372 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/椴木9个(悬铃木9个).json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "椴木9个(悬铃木9个)", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3383.2158203125, + "y": 2692.23779296875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 3370.44482421875, + "y": 2702.470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3239.8525390625, + "y": 2762.513916015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 3251.6640625, + "y": 2763.403076171875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/椴木9个.json b/repo/js/AutoWoodcutting/assets/AutoPath/椴木9个.json new file mode 100644 index 00000000..492056a1 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/椴木9个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "椴木9个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4984.4248046875, + "y": 1699.8203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4991.94873046875, + "y": 1734.0322265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4970.080078125, + "y": 1799.18310546875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 4975.736328125, + "y": 1809.29638671875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/灰灰楼木6个.json b/repo/js/AutoWoodcutting/assets/AutoPath/灰灰楼木6个.json new file mode 100644 index 00000000..37af5160 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/灰灰楼木6个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "灰灰楼木6个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 3, + "x": 8978.330078125, + "y": -1872.3369140625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 8996.033203125, + "y": -1838.43505859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 9008.49609375, + "y": -1791.96484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 9009.5966796875, + "y": -1781.61328125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/燃爆木15个.json b/repo/js/AutoWoodcutting/assets/AutoPath/燃爆木15个.json new file mode 100644 index 00000000..19163a8e --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/燃爆木15个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "燃爆木15个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9038.814453125, + "y": -2429.361328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 9037.24609375, + "y": -2454.447265625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 3, + "x": 9066.744140625, + "y": -2498.119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 9043.6044921875, + "y": -2501.2275390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9049.6533203125, + "y": -2514.849609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/燃爆木6个(白栗栎木6个).json b/repo/js/AutoWoodcutting/assets/AutoPath/燃爆木6个(白栗栎木6个).json new file mode 100644 index 00000000..42661423 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/燃爆木6个(白栗栎木6个).json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "燃爆木6个(白栗栎木6个)", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7234.2099609375, + "y": -1433.29736328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7208.298828125, + "y": -1426.84521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 7201.96875, + "y": -1436.07080078125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/白梣木15个.json b/repo/js/AutoWoodcutting/assets/AutoPath/白梣木15个.json new file mode 100644 index 00000000..e770f29a --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/白梣木15个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "白梣木15个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4689.3056640625, + "y": 2429.53515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4715.36328125, + "y": 2458.4765625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 4726.62255859375, + "y": 2483.402587890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4729.75634765625, + "y": 2478.175537109375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/竹节30个.json b/repo/js/AutoWoodcutting/assets/AutoPath/竹节30个.json new file mode 100644 index 00000000..91c6c3b1 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/竹节30个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "竹节", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 840.02734375, + "y": 1532.52197265625 + }, + { + "id": 2, + "x": 814.2734375, + "y": 1515.693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 809.29296875, + "y": 1514.77685546875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/萃华木6个(垂香木3个).json b/repo/js/AutoWoodcutting/assets/AutoPath/萃华木6个(垂香木3个).json new file mode 100644 index 00000000..f78619fe --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/萃华木6个(垂香木3个).json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "萃华木6个(垂香木3个)", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 2, + "x": -1120.9453125, + "y": 2190.656494140625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1153.9638671875, + "y": 2190.605712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1156.3017578125, + "y": 2177.168212890625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/证悟木15个(业果木6个).json b/repo/js/AutoWoodcutting/assets/AutoPath/证悟木15个(业果木6个).json new file mode 100644 index 00000000..2790f8c5 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/证悟木15个(业果木6个).json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "证悟木15个(业果木6个)", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3135.5771484375, + "y": -1079.73974609375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3153.193359375, + "y": -1082.57275390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 3151.31201171875, + "y": -1104.5791015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 3164.52392578125, + "y": -1125.92822265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3150.6611328125, + "y": -1130.53662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3158.96923828125, + "y": -1139.24755859375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/AutoPath/香柏木27个.json b/repo/js/AutoWoodcutting/assets/AutoPath/香柏木27个.json new file mode 100644 index 00000000..06a0e9fb --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/AutoPath/香柏木27个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "香柏木27个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3923.1171875, + "y": 4233.8603515625 + }, + { + "id": 2, + "x": 3911.77099609375, + "y": 4212.8466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3921.013671875, + "y": 4196.92578125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/KeyMouse/桃椰子木12个.json b/repo/js/AutoWoodcutting/assets/KeyMouse/桃椰子木12个.json new file mode 100644 index 00000000..e56ff333 --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/KeyMouse/桃椰子木12个.json @@ -0,0 +1,279 @@ +{ + "macroEvents": [ + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 0.0000 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 11127.9408 + }, + { + "type": 0, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 13119.9760 + }, + { + "type": 1, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 17400.0108 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 18504.0088 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 27312.0632 + }, + { + "type": 0, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 28128.0973 + }, + { + "type": 1, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 29240.0663 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 29912.0759 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 31736.1294 + }, + { + "type": 0, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 31904.0885 + }, + { + "type": 1, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 32144.0983 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 32864.1012 + }, + { + "type": 0, + "keyCode": 32, + "mouseX": 0, + "mouseY": 0, + "time": 33288.1407 + }, + { + "type": 1, + "keyCode": 32, + "mouseX": 0, + "mouseY": 0, + "time": 33432.1196 + }, + { + "type": 0, + "keyCode": 32, + "mouseX": 0, + "mouseY": 0, + "time": 33616.1026 + }, + { + "type": 1, + "keyCode": 32, + "mouseX": 0, + "mouseY": 0, + "time": 33736.1158 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 40600.1535 + }, + { + "type": 0, + "keyCode": 84, + "mouseX": 0, + "mouseY": 0, + "time": 43000.0000 + }, + { + "type": 1, + "keyCode": 84, + "mouseX": 0, + "mouseY": 0, + "time": 43071.8735 + }, + { + "type": 0, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 46591.9060 + }, + { + "type": 1, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 47047.9336 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 47615.9255 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 50271.9249 + }, + { + "type": 0, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 51143.9303 + }, + { + "type": 1, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 51839.9301 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 52239.9472 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 53279.9313 + }, + { + "type": 0, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 64328.0135 + }, + { + "type": 1, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 67096.0170 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 67448.0209 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 75544.7151 + }, + { + "type": 0, + "keyCode": 81, + "mouseX": 0, + "mouseY": 0, + "time": 77153.2237 + }, + { + "type": 1, + "keyCode": 81, + "mouseX": 0, + "mouseY": 0, + "time": 78120.1226 + }, + { + "type": 0, + "keyCode": 68, + "mouseX": 0, + "mouseY": 0, + "time": 80768.1293 + }, + { + "type": 1, + "keyCode": 68, + "mouseX": 0, + "mouseY": 0, + "time": 81536.1748 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 82560.1130 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 85536.1748 + } + ], + "info": { + "name": "", + "description": "", + "x": 0, + "y": 0, + "width": 1920, + "height": 1080, + "recordDpi": 1 + } +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/assets/KeyMouse/炬木15个.json b/repo/js/AutoWoodcutting/assets/KeyMouse/炬木15个.json new file mode 100644 index 00000000..b1dcdf8c --- /dev/null +++ b/repo/js/AutoWoodcutting/assets/KeyMouse/炬木15个.json @@ -0,0 +1,69 @@ +{ + "macroEvents": [ + { + "type": 0, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 1619.1371 + }, + { + "type": 1, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 4843.0322 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 5555.1643 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 8195.0398 + }, + { + "type": 0, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 8939.0689 + }, + { + "type": 1, + "keyCode": 65, + "mouseX": 0, + "mouseY": 0, + "time": 10259.1104 + }, + { + "type": 0, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 11155.0806 + }, + { + "type": 1, + "keyCode": 87, + "mouseX": 0, + "mouseY": 0, + "time": 11655.0806 + } + ], + "info": { + "name": "", + "description": "", + "x": 0, + "y": 0, + "width": 1920, + "height": 1080, + "recordDpi": 1 + } +} \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/main.js b/repo/js/AutoWoodcutting/main.js new file mode 100644 index 00000000..7b1c9f1e --- /dev/null +++ b/repo/js/AutoWoodcutting/main.js @@ -0,0 +1,172 @@ +(async function () { + const defaultExitDelay = 10000; + const defaultLoadingDelay = 13000; + const seen = new Set(); + + function validateAndSetDefaults(exitDelay, loadingDelay) { + if (isNaN(exitDelay) || exitDelay <= 0) { + log.warn("你没有设置退出延迟,将使用默认值"); + exitDelay = defaultExitDelay; + } + if (isNaN(loadingDelay) || loadingDelay <= 0) { + log.warn("你没有设置加载延迟,将使用默认值"); + loadingDelay = defaultLoadingDelay; + } + return { exitDelay, loadingDelay }; + } + + async function runGameActionsMultipleTimes(times, locationName) { + for (let i = 0; i < times; i++) { + await sleep(1000); + keyPress("ESCAPE"); + await sleep(1000); + click(50, 1030); + await sleep(1000); + click(1000, 750); + await sleep(validatedExitDelay); + click(1000, 550); + await sleep(validatedLoadingDelay); + keyPress("z"); + log.info(`${locationName} 循环次数:${i + 1}/${times}`); + } + } + + 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 KeyMouse(locationNameEx) { + log.info(`前往 ${locationNameEx}`); + let tpPath = `assets/AutoPath/tp/${locationNameEx}tp.json`; + let filePath = `assets/KeyMouse/${locationNameEx}.json`; + + try { + await pathingScript.runFile(tpPath); + await sleep(1000); + await keyMouseScript.runFile(filePath); + } catch (error) { + log.error(`执行 ${locationNameEx} 脚本时发生错误: ${error}`); + } + await sleep(1000); + } + + async function woodcutting(locationName) { + log.info(`砍伐 ${locationName}`); + if (!map[locationName]) { + log.info(`未找到 ${locationName} 对应的木材`); + return; + } + + const { description, available, times } = map[locationName]; + if (description === 'NULL' || !description) { + log.info(`${locationName} 暂不支持`); + return; + } + + if (Array.from(seen).some(item => item.includes(locationName))) { + log.info(`${locationName} 已经砍伐过,将执行下一个`); + return; + } + + log.info(`前往 ${description}`); + await sleep(1000); + + try { + if (locationName === "炬木" || locationName === "桃椰子木") { + await KeyMouse(description); + } else { + const filePath = `assets/AutoPath/${description}.json`; + await pathingScript.runFile(filePath); + } + + await sleep(1000); + + if (!available) { + await runGameActionsMultipleTimes(times, description); + } else { + await dispatcher.runTask(new SoloTask("AutoWood")); + } + + seen.add(map[locationName].description); + log.info(`${locationName} 伐木完成,将执行下一个`); + log.info(`已运行木材: ${[...seen].join(", ")}`); + } catch (error) { + log.error(`在砍伐 ${locationName} 时发生错误: ${error}`); + } + } + + // Set game environment settings + setGameMetrics(1920, 1080, 1); + + const map = { + '桦木': { description: '桦木15个', available: true, times: 134 }, + '萃华木': { description: '萃华木6个(垂香木3个)', available: true, times: 334 }, + '松木': { description: '松木24个', available: true, times: 84 }, + '却砂木': { description: '却砂木12个', available: true, times: 167 }, + '竹节': { description: '竹节30个', available: true, times: 67 }, + '垂香木': { description: '垂香木15个', available: true, times: 134 }, + '杉木': { description: '杉木12个', available: true, times: 167 }, + '梦见木': { description: '梦见木12个', available: true, times: 167 }, + '枫木': { description: '枫木9个', available: true, times: 223 }, + '孔雀木': { description: '御伽木9个(孔雀木6个)', available: false, times: 334 },//利用手动重置仇恨 + '御伽木': { description: '御伽木9个(孔雀木6个)', available: false, times: 334 },//利用手动重置仇恨 + '辉木': { description: '业果木15个(辉木15个)', available: true, times: 134 }, + '业果木': { description: '业果木15个(辉木15个)', available: true, times: 134 }, + '证悟木': { description: '证悟木15个(业果木6个)', available: true, times: 334 }, + '刺葵木': { description: '刺葵木6个', available: true, times: 334 }, + '柽木': { description: '柽木15个', available: false, times: 134 }, + '悬铃木': { description: '悬铃木18个', available: true, times: 112 }, + '椴木': { description: '椴木9个', available: true, times: 223 }, + '白梣木': { description: '白梣木15个', available: true, times: 134 }, + '香柏木': { description: '香柏木27个', available: true, times: 75 }, + '炬木': { description: '炬木15个', available: true, times: 134 }, + '白栗栎木': { description: '燃爆木6个(白栗栎木6个)', available: false, times: 334 }, + '灰灰楼林木': { description: '灰灰楼木6个', available: false, times: 334 }, + '燃爆木': { description: '燃爆木15个', available: false, times: 134 }, + '桃椰子木': { description: '桃椰子木12个', available: false, times: 167 } + }; + + let exitdelay = Number(settings.exitdelay); + let loadingdelay = Number(settings.loadingdelay); + const { exitDelay: validatedExitDelay, loadingDelay: validatedLoadingDelay } = validateAndSetDefaults(exitdelay, loadingdelay); + + const messages = [ + '确保装备有[王树瑞佑]', + '确保使用小道具快捷键为Z键', + '确保开启了BGI独立任务中自动伐木的“启用OCR伐木数量限制”', + '若要运行炬木或桃椰子木:', + '运行时是琳妮特前台且拥有双风共鸣', + '元素共鸣需要四个角色组队触发,仅两个风系角色无效', + '不要带其他有移速加成的角色' + ]; + for (let message of messages) { + log.info(message); + await sleep(1000); + } + + log.info('自动伐木开始...'); + log.info(`退出延迟: ${validatedExitDelay}毫秒, 加载延迟: ${validatedLoadingDelay}毫秒`); + + let woodsArray = settings.woods.split(" "); + await resetMap(); + for (const wood of woodsArray) { + if (wood.trim()) { + await woodcutting(wood); + } else { + log.info('请在自定义选项输入木材名,用空格隔开'); + } + } +})(); diff --git a/repo/js/AutoWoodcutting/manifest.json b/repo/js/AutoWoodcutting/manifest.json new file mode 100644 index 00000000..8e8cf5e3 --- /dev/null +++ b/repo/js/AutoWoodcutting/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/AutoWoodcutting/settings.json b/repo/js/AutoWoodcutting/settings.json new file mode 100644 index 00000000..3652103d --- /dev/null +++ b/repo/js/AutoWoodcutting/settings.json @@ -0,0 +1,138 @@ +[ + { + "name": "woods", + "type": "input-text", + "label": "木材种类:使用空格分隔" + }, + { + "name": "exitdelay", + "type": "input-text", + "label": "退出延迟(毫秒)(选填)" + }, + { + "name": "loadingdelay", + "type": "input-text", + "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": "灰灰楼林木" + // }, + // { + // "name": "燃爆木", + // "type": "checkbox", + // "label": "燃爆木" + // } + +] \ No newline at end of file diff --git a/repo/js/AutoWoodcutting/全部木材.txt b/repo/js/AutoWoodcutting/全部木材.txt new file mode 100644 index 00000000..c858d6cd --- /dev/null +++ b/repo/js/AutoWoodcutting/全部木材.txt @@ -0,0 +1,4 @@ +全部木材: +桦木 萃华木 松木 却砂木 竹节 垂香木 杉木 梦见木 枫木 孔雀木 御伽木 辉木 业果木 证悟木 刺葵木 柽木 悬铃木 椴木 白梣木 香柏木 炬木 白栗栎木 灰灰楼林木 燃爆木 桃椰子木 + +涉及炬木、桃椰子木的队伍要求:双风共鸣且琳妮特前台 \ No newline at end of file diff --git a/repo/js/Autopermission/main.js b/repo/js/Autopermission/main.js new file mode 100644 index 00000000..924955e6 --- /dev/null +++ b/repo/js/Autopermission/main.js @@ -0,0 +1,31 @@ +(async function () { + + setGameMetrics(1920, 1080, 1.5) + + log.info("请确保执行脚本时处于主界面"); + + keyPress("VK_F2") + await sleep(500); + click(330,1010) //点击世界权限 + await sleep(500); + let domainName = settings.domainName; + + switch (domainName) { + case "直接加入": + click(330, 910); + log.info("权限设置为【直接加入】"); + break; + case "不允许加入": + click(330, 850); // 不允许 + log.info("权限设置为【不允许加入】"); + break; + case "确认后可加入": + click(330, 960); // 确认后 + log.info("权限设置为【确认后可加入】"); + break; + default: + click(330, 850); // 不允许 + log.info("锁门"); + break; +} +})(); \ No newline at end of file diff --git a/repo/js/Autopermission/manifest.json b/repo/js/Autopermission/manifest.json new file mode 100644 index 00000000..fe9c0ebb --- /dev/null +++ b/repo/js/Autopermission/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/Autopermission/settings.json b/repo/js/Autopermission/settings.json new file mode 100644 index 00000000..2f031751 --- /dev/null +++ b/repo/js/Autopermission/settings.json @@ -0,0 +1,12 @@ +[ + { + "name": "domainName", + "type": "select", + "label": "设置权限", + "options": [ + "直接加入", + "确认后可加入", + "不允许加入" + ] + } + ] \ No newline at end of file diff --git a/repo/js/Back/main.js b/repo/js/Back/main.js new file mode 100644 index 00000000..e063e72e --- /dev/null +++ b/repo/js/Back/main.js @@ -0,0 +1,12 @@ +(async function () { + for (var i=0;i<3;i++) + { + keyPress("VK_ESCAPE"); + await sleep(1000); + } + keyPress("VK_RETURN"); + await sleep(500); + keyPress("VK_ESCAPE"); + await sleep(500); + log.info("已返回主界面"); +})(); \ No newline at end of file diff --git a/repo/js/Back/manifest.json b/repo/js/Back/manifest.json new file mode 100644 index 00000000..8ee255db --- /dev/null +++ b/repo/js/Back/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "返回主界面", + "version": "1.0", + "description": "强制返回主界面", + "authors": [ + { + "name": "LL" + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/BattlePass/main.js b/repo/js/BattlePass/main.js index c30d21bb..4e36e109 100644 --- a/repo/js/BattlePass/main.js +++ b/repo/js/BattlePass/main.js @@ -5,8 +5,8 @@ click(1920, 100); await sleep(1000); click(3480, 1948); - await sleep(1000); + await sleep(3000); keyPress("Escape"); - log.info("已领取历练点"); -})(); \ No newline at end of file + log.info("已领取纪行奖励"); +})(); diff --git a/repo/js/BattlePass/manifest.json b/repo/js/BattlePass/manifest.json index d3ab9b25..b3d4fcf5 100644 --- a/repo/js/BattlePass/manifest.json +++ b/repo/js/BattlePass/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "领取纪行", - "version": "1.0", + "version": "1.1", "description": "用于领取纪行", "authors": [ { @@ -9,4 +9,4 @@ } ], "main": "main.js", -} \ No newline at end of file +} diff --git a/repo/js/Collect Dongtian Xuyu Resin/main.js b/repo/js/Collect Dongtian Xuyu Resin/main.js new file mode 100644 index 00000000..823f5f4d --- /dev/null +++ b/repo/js/Collect Dongtian Xuyu Resin/main.js @@ -0,0 +1,21 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + await sleep(3000); + keyPress("F"); + await sleep(5000); + click(1370, 655); + await sleep(3000); + click(1370, 655); + await sleep(3000); + click(680,300); + await sleep(3000); + click(1760, 1020); + await sleep(3000); + click(1160, 780); + await sleep(3000); + click(1160, 780); + await sleep(3000); + click(1865, 44); + await sleep(3000); + log.info("已领取洞天宝钱和好感"); +})(); \ No newline at end of file diff --git a/repo/js/Collect Dongtian Xuyu Resin/manifest.json b/repo/js/Collect Dongtian Xuyu Resin/manifest.json new file mode 100644 index 00000000..830f565a --- /dev/null +++ b/repo/js/Collect Dongtian Xuyu Resin/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "领取洞天百宝须臾树脂,只领取须臾树脂,前面是领取洞天宝钱和好感", + "version": "1.0", + "description": "领取洞天须臾树脂", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/Daily Commission/main.js b/repo/js/Daily Commission/main.js index f62c12e0..f7b5d6a3 100644 --- a/repo/js/Daily Commission/main.js +++ b/repo/js/Daily Commission/main.js @@ -1,12 +1,23 @@ (async function () { - setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + setGameMetrics(1920, 1080, 2); keyPress("F"); - await sleep(3000); - click(960, 540); - await sleep(2000); - click(1400, 430); - await sleep(3000); - click(950, 800); - - log.info("已领取每日委托奖励"); -})(); \ No newline at end of file + log.info("按下F键"); + await sleep(1000); + log.info("等待1秒"); + click(960, 540); + log.info("点击坐标(960, 540)(屏幕中心)"); + await sleep(1000); + log.info("等待1秒"); + click(1380, 425); + log.info("点击坐标(1380, 425)(领取「每日委托」奖励)"); + await sleep(1000); + log.info("等待1秒"); + click(960, 540); + log.info("点击坐标(960, 540)(屏幕中心)"); + await sleep(3000); + log.info("等待3秒"); + click(960, 960); + log.info("点击坐标(960, 960)(关闭奖励弹出页面)"); + + log.info("结束"); +})(); diff --git a/repo/js/Daily Commission/manifest.json b/repo/js/Daily Commission/manifest.json index 7d3ec7c2..6f235c65 100644 --- a/repo/js/Daily Commission/manifest.json +++ b/repo/js/Daily Commission/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 1, "name": "领取每日委托奖励", - "version": "1.0", + "version": "1.2", "description": "用于领取每日委托奖励", "authors": [ { @@ -9,4 +9,4 @@ } ], "main": "main.js", -} \ No newline at end of file +} diff --git a/repo/js/Experience points/main.js b/repo/js/Experience points/main.js deleted file mode 100644 index 56733155..00000000 --- a/repo/js/Experience points/main.js +++ /dev/null @@ -1,12 +0,0 @@ -(async function () { - setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI - keyPress("F1"); - await sleep(3000); - click(300,340); - await sleep(1000); - click(1550,750); - await sleep(3000); - keyPress("Escape"); - - log.info("已领取历练点"); -})(); \ No newline at end of file diff --git a/repo/js/Experience points/manifest.json b/repo/js/Experience points/manifest.json deleted file mode 100644 index ccd47217..00000000 --- a/repo/js/Experience points/manifest.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "manifest_version": 1, - "name": "领取历练点", - "version": "1.0", - "description": "用于领取历练点", - "authors": [ - { - "name": "鹤望兰", - } - ], - "main": "main.js", -} \ No newline at end of file diff --git a/repo/js/JustAwait/main.js b/repo/js/JustAwait/main.js new file mode 100644 index 00000000..a92e4938 --- /dev/null +++ b/repo/js/JustAwait/main.js @@ -0,0 +1,6 @@ +(async function () { + // settings 的对象内容来自于 settings.json 文件生成的动态配置页面 + log.info('等待{time}秒', settings.t) + timeset=1000*settings.t + await sleep(timeset); +})(); \ No newline at end of file diff --git a/repo/js/JustAwait/manifest.json b/repo/js/JustAwait/manifest.json new file mode 100644 index 00000000..001c4929 --- /dev/null +++ b/repo/js/JustAwait/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "只是等待一下", + "version": "1.0", + "description": "只用于等待,方便在调度器为不同性能的设备配置等待", + "authors": [ + { + "name": "HZYgrandma", + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/JustAwait/settings.json b/repo/js/JustAwait/settings.json new file mode 100644 index 00000000..d46d7eae --- /dev/null +++ b/repo/js/JustAwait/settings.json @@ -0,0 +1,7 @@ +[ + { + "name": "t", + "type": "input-text", + "label": "等待时间(单位:秒)" + } +] \ No newline at end of file diff --git a/repo/js/JustMove/main.js b/repo/js/JustMove/main.js new file mode 100644 index 00000000..88394d93 --- /dev/null +++ b/repo/js/JustMove/main.js @@ -0,0 +1,36 @@ +(async function () { + + timeset=1000*settings.t + domainName = settings.domainName + + switch (domainName) { + case "前(W)": + keyDown("w") + await sleep(timeset); + keyUp("w") + log.info("前(W)移动{time}秒", settings.t) + break; + case "后(S)": + keyDown("s") + await sleep(timeset); + keyUp("s") + log.info("后(S)移动{time}秒", settings.t) + break; + case "左(A)": + keyDown("a") + await sleep(timeset); + keyUp("a") + log.info("左(A)移动{time}秒", settings.t) + break; + case "右(D)": + keyDown("d") + await sleep(timeset); + keyUp("d") + log.info("右(D)移动{time}秒", settings.t) + break; + default: + log.info("未检测到设置,你需要到设置里设置移动方向"); + break; + } + await sleep(timeset); +})(); \ No newline at end of file diff --git a/repo/js/JustMove/manifest.json b/repo/js/JustMove/manifest.json new file mode 100644 index 00000000..128dbd4b --- /dev/null +++ b/repo/js/JustMove/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/JustMove/settings.json b/repo/js/JustMove/settings.json new file mode 100644 index 00000000..de5a2161 --- /dev/null +++ b/repo/js/JustMove/settings.json @@ -0,0 +1,18 @@ +[ + { + "name": "domainName", + "type": "select", + "label": "方向", + "options": [ + "前(W)", + "后(S)", + "左(A)", + "右(D)" + ] + }, + { + "name": "t", + "type": "input-text", + "label": "等待时间(单位:秒)" + } +] \ No newline at end of file diff --git a/repo/js/Login/main.js b/repo/js/Login/main.js new file mode 100644 index 00000000..08d2856b --- /dev/null +++ b/repo/js/Login/main.js @@ -0,0 +1,109 @@ +(async function () { + //特殊字符键盘映射集 + const map = { + '(': '9', + ')': '0', + '`': 'VK_OEM_3', + '!': '1', + '@': '2', + '#': '3', + '$': '4', + '%': '5', + '^': '6', + '&': '7', + '*': '8', + '_': 'VK_SUBTRACT', + '-': 'VK_SUBTRACT', + '+': 'VK_ADD', + '=': 'VK_ADD', + '|': 'VK_SEPARATOR', + '{': 'VK_OEM_4', + '}': 'VK_OEM_6', + '[': 'VK_OEM_4', + ']': 'VK_OEM_6', + ':': 'VK_OEM_1', + ';': 'VK_OEM_1', + '\'': 'VK_OEM_7', + '"': 'VK_OEM_7', + '<': 'VK_OEM_COMMA', + '>': 'VK_OEM_PERIOD', + ',': 'VK_OEM_COMMA', + '.': 'VK_OEM_PERIOD', + '?': 'VK_OEM_2', + }; + function replaceUsingMap(input) { + return map[input] || input; // 如果找到映射,返回对应的值;否则返回原值 + } + setGameMetrics(1920, 1080, 2); + await sleep(3000); + //同意用户协议 + click(698, 610); + await sleep(1000); + //点击用户名输入框 + click(800, 400); + await sleep(1000); + //输入用户名 + log.info("输入用户名"); + let username = settings.username; + let usernameList = username.split(''); + usernameList.forEach(element => { + charCode = element.charCodeAt(0); + let arr = [40,41,33,64,35,36,37,94,38,42,95,43,124,123,125,58,34,60,62,63]; + if(charCode > 64 && charCode < 91 || arr.includes(charCode)==1){ + element=replaceUsingMap(element); + keyDown("SHIFT"); + keyPress(element); + keyUp("SHIFT"); + }else{ + element=replaceUsingMap(element); + keyPress(element); + } + }); + log.info("用户名={xx}",username) + await sleep(3000); + //点击用户名输入框 + click(800, 500); + await sleep(1000); + //输入密码 + log.info("输入密码") + let password = settings.password; + let passwordList = password.split(''); + passwordList.forEach(element => { + charCode = element.charCodeAt(0); + let arr = [40,41,33,64,35,36,37,94,38,42,95,43,124,123,125,58,34,60,62,63]; + if(charCode > 64 && charCode < 91 || arr.includes(charCode)==1){ + element=replaceUsingMap(element); + keyDown("SHIFT"); + keyPress(element); + keyUp("SHIFT"); + }else{ + element=replaceUsingMap(element); + keyPress(element); + } + }); + log.info("密码={xx}",password); + await sleep(1000); + //登录 + keyPress("RETURN"); + await sleep(10000); + //进入世界 + click(950, 1000); + log.info("进入世界"); + await sleep(10000); + //进入世界2 + click(950, 1000); + log.info("进入世界2"); + await sleep(10000); + //点击领月卡 + click(950, 1000); + log.info("点击领月卡"); + await sleep(1000); + //点击领月卡2 + click(950, 1000); + log.info("点击领月卡2"); + await sleep(1000); + //点击领月卡2 + click(950, 1000); + log.info("点击领月卡3"); + await sleep(1000); +})(); \ No newline at end of file diff --git a/repo/js/Login/manifest.json b/repo/js/Login/manifest.json new file mode 100644 index 00000000..13665b8e --- /dev/null +++ b/repo/js/Login/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/Login/settings.json b/repo/js/Login/settings.json new file mode 100644 index 00000000..18f0822e --- /dev/null +++ b/repo/js/Login/settings.json @@ -0,0 +1,12 @@ +[ + { + "name": "username", + "type": "input-text", + "label": "账号" + }, + { + "name": "password", + "type": "input-text", + "label": "密码" + } +] diff --git a/repo/js/Logout/main.js b/repo/js/Logout/main.js new file mode 100644 index 00000000..39e41483 --- /dev/null +++ b/repo/js/Logout/main.js @@ -0,0 +1,18 @@ +(async function () { + setGameMetrics(1920, 1080, 2); + await sleep(1000); + keyPress("ESCAPE") + await sleep(1000); + click(50, 1030); + log.info("退出"); + await sleep(1000); + click(1000, 750); + log.info("确认"); + await sleep(20000); + click(1800, 1000); + log.info("切换账号"); + await sleep(1000); + click(1000, 550); + log.info("确认"); + await sleep(4000); +})(); \ No newline at end of file diff --git a/repo/js/Logout/manifest.json b/repo/js/Logout/manifest.json new file mode 100644 index 00000000..3ca1e23e --- /dev/null +++ b/repo/js/Logout/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "退出并重登", + "version": "1.0", + "description": "退出游戏并退出账号", + "authors": [ + { + "name": "愚溪", + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/MeetKatheryne/main.js b/repo/js/MeetKatheryne/main.js new file mode 100644 index 00000000..70490d2a --- /dev/null +++ b/repo/js/MeetKatheryne/main.js @@ -0,0 +1,16 @@ +(async function () { + setGameMetrics(1920, 1080, 2); + // 传送到枫丹冒险家公会附近传送点 + await genshin.tp(4514.18, 3630.4); + keyDown("w"); + await sleep(1750); + keyUp("w"); + keyDown("a"); + await sleep(1330); + keyUp("a"); + keyDown("w"); + await sleep(1200); + keyUp("w"); + + log.info("已到达凯瑟琳旁"); +})(); \ No newline at end of file diff --git a/repo/js/MeetKatheryne/manifest.json b/repo/js/MeetKatheryne/manifest.json new file mode 100644 index 00000000..3ae2bc99 --- /dev/null +++ b/repo/js/MeetKatheryne/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "传送到凯瑟琳", + "version": "1.1", + "description": "传送到枫丹凯瑟琳旁边,可搭配领取每日奖励或重新派遣", + "authors": [ + { + "name": "Lix", + "link": "https://github.com/iclae" + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/PathingBenchmark/assets/Benchmark/传送速度测试.json b/repo/js/PathingBenchmark/assets/Benchmark/传送速度测试.json new file mode 100644 index 00000000..315bf3b3 --- /dev/null +++ b/repo/js/PathingBenchmark/assets/Benchmark/传送速度测试.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "传送速度测试", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1629.36328125, + "y": 2834.419921875 + }, + { + "id": 9, + "x": -321.7978515625, + "y": 1473.583984375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1999.125, + "y": 1434.90380859375, + "type": "teleport", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/PathingBenchmark/assets/Benchmark/寻路速度测试.json b/repo/js/PathingBenchmark/assets/Benchmark/寻路速度测试.json new file mode 100644 index 00000000..2cb7f44e --- /dev/null +++ b/repo/js/PathingBenchmark/assets/Benchmark/寻路速度测试.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "寻路速度测试", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1999.0830078125, + "y": 1434.9326171875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -2070.6396484375, + "y": 1413.53515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -2143.72265625, + "y": 1485.27880859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -2140.0869140625, + "y": 1547.9375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": -2065.7763671875, + "y": 1586.3212890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -2021.23046875, + "y": 1536.51171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -1995.1162109375, + "y": 1483.43212890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -2002.0029296875, + "y": 1442.0478515625, + "action": "", + "move_mode": "run", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/js/PathingBenchmark/assets/Benchmark/抗打断测试.json b/repo/js/PathingBenchmark/assets/Benchmark/抗打断测试.json new file mode 100644 index 00000000..564b67eb --- /dev/null +++ b/repo/js/PathingBenchmark/assets/Benchmark/抗打断测试.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "抗打断测试", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 4, + "x": -1273.7822265625, + "y": 2721.7109375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1275.470703125, + "y": 2754.51025390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": -1289.6181640625, + "y": 2780.678955078125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1276.720703125, + "y": 2784.83203125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": -1225.1103515625, + "y": 2792.60009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1219.517578125, + "y": 2788.16259765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": -1208.072265625, + "y": 2776.15966796875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1187.6162109375, + "y": 2752.934326171875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": -1173.4970703125, + "y": 2741.677978515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -1180.5546875, + "y": 2738.550537109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 14, + "x": -1172.67578125, + "y": 2714.897705078125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/PathingBenchmark/assets/Benchmark/攀爬速度测试.json b/repo/js/PathingBenchmark/assets/Benchmark/攀爬速度测试.json new file mode 100644 index 00000000..719d5d40 --- /dev/null +++ b/repo/js/PathingBenchmark/assets/Benchmark/攀爬速度测试.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "攀爬速度测试", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1629.373046875, + "y": 2834.40283203125 + }, + { + "id": 2, + "x": -1611.1640625, + "y": 2823.08056640625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 3, + "x": -1602.9296875, + "y": 2819.64990234375, + "type": "path", + "move_mode": "climb", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/PathingBenchmark/assets/Benchmark/游泳速度测试.json b/repo/js/PathingBenchmark/assets/Benchmark/游泳速度测试.json new file mode 100644 index 00000000..9106dac9 --- /dev/null +++ b/repo/js/PathingBenchmark/assets/Benchmark/游泳速度测试.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "游泳速度测试", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1120.90234375, + "y": 2190.519287109375 + }, + { + "id": 2, + "x": -1078.2978515625, + "y": 2216.023681640625, + "type": "path", + "move_mode": "swim", + "action": "" + }, + { + "id": 3, + "x": -979.3251953125, + "y": 2283.71728515625, + "type": "path", + "move_mode": "swim", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/js/PathingBenchmark/assets/Benchmark/飞行速度测试.json b/repo/js/PathingBenchmark/assets/Benchmark/飞行速度测试.json new file mode 100644 index 00000000..10dc8b4f --- /dev/null +++ b/repo/js/PathingBenchmark/assets/Benchmark/飞行速度测试.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "飞行速度测试", + "type": "collect", + "author": "HZYgrandma", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1536.8916015625, + "y": 1978.646484375 + }, + { + "id": 2, + "x": -1479.0283203125, + "y": 1869.71875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": -1476.4248046875, + "y": 1864.8203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + } + ] +} \ No newline at end of file diff --git a/repo/js/PathingBenchmark/main.js b/repo/js/PathingBenchmark/main.js new file mode 100644 index 00000000..fb5f94bc --- /dev/null +++ b/repo/js/PathingBenchmark/main.js @@ -0,0 +1,56 @@ +(async function () { + dispatcher.addTimer(new RealtimeTimer("AutoPick")); + + async function AutoPath(locationName) { + let filePath = `assets/Benchmark/${locationName}.json`; + await pathingScript.runFile(filePath); + await sleep(1000); + } + + function logScore(startTime, testName) { + const endTime = Date.now(); + const timeTaken = (endTime - startTime) / 1000; + const presetTimes = { + '传送速度测试': 4500, + '飞行速度测试': 3000, + '游泳速度测试': 6000, + '攀爬速度测试': 7000, + '寻路速度测试': 12000, + '抗打断测试': 9000 + }; + const score = presetTimes[testName] / timeTaken; + log.info(`完成 ${testName} ,得分 ${score.toFixed(2)}`); + return score; + } + + async function runTest(testName, weight) { + const startTime = Date.now(); + log.info('进行 {name}', testName); + await AutoPath(testName); + const score = await logScore(startTime, testName); + scores.push({ name: testName, score, weight }); + } + + const weights = { + '传送速度测试': 0.1, + '飞行速度测试': 0.1, + '游泳速度测试': 0.1, + '攀爬速度测试': 0.1, + '抗打断测试': 0.1, + '寻路速度测试': 0.5 + }; + + const scores = []; + + await runTest('传送速度测试', weights['传送速度测试']); + await runTest('飞行速度测试', weights['飞行速度测试']); + await runTest('游泳速度测试', weights['游泳速度测试']); + await runTest('攀爬速度测试', weights['攀爬速度测试']); + await runTest('寻路速度测试', weights['寻路速度测试']); + await runTest('抗打断测试', weights['抗打断测试']); + + // 计算加权总得分 + const totalWeightedScore = scores.reduce((sum, item) => sum + item.score * item.weight, 0); + log.info(`加权总得分:${totalWeightedScore.toFixed(2)}`); + keyPress("m"); +})(); \ No newline at end of file diff --git a/repo/js/PathingBenchmark/manifest.json b/repo/js/PathingBenchmark/manifest.json new file mode 100644 index 00000000..b35e6e90 --- /dev/null +++ b/repo/js/PathingBenchmark/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/SereniteaPot/main.js b/repo/js/SereniteaPot/main.js new file mode 100644 index 00000000..5ddf21a5 --- /dev/null +++ b/repo/js/SereniteaPot/main.js @@ -0,0 +1,75 @@ +(async function () { + setGameMetrics(1920, 1080, 2); + // 来自于界面配置 + let sereniteaPotType = settings.sereniteaPot; + log.info('快捷道具栏需装满4个,确保尘歌壶在第5位'); + setGameMetrics(1920, 1080, 2); + await sleep(1000); + keyPress("B"); //打开背包 + await sleep(1000); + click(1058, 48); //小道具 + await sleep(500); + click(765, 190); //背包第5位(诚哥壶) + await sleep(500); + click(1700, 1018); //放置 + await sleep(1000); + keyPress("F"); //进入诚哥壶 + await sleep(10000); + + if (sereniteaPotType == "璃月绿顶建筑"){ + log.info("璃月绿顶建筑"); + keyDown("D"); + await sleep(500); + keyUp("D"); + await sleep(500); + }else if(sereniteaPotType == "蒙德红顶建筑"){ + log.info("蒙德红顶建筑"); + keyDown("A"); + await sleep(1200); + keyUp("A"); + await sleep(500); + }else if(sereniteaPotType == "稻妻蓝顶建筑"){ + log.info("稻妻蓝顶建筑"); + keyDown("A"); + await sleep(1700); + keyUp("A"); + await sleep(500); + keyDown("S"); + await sleep(1700); + keyUp("S"); + await sleep(500); + }else if(sereniteaPotType == "须弥绿色建筑"){ + log.info("须弥绿色建筑"); + keyDown("D"); + await sleep(1300); + keyUp("D"); + await sleep(500); + }else if(sereniteaPotType == "枫丹白色建筑"){ + log.info("枫丹白色建筑"); + keyDown("S"); + await sleep(1300); + keyUp("S"); + await sleep(500); + keyDown("A"); + await sleep(500); + keyUp("A"); + await sleep(500); + }else{ + } + keyPress("F"); //阿圆对话 + await sleep(2000); + click(1081, 955); //跳过对话 + await sleep(2000); + click(1383, 430); //信任等阶 + await sleep(2000); + click(1081, 955); //宝钱 + await sleep(2000); + click(1812, 716); //好感度 + await sleep(2000); + click(1863, 48);; //返回 + await sleep(5000); + click(1356, 804); //再见1 + await sleep(2000); + click(1356, 804); //再见2 + await sleep(1000); +})(); \ No newline at end of file diff --git a/repo/js/SereniteaPot/manifest.json b/repo/js/SereniteaPot/manifest.json new file mode 100644 index 00000000..f791db23 --- /dev/null +++ b/repo/js/SereniteaPot/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "尘歌壶", + "version": "1.2", + "description": "自动领诚哥壶奖励", + "authors": [ + { + "name": "愚溪", + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/SereniteaPot/readme.txt b/repo/js/SereniteaPot/readme.txt new file mode 100644 index 00000000..768e5ceb --- /dev/null +++ b/repo/js/SereniteaPot/readme.txt @@ -0,0 +1,14 @@ +1、使用前将JS脚本添加到调度器,右键修改JS脚本自定义配置,选择宅邸的建筑类型 + +根据请根据宅邸类型选择自定义配置 +罗浮洞、翠黛峰 默认使用“默认宅邸类型.png”左2的宅邸,即璃月绿顶建筑; +清琼岛 默认使用“默认宅邸类型.png”左1的宅邸,即蒙德红顶建筑; +绘绮庭 默认使用“默认宅邸类型.png”左3的宅邸,即稻妻蓝顶建筑; +妙香林 默认使用“默认宅邸类型.png”左4的宅邸,即须弥绿色建筑; +旋流屿 默认使用“默认宅邸类型.png”左5的宅邸,即枫丹白色建筑; + +2、确保4个快捷道具都装备上了 +3、请在平坦区域运行此脚本 + +V1.1修复了自定义选项与实际不匹配的BUG +V1.2完善了自定义选项,使之更符合使用习惯 \ No newline at end of file diff --git a/repo/js/SereniteaPot/settings.json b/repo/js/SereniteaPot/settings.json new file mode 100644 index 00000000..f2847b8d --- /dev/null +++ b/repo/js/SereniteaPot/settings.json @@ -0,0 +1,14 @@ +[ + { + "name": "sereniteaPot", + "type": "select", + "label": "宅邸类型", + "options": [ + "蒙德红顶建筑", + "璃月绿顶建筑", + "稻妻蓝顶建筑", + "须弥绿色建筑", + "枫丹白色建筑" + ] + } +] \ No newline at end of file diff --git a/repo/js/SereniteaPot/默认宅邸类型.png b/repo/js/SereniteaPot/默认宅邸类型.png new file mode 100644 index 00000000..4a9c856e Binary files /dev/null and b/repo/js/SereniteaPot/默认宅邸类型.png differ diff --git a/repo/js/SetMapZoom/main.js b/repo/js/SetMapZoom/main.js new file mode 100644 index 00000000..10e92502 --- /dev/null +++ b/repo/js/SetMapZoom/main.js @@ -0,0 +1,50 @@ +(async function () { + setGameMetrics(1920, 1080, 2); + const stepDuration = 50; + + const commonX = 49; + const ZoomInButton = 428; + const ZoomOutButton = 654; + const start = 453; + const end = 628; + + async function mouseClickNTimes(x, y,n) { + moveMouseTo(x, y); + await sleep(100); + for (let i =0; i < n; i++) { + leftButtonDown(); + await sleep(50); + leftButtonUp(); + await sleep(50); + } + await sleep(stepDuration); + } + async function mouseClickAndMove(x1, y1, x2, y2) { + moveMouseTo(x1, y1); + await sleep(50); + leftButtonDown(); + await sleep(50); + moveMouseTo(x2, y2); + await sleep(50); + leftButtonUp(); + await sleep(stepDuration); + } + async function setMapZoom(n) { + await mouseClickNTimes(commonX, ZoomOutButton, 5); + if (Number.isInteger(n)) { + mouseClickNTimes(commonX, ZoomInButton, 5 - n); + } else { + const targetY = Math.ceil(start + n * 35 - 0.5); + await mouseClickAndMove(commonX, end, commonX, targetY); + } + } + const zoom = Number(settings.zoom); + const n = Math.min(Math.max(zoom, 1),6)- 1; + log.info(`设置大地图缩放为 ${n+1}`); + await keyPress("M"); + await sleep(1000); + await setMapZoom(n); + await sleep(1000); + await keyPress("Escape"); + await sleep(1000); +})(); \ No newline at end of file diff --git a/repo/js/SetMapZoom/manifest.json b/repo/js/SetMapZoom/manifest.json new file mode 100644 index 00000000..deba3a79 --- /dev/null +++ b/repo/js/SetMapZoom/manifest.json @@ -0,0 +1,14 @@ +{ + "manifest_version": 1, + "name": "设置大地图缩放", + "version": "1.0", + "bgi_version": "0.36.0", + "description": "通过左侧缩放条调整大地图缩放,1为最大放大,6为最小,3.5为中间", + "authors": [ + { + "name": "Tim" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} diff --git a/repo/js/SetMapZoom/settings.json b/repo/js/SetMapZoom/settings.json new file mode 100644 index 00000000..75bee750 --- /dev/null +++ b/repo/js/SetMapZoom/settings.json @@ -0,0 +1,7 @@ +[ + { + "name": "zoom", + "type": "input-text", + "label": "缩放,范围是1~6,1表示最大放大,3.5表示中间" + } +] \ No newline at end of file diff --git a/repo/js/SetTime/main.js b/repo/js/SetTime/main.js new file mode 100644 index 00000000..b4d0af0f --- /dev/null +++ b/repo/js/SetTime/main.js @@ -0,0 +1,70 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + //拖动鼠标 + async function moveMouseSmoothly(x1, y1, x2, y2) { + const deltaX = x2 - x1; + const deltaY = y2 - y1; + const steps = Math.max(Math.abs(deltaX), Math.abs(deltaY)); + const stepX = deltaX / steps; + const stepY = deltaY / steps; + await moveMouseTo(x1, y1); + await leftButtonDown(); + for (let i = 1; i <= steps; i++) { + const newX = x1 + stepX * i; + const newY = y1 + stepY * i; + const validX = Math.round(newX); + const validY = Math.round(newY); + await moveMouseTo(validX, validY); + await sleep(10); + } + await leftButtonUp(); + } + //设定时间 + async function settime(time) { + const centerX = 1441; + const centerY = 501; + const radius = 100; + let angle; + angle = (90 + time * 15) % 360; + angle = angle >= 0 ? angle : 360 + angle; + const angle1 = (angle + 90) % 360; + const angle2 = (angle + 180) % 360; + const angle3 = (angle + 270) % 360; + const radians = angle * (Math.PI / 180); + const radians1 = angle1 * (Math.PI / 180); + const radians2 = angle2 * (Math.PI / 180); + const radians3 = angle3 * (Math.PI / 180); + const x = centerX + radius * Math.cos(radians); + const y = centerY + radius * Math.sin(radians); + const x1 = centerX + radius * Math.cos(radians1); + const y1 = centerY + radius * Math.sin(radians1); + const x2 = centerX + radius * Math.cos(radians2); + const y2 = centerY + radius * Math.sin(radians2); + const x3 = centerX + radius * Math.cos(radians3); + const y3 = centerY + radius * Math.sin(radians3); + + // 输出最终的坐标 + await sleep(2000); + await moveMouseSmoothly(centerX,centerY, x1,y1); + await sleep(2000); + await moveMouseSmoothly(centerX,centerY, x2,y2); + await sleep(2000); + await moveMouseSmoothly(centerX,centerY, x3,y3); + await sleep(2000); + await moveMouseSmoothly(centerX,centerY, x,y); + } + //设置时间 + log.info('设置时间到{xy}点',settings.time); + await keyPress("Escape"); + await sleep(1000); + await click(50,700); + await sleep(2000); + await settime(settings.time) + await sleep(3000); + await click(1500,1000);//确认 + await sleep(20000); + await keyPress("Escape"); + await sleep(2000); + await keyPress("Escape"); + await sleep(2000); +})(); \ No newline at end of file diff --git a/repo/js/SetTime/manifest.json b/repo/js/SetTime/manifest.json new file mode 100644 index 00000000..95a47bdb --- /dev/null +++ b/repo/js/SetTime/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/SetTime/settings.json b/repo/js/SetTime/settings.json new file mode 100644 index 00000000..554d13cd --- /dev/null +++ b/repo/js/SetTime/settings.json @@ -0,0 +1,7 @@ +[ + { + "name": "time", + "type": "input-text", + "label": "输入时间 [0-24] " + } +] \ No newline at end of file diff --git a/repo/js/SetTimeMinute/main.js b/repo/js/SetTimeMinute/main.js new file mode 100644 index 00000000..650fbf71 --- /dev/null +++ b/repo/js/SetTimeMinute/main.js @@ -0,0 +1,64 @@ +(async function () { + // 设置游戏分辨率和DPI缩放 + setGameMetrics(1920, 1080, 1); + // 圆心坐标 + const centerX = 1441; + const centerY = 501.6; + // 半径 + const r1 = 30; + const r2 = 150; + const r3 = 300; + const stepDuration = 50; + + function getPosition(r, index) { + let angle = index * Math.PI / 720; + return [Math.round(centerX + r * Math.cos(angle)), Math.round(centerY + r * Math.sin(angle))]; + } + async function mouseClick(x, y) { + moveMouseTo(x, y); + await sleep(50); + leftButtonDown(); + await sleep(50); + leftButtonUp(); + await sleep(stepDuration); + } + async function mouseClickAndMove(x1, y1, x2, y2) { + moveMouseTo(x1, y1); + await sleep(50); + leftButtonDown(); + await sleep(50); + moveMouseTo(x2, y2); + await sleep(50); + leftButtonUp(); + await sleep(stepDuration); + } + async function setTime(hour, minute) { + const end = (hour + 6) * 60 + minute-20; + const n = 3; + for (let i = - n + 1; i < 1; i++) { + let [x,y] = getPosition(r1, end + i * 1440 / n); + await mouseClick(x, y); + } + let [x1,y1] = getPosition(r2, end + 5); + let [x2, y2] = getPosition(r3, end + 20 + 0.5); + await mouseClickAndMove(x1, y1, x2, y2); + } + const hour = Number(settings.hour); + const minute = Number(settings.minute); + let h = Math.floor(hour+minute/60); + const m = Math.floor(hour*60+minute)-h*60; + h = ((h % 24) + 24) % 24; + log.info(`设置时间到 ${h} 点 ${m} 分`); + await keyPress("Escape"); + await sleep(1000); + await click(50,700); + await sleep(2000); + await setTime(h, m); + await sleep(1000); + await click(1500,1000);//确认 + await sleep(18000); + await keyPress("Escape"); + await sleep(2000); + await keyPress("Escape"); + await sleep(2000); +})(); \ No newline at end of file diff --git a/repo/js/SetTimeMinute/manifest.json b/repo/js/SetTimeMinute/manifest.json new file mode 100644 index 00000000..1698da8d --- /dev/null +++ b/repo/js/SetTimeMinute/manifest.json @@ -0,0 +1,14 @@ +{ + "manifest_version": 1, + "name": "精确调整游戏时间到分钟", + "version": "1.0", + "bgi_version": "0.36.0", + "description": "用于调整游戏时间,精确到分钟,请在调度器中使用", + "authors": [ + { + "name": "Tim" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} diff --git a/repo/js/SetTimeMinute/settings.json b/repo/js/SetTimeMinute/settings.json new file mode 100644 index 00000000..6e214bbb --- /dev/null +++ b/repo/js/SetTimeMinute/settings.json @@ -0,0 +1,12 @@ +[ + { + "name": "hour", + "type": "input-text", + "label": "输入小时(0-24)" + }, + { + "name": "minute", + "type": "input-text", + "label": "输入分钟(0-60)" + } +] \ No newline at end of file diff --git a/repo/js/Switch roles/main.js b/repo/js/Switch roles/main.js new file mode 100644 index 00000000..ef88e97a --- /dev/null +++ b/repo/js/Switch roles/main.js @@ -0,0 +1,8 @@ +(async function () { + setGameMetrics(3840, 2160, 2); + + keyPress(settings.n); + await sleep(1000); + + log.info("已切换至角色"+ settings.n); +})(); \ No newline at end of file diff --git a/repo/js/Switch roles/manifest.json b/repo/js/Switch roles/manifest.json new file mode 100644 index 00000000..17382db4 --- /dev/null +++ b/repo/js/Switch roles/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "切换角色", + "version": "1.0", + "description": "用于切换角色", + "authors": [ + { + "name": "LL" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/Switch roles/settings.json b/repo/js/Switch roles/settings.json new file mode 100644 index 00000000..d90dc8c7 --- /dev/null +++ b/repo/js/Switch roles/settings.json @@ -0,0 +1,14 @@ +[ + { + "name": "n", + "type": "select", + "label": "角色序号", + "options": [ + "1", + "2", + "3", + "4", + "5" + ] + } +] \ No newline at end of file diff --git a/repo/js/Switch teams/assets/Team.json b/repo/js/Switch teams/assets/Team.json new file mode 100644 index 00000000..0261c9c0 --- /dev/null +++ b/repo/js/Switch teams/assets/Team.json @@ -0,0 +1,10 @@ +{"macroEvents":[{"type":4,"mouseX":1000,"mouseY":800,"mouseButton":"Left","time":100}, +{"type":2,"mouseX":1000,"mouseY":900,"time":150}, +{"type":2,"mouseX":1000,"mouseY":1000,"time":200}, +{"type":2,"mouseX":1000,"mouseY":1100,"time":250}, +{"type":2,"mouseX":1000,"mouseY":1200,"time":300}, +{"type":2,"mouseX":1000,"mouseY":1300,"time":350}, +{"type":2,"mouseX":1000,"mouseY":1400,"time":400}, +{"type":2,"mouseX":1000,"mouseY":1500,"time":450}, +{"type":5,"mouseX":1000,"mouseY":1500,"mouseButton":"Left","time":500}], +"info":{"name":"","description":"","x":746,"y":620,"width":1920,"height":1080,"recordDpi":1.75}} \ No newline at end of file diff --git a/repo/js/Switch teams/main.js b/repo/js/Switch teams/main.js new file mode 100644 index 00000000..4196dd16 --- /dev/null +++ b/repo/js/Switch teams/main.js @@ -0,0 +1,29 @@ +(async function () { + setGameMetrics(3840, 2160, 2); + keyPress("L"); + await sleep(4500); + click(100, 2050); + await sleep(800); + + for(let i = 0; i < 3; i++){ + await keyMouseScript.runFile(`assets/Team.json`); + await sleep(800); + } + + click(100, 300); + await sleep(800); + click(100, 2050); + await sleep(800); + + for(let i = 1; i < settings.n; i++){ + click(3684, 1078); + await sleep(800); + } + + click(3200, 2050); + await sleep(1000); + keyPress("Escape"); + await sleep(1000); + + log.info("已切换至第"+ settings.n +"队"); +})(); \ No newline at end of file diff --git a/repo/js/Switch teams/manifest.json b/repo/js/Switch teams/manifest.json new file mode 100644 index 00000000..e8c51f42 --- /dev/null +++ b/repo/js/Switch teams/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "切换队伍", + "version": "1.0", + "description": "按顺序切换至队伍", + "authors": [ + { + "name": "LL" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/Switch teams/settings.json b/repo/js/Switch teams/settings.json new file mode 100644 index 00000000..291c82e7 --- /dev/null +++ b/repo/js/Switch teams/settings.json @@ -0,0 +1,7 @@ +[ + { + "name": "n", + "type": "input-text", + "label": "队伍序号" + } +] \ No newline at end of file diff --git a/repo/js/TheTable/main.js b/repo/js/TheTable/main.js new file mode 100644 index 00000000..a7ff8e3a --- /dev/null +++ b/repo/js/TheTable/main.js @@ -0,0 +1,16 @@ +(async function () { + setGameMetrics(1920, 1080, 2); + // 传送到枫丹冒险家公会附近传送点 + await genshin.tp(4514.18, 3630.4); + keyDown("w"); + await sleep(4500); + keyUp("w"); + keyDown("d"); + await sleep(500); + keyUp("d"); + keyDown("w"); + await sleep(1450); + keyUp("w"); + + log.info("已到达合成台旁"); +})(); \ No newline at end of file diff --git a/repo/js/TheTable/manifest.json b/repo/js/TheTable/manifest.json new file mode 100644 index 00000000..cba9ca8f --- /dev/null +++ b/repo/js/TheTable/manifest.json @@ -0,0 +1,13 @@ +{ + "manifest_version": 1, + "name": "传送到合成台", + "version": "1.1", + "description": "传送到枫丹合成台旁边,可搭配合成浓缩树脂", + "authors": [ + { + "name": "Lix", + "link": "https://github.com/iclae" + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/Wait 10min/main.js b/repo/js/Wait 10s/main.js similarity index 100% rename from repo/js/Wait 10min/main.js rename to repo/js/Wait 10s/main.js diff --git a/repo/js/Wait 10min/manifest.json b/repo/js/Wait 10s/manifest.json similarity index 100% rename from repo/js/Wait 10min/manifest.json rename to repo/js/Wait 10s/manifest.json diff --git a/repo/js/切换1号角色/main.js b/repo/js/切换1号角色/main.js new file mode 100644 index 00000000..2ac46c60 --- /dev/null +++ b/repo/js/切换1号角色/main.js @@ -0,0 +1,6 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + keyPress("1"); + + log.info("已切换1号角色"); +})(); \ No newline at end of file diff --git a/repo/js/切换1号角色/manifest.json b/repo/js/切换1号角色/manifest.json new file mode 100644 index 00000000..40d4e418 --- /dev/null +++ b/repo/js/切换1号角色/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "切换1号角色", + "version": "1.0", + "description": "用于切换1号角色", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/切换2号角色/main.js b/repo/js/切换2号角色/main.js new file mode 100644 index 00000000..0c70f1d9 --- /dev/null +++ b/repo/js/切换2号角色/main.js @@ -0,0 +1,6 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + keyPress("2"); + + log.info("已切换2号角色"); +})(); \ No newline at end of file diff --git a/repo/js/切换2号角色/manifest.json b/repo/js/切换2号角色/manifest.json new file mode 100644 index 00000000..f46aa8a3 --- /dev/null +++ b/repo/js/切换2号角色/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "切换2号角色", + "version": "1.0", + "description": "用于切换2号角色", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/切换3号角色/main.js b/repo/js/切换3号角色/main.js new file mode 100644 index 00000000..01b3f30e --- /dev/null +++ b/repo/js/切换3号角色/main.js @@ -0,0 +1,6 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + keyPress("3"); + + log.info("已切换3号角色"); +})(); \ No newline at end of file diff --git a/repo/js/切换3号角色/manifest.json b/repo/js/切换3号角色/manifest.json new file mode 100644 index 00000000..30a6f371 --- /dev/null +++ b/repo/js/切换3号角色/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "切换3号角色", + "version": "1.0", + "description": "用于切换3号角色", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/切换4号角色/main.js b/repo/js/切换4号角色/main.js new file mode 100644 index 00000000..4e6dfed8 --- /dev/null +++ b/repo/js/切换4号角色/main.js @@ -0,0 +1,6 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + keyPress("4"); + + log.info("已切换4号角色"); +})(); \ No newline at end of file diff --git a/repo/js/切换4号角色/manifest.json b/repo/js/切换4号角色/manifest.json new file mode 100644 index 00000000..0b4e1646 --- /dev/null +++ b/repo/js/切换4号角色/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "切换4号角色", + "version": "1.0", + "description": "用于切换4号角色", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/向前行走5秒/main.js b/repo/js/向前行走5秒/main.js new file mode 100644 index 00000000..9b98576e --- /dev/null +++ b/repo/js/向前行走5秒/main.js @@ -0,0 +1,9 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + // 向前走5s +keyDown("w"); +await sleep(5000); +keyUp("w"); + + log.info("已进入向前走5s"); +})(); \ No newline at end of file diff --git a/repo/js/向前行走5秒/manifest.json b/repo/js/向前行走5秒/manifest.json new file mode 100644 index 00000000..cd8f445b --- /dev/null +++ b/repo/js/向前行走5秒/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "向前行走5秒,搭配进尘歌壶脚本并在入口处放合成台,可以自动走到到合成台", + "version": "1.0", + "description": "用于向前走5秒", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/向右行走5秒/main.js b/repo/js/向右行走5秒/main.js new file mode 100644 index 00000000..8c10408a --- /dev/null +++ b/repo/js/向右行走5秒/main.js @@ -0,0 +1,9 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + // 向右走5s +keyDown("D"); +await sleep(5000); +keyUp("D"); + + log.info("已进入向右走5s"); +})(); \ No newline at end of file diff --git a/repo/js/向右行走5秒/manifest.json b/repo/js/向右行走5秒/manifest.json new file mode 100644 index 00000000..120b4a6c --- /dev/null +++ b/repo/js/向右行走5秒/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "向右行走5秒", + "version": "1.0", + "description": "向右行走5秒", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/向后行走5秒/main.js b/repo/js/向后行走5秒/main.js new file mode 100644 index 00000000..08e6f489 --- /dev/null +++ b/repo/js/向后行走5秒/main.js @@ -0,0 +1,9 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + // 向后走5s +keyDown("S"); +await sleep(5000); +keyUp("S"); + + log.info("已进入向后走5s"); +})(); \ No newline at end of file diff --git a/repo/js/向后行走5秒/manifest.json b/repo/js/向后行走5秒/manifest.json new file mode 100644 index 00000000..d0529acd --- /dev/null +++ b/repo/js/向后行走5秒/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "向后行走5秒", + "version": "1.0", + "description": "向后行走5秒", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/向左行走5秒/main.js b/repo/js/向左行走5秒/main.js new file mode 100644 index 00000000..1c782e46 --- /dev/null +++ b/repo/js/向左行走5秒/main.js @@ -0,0 +1,9 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + // 向左走5s +keyDown("A"); +await sleep(5000); +keyUp("A"); + + log.info("已进入向右左走5s"); +})(); \ No newline at end of file diff --git a/repo/js/向左行走5秒/manifest.json b/repo/js/向左行走5秒/manifest.json new file mode 100644 index 00000000..2ea95797 --- /dev/null +++ b/repo/js/向左行走5秒/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "向左行走5秒", + "version": "1.0", + "description": "向左行走5秒", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/尘歌壶妙香林找阿圆/main.js b/repo/js/尘歌壶妙香林找阿圆/main.js new file mode 100644 index 00000000..979f4521 --- /dev/null +++ b/repo/js/尘歌壶妙香林找阿圆/main.js @@ -0,0 +1,9 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + // 向右走1.5s +keyDown("D"); +await sleep(1500); +keyUp("D"); + + log.info("已进入向左走1.5s"); +})(); \ No newline at end of file diff --git a/repo/js/尘歌壶妙香林找阿圆/manifest.json b/repo/js/尘歌壶妙香林找阿圆/manifest.json new file mode 100644 index 00000000..a7dd7415 --- /dev/null +++ b/repo/js/尘歌壶妙香林找阿圆/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "向右行走1.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值(这个成男角色容易掉下去比如那维莱特)", + "version": "1.0", + "description": "向右行走1.5秒", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/尘歌壶清琼岛找阿圆/main.js b/repo/js/尘歌壶清琼岛找阿圆/main.js new file mode 100644 index 00000000..0f996e8e --- /dev/null +++ b/repo/js/尘歌壶清琼岛找阿圆/main.js @@ -0,0 +1,9 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + // 向左走1.5s +keyDown("A"); +await sleep(1500); +keyUp("A"); + + log.info("已进入向左走1.5s"); +})(); \ No newline at end of file diff --git a/repo/js/尘歌壶清琼岛找阿圆/manifest.json b/repo/js/尘歌壶清琼岛找阿圆/manifest.json new file mode 100644 index 00000000..e83d6ce4 --- /dev/null +++ b/repo/js/尘歌壶清琼岛找阿圆/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "向左行走1.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值", + "version": "1.0", + "description": "向左行走1.5秒", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/尘歌壶罗浮洞找阿圆/main.js b/repo/js/尘歌壶罗浮洞找阿圆/main.js new file mode 100644 index 00000000..8a5adfbf --- /dev/null +++ b/repo/js/尘歌壶罗浮洞找阿圆/main.js @@ -0,0 +1,9 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + // 向右走0.5s +keyDown("D"); +await sleep(500); +keyUp("D"); + + log.info("已进入向左走0.5s"); +})(); \ No newline at end of file diff --git a/repo/js/尘歌壶罗浮洞找阿圆/manifest.json b/repo/js/尘歌壶罗浮洞找阿圆/manifest.json new file mode 100644 index 00000000..c11d1be8 --- /dev/null +++ b/repo/js/尘歌壶罗浮洞找阿圆/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "向右行走0.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值", + "version": "1.0", + "description": "向右行走0.5秒", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/尘歌壶翠黛峰找阿圆/main.js b/repo/js/尘歌壶翠黛峰找阿圆/main.js new file mode 100644 index 00000000..8a5adfbf --- /dev/null +++ b/repo/js/尘歌壶翠黛峰找阿圆/main.js @@ -0,0 +1,9 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + // 向右走0.5s +keyDown("D"); +await sleep(500); +keyUp("D"); + + log.info("已进入向左走0.5s"); +})(); \ No newline at end of file diff --git a/repo/js/尘歌壶翠黛峰找阿圆/manifest.json b/repo/js/尘歌壶翠黛峰找阿圆/manifest.json new file mode 100644 index 00000000..c11d1be8 --- /dev/null +++ b/repo/js/尘歌壶翠黛峰找阿圆/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "向右行走0.5秒,搭配进入尘歌壶可以到阿圆那领取洞天宝钱和好感值", + "version": "1.0", + "description": "向右行走0.5秒", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/稻妻合成台/assets/稻妻合成台.json b/repo/js/稻妻合成台/assets/稻妻合成台.json new file mode 100644 index 00000000..12137a5a --- /dev/null +++ b/repo/js/稻妻合成台/assets/稻妻合成台.json @@ -0,0 +1 @@ +{"macroEvents":[{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":2872.7932},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":3033.6332},{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":5712.8365},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":5865.0953},{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":8326.4029},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":8448.9096},{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":10592.6555},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":10745.1744},{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":12833.2968},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":12978.2285},{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":15072.7458},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":15209.3355},{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":16970.3783},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":17104.9517},{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":19017.3186},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Right","time":19185.3349},{"type":0,"keyCode":162,"mouseX":0,"mouseY":0,"time":20690.2379},{"type":1,"keyCode":162,"mouseX":0,"mouseY":0,"time":20842.7341},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":21969.6533},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":28146.6688},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":29193.8204},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":29377.7404},{"type":0,"keyCode":65,"mouseX":0,"mouseY":0,"time":30513.5793},{"type":1,"keyCode":65,"mouseX":0,"mouseY":0,"time":30770.5912},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":33473.6447},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":33609.6283},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":34105.5121},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":34233.8732},{"type":0,"keyCode":68,"mouseX":0,"mouseY":0,"time":34745.565},{"type":1,"keyCode":68,"mouseX":0,"mouseY":0,"time":34873.6318},{"type":0,"keyCode":162,"mouseX":0,"mouseY":0,"time":36505.584},{"type":1,"keyCode":162,"mouseX":0,"mouseY":0,"time":36706.4272},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":37801.4773},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":37920.4641},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":38565.7006},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":38706.5404},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":39284.4166},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":39417.6148},{"type":0,"keyCode":32,"mouseX":0,"mouseY":0,"time":40009.6646},{"type":1,"keyCode":32,"mouseX":0,"mouseY":0,"time":40146.9123},{"type":0,"keyCode":70,"mouseX":0,"mouseY":0,"time":43102.4363},{"type":1,"keyCode":70,"mouseX":0,"mouseY":0,"time":43305.4842},{"type":4,"mouseX":959,"mouseY":539,"mouseButton":"Left","time":45656.9111},{"type":5,"mouseX":959,"mouseY":539,"mouseButton":"Left","time":45792.7179},{"type":2,"mouseX":962,"mouseY":539,"time":47360.4988},{"type":2,"mouseX":965,"mouseY":542,"time":47392.4425},{"type":2,"mouseX":974,"mouseY":547,"time":47431.8626},{"type":2,"mouseX":984,"mouseY":550,"time":47456.3662},{"type":2,"mouseX":1003,"mouseY":553,"time":47501.5762},{"type":2,"mouseX":1012,"mouseY":553,"time":47528.3864},{"type":2,"mouseX":1015,"mouseY":553,"time":47552.4694},{"type":2,"mouseX":1036,"mouseY":557,"time":47575.4601},{"type":2,"mouseX":1058,"mouseY":561,"time":47600.5447},{"type":2,"mouseX":1076,"mouseY":566,"time":47624.8926},{"type":2,"mouseX":1089,"mouseY":569,"time":47648.4898},{"type":2,"mouseX":1102,"mouseY":572,"time":47672.6184},{"type":2,"mouseX":1115,"mouseY":576,"time":47696.3689},{"type":2,"mouseX":1119,"mouseY":577,"time":47720.368},{"type":2,"mouseX":1135,"mouseY":582,"time":47741.1833},{"type":2,"mouseX":1155,"mouseY":589,"time":47778.3053},{"type":2,"mouseX":1171,"mouseY":592,"time":47800.419},{"type":2,"mouseX":1204,"mouseY":599,"time":47846.2808},{"type":2,"mouseX":1223,"mouseY":601,"time":47872.3714},{"type":2,"mouseX":1244,"mouseY":604,"time":47896.4463},{"type":2,"mouseX":1258,"mouseY":605,"time":47920.7072},{"type":2,"mouseX":1269,"mouseY":606,"time":47944.3896},{"type":2,"mouseX":1281,"mouseY":608,"time":47968.2971},{"type":2,"mouseX":1294,"mouseY":610,"time":47992.5369},{"type":2,"mouseX":1297,"mouseY":610,"time":48016.6329},{"type":2,"mouseX":1316,"mouseY":612,"time":48045.4419},{"type":2,"mouseX":1323,"mouseY":614,"time":48072.6441},{"type":2,"mouseX":1327,"mouseY":614,"time":48096.5778},{"type":2,"mouseX":1334,"mouseY":616,"time":48120.4698},{"type":2,"mouseX":1346,"mouseY":620,"time":48144.5641},{"type":2,"mouseX":1357,"mouseY":623,"time":48168.329},{"type":2,"mouseX":1364,"mouseY":625,"time":48192.5842},{"type":2,"mouseX":1365,"mouseY":625,"time":48216.4519},{"type":2,"mouseX":1371,"mouseY":627,"time":48241.6449},{"type":2,"mouseX":1379,"mouseY":633,"time":48272.6229},{"type":2,"mouseX":1386,"mouseY":638,"time":48296.3457},{"type":2,"mouseX":1388,"mouseY":640,"time":48320.4527},{"type":2,"mouseX":1394,"mouseY":642,"time":48342.6212},{"type":2,"mouseX":1396,"mouseY":642,"time":48368.4451},{"type":2,"mouseX":1394,"mouseY":643,"time":48872.4342},{"type":2,"mouseX":1391,"mouseY":644,"time":48896.3795},{"type":2,"mouseX":1390,"mouseY":645,"time":48920.3801},{"type":2,"mouseX":1388,"mouseY":645,"time":48944.8509},{"type":2,"mouseX":1387,"mouseY":645,"time":48976.6742},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":49768.605},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":49897.0867},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":50131.6268},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":50225.1708},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":50321.0722},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":50425.0115},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":50512.6207},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":50776.8749},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":50889.5599},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":51000.782},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":51112.7179},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":51232.8482},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":51352.6347},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":51448.813},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":51705.563},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":51816.6461},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":51953.0335},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52048.6575},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52160.9106},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52257.1554},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52353.1752},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52456.766},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52568.669},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52656.9846},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52768.6702},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52873.7512},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":52976.9758},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53064.7462},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53160.6301},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53259.1698},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53376.8581},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53448.5509},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53577.124},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53648.4831},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53737.0736},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53888.8295},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":53953.0314},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":54096.6181},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":54528.9298},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":54648.6285},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":54744.5918},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":54856.9158},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":54960.6559},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55058.7686},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55184.6826},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55264.7295},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55368.5407},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55472.8008},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55592.9189},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55680.6044},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55792.84},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55881.4189},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":55992.973},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":56080.5975},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":56721.5336},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":56817.4412},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":56912.7487},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":57032.6884},{"type":4,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":57129.3597},{"type":5,"mouseX":1387,"mouseY":645,"mouseButton":"Left","time":57240.6871}],"info":{"name":"","description":"","x":0,"y":0,"width":1920,"height":1080,"recordDpi":1.25}} \ No newline at end of file diff --git a/repo/js/稻妻合成台/main.js b/repo/js/稻妻合成台/main.js new file mode 100644 index 00000000..ef8799fa --- /dev/null +++ b/repo/js/稻妻合成台/main.js @@ -0,0 +1,14 @@ +(async function () { + + log.info('前往稻妻合成台,“那位莱特不行,他冲刺比其他成男角色远”(成男角色:钟离,公子,凯亚,迪卢克等)'); + + async function captureCrystalfly(locationName, x, y, num) { + log.info('前往 {name}', locationName); + await genshin.tp(x, y); + await sleep(5000); + let filePath = `assets/${locationName}.json`; + await keyMouseScript.runFile(filePath); + } + + await captureCrystalfly('稻妻合成台', -4402.56, -3052.88); +})(); \ No newline at end of file diff --git a/repo/js/稻妻合成台/manifest.json b/repo/js/稻妻合成台/manifest.json new file mode 100644 index 00000000..95208c38 --- /dev/null +++ b/repo/js/稻妻合成台/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "稻妻合成台", + "version": "1.0", + "description": "去稻妻合成台“那位莱特不行,他冲刺比其他成男角色远”(成男角色冲刺右键8下,A左走5秒,跳跃找交互,停顿)", + "authors": [ + { + "name": "fengbu", + } + ], + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/芙芙挂机暗杀流/main.js b/repo/js/芙芙挂机暗杀流/main.js new file mode 100644 index 00000000..a7286ee8 --- /dev/null +++ b/repo/js/芙芙挂机暗杀流/main.js @@ -0,0 +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)+"次执行完成") +} + +})(); diff --git a/repo/js/芙芙挂机暗杀流/manifest.json b/repo/js/芙芙挂机暗杀流/manifest.json new file mode 100644 index 00000000..dff2e10f --- /dev/null +++ b/repo/js/芙芙挂机暗杀流/manifest.json @@ -0,0 +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" +} diff --git a/repo/js/芙芙挂机暗杀流/settings.json b/repo/js/芙芙挂机暗杀流/settings.json new file mode 100644 index 00000000..9e9cf9c7 --- /dev/null +++ b/repo/js/芙芙挂机暗杀流/settings.json @@ -0,0 +1,7 @@ +[ + { + "name": "cycle_times", + "type": "input-text", + "label": "循环次数" + } +] \ No newline at end of file diff --git a/repo/js/芙芙挂机暗杀流/使用说明.txt b/repo/js/芙芙挂机暗杀流/使用说明.txt new file mode 100644 index 00000000..6fe52402 --- /dev/null +++ b/repo/js/芙芙挂机暗杀流/使用说明.txt @@ -0,0 +1,13 @@ +芙芙挂机暗杀流说明 + +目前已知适用科西霍和海浪中的莎孚,需加入调度器中使用 + +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/进入尘歌壶/main.js b/repo/js/进入尘歌壶/main.js new file mode 100644 index 00000000..d7c29708 --- /dev/null +++ b/repo/js/进入尘歌壶/main.js @@ -0,0 +1,14 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + keyPress("B"); + await sleep(3000); + click(1060, 50); + await sleep(3000); + click(770, 180); + await sleep(3000); + click(1690, 1010); + await sleep(3000); + keyPress("F"); + await sleep(8000); + log.info("已进入尘歌壶"); +})(); \ No newline at end of file diff --git a/repo/js/进入尘歌壶/manifest.json b/repo/js/进入尘歌壶/manifest.json new file mode 100644 index 00000000..a59d581d --- /dev/null +++ b/repo/js/进入尘歌壶/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "进入尘歌壶", + "version": "1.0", + "description": "用于进入尘歌壶", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ No newline at end of file diff --git a/repo/js/领取洞天宝钱和好感/main.js b/repo/js/领取洞天宝钱和好感/main.js new file mode 100644 index 00000000..9bd98d9a --- /dev/null +++ b/repo/js/领取洞天宝钱和好感/main.js @@ -0,0 +1,16 @@ +(async function () { + setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI + keyPress("F"); + await sleep(3000); + click(1370, 420); + await sleep(3000); + click(1370, 420); + await sleep(3000); + click(1800, 710); + await sleep(3000); + click(1080, 960); + await sleep(3000); + click(1865, 44); + await sleep(8000); + log.info("已领取洞天宝钱和好感"); +})(); \ No newline at end of file diff --git a/repo/js/领取洞天宝钱和好感/manifest.json b/repo/js/领取洞天宝钱和好感/manifest.json new file mode 100644 index 00000000..def2e270 --- /dev/null +++ b/repo/js/领取洞天宝钱和好感/manifest.json @@ -0,0 +1,12 @@ +{ + "manifest_version": 1, + "name": "领取洞天宝钱和好感", + "version": "1.0", + "description": "领取洞天宝钱和好感", + "authors": [ + { + "name": "风埠", + } + ], + "main": "main.js", +} \ 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..e3ba6640 Binary files /dev/null and b/repo/pathing/劫波莲/icon.ico differ diff --git a/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 化城郭.json b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 化城郭.json new file mode 100644 index 00000000..3784232a --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 化城郭.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "劫波莲1", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 2297.626953125, + "y": -824.5341796875 + }, + { + "id": 2, + "x": 2300.35791015625, + "y": -845.3017578125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 2309.10009765625, + "y": -855.220703125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 2308.0830078125, + "y": -843.77734375, + "type": "target", + "move_mode": "fly", + "action": "" + } + ] +} diff --git a/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 天臂池左上.json b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 天臂池左上.json new file mode 100644 index 00000000..b099074a --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 天臂池左上.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "劫波莲 天臂池左上", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3096.73828125, + "y": -356.86962890625 + }, + { + "id": 2, + "x": 3104.82470703125, + "y": -365.943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3131.1923828125, + "y": -395.6142578125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": 3152.57177734375, + "y": -403.1279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3163.3671875, + "y": -437.89013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3162.95849609375, + "y": -468.609375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": 3174.65869140625, + "y": -446.25732421875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": 3170.98779296875, + "y": -464.302734375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 9, + "x": 3173.2421875, + "y": -466.52001953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 3174.59326171875, + "y": -464.81005859375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 桓那兰那左侧.json b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 桓那兰那左侧.json new file mode 100644 index 00000000..840ed423 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 桓那兰那左侧.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "劫波莲 桓那兰那左侧", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4041.359375, + "y": -238.58447265625 + }, + { + "id": 2, + "x": 3960.9992755310614, + "y": -224, + "move_mode": "fly", + "type": "path", + "action": "" + }, + { + "id": 3, + "x": 3889.0007244689386, + "y": -213, + "move_mode": "fly", + "type": "path", + "action": "" + }, + { + "id": 4, + "x": 3806.9996377655307, + "y": -200, + "move_mode": "fly", + "type": "path", + "action": "" + }, + { + "id": 5, + "x": 3729.2626953125, + "y": -188.916015625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 3737.99169921875, + "y": -193.916015625, + "type": "target", + "move_mode": "fly", + "action": "" + } + ] +} diff --git a/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 水田丛林.json b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 水田丛林.json new file mode 100644 index 00000000..96cc217b --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 水田丛林.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "劫波莲 水田丛林", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3435.744140625, + "y": -1470.65771484375 + }, + { + "id": 2, + "x": 3329.4052734375, + "y": -1479.33447265625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 3329.40380859375, + "y": -1485.359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3331.16943359375, + "y": -1491.7646484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3335.73876953125, + "y": -1492.341796875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 水田丛林左上.json b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 水田丛林左上.json new file mode 100644 index 00000000..1c3461ad --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 水田丛林左上.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "劫波莲 水田丛林左上", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3639.59521484375, + "y": -1417.4765625 + }, + { + "id": 2, + "x": 3649.53515625, + "y": -1347.6650390625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3651.392578125, + "y": -1353.22314453125, + "type": "target", + "move_mode": "climb", + "action": "" + }, + { + "id": 4, + "x": 3649.59375, + "y": -1350.42431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3649.8623046875, + "y": -1347.693359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3650.556640625, + "y": -1356.48388671875, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 7, + "x": 3669.9609375, + "y": -1349.3232421875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": 3666.5537109375, + "y": -1355.78955078125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 9, + "x": 3662.25146484375, + "y": -1302.087890625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 10, + "x": 3657.94921875, + "y": -1248.38623046875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 11, + "x": 3653.64697265625, + "y": -1194.6845703125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 12, + "x": 3649.3447265625, + "y": -1140.98291015625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 13, + "x": 3650.47998046875, + "y": -1138.84521484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 3649.58935546875, + "y": -1130.16357421875, + "type": "target", + "move_mode": "fly", + "action": "" + }, + { + "id": 15, + "x": 3660.1015625, + "y": -1127.1484375, + "type": "path", + "move_mode": "fly", + "action": "" + } + ] +} diff --git a/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 维摩庄下方.json b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 维摩庄下方.json new file mode 100644 index 00000000..89b84374 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 维摩庄下方.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "劫波莲 维摩庄下方", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2794.126953125, + "y": -1216.4345703125 + }, + { + "id": 2, + "x": 2772.7125244140625, + "y": -1247.39111328125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 2751.298095703125, + "y": -1278.34765625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": 2729.8836669921875, + "y": -1309.30419921875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": 2708.46923828125, + "y": -1340.2607421875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 2716.3583984375, + "y": -1334.0791015625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 9, + "x": 2703.83203125, + "y": -1332.02197265625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 10, + "x": 2711.32861328125, + "y": -1323.37939453125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 11, + "x": 2679.9997283241482, + "y": -1282.25, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + } + ] +} diff --git a/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 觉王之殿上方.json b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 觉王之殿上方.json new file mode 100644 index 00000000..ae9f8431 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 觉王之殿上方.json @@ -0,0 +1,91 @@ +{ + "info": { + "name": "劫波莲 觉王之殿上方", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3705.595703125, + "y": -497.3955078125 + }, + { + "id": 2, + "x": 3587.87890625, + "y": -416.3623046875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 3567.500181117234, + "y": -417.75, + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 3556.2494566482965, + "y": -414.75, + "type": "target", + "move_mode": "climb", + "action": "" + }, + { + "id": 5, + "x": 3548.96435546875, + "y": -411.76220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3537.984375, + "y": -421.0341796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 3544.9208984375, + "y": -421.83642578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 3546.11572265625, + "y": -422.2568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 3561.1083984375, + "y": -434.724609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 10, + "x": 3551.5478515625, + "y": -439.736328125, + "type": "target", + "move_mode": "climb", + "action": "" + } + ] +} diff --git a/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 降诸魔山右下.json b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 降诸魔山右下.json new file mode 100644 index 00000000..a27642af --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲@jbcaaa/劫波莲 降诸魔山右下.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "劫波莲 降诸魔山右下", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2246.00732421875, + "y": -1680.38427734375 + }, + { + "id": 2, + "x": 2179.28857421875, + "y": -1680.12890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2176.728515625, + "y": -1677.26025390625, + "type": "target", + "move_mode": "climb", + "action": "" + }, + { + "id": 4, + "x": 2175.2392578125, + "y": -1673.6591796875, + "type": "path", + "move_mode": "climb", + "action": "" + } + ] +} diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/001劫波莲 化城郭6个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/001劫波莲 化城郭6个.json new file mode 100644 index 00000000..bc9a84b3 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/001劫波莲 化城郭6个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "001劫波莲 化城郭6个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "成熟的纳西妲要学会自己采材料。感谢米游社大佬“@吃瓜的喵”的优质路线!(本引导的所有路线均已精修过,请放心使用)", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport", + "x": 2297.626953125, + "y": -824.5341796875 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 2323.724364995559, + "y": -832.9553446697364 + }, + { + "id": 3, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 2317.9726710525347, + "y": -841.9521971574712 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/002劫波莲 降诸魔山4个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/002劫波莲 降诸魔山4个.json new file mode 100644 index 00000000..aa72b57e --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/002劫波莲 降诸魔山4个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "劫波莲 降诸魔山6个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2241.63, + "y": -1686.13 + }, + { + "id": 2, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 2245.37826196129, + "y": -1640.2997395321229 + }, + { + "id": 3, + "action": "", + "move_mode": "walk", + "type": "path", + "x": 2221.367420725931, + "y": -1640.2997395321227 + }, + { + "id": 4, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 2230.3701310347706, + "y": -1626.305247678587 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/003劫波莲 降诸魔山2个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/003劫波莲 降诸魔山2个.json new file mode 100644 index 00000000..72a810e7 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/003劫波莲 降诸魔山2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "劫波莲 降诸魔山2个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2241.63, + "y": -1686.13 + }, + { + "id": 2, + "action": "", + "move_mode": "walk", + "type": "path", + "x": 2237.474252066024, + "y": -1662.941279224301 + }, + { + "id": 3, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 2179.9482782729783, + "y": -1681.9338038826718 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/004劫波莲 维摩庄西南7个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/004劫波莲 维摩庄西南7个.json new file mode 100644 index 00000000..44413c5e --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/004劫波莲 维摩庄西南7个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "004劫波莲 维摩庄西南7个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2794.43, + "y": -1219.84 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 2735.4959345367406, + "y": -1309.3251163497616 + }, + { + "id": 3, + "action": "stop_flying", + "move_mode": "fly", + "type": "target", + "x": 2719.488707046502, + "y": -1318.3215753984632 + }, + { + "id": 4, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 2710.990062200922, + "y": -1327.908230345516 + }, + { + "id": 5, + "x": 2662.940486135064, + "y": -1291.2227543469535, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 2662.940486135064, + "y": -1291.2227543469535, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/005劫波莲 水天丛林7个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/005劫波莲 水天丛林7个.json new file mode 100644 index 00000000..6874b10e --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/005劫波莲 水天丛林7个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "005劫波莲 水天丛林7个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3436, + "y": -1469.97 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 3349.2331734992877, + "y": -1518.6901972669602 + }, + { + "id": 3, + "x": 3349.2331734992877, + "y": -1518.6901972669602, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "action": "", + "move_mode": "walk", + "type": "path", + "x": 3327.722106404859, + "y": -1510.6925579011586 + }, + { + "id": 5, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 3306.713975478341, + "y": -1507.6945250963245 + }, + { + "id": 6, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 3328.9740262069545, + "y": -1478.4560331880448 + }, + { + "id": 7, + "action": "", + "move_mode": "fly", + "type": "path", + "x": 3332.2254942909085, + "y": -1469.9593774198265 + }, + { + "id": 8, + "action": "stop_flying", + "move_mode": "fly", + "type": "target", + "x": 3317.4688314483446, + "y": -1492.9503283220638 + }, + { + "id": 9, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 3316.967702152994, + "y": -1480.7075085844192 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/006劫波莲 谒颂幽境14个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/006劫波莲 谒颂幽境14个.json new file mode 100644 index 00000000..b10a43c3 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/006劫波莲 谒颂幽境14个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "006劫波莲 谒颂幽境14个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3646.3199999999997, + "y": -1418.4099999999999, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 3666.925466506912, + "y": -1348.909312302857, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 3653.925466506913, + "y": -1353.909312302857, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 3640.9137218352735, + "y": -1348.409902461407, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 3647.3119853194803, + "y": -1243.953525014209, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": 3653.710248803686, + "y": -1139.49714756701, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 7, + "x": 3653.710248803686, + "y": -1139.49714756701, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/007劫波莲 觉王之殿3个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/007劫波莲 觉王之殿3个.json new file mode 100644 index 00000000..339f747c --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/007劫波莲 觉王之殿3个.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "007劫波莲 觉王之殿3个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3484.48, + "y": -608.26 + }, + { + "id": 2, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 3451.403784036196, + "y": -628.9175745225539 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/008劫波莲 须弥城西边7个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/008劫波莲 须弥城西边7个.json new file mode 100644 index 00000000..4bfc5e68 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/008劫波莲 须弥城西边7个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "008劫波莲 须弥城西边7个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3100.46, + "y": -354.62 + }, + { + "id": 2, + "action": "", + "move_mode": "walk", + "type": "path", + "x": 3169.5472045456227, + "y": -429.89731241234585 + }, + { + "id": 3, + "action": "stop_flying", + "move_mode": "fly", + "type": "target", + "x": 3183.2769901588617, + "y": -447.4465906512487 + }, + { + "id": 4, + "x": 3183.2769901588617, + "y": -447.4465906512487, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 3176.2729246956014, + "y": -470.68724647421186 + }, + { + "id": 6, + "x": 3176.2729246956014, + "y": -470.68724647421186, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/009劫波莲 觉王之殿北边5个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/009劫波莲 觉王之殿北边5个.json new file mode 100644 index 00000000..6ccd0a57 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/009劫波莲 觉王之殿北边5个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "009劫波莲 觉王之殿北边5个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3707.4550540450773, + "y": -484.40950902237364 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "target", + "x": 3598.906042626895, + "y": -435.42878753499826 + }, + { + "id": 3, + "x": 3598.906042626895, + "y": -435.42878753499826, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "action": "stop_flying", + "move_mode": "fly", + "type": "path", + "x": 3547.8830050017586, + "y": -441.42721377886573 + }, + { + "id": 5, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 3554.4445515983234, + "y": -441.21606588339 + }, + { + "id": 6, + "x": 3560.306459724292, + "y": -434.73154779420753, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 3554.4445515983234, + "y": -441.21606588339, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/010劫波莲 翠翎恐蕈西南2个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/010劫波莲 翠翎恐蕈西南2个.json new file mode 100644 index 00000000..d158479e --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/010劫波莲 翠翎恐蕈西南2个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "010劫波莲 翠翎恐蕈西南2个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4046.91, + "y": -239.60999999999967, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 3972.5, + "y": -229.00314751226506, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 3894.3883239666284, + "y": -218.82601784123563, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": 3823.431231551558, + "y": -209.1567630759664, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "action": "stop_flying", + "move_mode": "fly", + "type": "target", + "x": 3751.4741391364887, + "y": -195.48750831069717 + }, + { + "id": 6, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 3750.4741391364887, + "y": -195.48750831069717 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/011劫波莲 无郁稠林西边1个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/011劫波莲 无郁稠林西边1个.json new file mode 100644 index 00000000..baf8ac50 --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/011劫波莲 无郁稠林西边1个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "011劫波莲 无郁稠林西边1个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2401.45, + "y": 150.64 + }, + { + "id": 2, + "action": "stop_flying", + "move_mode": "fly", + "type": "target", + "x": 2489, + "y": 216.04721268397861 + }, + { + "id": 3, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 2560, + "y": 266.54957331817786 + }, + { + "id": 4, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 2536, + "y": 315.53029480555324 + }, + { + "id": 5, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 2531.5, + "y": 337.02183586634055 + }, + { + "id": 6, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 2504, + "y": 306.53383575685166 + }, + { + "id": 7, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 2468, + "y": 299.03678654960004 + }, + { + "id": 8, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 2438.25, + "y": 262.02085226875715 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/012劫波莲 无郁稠林东边6个.json b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/012劫波莲 无郁稠林东边6个.json new file mode 100644 index 00000000..37db093c --- /dev/null +++ b/repo/pathing/劫波莲/劫波莲(纳西妲采集)@lifrom/012劫波莲 无郁稠林东边6个.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "012劫波莲 无郁稠林东边6个", + "type": "collect", + "author": "lifrom", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2415.5, + "y": 351.6030810266875 + }, + { + "id": 2, + "x": 2317.25, + "y": 337.57814682796106, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "action": "stop_flying", + "move_mode": "fly", + "type": "target", + "x": 2219, + "y": 323.5532126292346 + }, + { + "id": 4, + "x": 2202.5, + "y": 317.0009835975825, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2186, + "y": 310.00216391468257, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 6, + "x": 2169.125, + "y": 307.3705076674505, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "action": "", + "move_mode": "climb", + "type": "target", + "x": 2152.5, + "y": 305.3096060135231 + }, + { + "id": 8, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 2144.5, + "y": 287.067573153945 + }, + { + "id": 9, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 2149, + "y": 216.34540896554063 + }, + { + "id": 10, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 2164.25, + "y": 222.34304833134138 + }, + { + "id": 11, + "action": "", + "move_mode": "climb", + "type": "target", + "x": 2149, + "y": 216.34540896554063 + }, + { + "id": 12, + "action": "", + "move_mode": "walk", + "type": "path", + "x": 2155.25, + "y": 191.35524494137007 + }, + { + "id": 13, + "action": "", + "move_mode": "walk", + "type": "target", + "x": 2175.75, + "y": 181.10927769145928 + }, + { + "id": 14, + "action": "", + "move_mode": "climb", + "type": "target", + "x": 2185.75, + "y": 121.63268731393237 + }, + { + "id": 15, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target", + "x": 2200.5, + "y": 120.88298239320739 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/desktop.ini b/repo/pathing/嘟嘟莲/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/嘟嘟莲/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/嘟嘟莲/icon.ico b/repo/pathing/嘟嘟莲/icon.ico new file mode 100644 index 00000000..bc5c4d43 Binary files /dev/null and b/repo/pathing/嘟嘟莲/icon.ico differ diff --git a/repo/pathing/圣遗物/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..23abcd0b Binary files /dev/null and b/repo/pathing/圣遗物/icon.ico differ diff --git a/repo/pathing/圣遗物/狗粮_枫丹_佩特莉可镇_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_佩特莉可镇_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_枫丹_佩特莉可镇_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_佩特莉可镇_3.json diff --git a/repo/pathing/圣遗物/狗粮_枫丹_学术讲堂_1.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_学术讲堂_1.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_枫丹_学术讲堂_1.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_学术讲堂_1.json diff --git a/repo/pathing/圣遗物/狗粮_枫丹_新枫科院东南_7.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院东南_7.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_枫丹_新枫科院东南_7.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院东南_7.json diff --git a/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院宿舍_4.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院宿舍_4.json new file mode 100644 index 00000000..2deb6483 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院宿舍_4.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "狗粮_枫丹_枫科院宿舍_4", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4000.9814453125, + "y": 4878.4423828125 + }, + { + "id": 2, + "x": 3953.20751953125, + "y": 4829.73291015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 3950.16845703125, + "y": 4837.42529296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3946.93505859375, + "y": 4846.52294921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3943.2548828125, + "y": 4856.7353515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3942.2978515625, + "y": 4861.6513671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 3951.08154296875, + "y": 4864.849609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 3947.02587890625, + "y": 4876.2939453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 3954.876953125, + "y": 4875.513671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 3955.63037109375, + "y": 4881.529296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 3955.97021484375, + "y": 4875.0732421875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 13, + "x": 3960.7890625, + "y": 4875.92578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 3952.8828125, + "y": 4865.2705078125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 15, + "x": 3952.779296875, + "y": 4853.02685546875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_枫丹_新枫科院西北_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院西北_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_枫丹_新枫科院西北_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院西北_3.json diff --git a/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院西南_7.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院西南_7.json new file mode 100644 index 00000000..63927c74 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_新枫科院西南_7.json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "狗粮_枫丹_新枫科院西南_7", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4498.15283203125, + "y": 4710.76953125 + }, + { + "id": 2, + "x": 4506.90283203125, + "y": 4702.208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4552.33740234375, + "y": 4736.5859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 4560.65234375, + "y": 4742.57080078125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4563.89404296875, + "y": 4744.2626953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4535.875, + "y": 4712.6259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4531.185546875, + "y": 4695.47314453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4529.67724609375, + "y": 4688.33154296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4515.7763671875, + "y": 4650.41015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4514.59326171875, + "y": 4642.2392578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 4475.4970703125, + "y": 4580.6748046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 4459.51806640625, + "y": 4587.0107421875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 13, + "x": 4456.41064453125, + "y": 4590.609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 4462.94482421875, + "y": 4598.68408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 4449.888671875, + "y": 4605.63671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 4442.71826171875, + "y": 4581.05419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 4444.21533203125, + "y": 4573.728515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 4414.876953125, + "y": 4577.3935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 4421.197265625, + "y": 4588.96044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 4429.11376953125, + "y": 4583.23095703125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_枫丹_欧庇克莱歌剧院东南_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_欧庇克莱歌剧院东南_2.json similarity index 97% rename from repo/pathing/圣遗物/狗粮_枫丹_欧庇克莱歌剧院东南_2.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_欧庇克莱歌剧院东南_2.json index 2bb710f9..cf430e69 100644 --- a/repo/pathing/圣遗物/狗粮_枫丹_欧庇克莱歌剧院东南_2.json +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_欧庇克莱歌剧院东南_2.json @@ -12,7 +12,7 @@ "id": 1, "x": 3595.5517578125, "y": 3254.333251953125, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, diff --git a/repo/pathing/圣遗物/狗粮_枫丹_芒索斯山脉东麓_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_芒索斯山脉东麓_2.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_枫丹_芒索斯山脉东麓_2.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_芒索斯山脉东麓_2.json diff --git a/repo/pathing/圣遗物/狗粮_枫丹_黎翡区神像_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_黎翡区神像_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_枫丹_黎翡区神像_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_枫丹_黎翡区神像_3.json diff --git a/repo/pathing/圣遗物/狗粮_璃月_地中之盐_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_地中之盐_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_璃月_地中之盐_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_地中之盐_3.json diff --git a/repo/pathing/圣遗物/狗粮_璃月_沉玉谷上谷_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_沉玉谷上谷_2.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_璃月_沉玉谷上谷_2.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_沉玉谷上谷_2.json diff --git a/repo/pathing/圣遗物/狗粮_璃月_渌华池_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_渌华池_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_璃月_渌华池_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_渌华池_3.json diff --git a/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_老窖_6.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_老窖_6.json new file mode 100644 index 00000000..6d0eb14b --- /dev/null +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_老窖_6.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "狗粮_璃月_老窖_6", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 730.2958984375, + "y": 1061.9833984375 + }, + { + "id": 2, + "x": 670.7509765625, + "y": 1013.990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 649.2666015625, + "y": 971.67529296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 642.5595703125, + "y": 941.28466796875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 640.6220703125, + "y": 893.11865234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 650.8212890625, + "y": 860.02880859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 650.44921875, + "y": 850.58984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 649.681640625, + "y": 832.33056640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 648.564453125, + "y": 831.76171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 645.7724609375, + "y": 835.53515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 645.4462890625, + "y": 834.556640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 645.578125, + "y": 833.45751953125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_璃月_荻花洲_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_荻花洲_2.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_璃月_荻花洲_2.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_荻花洲_2.json diff --git a/repo/pathing/圣遗物/狗粮_璃月_轻策庄_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_轻策庄_2.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_璃月_轻策庄_2.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_轻策庄_2.json diff --git a/repo/pathing/圣遗物/狗粮_稻妻_平海砦_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_平海砦_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_平海砦_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_平海砦_3.json diff --git a/repo/pathing/圣遗物/狗粮_稻妻_惑饲滩西_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_惑饲滩西_2.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_惑饲滩西_2.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_惑饲滩西_2.json diff --git a/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_望泷村西南_4.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_望泷村西南_4.json new file mode 100644 index 00000000..e5ec689f --- /dev/null +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_望泷村西南_4.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "狗粮_望泷村西南_4", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": -755.568359375, + "y": -4001.1162109375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -736.296875, + "y": -4012.8759765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -726.130859375, + "y": -4025.2802734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -703.5146484375, + "y": -4050.36328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -685.8505859375, + "y": -4062.9677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -688.615234375, + "y": -4042.8857421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -672.9072265625, + "y": -4043.359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -685.6416015625, + "y": -4055.6103515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -694.265625, + "y": -4086.93359375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/圣遗物/狗粮_稻妻_浅籁神社_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_浅籁神社_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_浅籁神社_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_浅籁神社_3.json diff --git a/repo/pathing/圣遗物/狗粮_稻妻_海祈岛东_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_海祈岛东_2.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_海祈岛东_2.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_海祈岛东_2.json diff --git a/repo/pathing/圣遗物/狗粮_稻妻_清籁丸_7.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_清籁丸_7.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_清籁丸_7.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_清籁丸_7.json diff --git a/repo/pathing/圣遗物/狗粮_稻妻_神无冢_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_神无冢_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_神无冢_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_神无冢_3.json diff --git a/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_越石村_5.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_越石村_5.json new file mode 100644 index 00000000..36f1729f --- /dev/null +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_越石村_5.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "狗粮_越石村_5个", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": -4023.3095703125, + "y": -4428.8203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3982.544921875, + "y": -4430.77734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3983.2109375, + "y": -4435.841796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -3977.1396484375, + "y": -4439.125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -3971.015625, + "y": -4439.1259765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -3969.3662109375, + "y": -4434.59375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -3965.8349609375, + "y": -4435.943359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -3966.7236328125, + "y": -4425.2958984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": -3972.904296875, + "y": -4425.287109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": -3978.61328125, + "y": -4424.3828125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_稻妻_鹤观神像_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_鹤观神像_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_鹤观神像_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_鹤观神像_3.json diff --git a/repo/pathing/圣遗物/狗粮_纳塔_圣火竞技场东_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_纳塔_圣火竞技场东_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_纳塔_圣火竞技场东_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_纳塔_圣火竞技场东_3.json diff --git a/repo/pathing/圣遗物/狗粮_纳塔_流泉之众_4.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_纳塔_流泉之众_4.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_纳塔_流泉之众_4.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_纳塔_流泉之众_4.json diff --git a/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_化城郭西_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_化城郭西_2.json new file mode 100644 index 00000000..eee880e7 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_化城郭西_2.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "狗粮_化城郭_2", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2701.53076171875, + "y": -761.8154296875 + }, + { + "id": 2, + "x": 2703.22119140625, + "y": -794.27490234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 2706.17041015625, + "y": -789.1103515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2690.923828125, + "y": -822.13232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2683.91015625, + "y": -839.9404296875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_无郁绸林_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_无郁绸林_3.json new file mode 100644 index 00000000..797786b5 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_无郁绸林_3.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "狗粮_须弥_无郁绸林_3", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2399.9599609375, + "y": 143.537109375 + }, + { + "id": 2, + "x": 2351.107421875, + "y": 106.96728515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 2346.341796875, + "y": 106.56591796875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2346.32470703125, + "y": 105.763671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2349.3916015625, + "y": 103.44921875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_须弥_水天丛林水泡点_7.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_水天丛林水泡点_7.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_须弥_水天丛林水泡点_7.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_水天丛林水泡点_7.json diff --git a/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_神的棋盘_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_神的棋盘_3.json new file mode 100644 index 00000000..d22230d9 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_神的棋盘_3.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "狗粮_神的棋盘_3", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 5759.43017578125, + "y": -1307.9384765625 + }, + { + "id": 2, + "x": 5760.14404296875, + "y": -1302.51318359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 5767.37353515625, + "y": -1283.07470703125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 5760.84521484375, + "y": -1277.82470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 5760.22265625, + "y": -1270.0185546875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮_须弥_维摩庄_3.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_维摩庄_3.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_须弥_维摩庄_3.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_维摩庄_3.json diff --git a/repo/pathing/圣遗物/狗粮_须弥_表恒纳兰那_9.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_表恒纳兰那_9.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_须弥_表恒纳兰那_9.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_表恒纳兰那_9.json diff --git a/repo/pathing/圣遗物/狗粮_须弥_觉王之殿南_4.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_觉王之殿南_4.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_须弥_觉王之殿南_4.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_觉王之殿南_4.json diff --git a/repo/pathing/圣遗物/狗粮_须弥_须弥城北_2.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_须弥城北_2.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_须弥_须弥城北_2.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_须弥_须弥城北_2.json diff --git a/repo/pathing/圣遗物/佩特莉可01 1.json b/repo/pathing/圣遗物/狗粮@lwh9346/佩特莉可01 1.json similarity index 100% rename from repo/pathing/圣遗物/佩特莉可01 1.json rename to repo/pathing/圣遗物/狗粮@lwh9346/佩特莉可01 1.json diff --git a/repo/pathing/圣遗物/地中之岩01 3.json b/repo/pathing/圣遗物/狗粮@lwh9346/地中之岩01 3.json similarity index 100% rename from repo/pathing/圣遗物/地中之岩01 3.json rename to repo/pathing/圣遗物/狗粮@lwh9346/地中之岩01 3.json diff --git a/repo/pathing/圣遗物/天云峠 01 6.json b/repo/pathing/圣遗物/狗粮@lwh9346/天云峠 01 6.json similarity index 100% rename from repo/pathing/圣遗物/天云峠 01 6.json rename to repo/pathing/圣遗物/狗粮@lwh9346/天云峠 01 6.json diff --git a/repo/pathing/圣遗物/海祇岛01 8.json b/repo/pathing/圣遗物/狗粮@lwh9346/海祇岛01 8.json similarity index 100% rename from repo/pathing/圣遗物/海祇岛01 8.json rename to repo/pathing/圣遗物/狗粮@lwh9346/海祇岛01 8.json diff --git a/repo/pathing/圣遗物/特尔柯西01 4.json b/repo/pathing/圣遗物/狗粮@lwh9346/特尔柯西01 4.json similarity index 100% rename from repo/pathing/圣遗物/特尔柯西01 4.json rename to repo/pathing/圣遗物/狗粮@lwh9346/特尔柯西01 4.json diff --git a/repo/pathing/圣遗物/碧水原01 5.json b/repo/pathing/圣遗物/狗粮@lwh9346/碧水原01 5.json similarity index 100% rename from repo/pathing/圣遗物/碧水原01 5.json rename to repo/pathing/圣遗物/狗粮@lwh9346/碧水原01 5.json diff --git a/repo/pathing/圣遗物/碧水原02 9.json b/repo/pathing/圣遗物/狗粮@lwh9346/碧水原02 9.json similarity index 100% rename from repo/pathing/圣遗物/碧水原02 9.json rename to repo/pathing/圣遗物/狗粮@lwh9346/碧水原02 9.json diff --git a/repo/pathing/圣遗物/神的棋盘01 2.json b/repo/pathing/圣遗物/狗粮@lwh9346/神的棋盘01 2.json similarity index 100% rename from repo/pathing/圣遗物/神的棋盘01 2.json rename to repo/pathing/圣遗物/狗粮@lwh9346/神的棋盘01 2.json diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个.json new file mode 100644 index 00000000..7ce3c08d --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂①-6个/21个.json @@ -0,0 +1,247 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + + "positions": [ + { + "x": -3288.212890625, + "y": -3652.501953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3268.4306640625, + "y": -3650.8837890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3267.6240234375, + "y": -3643.1455078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3264.39453125, + "y": -3641.43359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3259.05859375, + "y": -3639.08984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3261.376953125, + "y": -3644.6572265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3253.990234375, + "y": -3647.380859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3248.65625, + "y": -3648.939453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3243.9580078125, + "y": -3651.015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3240.224609375, + "y": -3647.794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3209.8427734375, + "y": -3605.6376953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": -3209.8427734375, + "y": -3605.6376953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3211.962890625, + "y": -3603.951171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3212.4130859375, + "y": -3605.99609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3215.0595703125, + "y": -3612.5361328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3216.4609375, + "y": -3627.3212890625, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3206.4365234375, + "y": -3614.490234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3206.25, + "y": -3614.3671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3208.1083984375, + "y": -3614.806640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3205.6845703125, + "y": -3616.7685546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3204.03125, + "y": -3615.5517578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + + { + "x": -3156.5830078125, + "y": -3886.0986328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3170.4130859375, + "y": -3850.8359375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3168.654296875, + "y": -3839.994140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3151.0654296875, + "y": -3842.669921875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3149.3564453125, + "y": -3837.0224609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3152.970703125, + "y": -3831.783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": -3152.970703125, + "y": -3831.783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": -3147.2763671875, + "y": -3831.7646484375, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -3144.0830078125, + "y": -3831.6953125, + "type": "target", + "move_mode": "fly", + "action": "", + "#": "6" + }, + { + "x": -3144.0830078125, + "y": -3831.6953125, + "type": "target", + "move_mode": "fly", + "action": "", + "#": "6" + }, + { + "x": -3144.5859375, + "y": -3831.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + } + + + ] + +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json new file mode 100644 index 00000000..3279b013 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂②-7个/21个.json @@ -0,0 +1,289 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + + "positions": [ + + { + "x": -3156.5380859375, + "y": -3886.1474609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3156.634765625, + "y": -3870.7353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3154.0478515625, + "y": -3835.5107421875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3152.74609375, + "y": -3733.8955078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3152.74609375, + "y": -3733.8955078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3149.0771484375, + "y": -3739.6552734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": -3149.0908203125, + "y": -3739.7705078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + { + "x": -3155.703125, + "y": -3729.7724609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3157.0185546875, + "y": -3727.5537109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3157.0185546875, + "y": -3727.5537109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + + + { + "x": -3159.232421875, + "y": -3724.658203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + { + "x": -3159.232421875, + "y": -3724.658203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + + { + "x": -3155.7451171875, + "y": -3719.76953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3156.0673828125, + "y": -3716.6884765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3163.8154296875, + "y": -3710.796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3164.5810546875, + "y": -3702.015625, + "type": "path", + "move_mode": "walk", + "#": "drop" + }, + { + "x": -3166.8525390625, + "y": -3704.3955078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3164.1953125, + "y": -3706.4267578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "10" + }, + { + "x": -3164.146484375, + "y": -3706.44921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "10" + }, + + + + { + "x": -3164.6044921875, + "y": -3701.8447265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3160.455078125, + "y": -3701.7998046875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3148.009765625, + "y": -3693.4609375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3108.439453125, + "y": -3655.1953125, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3103.35546875, + "y": -3647.599609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3098, + "y": -3639.703125, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3093.2978515625, + "y": -3637.5732421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "11" + }, + + + { + "x": -3113.5029296875, + "y": -3625.0078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3116.8349609375, + "y": -3623.0576171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + { + "x": -3118.3505859375, + "y": -3622.375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + { + "x": -3119.169921875, + "y": -3621.8486328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + + { + "x": -3127.1142578125, + "y": -3602.75390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3149.3203125, + "y": -3568.7509765625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3144.365234375, + "y": -3567.513671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3134.7275390625, + "y": -3566.712890625, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3136.1005859375, + "y": -3568.3203125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3138.798828125, + "y": -3570.107421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "13" + }, + { + "x": -3139.0625, + "y": -3571.1171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "13" + } + + + ] + +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json new file mode 100644 index 00000000..085b78b3 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂③-8个/21个.json @@ -0,0 +1,435 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + + "positions": [ + + { + "x": -3156.5849609375, + "y": -3886.06640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3139.6357421875, + "y": -3873.5673828125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3118.478515625, + "y": -3801.2685546875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3128.7255859375, + "y": -3755.45703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3156.3916015625, + "y": -3754.88671875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3124.9794921875, + "y": -3742.8154296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": -3122.5849609375, + "y": -3732.068359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3122.255859375, + "y": -3731.25390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3120.4677734375, + "y": -3731.875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + + { + "x": -3119.1494140625, + "y": -3733.4775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3115.4189453125, + "y": -3729.2060546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3114.466796875, + "y": -3726.51953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3115.0478515625, + "y": -3724.44921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3112.560546875, + "y": -3723.8798828125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3112.73046875, + "y": -3722.8701171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3116.73828125, + "y": -3720.2392578125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3120.67578125, + "y": -3714.5673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3128.521484375, + "y": -3714.7255859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3153.703125, + "y": -3718.9189453125, + "type": "path", + "move_mode": "fly", + "//": "stop_flying" + }, + { + "x": -3162.361328125, + "y": -3716.51953125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3161.1396484375, + "y": -3710.4248046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3160.287109375, + "y": -3704.8359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3160.28515625, + "y": -3704.8525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3160.29296875, + "y": -3704.857421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + + { + "x": -3164.3984375, + "y": -3703.9912109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3160.7744140625, + "y": -3698.0908203125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3158.619140625, + "y": -3695.8984375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3156.2685546875, + "y": -3693.1943359375, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -3154.5517578125, + "y": -3688.9306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3154.5517578125, + "y": -3688.9306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3154.22265625, + "y": -3689.6806640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + + { + "x": -3153.6904296875, + "y": -3693.7529296875, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3152.80859375, + "y": -3697.337890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "18" + }, + { + "x": -3152.4462890625, + "y": -3696.4912109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "18" + }, + + { + "x": -3147.033203125, + "y": -3694.96484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3140.6904296875, + "y": -3700.126953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3143.0439453125, + "y": -3704.70703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "19" + }, + { + "x": -3143.9716796875, + "y": -3704.447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "19" + }, + { + "x": -3144.181640625, + "y": -3703.8671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "19" + }, + + { + "x": -3144.9853515625, + "y": -3708.4521484375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3146.5185546875, + "y": -3713.2802734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3148.638671875, + "y": -3716.90234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3153.908203125, + "y": -3718.08203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3160.7529296875, + "y": -3717.9111328125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3160.779296875, + "y": -3720.1904296875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3161.1572265625, + "y": -3721.9765625, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3154.974609375, + "y": -3736.6025390625, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3147.8583984375, + "y": -3741.576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3142.1376953125, + "y": -3741.7470703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3134.73828125, + "y": -3736.9609375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3135.3974609375, + "y": -3734.583984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "20" + }, + { + "x": -3134.900390625, + "y": -3734.37890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "20" + }, + + + + { + "x": -3016.837890625, + "y": -3623.62890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3026.8125, + "y": -3635.3583984375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3027.4208984375, + "y": -3641.755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3027.904296875, + "y": -3641.369140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3031.6767578125, + "y": -3640.1640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "21" + }, + { + "x": -3031.67578125, + "y": -3640.154296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "21" + } + ] + +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json new file mode 100644 index 00000000..cbe45533 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 5945.380859375, + "y": -2056.46875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5945.380859375, + "y": -2056.46875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5926.42919921875, + "y": -2056.33203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5921.23681640625, + "y": -2055.9638671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 5936.27490234375, + "y": -2045.39794921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5932.73291015625, + "y": -2038.00048828125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json new file mode 100644 index 00000000..58206710 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图识别大概率失效)狗粮-纳塔-奥奇卡纳塔-烬火炽燃所-7个.json @@ -0,0 +1,51 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 9202.53515625, + "y": -573.32763671875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9197.33203125, + "y": -570.9189453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9158.7529296875, + "y": -588.65966796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9155.861328125, + "y": -599.9189453125, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 9151.537109375, + "y": -586.271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9148.798828125, + "y": -582.21533203125, + "type": "target", + "move_mode": "walk", + "#": "2" + } + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json new file mode 100644 index 00000000..10aa747a --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -705.4814453125, + "y": 925.70703125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -730.6748046875, + "y": 928.85400390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -751.703125, + "y": 927.3564453125, + "type": "path", + "move_mode": "walk", + "action": "stop_flying" + }, + { + "x": -800.474609375, + "y": 917.11474609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -785.4775390625, + "y": 887.21044921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -782.9287109375, + "y": 877.8291015625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": -782.7666015625, + "y": 875.61279296875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": -790.2568359375, + "y": 876.78955078125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": -791.2333984375, + "y": 876.4365234375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json new file mode 100644 index 00000000..92351e14 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -410.8349609375, + "y": 1161.333984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -406.9755859375, + "y": 1195.39697265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -441.591796875, + "y": 1189.736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -485.259765625, + "y": 1160.0361328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -503.7880859375, + "y": 1145.3095703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -507.583984375, + "y": 1148.4091796875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": -509.2978515625, + "y": 1147.3876953125, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": -509.4765625, + "y": 1145.5009765625, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json new file mode 100644 index 00000000..e9e45421 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json @@ -0,0 +1,137 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1656.6884765625, + "y": -284.2236328125, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 1628.435546875, + "y": -295.173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1603.6015625, + "y": -311.865234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1560.12890625, + "y": -292.5458984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1517.5009765625, + "y": -289.90234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1512.9345703125, + "y": -293.65673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1505.9580078125, + "y": -299.51806640625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1506.1337890625, + "y": -293.78955078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1507.1328125, + "y": -293.04638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 1499.4580078125, + "y": -287.93017578125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1492.2998046875, + "y": -282.9697265625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1487.865234375, + "y": -281.0732421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 1479.3544921875, + "y": -277.6318359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1477.30078125, + "y": -277.9560546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1474.595703125, + "y": -279.31689453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + + { + "x": 1475.52734375, + "y": -276.34521484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1473.896484375, + "y": -274.4580078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + + + { + "x": 1474.966796875, + "y": -275.6015625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json new file mode 100644 index 00000000..3be30693 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json @@ -0,0 +1,54 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1746.669921875, + "y": 2325.153076171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1778.9130859375, + "y": 2340.885498046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1809.6708984375, + "y": 2348.93115234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1861.439453125, + "y": 2364.15380859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1870.0947265625, + "y": 2364.95458984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1875.6875, + "y": 2365.521728515625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 1876.607421875, + "y": 2360.030029296875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-东-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-东-2个.json new file mode 100644 index 00000000..c0f2f66c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-东-2个.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1114.80859375, + "y": 1948.03759765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1148.2060546875, + "y": 1934.60595703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1152.201171875, + "y": 1940.529296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1151.986328125, + "y": 1941.70361328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1152.4111328125, + "y": 1942.046875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 1114.783203125, + "y": 1948.05615234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1091.1240234375, + "y": 1987.32958984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1080.4931640625, + "y": 1984.5078125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1079.203125, + "y": 1984.3525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json new file mode 100644 index 00000000..b4bced7a --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json @@ -0,0 +1,94 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2466.81689453125, + "y": 2546.794189453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2411.5634765625, + "y": 2508.787353515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2404.830078125, + "y": 2509.77099609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2400.72998046875, + "y": 2510.041259765625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2396.04541015625, + "y": 2514.475830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2372.88037109375, + "y": 2522.71533203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2368.80078125, + "y": 2526.01318359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + + { + "x": 2358.49609375, + "y": 2414.603271484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2355.97900390625, + "y": 2404.451171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2334.1796875, + "y": 2345.4501953125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 2343.06103515625, + "y": 2307.510986328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2343.04296875, + "y": 2307.798095703125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2344.3916015625, + "y": 2302.41845703125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4/5个(第5个有干扰).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4/5个(第5个有干扰).json new file mode 100644 index 00000000..900e03d0 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4/5个(第5个有干扰).json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2145.67529296875, + "y": 2412.928466796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2115.2490234375, + "y": 2465.607666015625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 2118.1279296875, + "y": 2493.559326171875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 2129.89892578125, + "y": 2524.280517578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2127.02734375, + "y": 2538.019287109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 2124.62841796875, + "y": 2544.005126953125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2129.9580078125, + "y": 2544.913818359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + + { + "x": 2137.32177734375, + "y": 2545.76513671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2257.10791015625, + "y": 2607.5146484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2257.00439453125, + "y": 2607.547119140625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2254.89453125, + "y": 2605.405029296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2254.19580078125, + "y": 2611.32763671875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 2145.6796875, + "y": 2412.926025390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2136.259765625, + "y": 2412.0244140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2132.64208984375, + "y": 2381.97314453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 2133.70556640625, + "y": 2390.48046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2132.97509765625, + "y": 2393.666748046875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2129.9111328125, + "y": 2392.8486328125, + "type": "path", + "move_mode": "walk" + } + + + + ], + + "position1": [ + { + "x": 2145.6953125, + "y": 2412.94921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2075.10546875, + "y": 2321.042724609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2075.07275390625, + "y": 2321.010986328125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷南陵-3个/4个(另一个太远).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷南陵-3个/4个(另一个太远).json new file mode 100644 index 00000000..d50594a8 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷南陵-3个/4个(另一个太远).json @@ -0,0 +1,183 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2323.88818359375, + "y": 1604.99609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2267.73388671875, + "y": 1596.66650390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2263.44873046875, + "y": 1592.49951171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2262.45751953125, + "y": 1588.75732421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2267.0810546875, + "y": 1590.2548828125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 2066.17431640625, + "y": 1484.46533203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2071.67431640625, + "y": 1459.99951171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 2072.35888671875, + "y": 1459.1875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2072.04248046875, + "y": 1460.07421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2070.2568359375, + "y": 1461.359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2072.93115234375, + "y": 1461.66455078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2076.0849609375, + "y": 1459.40625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1863.6064453125, + "y": 1590.98193359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1773.6396484375, + "y": 1678.48388671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1781.892578125, + "y": 1690.83056640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 1787.728515625, + "y": 1690.94775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1789.4140625, + "y": 1687.59521484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1787.8935546875, + "y": 1684.31689453125, + "type": "path", + "move_mode": "walk" + } + + + ], + + "not_used": [ + { + "x": 1863.61328125, + "y": 1590.99853515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1883.6064453125, + "y": 1565.44677734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1857.6552734375, + "y": 1546.0576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1827.8681640625, + "y": 1529.21630859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1802.58984375, + "y": 1504.70751953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1741.5927734375, + "y": 1456.94775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1734.97265625, + "y": 1454.08447265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1730.9130859375, + "y": 1455.25537109375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json new file mode 100644 index 00000000..b381e80b --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1604.50390625, + "y": 1039.6787109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1638.3671875, + "y": 941.90771484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1638.466796875, + "y": 941.6064453125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 1647.9794921875, + "y": 939.19091796875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-天道谷-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-天道谷-3个.json new file mode 100644 index 00000000..90623828 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-天道谷-3个.json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1145.5419921875, + "y": 174.658203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1120.2646484375, + "y": 233.7236328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1100.5517578125, + "y": 260.28466796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1071.4072265625, + "y": 297.130859375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1078.4931640625, + "y": 303.58642578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 1085.669921875, + "y": 302.48291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 1091.9775390625, + "y": 301.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1089.2724609375, + "y": 306.5068359375, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": 1053.951171875, + "y": 321.84619140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 1045.9287109375, + "y": 319.76123046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 1041.296875, + "y": 327.16015625, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": 1066.4765625, + "y": 350.84326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1068.8486328125, + "y": 354.8173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 1069.1162109375, + "y": 354.8681640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 1069.2744140625, + "y": 355.451171875, + "type": "path", + "move_mode": "walk", + "action": "", + "#": 3 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-奥藏山南-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-奥藏山南-3个.json new file mode 100644 index 00000000..204fe315 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-奥藏山南-3个.json @@ -0,0 +1,127 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1451.4638671875, + "y": 1028.59423828125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1499.21875, + "y": 1039.97021484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1496.373046875, + "y": 1047.833984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1496.2822265625, + "y": 1048.83056640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1496.0771484375, + "y": 1048.14404296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 1501.791015625, + "y": 1040.484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1514.02734375, + "y": 1041.53076171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1510.2353515625, + "y": 1042.525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1510.369140625, + "y": 1043.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1510.552734375, + "y": 1044.3828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + + + { + "x": 1451.478515625, + "y": 1028.56396484375, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 1427.0634765625, + "y": 1068.23193359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1420.34765625, + "y": 1074.18310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1404.0517578125, + "y": 1083.30517578125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1378.041015625, + "y": 1112.5146484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1374.865234375, + "y": 1118.765625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-绝云间-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-绝云间-3个.json new file mode 100644 index 00000000..689d61dc --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-绝云间-3个.json @@ -0,0 +1,136 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1182.685546875, + "y": 626.04638671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1191.91015625, + "y": 629.23388671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1178.974609375, + "y": 573.78271484375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 1169.703125, + "y": 569.39404296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1170.05078125, + "y": 569.162109375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1171.7880859375, + "y": 570.55615234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1163.396484375, + "y": 573.80615234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1154.1103515625, + "y": 563.09521484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1152.111328125, + "y": 557.2080078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1158.2958984375, + "y": 557.2314453125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 1158.7294921875, + "y": 557.53369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + + { + "x": 1161.9443359375, + "y": 556.87646484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1159.6357421875, + "y": 559.4970703125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1152.5556640625, + "y": 559.8544921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1147.025390625, + "y": 561.1103515625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + + { + "x": 1145.19140625, + "y": 560.70458984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1145.2890625, + "y": 563.20654296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1148.109375, + "y": 565.111328125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-望舒客栈-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-望舒客栈-1个.json new file mode 100644 index 00000000..703f171a --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-望舒客栈-1个.json @@ -0,0 +1,29 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 328.943359375, + "y": 873.60302734375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 293.6943359375, + "y": 903.01806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 294.0498046875, + "y": 900.10302734375, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json new file mode 100644 index 00000000..03709558 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 207.451171875, + "y": 1573.0126953125, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 247.9873046875, + "y": 1569.02294921875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 255.888671875, + "y": 1566.6259765625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 257.748046875, + "y": 1568.83154296875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-轻策庄-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-轻策庄-3个.json new file mode 100644 index 00000000..ca763b8d --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-轻策庄-3个.json @@ -0,0 +1,115 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 547.7548828125, + "y": 1766.8134765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 541.0166015625, + "y": 1764.2119140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 508.18359375, + "y": 1772.28662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 500.2392578125, + "y": 1756.2626953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 513.4267578125, + "y": 1743.66748046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 516.4453125, + "y": 1740.47509765625, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + { + "x": 516.7373046875, + "y": 1739.90576171875, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + + { + "x": 533.5380859375, + "y": 1729.44580078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 560.2451171875, + "y": 1729.82861328125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 581.3544921875, + "y": 1726.26123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 614.8515625, + "y": 1708.7294921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 621.1572265625, + "y": 1706.734375, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 2 + }, + { + "x": 624.7138671875, + "y": 1715.44189453125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 631.5205078125, + "y": 1716.6064453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 662.2451171875, + "y": 1719.79443359375, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 3 + }, + { + "x": 666.2421875, + "y": 1722.142578125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json new file mode 100644 index 00000000..4053278c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json @@ -0,0 +1,57 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8706.505859375, + "y": -1574.953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8810.6611328125, + "y": -1576.576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8814.896484375, + "y": -1561.26025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8808.0517578125, + "y": -1562.4619140625, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "text": "旁边有个干扰点" + }, + { + "x": 8805.087890625, + "y": -1562.43603515625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8810.458984375, + "y": -1559.58984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8831.1044921875, + "y": -1566.23974609375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json new file mode 100644 index 00000000..d9a2813c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json @@ -0,0 +1,34 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9033.2998046875, + "y": -1373.08544921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 9040.5986328125, + "y": -1400.38134765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9070.1806640625, + "y": -1411.09912109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9073.78515625, + "y": -1415.9521484375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,不测试了).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,不测试了).json new file mode 100644 index 00000000..539bc123 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-七天神像西-5个(重兵把守,不测试了).json @@ -0,0 +1,87 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 10030.400390625, + "y": -643.39599609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 10023.7294921875, + "y": -593.17431640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 10021.3388671875, + "y": -586.47119140625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 10025.775390625, + "y": -581.22021484375, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 10026.533203125, + "y": -577.2685546875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + + { + "x": 10011.244140625, + "y": -595.53173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9978.5556640625, + "y": -565.25, + "type": "path", + "move_mode": "run" + }, + { + "x": 9980.9423828125, + "y": -509.32763671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9993.7470703125, + "y": -506.8466796875, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + + + { + "x": 10030.400390625, + "y": -643.39599609375, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 10030.107421875, + "y": -793.728515625, + "type": "target", + "move_mode": "fly", + "#": "5" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个.json new file mode 100644 index 00000000..c17d011f --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-奥奇卡纳塔-流灰之街-4个.json @@ -0,0 +1,101 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9813.4951171875, + "y": -372.21435546875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9800.30078125, + "y": -374.54345703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9786.5615234375, + "y": -378.7763671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9803.8193359375, + "y": -433.603515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9816.0703125, + "y": -414.88037109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9819.8232421875, + "y": -409.86962890625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9822.6708984375, + "y": -408.6533203125, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + + { + "x": 9810.3193359375, + "y": -407.8564453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9812.7724609375, + "y": -387.4599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9827.3876953125, + "y": -360.19580078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9828.9013671875, + "y": -354.369140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9823.5693359375, + "y": -348.56298828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9838.50390625, + "y": -334.5791015625, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9849.7177734375, + "y": -331.419921875, + "type": "target", + "move_mode": "walk", + "#": "4" + } + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json new file mode 100644 index 00000000..1b6a3197 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json @@ -0,0 +1,105 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9038.7001953125, + "y": -2429.3349609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8992.79296875, + "y": -2437.3828125, + "type": "path", + "move_mode": "walk" + }, + + + + + { + "x": 8995.9912109375, + "y": -2443.6220703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8996.5029296875, + "y": -2449.580078125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + + { + "x": 8988.033203125, + "y": -2444.35546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8980.4296875, + "y": -2457.68359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8989.3017578125, + "y": -2475.466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9030.365234375, + "y": -2474.458984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9078.7666015625, + "y": -2466.0625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9081.55078125, + "y": -2470.5576171875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + + + + ], + + "position1": [ + { + "x": 9009.0859375, + "y": -2407.1640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9013.94921875, + "y": -2402.1162109375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "#": "重兵把守,且镜头摇晃" + }, + + + { + "x": 8996.421875, + "y": -2403.314453125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json new file mode 100644 index 00000000..ca0a2074 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json @@ -0,0 +1,34 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8940.2763671875, + "y": -2306.306640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8944.4853515625, + "y": -2295.7021484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8948.71484375, + "y": -2285.4072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8941.634765625, + "y": -2265.154296875, + "type": "target", + "move_mode": "run", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-翘枝崖-花羽会北-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-翘枝崖-花羽会北-4个.json new file mode 100644 index 00000000..df354b04 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-翘枝崖-花羽会北-4个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9548.2724609375, + "y": -1116.5625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9594.6513671875, + "y": -1062.68896484375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9594.6513671875, + "y": -1062.68896484375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + + { + "x": 9548.2724609375, + "y": -1116.5625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9491.322265625, + "y": -1004.78271484375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9491.322265625, + "y": -1004.78271484375, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + + { + "x": 9535.1474609375, + "y": -996.32763671875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9535.1474609375, + "y": -996.32763671875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9536.7880859375, + "y": -993.86572265625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9539.587890625, + "y": -990.88818359375, + "type": "path", + "move_mode": "walk" + } + + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json new file mode 100644 index 00000000..a875f3cd --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json @@ -0,0 +1,29 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 7746.41650390625, + "y": -2250.6083984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7694.318359375, + "y": -2251.8212890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7681.8447265625, + "y": -2253.39453125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json new file mode 100644 index 00000000..008dfda9 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json @@ -0,0 +1,41 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8439.60546875, + "y": -2107.0107421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8451.0361328125, + "y": -2090.794921875, + "type": "target", + "move_mode": "fly", + "action": "pick_around" + }, + { + "x": 8422.841796875, + "y": -2110.37890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8437.62890625, + "y": -2109.3857421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8437.6513671875, + "y": -2111.8740234375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-北-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-北-1个.json new file mode 100644 index 00000000..a6dd1fb1 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-北-1个.json @@ -0,0 +1,40 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4271.57421875, + "y": -1666.736328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4283.01953125, + "y": -1671.53515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4286.05810546875, + "y": -1672.95751953125, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 4284.041015625, + "y": -1676.71826171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4287.4296875, + "y": -1670.16015625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json new file mode 100644 index 00000000..462b7ec5 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json @@ -0,0 +1,69 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4409.71923828125, + "y": -1874.5693359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4373.34716796875, + "y": -1893.97265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4363.154296875, + "y": -1915.46044921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4361.55615234375, + "y": -1909.1201171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4358.82275390625, + "y": -1909.55712890625, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 1 + }, + + { + "x": 4362.74169921875, + "y": -1932.55029296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4341.41357421875, + "y": -1960.34033203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4338.86572265625, + "y": -1956.05712890625, + "type": "target", + "move_mode": "walk", + "action":"", + "#": 2 + }, + { + "x": 4334.5, + "y": -1958.50048828125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-二净甸-七天神像-4个/8个(重兵把守,其余不拿).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-二净甸-七天神像-4个/8个(重兵把守,其余不拿).json new file mode 100644 index 00000000..36d89cf0 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-二净甸-七天神像-4个/8个(重兵把守,其余不拿).json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3252.849609375, + "y": -591.28125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3241.24365234375, + "y": -593.07373046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3233.39404296875, + "y": -674.443359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3236.7236328125, + "y": -673.8662109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3236.62353515625, + "y": -673.77734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3239.46044921875, + "y": -671.60595703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3242.97216796875, + "y": -670.22607421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3242.96044921875, + "y": -670.197265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3242.9482421875, + "y": -670.20166015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + + { + "x": 3207.63134765625, + "y": -662.05224609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3183.31591796875, + "y": -670.1142578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3177.10400390625, + "y": -668.5361328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 3167.27490234375, + "y": -667.78662109375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ], + + + "not_used1":[ + { + "x": 3247.1513671875, + "y": -677.9443359375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3249.44580078125, + "y": -667.3544921875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3249.44580078125, + "y": -667.3544921875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3249.572265625, + "y": -666.5732421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3248.04931640625, + "y": -666.294921875, + "type": "path", + "move_mode": "walk" + } + ], + + + "not_used2":[ + { + "x": 3166.2568359375, + "y": -663.19921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 3169.171875, + "y": -663.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3171.65087890625, + "y": -661.556640625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json new file mode 100644 index 00000000..45057d9b --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json @@ -0,0 +1,185 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4592.19921875, + "y": -647.70263671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4567.77783203125, + "y": -719.373046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4535.90087890625, + "y": -785.623046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4517.232421875, + "y": -780.34912109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4515.06689453125, + "y": -779.15966796875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + + { + "x": 4513.36767578125, + "y": -781.26904296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4505.10107421875, + "y": -793.541015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4518.576171875, + "y": -786.13818359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4519.5732421875, + "y": -784.46630859375, + "type": "path", + "move_mode": "walk" + }, + + + + + + + { + "x": 4592.17822265625, + "y": -647.51611328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4444.19384765625, + "y": -667.16064453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4306.77294921875, + "y": -684.884765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4303.3037109375, + "y": -675.76953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4304.4130859375, + "y": -662.53515625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4306.87109375, + "y": -697.2109375, + "type": "path", + "move_mode": "fly" + }, + + + + { + "x": 4267.6591796875, + "y": -751.380859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4267.06689453125, + "y": -804.9140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4262.0390625, + "y": -810.849609375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4260.43115234375, + "y": -810.03857421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4261.87646484375, + "y": -811.853515625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4273.13818359375, + "y": -811.97998046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4265.3798828125, + "y": -831.021484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4276.578125, + "y": -881.87353515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4279.19921875, + "y": -888.078125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4279.685546875, + "y": -890.28564453125, + "type": "path", + "move_mode": "walk" + } + + + + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-圣显厅西-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-圣显厅西-3个.json new file mode 100644 index 00000000..9f56e934 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-圣显厅西-3个.json @@ -0,0 +1,218 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + + + + { + "x": 4777.30859375, + "y": -1434.5498046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4840.98388671875, + "y": -1410.3779296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4843.49609375, + "y": -1402.5771484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4837.75244140625, + "y": -1402.7421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4834.49658203125, + "y": -1400.30078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4815.84423828125, + "y": -1286.494140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4794.83203125, + "y": -1291.39697265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4794.83203125, + "y": -1291.39697265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4794.212890625, + "y": -1292.20751953125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4803.328125, + "y": -1269.1611328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4782.0380859375, + "y": -1268.50390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4773.7275390625, + "y": -1268.28466796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4770.61279296875, + "y": -1276.41064453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4757.501953125, + "y": -1276.81787109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4752.56689453125, + "y": -1269.2265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4743.0732421875, + "y": -1265.8564453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4743.0732421875, + "y": -1265.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4742.533203125, + "y": -1267.22021484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4741.55419921875, + "y": -1266.90478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4740.51708984375, + "y": -1264.25244140625, + "type": "path", + "move_mode": "fly" + } + + + + ], + + "positions0": [ + { + "x": 4773.03271484375, + "y": -1432.97216796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4821.62890625, + "y": -1436.17529296875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4807.806640625, + "y": -1401.18603515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4812.33447265625, + "y": -1370.73486328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4797.80810546875, + "y": -1313.27294921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4732.00048828125, + "y": -1193.6533203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4725.24658203125, + "y": -1198.544921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4724.17578125, + "y": -1198.8515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4722.3232421875, + "y": -1199.953125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4741.50537109375, + "y": -1267.5439453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4717.30224609375, + "y": -1201.232421875, + "type": "path", + "move_mode": "fly" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-神的棋盘-1个/3个(只拿第一个).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-神的棋盘-1个/3个(只拿第一个).json new file mode 100644 index 00000000..fbbcd569 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-神的棋盘-1个/3个(只拿第一个).json @@ -0,0 +1,114 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 5759.4482421875, + "y": -1307.61572265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5763.57861328125, + "y": -1304.89208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5761.02490234375, + "y": -1303.5673828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 5760.51416015625, + "y": -1302.2685546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 5760.51416015625, + "y": -1302.2685546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + } + + ], + + + "not_used": [ + { + "x": 5766, + "y": -1289.69482421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5767.05615234375, + "y": -1284.27783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5767.15869140625, + "y": -1282.28173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5767.859375, + "y": -1282.056640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 5768.44140625, + "y": -1281.2861328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5763.10791015625, + "y": -1282.4404296875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5760.3447265625, + "y": -1271.13818359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "No.": "3" + }, + { + "x": 5762.13671875, + "y": -1268.00830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5760.24267578125, + "y": -1271.06005859375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json new file mode 100644 index 00000000..3ee04c8b --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json @@ -0,0 +1,47 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4272.93505859375, + "y": -520.68310546875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4268.95654296875, + "y": -501.08984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4294.5927734375, + "y": -436.28564453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4352.73486328125, + "y": -407.056640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4352.744140625, + "y": -407.0634765625, + "type": "target", + "move_mode": "walk", + "action":"pick_around" + }, + { + "x": 4355.04443359375, + "y": -407.06640625, + "type": "path", + "move_mode": "fly" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json new file mode 100644 index 00000000..3989aa22 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json @@ -0,0 +1,103 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3993.71533203125, + "y": -989.3232421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4009.52734375, + "y": -758.580078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + + { + "x": 4010.82275390625, + "y": -758.70361328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4014.82177734375, + "y": -756.4248046875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4017.3349609375, + "y": -754.85498046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4018.39013671875, + "y": -760.48876953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4019.95849609375, + "y": -761.73486328125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4020.333984375, + "y": -767.498046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4017.3203125, + "y": -771.0205078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4015.41357421875, + "y": -772.01953125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4012.546875, + "y": -772.7451171875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4008.64013671875, + "y": -771.82275390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4012.78955078125, + "y": -774.98583984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4014.15966796875, + "y": -771.81787109375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json new file mode 100644 index 00000000..7cb96700 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json @@ -0,0 +1,134 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2531.99609375, + "y": -144.71728515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2587.1318359375, + "y": -124.6181640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2594.72607421875, + "y": -119.916015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2595.1875, + "y": -119.6875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2593.3017578125, + "y": -116.9755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.21142578125, + "y": -115.7158203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2597.29296875, + "y": -116.5322265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2598.080078125, + "y": -121.06884765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.21533203125, + "y": -121.9150390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2599.23388671875, + "y": -118.87890625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 2617.57177734375, + "y": -122.33984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 2639.771484375, + "y": -135.43994140625, + "type": "path", + "move_mode": "run", + "?": "swin" + }, + + + + + + + { + "x": 2652.158203125, + "y": -146.6689453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2653.005859375, + "y": -147.19140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2650.6064453125, + "y": -146.19384765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2654.810546875, + "y": -144.01318359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2656.55078125, + "y": -148.0029296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2651.720703125, + "y": -150.6376953125, + "type": "path", + "move_mode": "walk" + } + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json new file mode 100644 index 00000000..4f15bc40 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json @@ -0,0 +1,55 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2399.96240234375, + "y": 143.5400390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2349.39794921875, + "y": 116.18505859375, + "type": "path", + "move_mode": "fly", + "action":"stop_flying" + }, + + { + "x": 2346.42626953125, + "y": 107.6015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2346.830078125, + "y": 105.70263671875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + + { + "x": 2347.23046875, + "y": 106.94287109375, + "type": "target", + "move_mode": "walk", + "action":"" + } + + + ], + "not_used": [ + { + "x": 2349.12744140625, + "y": 102.51708984375, + "type": "target", + "move_mode": "walk", + "action":"pick_around" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json new file mode 100644 index 00000000..e7a5da7b --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 6060.0869140625, + "y": 855.3701171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 6080.6767578125, + "y": 861.541015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6116.5810546875, + "y": 878.50830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6129.6025390625, + "y": 866.369140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6139.064453125, + "y": 847.1640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6173.337890625, + "y": 847.2509765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6216.4912109375, + "y": 863.681640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6286.59326171875, + "y": 898.69775390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6302.72265625, + "y": 917.25634765625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 6316.61474609375, + "y": 953.634765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 6412.5732421875, + "y": 1075.21630859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 6372.3212890625, + "y": 1050.51904296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6364.16943359375, + "y": 1046.1083984375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 6353.166015625, + "y": 1039.9638671875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 6409.39599609375, + "y": 1076.8681640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6404.09716796875, + "y": 1106.7744140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6472.8818359375, + "y": 1184.50390625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 6540.89453125, + "y": 1208.30517578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6543.60546875, + "y": 1209.1767578125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 6547.85546875, + "y": 1209.0244140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6544.9951171875, + "y": 1212.6943359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 6542.99609375, + "y": 1210.60302734375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json new file mode 100644 index 00000000..f8cf8bca --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json @@ -0,0 +1,86 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2794.05810546875, + "y": -1216.48876953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2777.759765625, + "y": -1199.96337890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2702.05859375, + "y": -1143.779296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2702.3896484375, + "y": -1138.818359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2701.74365234375, + "y": -1146.6142578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2697.5576171875, + "y": -1146.880859375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + { + "x": 2700.71142578125, + "y": -1147.53466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2710.01123046875, + "y": -1129.4599609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2729.0908203125, + "y": -1091.6220703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2725.5048828125, + "y": -1086.3173828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2724.63134765625, + "y": -1084.23974609375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2724.3125, + "y": -1081.69482421875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城-3个/4个(有一个剧烈摇晃,不拿).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城-3个/4个(有一个剧烈摇晃,不拿).json new file mode 100644 index 00000000..3af4326b --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城-3个/4个(有一个剧烈摇晃,不拿).json @@ -0,0 +1,213 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 2877.02099609375, + "y": -292.10693359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2872.7255859375, + "y": -295.822265625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 2867.53515625, + "y": -299.7080078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2864.76025390625, + "y": -301.87109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 2866.697265625, + "y": -303.7685546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2863.0380859375, + "y": -304.970703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2860.95068359375, + "y": -300.78662109375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 2849.13623046875, + "y": -293.02978515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2835.787109375, + "y": -291.748046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2796.3759765625, + "y": -303.3466796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 2791.39990234375, + "y": -288.56201171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2787.72021484375, + "y": -284.9580078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 2788.046875, + "y": -281.259765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2785.822265625, + "y": -282.744140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2784.81005859375, + "y": -285.798828125, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 2786.98974609375, + "y": -503.11328125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2786.341796875, + "y": -498.572265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2774.0693359375, + "y": -497.90869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2762.78173828125, + "y": -497.47119140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2756.00732421875, + "y": -497.2060546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2753.373046875, + "y": -497.19482421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 2752.4443359375, + "y": -497.17431640625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 2751.44580078125, + "y": -497.18212890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 2753.1005859375, + "y": -500.892578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2751.81640625, + "y": -494.93603515625, + "type": "path", + "move_mode": "walk" + } + ], + + "剧烈摇晃": [ + { + "x": 2694.087890625, + "y": -416.45068359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2721.0556640625, + "y": -409.85302734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 2725.0712890625, + "y": -413.4677734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 2728.34619140625, + "y": -415.7119140625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 2730.34326171875, + "y": -416.42236328125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json new file mode 100644 index 00000000..206ea6f1 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json @@ -0,0 +1,120 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3097.24072265625, + "y": -355.9541015625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3096.4658203125, + "y": -434.3720703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3095.845703125, + "y": -456.79443359375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3089.3154296875, + "y": -472.279296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3089.36474609375, + "y": -472.52294921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 3089.53857421875, + "y": -472.744140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": 3109.1142578125, + "y": -478.51953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3110.1318359375, + "y": -479.47607421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 3110.39404296875, + "y": -479.8505859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": 3112.53466796875, + "y": -480.541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 3113.61279296875, + "y": -480.69091796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 3108.84423828125, + "y": -469.31396484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3126.76123046875, + "y": -470.34765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 3129.453125, + "y": -471.52734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3125.482421875, + "y": -470.10205078125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-沉玉谷南陵.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-沉玉谷南陵.json new file mode 100644 index 00000000..9b233150 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-沉玉谷南陵.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2323.908203125, + "y": 1605.05908203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2321.658203125, + "y": 1599.42041015625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 2325.3271484375, + "y": 1598.36962890625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 2325.11328125, + "y": 1600.39794921875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 2324.4482421875, + "y": 1601.2255859375, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-珉林.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-珉林.json new file mode 100644 index 00000000..d11924f7 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-璃月-珉林.json @@ -0,0 +1,33 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1474.576171875, + "y": 763.63623046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1470.76171875, + "y": 763.5576171875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 1472.3759765625, + "y": 762.37646484375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 1472.4384765625, + "y": 760.40478515625, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-纳塔-镜璧山(旁边有采集点,容易点卡神像).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-纳塔-镜璧山(旁边有采集点,容易点卡神像).json new file mode 100644 index 00000000..b83d21aa --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-纳塔-镜璧山(旁边有采集点,容易点卡神像).json @@ -0,0 +1,40 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9540.57421875, + "y": -1784.568359375, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9521.95703125, + "y": -1780.00146484375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 9519.314453125, + "y": -1778.97705078125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 9520.349609375, + "y": -1779.3251953125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 9521.8037109375, + "y": -1778.33203125, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-千壑沙地.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-千壑沙地.json new file mode 100644 index 00000000..b9cfaee7 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(恢复)狗粮-须弥-千壑沙地.json @@ -0,0 +1,33 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 5064.04052734375, + "y": -1587.7021484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5069.73828125, + "y": -1588.7734375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 5073.125, + "y": -1588.56005859375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 5073.119140625, + "y": -1586.68896484375, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json new file mode 100644 index 00000000..9ca691af --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json @@ -0,0 +1,374 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 730.2568359375, + "y": 1062.2294921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 739.3203125, + "y": 1069.82421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 774.2177734375, + "y": 1069.30615234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 773.095703125, + "y": 1065.32958984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 772.3125, + "y": 1062.54541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 771.220703125, + "y": 1060.974609375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 772.5947265625, + "y": 1063.66455078125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 772.654296875, + "y": 1064.009765625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 730.482421875, + "y": 1062.408203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 718.5, + "y": 1042.6474609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 667.0361328125, + "y": 1010.57568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 634.7490234375, + "y": 947.455078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 642.0517578125, + "y": 941.64453125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 642.0498046875, + "y": 941.73486328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 641.3134765625, + "y": 941.08837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 643.544921875, + "y": 941.38330078125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 625.1875, + "y": 927.0615234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 582.587890625, + "y": 908.26318359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 578.025390625, + "y": 907.7900390625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + + + { + "x": 579.1728515625, + "y": 915.19921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 557.4853515625, + "y": 907.4248046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 545.697265625, + "y": 894.28857421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 541.2587890625, + "y": 893.3466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 529.9072265625, + "y": 901.82958984375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 523.5693359375, + "y": 907.1611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + + + + { + "x": 528.3486328125, + "y": 904.05029296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 541.3017578125, + "y": 902.4697265625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 555.9248046875, + "y": 896.3095703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 566.8603515625, + "y": 888.94140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 575.05078125, + "y": 898.53662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 602.28515625, + "y": 878.0556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 629.001953125, + "y": 848.5849609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 631.0849609375, + "y": 845.2314453125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 643.9921875, + "y": 841.00927734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 648.8515625, + "y": 839.12109375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 649.83984375, + "y": 831.625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 649.708984375, + "y": 831.6279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 649.0048828125, + "y": 831.23583984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 646.3505859375, + "y": 833.35546875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 645.8408203125, + "y": 832.71533203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 646.037109375, + "y": 832.7724609375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + + { + "x": 645.37109375, + "y": 833.572265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "8" + }, + { + "x": 645.076171875, + "y": 834.3232421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "8" + }, + + { + "x": 645.8359375, + "y": 835.81396484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "9" + }, + { + "x": 645.671875, + "y": 835.916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "9" + }, + { + "x": 646.037109375, + "y": 832.7724609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 646.2255859375, + "y": 836.51025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 646.80859375, + "y": 837.4140625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 646.8876953125, + "y": 834.0068359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 648.2548828125, + "y": 829.93701171875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 645.55859375, + "y": 830.66357421875, + "type": "path", + "move_mode": "walk" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json new file mode 100644 index 00000000..84de6e18 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json @@ -0,0 +1,134 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 1121.0517578125, + "y": 1190.40087890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 1126.859375, + "y": 1206.17333984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 1149.5205078125, + "y": 1261.96435546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1143.5537109375, + "y": 1266.68212890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 1141.517578125, + "y": 1274.34228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 1141.2353515625, + "y": 1276.4130859375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 1123.3408203125, + "y": 1290.84765625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1120.1875, + "y": 1284.3994140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + + + { + "x": 1115.29296875, + "y": 1284.30615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 1118.7373046875, + "y": 1285.69921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1104.076171875, + "y": 1289.1982421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 1032.5712890625, + "y": 1253.9130859375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 1033.4248046875, + "y": 1254.021484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1030.2197265625, + "y": 1257.08447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 1033.470703125, + "y": 1252.2080078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 1030.97265625, + "y": 1252.08447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 1029.7646484375, + "y": 1251.83447265625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json new file mode 100644 index 00000000..43a37d3b --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json @@ -0,0 +1,41 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 489.443359375, + "y": 222.12353515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 432.3994140625, + "y": 228.15869140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 425.634765625, + "y": 231.4072265625, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 424.2900390625, + "y": 234.669921875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": 425.9228515625, + "y": 232.67333984375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json new file mode 100644 index 00000000..74fc56ee --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json @@ -0,0 +1,48 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -164.5927734375, + "y": 1182.50537109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -171.73828125, + "y": 1225.6494140625, + "type": "path", + "move_mode": "run" + }, + { + "x": -147.2490234375, + "y": 1261.24951171875, + "type": "path", + "move_mode": "run" + }, + { + "x": -95.0634765625, + "y": 1238.294921875, + "type": "target", + "move_mode": "run", + "action":"" + }, + { + "x": -94.11328125, + "y": 1235.544921875, + "type": "target", + "move_mode": "walk", + "action":"" + }, + { + "x": -90.9267578125, + "y": 1235.23193359375, + "type": "target", + "move_mode": "walk", + "action":"" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json new file mode 100644 index 00000000..163e712e --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json @@ -0,0 +1,165 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8738.201171875, + "y": -1857.45947265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8720.2763671875, + "y": -1866.86328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8724.6240234375, + "y": -1863.77734375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 8724.533203125, + "y": -1862.7119140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 8725.2158203125, + "y": -1862.1767578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 8726.3984375, + "y": -1862.20703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8724.8876953125, + "y": -1861.7841796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8722.646484375, + "y": -1864.64208984375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8721.26953125, + "y": -1856.9326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8660.845703125, + "y": -1797.1259765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8651.423828125, + "y": -1785.03662109375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8667.1689453125, + "y": -1767.51904296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8672.138671875, + "y": -1766.37451171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8672.3203125, + "y": -1769.1220703125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 8672.775390625, + "y": -1770.39208984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 8672.783203125, + "y": -1770.392578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 8630.39453125, + "y": -1771.56494140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8613.8095703125, + "y": -1766.69580078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 8596.5390625, + "y": -1763.8193359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8593.53125, + "y": -1763.08837890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 8591.849609375, + "y": -1763.35888671875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 8591.1875, + "y": -1763.3173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-6个/7个 .json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-6个/7个 .json new file mode 100644 index 00000000..91ef446f --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-6个/7个 .json @@ -0,0 +1,359 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 7633.83349609375, + "y": -1646.67431640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7618.5380859375, + "y": -1624.78173828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 7708.3408203125, + "y": -1527.4580078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7702.9697265625, + "y": -1523.55126953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + { + "x": 7701.40234375, + "y": -1522.2158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "1" + }, + + + { + "x": 7703.7802734375, + "y": -1528.4541015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7703.18701171875, + "y": -1536.9375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7703.3671875, + "y": -1537.8984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7703.3671875, + "y": -1537.8984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "2" + }, + { + "x": 7706.0556640625, + "y": -1536.0087890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7700.876953125, + "y": -1536.57666015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 7727.3740234375, + "y": -1545.806640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7732.88671875, + "y": -1542.5927734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 7737.70751953125, + "y": -1541.71484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 7739.0556640625, + "y": -1538.3515625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 7738.9873046875, + "y": -1539.18212890625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + { + "x": 7739.42822265625, + "y": -1539.6357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "3" + }, + + { + "x": 7735.0078125, + "y": -1541.712890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7731.54833984375, + "y": -1543.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 7731.4609375, + "y": -1527.24267578125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 7781.7685546875, + "y": -1498.65966796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 7784.13427734375, + "y": -1479.99072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7776.4736328125, + "y": -1457.95556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7771.8525390625, + "y": -1451.56494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 7772.35595703125, + "y": -1450.89892578125, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + { + "x": 7771.8525390625, + "y": -1451.56494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "4" + }, + + + + { + "x": 7633.7626953125, + "y": -1646.72509765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7609.90234375, + "y": -1627.96533203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 7531.28125, + "y": -1560.5849609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7531.33935546875, + "y": -1560.20458984375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 7532.33984375, + "y": -1559.291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + { + "x": 7532.33984375, + "y": -1559.291015625, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "5" + }, + + + + { + "x": 7633.8095703125, + "y": -1646.69482421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7643.09619140625, + "y": -1656.97509765625, + "type": "path", + "move_mode": "run" + }, + { + "x": 7741.162109375, + "y": -1743.72314453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + }, + { + "x": 7741.15625, + "y": -1743.75146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "6" + } + + ], + + + + "positions_not_actived": [ + { "#": "也有点远" }, + + { + "x": 7633.8603515625, + "y": -1646.7119140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 7642.7734375, + "y": -1768.53564453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 7616.7890625, + "y": -1802.326171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 7558.35693359375, + "y": -1870.9873046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 7557.3818359375, + "y": -1882.10546875, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + }, + { + "x": 7557.34375, + "y": -1882.05615234375, + "type": "target", + "move_mode": "walk", + "action": "", + "No.": "7" + } + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json new file mode 100644 index 00000000..556cd5bd --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-七天神像-12个.json @@ -0,0 +1,193 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9757.9697265625, + "y": -613.59716796875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + + { + "x": 9759.7265625, + "y": -618.5703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9759.3642578125, + "y": -624.9482421875, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9749.4638671875, + "y": -622.73681640625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9749.728515625, + "y": -620.53759765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9751.447265625, + "y": -617.3203125, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9750.8564453125, + "y": -608.7265625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + + { + "x": 9759.390625, + "y": -611.439453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9767.208984375, + "y": -604.23486328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9772.1845703125, + "y": -611.49169921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9765.08203125, + "y": -613.0517578125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9765.7685546875, + "y": -619.1064453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9759.865234375, + "y": -625.8095703125, + "type": "target", + "move_mode": "walk", + "#": "5 6" + }, + { + "x": 9760.0087890625, + "y": -625.75, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 9726.82421875, + "y": -670.78466796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9727.59375, + "y": -670.8193359375, + "type": "target", + "move_mode": "walk", + "#": "7" + }, + { + "x": 9785.7392578125, + "y": -669.693359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9796.419921875, + "y": -669.0380859375, + "type": "target", + "move_mode": "walk", + "#": "8" + }, + { + "x": 9794.921875, + "y": -657.755859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9793.3125, + "y": -650.712890625, + "type": "target", + "move_mode": "walk", + "#": "9" + }, + { + "x": 9809.7958984375, + "y": -629.44189453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9811.6796875, + "y": -623.65625, + "type": "target", + "move_mode": "walk", + "#": "10" + }, + { + "x": 9814.60546875, + "y": -592.00244140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9814.396484375, + "y": -585.39794921875, + "type": "target", + "move_mode": "walk", + "#": "11" + }, + { + "x": 9826.3203125, + "y": -572.1123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9831.451171875, + "y": -567.2568359375, + "type": "target", + "move_mode": "walk", + "#": "12" + }, + { + "x": 9834.365234375, + "y": -563.93701171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9831.587890625, + "y": -563.4140625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个.json new file mode 100644 index 00000000..9e480c76 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-奥奇卡纳塔-托佐兹之岛-6个.json @@ -0,0 +1,143 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9670.130859375, + "y": 171.31884765625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9663.6328125, + "y": 183.66162109375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9663.6328125, + "y": 183.66162109375, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9672.03515625, + "y": 189.12353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9677.35546875, + "y": 225.80224609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9683.83984375, + "y": 230.5029296875, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9683.7568359375, + "y": 230.51806640625, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9687.234375, + "y": 230.724609375, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9687.234375, + "y": 230.724609375, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + { + "x": 9694.974609375, + "y": 220.93896484375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9694.974609375, + "y": 220.93896484375, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9673.7939453125, + "y": 227.576171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9665.4150390625, + "y": 230.7529296875, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + { + "x": 9664.90234375, + "y": 230.03662109375, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + + + + { + "x": 9670.130859375, + "y": 171.31884765625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9602.4921875, + "y": 157.63427734375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9587.501953125, + "y": 171.46044921875, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9587.2451171875, + "y": 171.51171875, + "type": "target", + "move_mode": "walk", + "#": "6" + }, + { + "x": 9587.501953125, + "y": 171.46044921875, + "type": "target", + "move_mode": "walk", + "#": "6" + } + + ] + +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json new file mode 100644 index 00000000..045c5f7c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json @@ -0,0 +1,169 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8918.939453125, + "y": -2679.103515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8955.6015625, + "y": -2675.927734375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 8956.306640625, + "y": -2684.4296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 8956.560546875, + "y": -2684.478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + { + "x": 8959.0654296875, + "y": -2679.1455078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 8985.650390625, + "y": -2691.57421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8994.60546875, + "y": -2709.45703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 8985.96484375, + "y": -2733.546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8985.3251953125, + "y": -2756.3505859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9029.7822265625, + "y": -2792.57421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9044.7001953125, + "y": -2797.5087890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9050.962890625, + "y": -2799.9375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 9058.2021484375, + "y": -2800.046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9054.9326171875, + "y": -2798.36328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 9054.9326171875, + "y": -2798.36328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 9052.96484375, + "y": -2796.4638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 9060.9853515625, + "y": -2791.96484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 9068.6044921875, + "y": -2798.8125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个.json new file mode 100644 index 00000000..f7b669d8 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-翘枝崖-北-6个.json @@ -0,0 +1,142 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9719.171875, + "y": -852.11669921875, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + + { + "x": 9760.36328125, + "y": -809.44921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9764.8671875, + "y": -805.47998046875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 9766.494140625, + "y": -804.9052734375, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 9768.205078125, + "y": -806.55517578125, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + { + "x": 9768.197265625, + "y": -806.56494140625, + "type": "target", + "move_mode": "walk", + "#": "1" + }, + + { + "x": 9766.7099609375, + "y": -800.212890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9777.76953125, + "y": -774.345703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9777.1875, + "y": -769.76904296875, + "type": "target", + "move_mode": "walk", + "#": "2" + }, + { + "x": 9782.1328125, + "y": -767.8994140625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 9788.591796875, + "y": -755.54150390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9792.294921875, + "y": -749.29248046875, + "type": "target", + "move_mode": "walk", + "#": "3" + }, + + + + { + "x": 9719.1982421875, + "y": -852.04931640625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9706.2421875, + "y": -863.09375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9701.865234375, + "y": -872.02490234375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 9701.3681640625, + "y": -872.40869140625, + "type": "target", + "move_mode": "walk", + "#": "4" + }, + { + "x": 9699.0625, + "y": -870.73193359375, + "type": "target", + "move_mode": "walk", + "#": "5" + }, + { + "x": 9643.5654296875, + "y": -898.142578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 9623.0859375, + "y": -894.71435546875, + "type": "target", + "move_mode": "walk", + "#": "6" + } + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个.json new file mode 100644 index 00000000..64bdb0d6 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-镜璧山-南-9个.json @@ -0,0 +1,178 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 9638.033203125, + "y": -1854.703125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9596.3798828125, + "y": -1884.70263671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9586.3076171875, + "y": -1939.7900390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 9584.697265625, + "y": -1947.31640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9583.6640625, + "y": -1949.44970703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9585.4951171875, + "y": -1951.11376953125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 9589.12890625, + "y": -1952.841796875, + "type": "target", + "move_mode": "walk", + "#" : "1" + }, + { + "x": 9585.60546875, + "y": -1950.939453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9584.490234375, + "y": -1954.5810546875, + "type": "target", + "move_mode": "walk", + "#" : "2 躲技能" + }, + { + "x": 9586.87890625, + "y": -1959.71240234375, + "type": "target", + "move_mode": "walk", + "#" : "3" + }, + { + "x": 9579.3232421875, + "y": -1961.0849609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9576.55078125, + "y": -1960.44677734375, + "type": "target", + "move_mode": "fly", + "action": "", + "#" : "4 5 6" + }, + { + "x": 9576.55078125, + "y": -1960.44677734375, + "type": "target", + "move_mode": "fly", + "action": "", + "#" : "4 5 6" + }, + { + "x": 9578.65234375, + "y": -1957.75830078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9578.4482421875, + "y": -1962.03125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 9638.0859375, + "y": -1854.6728515625, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "x": 9613.099609375, + "y": -1848.04833984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 9617.1337890625, + "y": -1843.072265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "7" + }, + { + "x": 9616.623046875, + "y": -1837.8388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "8" + }, + + { + "x": 9607.533203125, + "y": -1804.2431640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9605.40625, + "y": -1763.8310546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 9612.7529296875, + "y": -1758.2841796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 9616.951171875, + "y": -1752.6650390625, + "type": "target", + "move_mode": "walk", + "#" : "9" + }, + { + "x": 9616.7041015625, + "y": -1751.63330078125, + "type": "target", + "move_mode": "walk", + "#" : "9" + }, + { + "x": 9616.783203125, + "y": -1751.5556640625, + "type": "target", + "move_mode": "walk", + "#" : "9" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json new file mode 100644 index 00000000..243cb26c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json @@ -0,0 +1,80 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4209.83935546875, + "y": -2712.0439453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4176.16455078125, + "y": -2726.15234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4166.1396484375, + "y": -2730.453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4140.98681640625, + "y": -2729.94140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4135.51513671875, + "y": -2738.9423828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4135.29443359375, + "y": -2743.03515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4135.99365234375, + "y": -2744.66796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4131.20654296875, + "y": -2734.072265625, + "type": "fly", + "move_mode": "fly" + }, + { + "x": 4120.2685546875, + "y": -2707.25390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4119.091796875, + "y": -2703.1494140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4117.6025390625, + "y": -2700.8681640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json new file mode 100644 index 00000000..0c74eb5f --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json @@ -0,0 +1,175 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4096.0234375, + "y": -2025.943359375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4098.26416015625, + "y": -2008.10498046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4093.42138671875, + "y": -1986.2099609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4092.91748046875, + "y": -1983.70556640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4093.37158203125, + "y": -1981.90478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4094.7978515625, + "y": -1983.18310546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4091.06103515625, + "y": -1985.2490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": 4096.03369140625, + "y": -2025.90576171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4056.8447265625, + "y": -2034.43115234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4056.1015625, + "y": -2034.58544921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.8447265625, + "y": -2034.43115234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.65771484375, + "y": -2034.53955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4056.98583984375, + "y": -2032.7099609375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4058.92333984375, + "y": -2033.771484375, + "type": "target", + "move_mode": "walk" + }, + + + + { + "x": 4096.01708984375, + "y": -2025.9365234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4121.60498046875, + "y": -2046.70361328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4201.2890625, + "y": -2050.662109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4200.22802734375, + "y": -2047.04541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4200.05126953125, + "y": -2046.39306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 4212.25146484375, + "y": -2026.8671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4215.06982421875, + "y": -2024.91357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4215.0322265625, + "y": -2024.9189453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + } + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json new file mode 100644 index 00000000..c26e46da --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json @@ -0,0 +1,203 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3592.20458984375, + "y": -786.109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3598.11328125, + "y": -733.58740234375, + "type": "path", + "move_mode": "fly", + "action":"stop_flying" + }, + { + "x": 3593.56640625, + "y": -722.83349609375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3592.201171875, + "y": -733.0078125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "1" + }, + + + { + "x": 3601.267578125, + "y": -729.6943359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3608.17724609375, + "y": -729.5029296875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "2" + }, + + { + "x": 3624.04638671875, + "y": -756.8173828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3626.0986328125, + "y": -763.63330078125, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "3" + }, + + { + "x": 3640.95849609375, + "y": -778.646484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3645.10498046875, + "y": -782.201171875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "4" + }, + { + "x": 3644.62109375, + "y": -781.72998046875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "4" + }, + + + { + "x": 3631.9404296875, + "y": -779.18017578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3660.69677734375, + "y": -842.3798828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3671.57470703125, + "y": -864.06591796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3673.45361328125, + "y": -867.6865234375, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "5" + }, + + { + "x": 3722.0322265625, + "y": -834.7041015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3729.73681640625, + "y": -826.98779296875, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3731.77978515625, + "y": -825.93408203125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3737.98095703125, + "y": -822.12646484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3736.7841796875, + "y": -824.4833984375, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + }, + { + "x": 3736.72412109375, + "y": -826.1982421875, + "type": "target", + "move_mode": "walk", + "action":"", + "No.": "6" + }, + { + "x": 3738.3408203125, + "y": -824.96240234375, + "type": "path", + "move_mode": "walk" + } + + + ], + "positions_7": [ + { + "x": 3760.6845703125, + "y": -833.935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3790.6494140625, + "y": -799.51171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3795.19970703125, + "y": -789.6767578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3803.39404296875, + "y": -791.34326171875, + "type": "target", + "move_mode": "walk", + "action":"pick_around", + "NO.": "7 (重兵把守,不去)" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个/5个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个/5个.json new file mode 100644 index 00000000..51f9a248 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个/5个.json @@ -0,0 +1,211 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 5063.70263671875, + "y": -1587.78515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5095.08740234375, + "y": -1547.1875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5098.50439453125, + "y": -1542.10205078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 5101.54736328125, + "y": -1542.041015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5098.45361328125, + "y": -1541.93701171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5096.35107421875, + "y": -1543.46240234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5095.0478515625, + "y": -1560.07080078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5115.654296875, + "y": -1579.087890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5119.06494140625, + "y": -1575.28662109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5119.556640625, + "y": -1570.14306640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 5118.291015625, + "y": -1569.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5122.73681640625, + "y": -1568.61767578125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5124.4140625, + "y": -1579.7197265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 5074.4140625, + "y": -1577.09033203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5068.55224609375, + "y": -1577.5400390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5064.50537109375, + "y": -1579.88525390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 5063.34375, + "y": -1580.521484375, + "type": "path", + "move_mode": "walk" + } + + ], + + + + "positions_not_actived": [ + { "#": "偏远" }, + + { + "x": 5063.38623046875, + "y": -1587.76904296875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5047.763671875, + "y": -1587.5712890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4944.57958984375, + "y": -1534.50390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4955.68017578125, + "y": -1491.10595703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4958.37353515625, + "y": -1493.20166015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4960.90771484375, + "y": -1494.58642578125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4966.5419921875, + "y": -1489.2705078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5005.3583984375, + "y": -1391.74658203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5023.9091796875, + "y": -1408.6962890625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 5026.16552734375, + "y": -1411.1865234375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json new file mode 100644 index 00000000..b7e2c676 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json @@ -0,0 +1,248 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3993.8232421875, + "y": -989.39599609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4001.17333984375, + "y": -1050.7236328125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4007.56982421875, + "y": -1054.05859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4010.419921875, + "y": -1055.11181640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 4010.53076171875, + "y": -1062.2978515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4014.65087890625, + "y": -1059.46484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4021.8759765625, + "y": -1053.74755859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4025.90185546875, + "y": -1049.61962890625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4031.04833984375, + "y": -1044.80419921875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4028.52001953125, + "y": -1042.6025390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4024.9404296875, + "y": -1040.6513671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": 4030.0244140625, + "y": -1048.982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4026.0380859375, + "y": -1061.95068359375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4027.53076171875, + "y": -1056.11669921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4027.8017578125, + "y": -1054.716796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4027.83349609375, + "y": -1054.7333984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4028.6748046875, + "y": -1055.15771484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 4025.77099609375, + "y": -1056.43212890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4022.77783203125, + "y": -1058.47802734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4021.642578125, + "y": -1058.65966796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4022.77783203125, + "y": -1058.47802734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + { + "x": 4025.650390625, + "y": -1077.04345703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4010.73388671875, + "y": -1081.44921875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4007.63037109375, + "y": -1073.99560546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4007.23583984375, + "y": -1072.94384765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4007.1171875, + "y": -1071.9248046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": 3993.650390625, + "y": -1085.62353515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 3992.01025390625, + "y": -1090.826171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + + { + "x": 3990.36474609375, + "y": -1086.3388671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3996.8916015625, + "y": -1052.46142578125, + "type": "target", + "move_mode": "run", + "action": "", + "#": "7" + }, + { + "x": 3994.17724609375, + "y": -1048.4873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": 3994.71826171875, + "y": -1048.44091796875, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json new file mode 100644 index 00000000..3ec45c3f --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json @@ -0,0 +1,180 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 5789.85888671875, + "y": 797.70654296875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5762.5234375, + "y": 774.61083984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 5715.38623046875, + "y": 784.3720703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5625.75732421875, + "y": 820.8271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 5606.166015625, + "y": 835.81298828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 5607.62841796875, + "y": 823.79736328125, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5608.9873046875, + "y": 820.6103515625, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5607.3095703125, + "y": 821.779296875, + "type": "target", + "move_mode": "run", + "action": "", + "#": 1 + }, + { + "x": 5604.7353515625, + "y": 825.044921875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5593.55078125, + "y": 824.56591796875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5591.55078125, + "y": 825.56591796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5592.14208984375, + "y": 825.87841796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5589.43017578125, + "y": 825.6611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 5589.25830078125, + "y": 826.619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + { + "x": 5587.75146484375, + "y": 825.91748046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5627.1865234375, + "y": 900.5830078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5634.10693359375, + "y": 896.34619140625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5639.48388671875, + "y": 893.79638671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 5639.455078125, + "y": 893.81201171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + { + "x": 5603.14794921875, + "y": 890.646484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 5546.05126953125, + "y": 938.8857421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 5535.748046875, + "y": 932.04736328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 5531.740234375, + "y": 927.4580078125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5529.603515625, + "y": 913.49169921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json new file mode 100644 index 00000000..e667b18f --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json @@ -0,0 +1,81 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 2701.490234375, + "y": -761.826171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 2706.1455078125, + "y": -791.9501953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2706.263671875, + "y": -789.10791015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": 2685.17236328125, + "y": -834.3212890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 2683.966796875, + "y": -840.43798828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + + { + "x": 2681.02490234375, + "y": -828.7421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2647.09765625, + "y": -839.2470703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 2593.4287109375, + "y": -853.74169921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 2593.67236328125, + "y": -856.54736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 2596.0654296875, + "y": -860.89111328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 2596.41259765625, + "y": -861.82568359375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json new file mode 100644 index 00000000..dd3b5101 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 259.4794921875, + "y": -14.0263671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 253.5419921875, + "y": -13.31884765625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 250.76953125, + "y": -12.35986328125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 250.9697265625, + "y": -10.29248046875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 252.9775390625, + "y": -9.94775390625, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json new file mode 100644 index 00000000..5eb7eb3c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -0,0 +1,33 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3233.2021484375, + "y": -3534.1865234375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3238.7421875, + "y": -3532.2880859375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3239.8271484375, + "y": -3532.509765625, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3238.783203125, + "y": -3532.20703125, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json new file mode 100644 index 00000000..afa376ca --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-纳塔-涌流地.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 8582.041015625, + "y": -2675.1962890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8579.4150390625, + "y": -2657.970703125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 8578.6396484375, + "y": -2656.0966796875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 8579.435546875, + "y": -2656.6953125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 8579.17578125, + "y": -2657.7470703125, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json new file mode 100644 index 00000000..640c18aa --- /dev/null +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3252.81591796875, + "y": -591.2958984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3252.95458984375, + "y": -600.35107421875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3251.63916015625, + "y": -603.21923828125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3249.7099609375, + "y": -602.333984375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3249.13427734375, + "y": -599.64306640625, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json new file mode 100644 index 00000000..58509f4c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json @@ -0,0 +1,669 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3891.556640625, + "y": -4389.8505859375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE1" + }, + { + "x": -3850.6787109375, + "y": -4510.998046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE1" + }, + { + "x": -3849.619140625, + "y": -4510.076171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE2" + }, + { + "x": -3849.4716796875, + "y": -4510.6220703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE2" + }, + { + "x": -3847.23046875, + "y": -4508.517578125, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3847.4970703125, + "y": -4511.7373046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3853.224609375, + "y": -4513.228515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3852.6337890625, + "y": -4509.5849609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.908203125, + "y": -4508.10546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3847.3916015625, + "y": -4507.1513671875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3835.259765625, + "y": -4488.0927734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3840.205078125, + "y": -4483.6513671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE3" + }, + { + "x": -3838.8935546875, + "y": -4484.923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "SE3" + }, + + + + { + "x": -3821.767578125, + "y": -4488.9599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3774.337890625, + "y": -4462.90625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3780.5498046875, + "y": -4452.0966796875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3782.16015625, + "y": -4445.1845703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3783.3681640625, + "y": -4439.068359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.029296875, + "y": -4437.59375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.07421875, + "y": -4430.5234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.515625, + "y": -4424.65625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": -3789.146484375, + "y": -4417.970703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3785.60546875, + "y": -4422.544921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -3789.0947265625, + "y": -4418.2265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3789.9228515625, + "y": -4422.2587890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3790.2919921875, + "y": -4429.623046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3789.244140625, + "y": -4436.77734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3782.248046875, + "y": -4438.5615234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3776.099609375, + "y": -4440.3583984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -3773.71875, + "y": -4441.14453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3778.50390625, + "y": -4441.3349609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3772.587890625, + "y": -4442.869140625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3767.0634765625, + "y": -4441.94921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3757.8115234375, + "y": -4442.099609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3747.5400390625, + "y": -4441.6630859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3740.89453125, + "y": -4441.400390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": -3739.6875, + "y": -4440.29296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3738.7763671875, + "y": -4440.2119140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3740.857421875, + "y": -4439.6904296875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3742.279296875, + "y": -4432.4248046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + { + "x": -3739.787109375, + "y": -4426.6416015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.4375, + "y": -4424.3310546875, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3753.9892578125, + "y": -4424.9609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3747.310546875, + "y": -4427.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.921875, + "y": -4436.001953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3742.7294921875, + "y": -4441.98828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3738.73046875, + "y": -4441.6044921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + { + "x": -3738.58203125, + "y": -4442.154296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "9" + }, + { + "x": -3738.0673828125, + "y": -4439.9228515625, + "type": "target", + "move_mode": "walk" + }, + + + + + { + "x": -3740.6142578125, + "y": -4435.5537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3741.0341796875, + "y": -4425.9443359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3746.287109375, + "y": -4424.287109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3759.4287109375, + "y": -4433.74609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3767.8017578125, + "y": -4437.771484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3772.146484375, + "y": -4439.849609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "10" + }, + { + "x": -3775.4658203125, + "y": -4439.1611328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "11" + }, + { + "x": -3776.8251953125, + "y": -4439.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "11" + }, + { + "x": -3777.375, + "y": -4440.0869140625, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -3777.162109375, + "y": -4439.607421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3767.134765625, + "y": -4439.3466796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3756.236328125, + "y": -4437.08203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3746.0966796875, + "y": -4434.9072265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3741.365234375, + "y": -4432.560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "12" + }, + + { + "x": -3742.904296875, + "y": -4436.3154296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3740.294921875, + "y": -4437.44921875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3738.1171875, + "y": -4437.6005859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3728.7265625, + "y": -4437.8623046875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3726.888671875, + "y": -4433.171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "13" + }, + { + "x": -3727.03515625, + "y": -4431.9111328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3727.1845703125, + "y": -4431.47265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "14" + }, + { + "x": -3729.2822265625, + "y": -4429.0654296875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3726.6845703125, + "y": -4438.4697265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3730.7236328125, + "y": -4437.998046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3732.982421875, + "y": -4434.646484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3736.7138671875, + "y": -4432.3427734375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3734.474609375, + "y": -4432.3515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3727.3017578125, + "y": -4432.943359375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3719.958984375, + "y": -4433.7001953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "15" + }, + { + "x": -3717.3798828125, + "y": -4432.24609375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3717.326171875, + "y": -4434.6328125, + "type": "target", + "move_mode": "walk" + }, + + { + "x": -3721.1396484375, + "y": -4434.50390625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3720.18359375, + "y": -4430.9423828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3719.9521484375, + "y": -4430.4619140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + { + "x": -3719.9375, + "y": -4430.4326171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "16" + }, + + { + "x": -3718.8193359375, + "y": -4432.46484375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3719.064453125, + "y": -4431.0537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3722.5244140625, + "y": -4430.033203125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3725.986328125, + "y": -4429.5283203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3726.0458984375, + "y": -4429.078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + { + "x": -3726.8388671875, + "y": -4428.9970703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "17" + }, + + { + "x": -3726.9306640625, + "y": -4428.8232421875, + "type": "path", + "move_mode": "walk" + } + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json new file mode 100644 index 00000000..3b75a362 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json @@ -0,0 +1,72 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + + { + "x": 4508.962890625, + "y": 3630.5791015625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4514.10400390625, + "y": 3606.422607421875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4504.19482421875, + "y": 3593.560791015625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4502.93115234375, + "y": 3596.22021484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : 1 + }, + { + "x": 4483.99267578125, + "y": 3574.0771484375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4471.1904296875, + "y": 3566.983642578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : 2 + }, + { + "x": 4471.05224609375, + "y": 3564.799072265625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4508.962890625, + "y": 3630.5791015625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4455.728515625, + "y": 3607.36669921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : 3 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json new file mode 100644 index 00000000..7bb91a90 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3199.884765625, + "y": 3433.569091796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3255.1708984375, + "y": 3466.55419921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3274.0615234375, + "y": 3448.466064453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3275.6982421875, + "y": 3450.93505859375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3275.99755859375, + "y": 3452.827392578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3275.96484375, + "y": 3449.72509765625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 3199.74853515625, + "y": 3433.9873046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3103.6552734375, + "y": 3451.550537109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + { + "x": 3105.48388671875, + "y": 3446.94287109375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3107.06884765625, + "y": 3445.429931640625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3104.091796875, + "y": 3444.09765625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3105.5556640625, + "y": 3441.872314453125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3087.34521484375, + "y": 3458.84326171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3079.5185546875, + "y": 3457.359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3073.13037109375, + "y": 3457.915283203125, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3072.232421875, + "y": 3461.12890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3069.193359375, + "y": 3461.64990234375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3067.74560546875, + "y": 3457.865234375, + "type": "path", + "move_mode": "walk" + } + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json new file mode 100644 index 00000000..5bf211a8 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json @@ -0,0 +1,41 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3773.974609375, + "y": 3784.01513671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3852.51171875, + "y": 3843.235107421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3949.00244140625, + "y": 3830.81884765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3949.00244140625, + "y": 3830.81884765625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3945.8671875, + "y": 3833.670654296875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json new file mode 100644 index 00000000..93be52be --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json @@ -0,0 +1,47 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4865.4423828125, + "y": 3913.009033203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4920.806640625, + "y": 3951.795654296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4969.2626953125, + "y": 3986.031982421875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4972.67529296875, + "y": 3998.30810546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4973.09423828125, + "y": 4002.472900390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": 4974.486328125, + "y": 4004.0869140625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json new file mode 100644 index 00000000..73387697 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json @@ -0,0 +1,89 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 4146.7646484375, + "y": 2606.246826171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4215.85400390625, + "y": 2483.687255859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4266.70654296875, + "y": 2467.33642578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4261.66748046875, + "y": 2470.94384765625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4266.96435546875, + "y": 2468.134521484375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4261.01025390625, + "y": 2462.982666015625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4258.93212890625, + "y": 2460.266357421875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 4259.05712890625, + "y": 2462.5830078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4261.85400390625, + "y": 2453.07177734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4266.78857421875, + "y": 2451.4091796875, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + + { + "x": 4268.025390625, + "y": 2448.65576171875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4266.03662109375, + "y": 2451.679931640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-东-3个(重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-东-3个(重兵把守).json new file mode 100644 index 00000000..741c5ee7 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-东-3个(重兵把守).json @@ -0,0 +1,70 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3636.08251953125, + "y": 4795.94384765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3586.474609375, + "y": 4721.8291015625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3580.4384765625, + "y": 4716.591796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": 3580.36376953125, + "y": 4713.65234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 3580.36376953125, + "y": 4713.65234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + { + "x": 3585.587890625, + "y": 4717.0830078125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3556.82568359375, + "y": 4736.08056640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3552.07763671875, + "y": 4737.794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json new file mode 100644 index 00000000..b028248f --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json @@ -0,0 +1,61 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3965.43603515625, + "y": 4718.36572265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3909.44970703125, + "y": 4659.083984375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3952.2607421875, + "y": 4669.4130859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3955.89697265625, + "y": 4691.7587890625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3955.89697265625, + "y": 4691.7587890625, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3958.95654296875, + "y": 4684.18603515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3957.703125, + "y": 4691.62255859375, + "type": "target", + "move_mode": "walk", + "action": "pick_around" + }, + { + "x": 3958.361328125, + "y": 4693.18310546875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json new file mode 100644 index 00000000..10a425ec --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json @@ -0,0 +1,426 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + + "positions":[ + { + "x": 4434.34375, + "y": 5091.7138671875, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 4423.9443359375, + "y": 5069.01953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4417.45361328125, + "y": 5065.1220703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4417.62255859375, + "y": 5068.408203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "PRE-1" + }, + { + "x": 4417.39892578125, + "y": 5069.22021484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "PRE-1-r" + }, + { + "x": 4417.45361328125, + "y": 5065.1220703125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4428.1611328125, + "y": 5032.60498046875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4376.3173828125, + "y": 4970.154296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4418.76025390625, + "y": 4953.2685546875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4407.50048828125, + "y": 4929.35205078125, + "type": "path", + "move_mode": "fly" + }, + + + + + { + "x": 4400.6455078125, + "y": 4929.09765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4396.62255859375, + "y": 4929.1748046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": 4399.92822265625, + "y": 4927.32666015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4400.134765625, + "y": 4923.1171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4400.3681640625, + "y": 4921.8701171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4399.8095703125, + "y": 4922.8818359375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4393.548828125, + "y": 4927.69384765625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4397.2158203125, + "y": 4928.18408203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4398.87255859375, + "y": 4925.7109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4396.32568359375, + "y": 4922.4599609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": 4399.39453125, + "y": 4924.00048828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4401.90478515625, + "y": 4922.0810546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + + + { + "x": 4398.96875, + "y": 4925.353515625, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 4397.89501953125, + "y": 4930.79296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + }, + { + "x": 4397.86328125, + "y": 4931.158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + }, + { + "x": 4397.86328125, + "y": 4931.158203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + }, + + { + "x": 4402.4287109375, + "y": 4931.62451171875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4406.68798828125, + "y": 4927.37353515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4401.42578125, + "y": 4921.8740234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4398.400390625, + "y": 4929.298828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4399.09765625, + "y": 4922.85595703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": 4400.71435546875, + "y": 4921.76318359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "7" + }, + { + "x": 4398.7900390625, + "y": 4933.11328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4405.4384765625, + "y": 4929.7138671875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4399.47412109375, + "y": 4923.42822265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4399.23876953125, + "y": 4921.650390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "8" + }, + { + "x": 4399.36572265625, + "y": 4920.29296875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4397.52197265625, + "y": 4921.1767578125, + "type": "path", + "move_mode": "walk" + } + ], + + + + + "positions0": + [ + { + "x": 4431.7890625, + "y": 5035.330078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4380.36376953125, + "y": 4978.099609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4412.21630859375, + "y": 4947.82373046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4413.69677734375, + "y": 4943.3505859375, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 4407.21728515625, + "y": 4929.189453125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4409.076171875, + "y": 4929.76953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4407.21728515625, + "y": 4929.189453125, + "type": "path", + "move_mode": "fly" + } + ], + "positions1": + [ + { + "x": 4434.33154296875, + "y": 5091.71044921875, + "type": "teleport", + "move_mode": "walk" + }, + + + { + "x": 4417.314453125, + "y": 4961.27783203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4412.79833984375, + "y": 4944.1826171875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4407.5029296875, + "y": 4929.724609375, + "type": "path", + "move_mode": "fly" + } + + ], + "positions2": + [ + { + "x": 4301.30615234375, + "y": 4764.99169921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4302.07177734375, + "y": 4765.6455078125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4309.3291015625, + "y": 4771.69921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4315.44921875, + "y": 4804.60595703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4324.7705078125, + "y": 4816.994140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4343.58203125, + "y": 4872.6142578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4360.2294921875, + "y": 4890.021484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4373.55517578125, + "y": 4890.02734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4403.61279296875, + "y": 4920.849609375, + "type": "path", + "move_mode": "fly" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-莫尔泰区-七天神像-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-莫尔泰区-七天神像-1个.json new file mode 100644 index 00000000..8544e8a1 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-莫尔泰区-七天神像-1个.json @@ -0,0 +1,67 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3563.25537109375, + "y": 3018.392578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3579.912109375, + "y": 3031.2421875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3591.27197265625, + "y": 3063.642578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3591.27197265625, + "y": 3063.642578125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3591.27197265625, + "y": 3063.642578125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3590.8828125, + "y": 3072.693603515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3586.4267578125, + "y": 3070.46240234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": 3583.62255859375, + "y": 3071.27734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3585.630859375, + "y": 3069.217529296875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json new file mode 100644 index 00000000..c4c52334 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json @@ -0,0 +1,189 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4984.69189453125, + "y": 4462.9599609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 5087.4580078125, + "y": 4518.19873046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5116.931640625, + "y": 4562.7197265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5155.3828125, + "y": 4591.1708984375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5158.80859375, + "y": 4610.67138671875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 5167.9189453125, + "y": 4662.44189453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5153.55712890625, + "y": 4666.28515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5145.482421875, + "y": 4673.1474609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5134.1943359375, + "y": 4690.6748046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5128.52490234375, + "y": 4654.82421875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 5129.06103515625, + "y": 4649.1259765625, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 5132.3681640625, + "y": 4646.5185546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5135.4677734375, + "y": 4645.865234375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "1" + }, + { + "x": 5131.74462890625, + "y": 4649.47119140625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5128.82568359375, + "y": 4654.2001953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5133.08203125, + "y": 4654.2001953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5131.20166015625, + "y": 4649.041015625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 5127.96484375, + "y": 4652.23193359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "2" + }, + { + "x": 5127.73681640625, + "y": 4652.82568359375, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "2r" + }, + + { + "x": 5126.41748046875, + "y": 4647.7568359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5126.466796875, + "y": 4646.53564453125, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "3" + }, + + + { + "x": 5136.3017578125, + "y": 4642.9140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5131.6513671875, + "y": 4643.20068359375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 5128.68994140625, + "y": 4645.8671875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5133.1435546875, + "y": 4648.5234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 5127.81005859375, + "y": 4650.935546875, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "NO.": "4" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-枫丹-莫尔泰区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-枫丹-莫尔泰区.json new file mode 100644 index 00000000..85107510 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-枫丹-莫尔泰区.json @@ -0,0 +1,33 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3563.1005859375, + "y": 3018.400390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3554.3837890625, + "y": 3020.732177734375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3553.67724609375, + "y": 3021.087890625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3555.28271484375, + "y": 3022.454345703125, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-稻妻-鹤观.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-稻妻-鹤观.json new file mode 100644 index 00000000..d0667f18 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(恢复)狗粮-稻妻-鹤观.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3268.9658203125, + "y": -6133.853515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3270.83203125, + "y": -6134.12890625, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3272.109375, + "y": -6131.5322265625, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3269.3427734375, + "y": -6129.86328125, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3268.7265625, + "y": -6131.9873046875, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json new file mode 100644 index 00000000..856db2e9 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json @@ -0,0 +1,73 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3595.623046875, + "y": 3254.41259765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3611.2626953125, + "y": 3270.2216796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3615.6, + "y": 3277.05, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 3615.302734375, + "y": 3276.057373046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 3611.1953125, + "y": 3278.960693359375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3594.375, + "y": 3287.00341796875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3585.166015625, + "y": 3289.40185546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 3583.4326171875, + "y": 3287.7548828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3583.5732421875, + "y": 3290.464599609375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json new file mode 100644 index 00000000..4c0b9258 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json @@ -0,0 +1,50 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3917.1767578125, + "y": 2576.28662109375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3904.10498046875, + "y": 2547.26171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 3899.5673828125, + "y": 2543.31640625, + "type": "target", + "move_mode": "walk", + "action":"", + "#" : "1" + }, + + { + "x": 3888.63525390625, + "y": 2531.804443359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3883.02880859375, + "y": 2526.17431640625, + "type": "target", + "move_mode": "walk", + "action":"", + "#" : "2" + }, + { + "x": 3879.810546875, + "y": 2521.3203125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json new file mode 100644 index 00000000..73d3119a --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json @@ -0,0 +1,75 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4146.75146484375, + "y": 2606.25634765625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4082.158203125, + "y": 2597.589599609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4043.56982421875, + "y": 2606.634521484375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4043.56982421875, + "y": 2606.634521484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + { + "x": 4146.76171875, + "y": 2606.19140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4192.82666015625, + "y": 2694.12109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4197.68408203125, + "y": 2694.229736328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4199.623046875, + "y": 2694.54052734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4203.59423828125, + "y": 2692.78955078125, + "type": "path", + "move_mode": "walk" + } + + + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json new file mode 100644 index 00000000..eeac4245 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json @@ -0,0 +1,139 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4001.06298828125, + "y": 4878.43701171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3951.5068359375, + "y": 4831.5673828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3951.25634765625, + "y": 4835.40869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3948.80908203125, + "y": 4844.0986328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3945.87353515625, + "y": 4850.1220703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3942.392578125, + "y": 4861.06591796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3950.94970703125, + "y": 4864.2421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3952.46728515625, + "y": 4862.3974609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3953.22021484375, + "y": 4857.1064453125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3953.05126953125, + "y": 4853.205078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": 3953.2607421875, + "y": 4857.310546875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3946.5185546875, + "y": 4876.19873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": 3947.05419921875, + "y": 4876.5859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 3955.32080078125, + "y": 4877.55859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3955.33349609375, + "y": 4879.58984375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3955.875, + "y": 4881.54345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 3954.81787109375, + "y": 4875.39111328125, + "type": "path", + "move_mode": "fly" + }, + { + "x": 3959.8349609375, + "y": 4875.939453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + }, + { + "x": 3960.79150390625, + "y": 4876.11279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个.json new file mode 100644 index 00000000..465a51fa --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个/2个.json @@ -0,0 +1,78 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4143.8984375, + "y": 4423.59228515625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4145.66552734375, + "y": 4418.8349609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 4145.66552734375, + "y": 4418.8349609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + + ], + + + + "position_not_actived": [ + { "#": "太远" }, + + { + "x": 3923.07763671875, + "y": 4233.857421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4097.6533203125, + "y": 4326.37890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4097.95361328125, + "y": 4324.28125, + "type": "target", + "move_mode": "walk", + "action": "pick_around", + "#": "2" + }, + + { + "x": 4096.02294921875, + "y": 4327.2353515625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4099.0654296875, + "y": 4328.869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4098.09765625, + "y": 4325.27490234375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json new file mode 100644 index 00000000..5594b6c0 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json @@ -0,0 +1,241 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4301.29443359375, + "y": 4765.06494140625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4309.482421875, + "y": 4770.5947265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4313.7529296875, + "y": 4774.91015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4285.86669921875, + "y": 4791.9169921875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4212.12548828125, + "y": 4820.1083984375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4204.53515625, + "y": 4816.443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4204.53515625, + "y": 4816.443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 4199.63134765625, + "y": 4803.568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4197.98876953125, + "y": 4779.876953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4196.68310546875, + "y": 4697.35986328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4196.9599609375, + "y": 4692.5341796875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4195.91455078125, + "y": 4690.79541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4188.525390625, + "y": 4676.29345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + { + "x": 4202.1494140625, + "y": 4662.65185546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4213.69580078125, + "y": 4647.7880859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4209.56982421875, + "y": 4630.24658203125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4214.72607421875, + "y": 4628.869140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4215.1982421875, + "y": 4628.6455078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4216.16015625, + "y": 4628.5517578125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + { + "x": 4202.34814453125, + "y": 4620.67626953125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4207.0263671875, + "y": 4618.68701171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4207.25244140625, + "y": 4619.9873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4206.8193359375, + "y": 4621.3759765625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4209.15869140625, + "y": 4618.73046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4206.95751953125, + "y": 4616.6552734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4206.43310546875, + "y": 4622.3056640625, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4196.42578125, + "y": 4624.1474609375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 4117.1728515625, + "y": 4661.068359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4114.39453125, + "y": 4667.30078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 4112.87060546875, + "y": 4667.14794921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": 4111.79736328125, + "y": 4666.82373046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": 4111.0791015625, + "y": 4668.72021484375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4115.34521484375, + "y": 4671.7236328125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json new file mode 100644 index 00000000..d3bbe3dd --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个/7个.json @@ -0,0 +1,217 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4624.3583984375, + "y": 4951.76953125, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": 4609.60595703125, + "y": 4937.71826171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4604.48583984375, + "y": 4934.646484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4604.48583984375, + "y": 4934.646484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4609.60595703125, + "y": 4937.71826171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4695.14013671875, + "y": 4995.1630859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4682.68798828125, + "y": 5008.39306640625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4681.24267578125, + "y": 5003.5537109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4678.181640625, + "y": 4999.17431640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4678.181640625, + "y": 4999.17431640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4688.0302734375, + "y": 4989.86865234375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4712.2392578125, + "y": 4928.29638671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4717.4814453125, + "y": 4929.82568359375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4720.08154296875, + "y": 4930.87353515625, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4723.99169921875, + "y": 4932.6865234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4723.48974609375, + "y": 4933.87158203125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4706.38916015625, + "y": 4924.84423828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4720.16943359375, + "y": 4909.900390625, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4737.955078125, + "y": 4910.080078125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4737.34423828125, + "y": 4906.07568359375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4735.310546875, + "y": 4902.712890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4735.37744140625, + "y": 4902.59423828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + { + "x": 4748.302734375, + "y": 4913.12890625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4751.97314453125, + "y": 4913.095703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4751.9345703125, + "y": 4912.9609375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4746.45166015625, + "y": 4908.9140625, + "type": "path", + "move_mode": "fly" + }, + + { + "x": 4758.13330078125, + "y": 4900.38427734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4758.13330078125, + "y": 4900.38427734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 4758.90966796875, + "y": 4899.86083984375, + "type": "pth", + "move_mode": "walk" + } + ], + + "positions_not_actived": [ + { "#": "有一个不拿,有干扰(就没录)" } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json new file mode 100644 index 00000000..5b89b0b2 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json @@ -0,0 +1,209 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + { + "x": 4498.20947265625, + "y": 4710.75146484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4525.82373046875, + "y": 4690.53173828125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4529.05322265625, + "y": 4688.23828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-1" + }, + { + "x": 4529.04541015625, + "y": 4688.23388671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-1" + }, + { + "x": 4515.21630859375, + "y": 4644.78662109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4514.89208984375, + "y": 4641.73046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-2" + }, + { + "x": 4480.251953125, + "y": 4633.33447265625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4468.74658203125, + "y": 4584.3046875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4463.68505859375, + "y": 4587.0361328125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4461.123046875, + "y": 4587.23095703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4456.05517578125, + "y": 4591.11376953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-3" + }, + { + "x": 4455.90185546875, + "y": 4591.2568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-3" + }, + { + "x": 4464.26611328125, + "y": 4594.8037109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4450.900390625, + "y": 4616.18310546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4444.26708984375, + "y": 4577.2490234375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + { + "x": 4443.9140625, + "y": 4573.6005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-4" + }, + + + + + { + "x": 4446.62255859375, + "y": 4611.61083984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4423.56396484375, + "y": 4605.86572265625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4426.4755859375, + "y": 4590.9287109375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4429.02001953125, + "y": 4583.8310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4429.33349609375, + "y": 4582.79541015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-5" + }, + + { + "x": 4426.63037109375, + "y": 4577.1171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4431.89453125, + "y": 4567.55859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-6" + }, + { + "x": 4431.8466796875, + "y": 4567.9443359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1-6" + } + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json new file mode 100644 index 00000000..c43a3a66 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json @@ -0,0 +1,141 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + + + { + "x": 4498.2177734375, + "y": 4710.80224609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4566.91064453125, + "y": 4733.60009765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + { + "x": 4563.70947265625, + "y": 4737.5703125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4561.50537109375, + "y": 4743.1923828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4561.50537109375, + "y": 4743.1923828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2- 1+2" + }, + { + "x": 4560.0244140625, + "y": 4742.79296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-1" + }, + { + "x": 4562.60009765625, + "y": 4743.57568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-2" + }, + { + "x": 4566.13623046875, + "y": 4743.39306640625, + "type": "target", + "move_mode": "walk" + }, + + { + "x": 4564.2783203125, + "y": 4746.8251953125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4557.90283203125, + "y": 4778.6806640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4555.578125, + "y": 4838.611328125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4568.578125, + "y": 4830.916015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4569.1552734375, + "y": 4826.7236328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-3" + }, + { + "x": 4568.302734375, + "y": 4827.03173828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-3 repeat" + }, + + { + "x": 4540.765625, + "y": 4846.49951171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4534.837890625, + "y": 4847.81298828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + }, + { + "x": 4534.4267578125, + "y": 4848.03515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + }, + { + "x": 4534.80419921875, + "y": 4847.86279296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2-4" + } + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json new file mode 100644 index 00000000..2a811c88 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json @@ -0,0 +1,225 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4545.568359375, + "y": 4225.68896484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4540.85595703125, + "y": 4198.55712890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4536.45751953125, + "y": 4202.59912109375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4535.7255859375, + "y": 4210.13916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4535.8486328125, + "y": 4211.103515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 4537.20947265625, + "y": 4210.876953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": 4539.25, + "y": 4200.2626953125, + "type": "path", + "move_mode": "walk" + }, + + + + + { + "x": 4547.75439453125, + "y": 4205.93310546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4555.5087890625, + "y": 4207.8681640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 4555.4658203125, + "y": 4207.78759765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + { + "x": 4552.4453125, + "y": 4219.98291015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4564.38232421875, + "y": 4231.63427734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4571.62548828125, + "y": 4226.84228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4571.7685546875, + "y": 4226.6708984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 4573.83251953125, + "y": 4223.65283203125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4572.8642578125, + "y": 4221.751953125, + "type": "path", + "move_mode": "walk" + }, + + + + + + + { + "x": 4545.53076171875, + "y": 4225.73583984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4537.87109375, + "y": 4231.0810546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4511.12353515625, + "y": 4260.70654296875, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4445.537109375, + "y": 4307.8427734375, + "type": "path", + "move_mode": "fly" + }, + { + "x": 4383.1318359375, + "y": 4338.974609375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4341.67919921875, + "y": 4334.3154296875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4323.0908203125, + "y": 4335.3369140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4315.45751953125, + "y": 4336.32861328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 4408.38232421875, + "y": 4299.90869140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 4425.123046875, + "y": 4297.01806640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 4433.6787109375, + "y": 4309.984375, + "type": "path", + "move_mode": "run" + }, + { + "x": 4435.56689453125, + "y": 4313.78564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 4435.46240234375, + "y": 4315.6640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4438.86474609375, + "y": 4313.9345703125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json new file mode 100644 index 00000000..6fb6acc9 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json @@ -0,0 +1,90 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4984.806640625, + "y": 4462.95556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4948.05712890625, + "y": 4457.57470703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4947.35400390625, + "y": 4458.25146484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + { + "x": 4950.8251953125, + "y": 4452.81201171875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4957.111328125, + "y": 4451.796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": 4957.14306640625, + "y": 4451.896484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + + + { + "x": 4956.78759765625, + "y": 4451.00390625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 4873.21484375, + "y": 4377.4365234375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4868.2734375, + "y": 4381.03857421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": 4868.22998046875, + "y": 4381.02294921875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json new file mode 100644 index 00000000..bb6c9088 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -1315.1552734375, + "y": -3776.1455078125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -1331.330078125, + "y": -3769.791015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -1354.482421875, + "y": -3761.173828125, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -1364.560546875, + "y": -3757.7734375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -1364.7578125, + "y": -3757.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -1363.892578125, + "y": -3756.333984375, + "type": "target", + "move_mode": "walk" + }, + + + { + "x": -1366.6474609375, + "y": -3756.6708984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -1366.6787109375, + "y": -3756.6015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -1366.2890625, + "y": -3753.4658203125, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json new file mode 100644 index 00000000..020b6756 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json @@ -0,0 +1,119 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -755.556640625, + "y": -4001.0576171875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -725.943359375, + "y": -4029.255859375, + "type": "path", + "move_mode": "run" + }, + { + "x": -709.2138671875, + "y": -4045.4638671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -704.0361328125, + "y": -4050.1259765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -700.99609375, + "y": -4057.7744140625, + "type": "path", + "move_mode": "run" + }, + { + "x": -677.654296875, + "y": -4045.9296875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -672.419921875, + "y": -4043.4560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -673.548828125, + "y": -4043.82421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + { + "x": -682.07421875, + "y": -4042.4619140625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -688.423828125, + "y": -4042.2841796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -689.103515625, + "y": -4042.796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -682.83203125, + "y": -4064.791015625, + "type": "path", + "move_mode": "run" + }, + { + "x": -689.36328125, + "y": -4084.0888671875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -694.6552734375, + "y": -4087.5498046875, + "type": "target", + "move_mode": "run", + "action": "", + "#": "4" + }, + { + "x": -692.21875, + "y": -4089.1806640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json new file mode 100644 index 00000000..da40f229 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json @@ -0,0 +1,190 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -1057.765625, + "y": -3946.099609375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -1064.2255859375, + "y": -3900.314453125, + "type": "path", + "move_mode": "run" + }, + { + "x": -1062.611328125, + "y": -3876.7705078125, + "type": "path", + "move_mode": "run" + }, + { + "x": -1061.4912109375, + "y": -3875.04296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -1059.796875, + "y": -3876.1328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -1043.0927734375, + "y": -3873.9521484375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -978.849609375, + "y": -3767.724609375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -992.6708984375, + "y": -3712.111328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + + + { + "x": -989.744140625, + "y": -3705.7880859375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -988.1533203125, + "y": -3703.9931640625, + "type": "path", + "move_mode": "fly" + }, + + + + { + "x": -985.392578125, + "y": -3703.5595703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -985.6689453125, + "y": -3703.8564453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -988.6318359375, + "y": -3701.8916015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -996.2705078125, + "y": -3695.244140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -996.8271484375, + "y": -3691.2900390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -995.3642578125, + "y": -3690.1416015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -994.6083984375, + "y": -3688.154296875, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -996.140625, + "y": -3701.3984375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -1007.9033203125, + "y": -3708.10546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -1009.0302734375, + "y": -3707.2490234375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + }, + + + { + "x": -1016.1298828125, + "y": -3714.86328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.720703125, + "y": -3715.3662109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.1474609375, + "y": -3715.806640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -1016.1181640625, + "y": -3717.6982421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -1017.8671875, + "y": -3717, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json new file mode 100644 index 00000000..fb6f335d --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json @@ -0,0 +1,206 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -4185.0078125, + "y": -4244.4521484375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -4164.5859375, + "y": -4246.80859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4161.0205078125, + "y": -4245.0068359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -4161.0458984375, + "y": -4244.984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + + { + "x": -4163.865234375, + "y": -4241.2314453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -4162.2724609375, + "y": -4241.0673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4158.0791015625, + "y": -4234.8876953125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4157.6640625, + "y": -4234.2001953125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4157.876953125, + "y": -4232.55078125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4157.876953125, + "y": -4232.55078125, + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": -4163.0869140625, + "y": -4229.8125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -4227.162109375, + "y": -4201.326171875, + "type": "path", + "move_mode": "run" + }, + + { + "x": -4241.8564453125, + "y": -4219.84375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -4246.2978515625, + "y": -4234.4384765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -4258.7373046875, + "y": -4229.5126953125, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": -4248.2919921875, + "y": -4261.1123046875, + "type": "path", + "move_mode": "run" + }, + { + "x": -4240.349609375, + "y": -4260.5869140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -4237.306640625, + "y": -4260.6796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + + + + { + "x": -4224.4462890625, + "y": -4255.716796875, + "type": "path", + "move_mode": "fly" + }, + + + + { + "x": -4228.125, + "y": -4239.2822265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -4228.341796875, + "y": -4238.9560546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + + { + "x": -4217.38671875, + "y": -4248.9228515625, + "type": "path", + "move_mode": "run" + }, + { + "x": -4216.552734375, + "y": -4251.2568359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + + { + "x": -4216.3388671875, + "y": -4269.9912109375, + "type": "path", + "move_mode": "run" + }, + { + "x": -4185.7373046875, + "y": -4300.0029296875, + "type": "target", + "move_mode": "run", + "action": "", + "#": "8" + }, + { + "x": -4185.59375, + "y": -4300.9140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json new file mode 100644 index 00000000..609c42fc --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json @@ -0,0 +1,54 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3704.0693359375, + "y": -4694.578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3720.130859375, + "y": -4711.158203125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3740.8837890625, + "y": -4738.6845703125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3737.982421875, + "y": -4746.4609375, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3711.8173828125, + "y": -4749.169921875, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "x": -3710.8828125, + "y": -4747.0546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -3712.4990234375, + "y": -4746.32421875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json new file mode 100644 index 00000000..1f64ab68 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json @@ -0,0 +1,239 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -4023.263671875, + "y": -4428.8388671875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3987.2587890625, + "y": -4454.291015625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3978.23828125, + "y": -4453.8369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": -3977.22265625, + "y": -4453.3837890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + + { + "x": -3973.921875, + "y": -4440.8544921875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3981.27734375, + "y": -4437.328125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3982.7822265625, + "y": -4437.41015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": -3983.701171875, + "y": -4437.736328125, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3982.19140625, + "y": -4437.0654296875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3971.8154296875, + "y": -4439.5927734375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3970.37890625, + "y": -4439.1357421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -3967.498046875, + "y": -4435.380859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3965.841796875, + "y": -4435.798828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": -3965.6923828125, + "y": -4438.0966796875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": -3965.6494140625, + "y": -4432.896484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3964.7197265625, + "y": -4429.9228515625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": -3968.4609375, + "y": -4425.71875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3970.2626953125, + "y": -4425.4140625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3972.595703125, + "y": -4425.369140625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": -3977.9921875, + "y": -4425.24609375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3978.4775390625, + "y": -4424.634765625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": -3969.28515625, + "y": -4427.4111328125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3966.9580078125, + "y": -4425.4560546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3966.9677734375, + "y": -4422.5, + "type": "path", + "move_mode": "fly" + }, + + { + "x": -3967.12890625, + "y": -4403.732421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": -3966.86328125, + "y": -4403.1083984375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": -3966.5634765625, + "y": -4402.4775390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + + { + "x": -3969.20703125, + "y": -4384.0546875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3969.20703125, + "y": -4384.0546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3969.2138671875, + "y": -4383.59375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "8" + }, + { + "x": -3965.51171875, + "y": -4383.279296875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个.json new file mode 100644 index 00000000..081a8c83 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个/6个.json @@ -0,0 +1,184 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3393.1181640625, + "y": -3556.0556640625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3394.71484375, + "y": -3552.19921875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3396.7734375, + "y": -3549.205078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + { + "x": -3399.2900390625, + "y": -3543.2275390625, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3403.35546875, + "y": -3543.359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -3404.2822265625, + "y": -3543.5341796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + + { + "x": -3405.5810546875, + "y": -3534.466796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -3405.6494140625, + "y": -3534.298828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + { + "x": -3405.6533203125, + "y": -3534.3056640625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + }, + + { + "x": -3406.099609375, + "y": -3534.6865234375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3446.3759765625, + "y": -3552.9873046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3446.3759765625, + "y": -3552.9873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -3446.40625, + "y": -3553.130859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + { + "x": -3444.8505859375, + "y": -3551.546875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "4" + }, + + { + "x": -3438.2578125, + "y": -3560.6640625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3436.1572265625, + "y": -3565.29296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + }, + { + "x": -3435.5322265625, + "y": -3566.9013671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "5" + } + + ], + + + + "positions_not_actived": [ + { "#": "最后一个不拿,重兵把守" }, + + { + "x": -3442.427734375, + "y": -3569.3125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3437.7919921875, + "y": -3573.4208984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3427.4033203125, + "y": -3573.28125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3422.0302734375, + "y": -3575.3935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3420.580078125, + "y": -3574.71875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "6" + }, + { + "x": -3418.3681640625, + "y": -3574.56640625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json new file mode 100644 index 00000000..113b0335 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json @@ -0,0 +1,113 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3437.0263671875, + "y": -3319.755859375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3420.0283203125, + "y": -3306.0888671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3406.646484375, + "y": -3286.25, + "type": "path", + "move_mode": "run" + }, + { + "x": -3405.4697265625, + "y": -3232.3525390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3407.9404296875, + "y": -3234.4228515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -3407.193359375, + "y": -3234.5576171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + { + "x": -3407.830078125, + "y": -3236.0400390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "1" + }, + + + + { + "x": -3437.0322265625, + "y": -3319.720703125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3460.4150390625, + "y": -3325.6875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3487.1845703125, + "y": -3326.2333984375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3521.6376953125, + "y": -3341.205078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -3531.95703125, + "y": -3342.421875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3537.845703125, + "y": -3343.4345703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "2" + }, + { + "x": -3539.8330078125, + "y": -3345.8359375, + "type": "target", + "move_mode": "walk", + "action": "", + "#" : "3" + } + + + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json new file mode 100644 index 00000000..e8992e42 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json @@ -0,0 +1,168 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3931.2216796875, + "y": -3202.7919921875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3934.5068359375, + "y": -3201.48046875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3936.80859375, + "y": -3203.115234375, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3940.4013671875, + "y": -3205.8408203125, + "type": "path", + "move_mode": "fly" + }, + + + { + "x": -3946.095703125, + "y": -3203.814453125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3958.9462890625, + "y": -3197.0888671875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 1 + }, + { + "x": -3958.0400390625, + "y": -3197.517578125, + "type": "path", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": -3959.95703125, + "y": -3196.861328125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + { + "x": -3961.4462890625, + "y": -3197.841796875, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3956.3203125, + "y": -3207.42578125, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3940.55859375, + "y": -3223.7568359375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + { + "x": -3940.5361328125, + "y": -3219.451171875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": -3928.0673828125, + "y": -3239.0546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3925.3115234375, + "y": -3264.466796875, + "type": "path", + "move_mode": "fly" + }, + + + { + "x": -3929.943359375, + "y": -3269.751953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": -3929.943359375, + "y": -3269.751953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + + + { + "x": -3984.2021484375, + "y": -3242.8232421875, + "type": "path", + "move_mode": "fly" + }, + { + "x": -3988.7119140625, + "y": -3228.68359375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 4 + }, + { + "x": -3990.63671875, + "y": -3227.7421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 4 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个/5个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个/5个.json new file mode 100644 index 00000000..c5cf5f31 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个/5个.json @@ -0,0 +1,150 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3234.0810546875, + "y": -3155.5439453125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3224.7939453125, + "y": -3140.484375, + "type": "path", + "move_mode": "run" + }, + { + "x": -3203.8857421875, + "y": -3105.0390625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3146.64453125, + "y": -3056.3671875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3137.4912109375, + "y": -3051.470703125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3143.033203125, + "y": -3036.3447265625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3143.990234375, + "y": -3021.7373046875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3138.84765625, + "y": -3023.9462890625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3155.2236328125, + "y": -3014.216796875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3164.201171875, + "y": -2974.904296875, + "type": "path", + "move_mode": "run" + }, + { + "x": -3210.8642578125, + "y": -2965.259765625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3219.095703125, + "y": -2964.89453125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": -3225.208984375, + "y": -2957.173828125, + "type": "path", + "move_mode": "run" + }, + { + "x": -3256.2265625, + "y": -2981.8115234375, + "type": "path", + "move_mode": "run" + }, + + + + { + "x": -3285.53125, + "y": -2971.0166015625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": -3287.6435546875, + "y": -2964.935546875, + "type": "path", + "move_mode": "walk" + }, + { + "x": -3288.8740234375, + "y": -2963.955078125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + } + + ], + + + + "position_not_actived": [ + { "#": "有干扰,不拿" }, + + { + "x": -3287.2421875, + "y": -2965.2568359375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3283.380859375, + "y": -2967.396484375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json new file mode 100644 index 00000000..ece7ae22 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3269.3486328125, + "y": -6136.1025390625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3220.759765625, + "y": -6183.2890625, + "type": "path", + "move_mode": "run" + }, + { + "x": -3219.5185546875, + "y": -6216.2353515625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3228.1904296875, + "y": -6219.2265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": -3228.859375, + "y": -6222.716796875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + { + "x": -3260.61328125, + "y": -6212.1015625, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3271.361328125, + "y": -6215.748046875, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + }, + { + "x": -3270.759765625, + "y": -6215.4892578125, + "type": "target", + "move_mode": "run", + "action": "", + "#": "3" + }, + + { + "x": -3270.3818359375, + "y": -6217.875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个.json new file mode 100644 index 00000000..4221252c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东偏中-2个.json @@ -0,0 +1,43 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3103.740234375, + "y": -6268.5400390625, + "type": "teleport", + "move_mode": "walk" + }, + + { + "x": -3037.77734375, + "y": -6187.048828125, + "type": "path", + "move_mode": "run" + }, + + { + "x": -3034.861328125, + "y": -6182.2666015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -3032.9755859375, + "y": -6182.5380859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -3035.11328125, + "y": -6182.3037109375, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个.json new file mode 100644 index 00000000..6a1cd95c --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-南-2个.json @@ -0,0 +1,43 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -2612.30078125, + "y": -6508.21875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -2581.470703125, + "y": -6529.7802734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -2581.470703125, + "y": -6529.7802734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -2579.80859375, + "y": -6533.02734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + + { + "x": -2582.0341796875, + "y": -6525.9619140625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json new file mode 100644 index 00000000..a89f83f9 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json @@ -0,0 +1,33 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3865.14990234375, + "y": 4492.30517578125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3868.4013671875, + "y": 4498.7373046875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3867.43310546875, + "y": 4496.9462890625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 3869.60791015625, + "y": 4499.50341796875, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json new file mode 100644 index 00000000..139587c9 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4545.4990234375, + "y": 4225.52587890625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4540.9921875, + "y": 4229.86328125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4541.85888671875, + "y": 4230.1533203125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4542.966796875, + "y": 4231.7197265625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4542.669921875, + "y": 4230.775390625, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json new file mode 100644 index 00000000..5b1a7850 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-清籁岛.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -4023.2431640625, + "y": -4428.8046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -4028.0732421875, + "y": -4434.740234375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -4030.4990234375, + "y": -4434.8369140625, + "type": "target", + "move_mode": "walk" + }, + { + "x": -4027.447265625, + "y": -4435.0537109375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -4027.6953125, + "y": -4437.0771484375, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json new file mode 100644 index 00000000..5076200d --- /dev/null +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -0,0 +1,39 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": -3233.248046875, + "y": -3534.1748046875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": -3238.814453125, + "y": -3535.791015625, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3241.732421875, + "y": -3534.873046875, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3241.0966796875, + "y": -3531.9755859375, + "type": "target", + "move_mode": "walk" + }, + { + "x": -3238.228515625, + "y": -3532.2783203125, + "type": "target", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个.json new file mode 100644 index 00000000..2d818092 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院周边+3个.json @@ -0,0 +1,190 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 4498.1982421875, + "y": 4710.67626953125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4445.49267578125, + "y": 4615.71533203125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4376.025390625, + "y": 4583.8095703125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4282.06689453125, + "y": 4596, + "type": "path", + "move_mode": "run" + }, + { + "x": 4274.20458984375, + "y": 4584.49267578125, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 4278.322265625, + "y": 4581.658203125, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4280.720703125, + "y": 4579.73193359375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 1 + }, + { + "x": 4281.57421875, + "y": 4579.0537109375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 1 + }, + { + "x": 4281.57421875, + "y": 4579.0537109375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 1 + }, + + + { + "x": 4301.3232421875, + "y": 4764.947265625, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 4302.1103515625, + "y": 4765.9833984375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4309.046875, + "y": 4769.8505859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 4334.97705078125, + "y": 4785.810546875, + "type": "path", + "move_mode": "run" + }, + { + "x": 4386.19287109375, + "y": 4822.47314453125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4385.12109375, + "y": 4825.5810546875, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4383.2890625, + "y": 4827.6865234375, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 2 + }, + { + "x": 4382.4169921875, + "y": 4828.38720703125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 2 + }, + { + "x": 4381.66357421875, + "y": 4828.92529296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 2 + }, + + + { + "x": 4428.43798828125, + "y": 4838.923828125, + "type": "path", + "move_mode": "run" + }, + { + "x": 4452.7392578125, + "y": 4861.34375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 4457.26513671875, + "y": 4866.49365234375, + "type": "target", + "move_mode": "walk" + }, + { + "x": 4458.3935546875, + "y": 4867.66015625, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 3 + }, + { + "x": 4459.04248046875, + "y": 4868.44873046875, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "attack(0.2),attack(0.2),attack(0.2)", + "#": 3 + }, + { + "x": 4459.04248046875, + "y": 4868.44873046875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": 3 + }, + { + "x": 4461.5029296875, + "y": 4870.7666015625, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json new file mode 100644 index 00000000..f6b07453 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json @@ -0,0 +1,276 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 7857.4638671875, + "y": -1751.333984375, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8003.58984375, + "y": -1744.78076171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 7994.86328125, + "y": -1745.2353515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 7994.86328125, + "y": -1745.2353515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + + { + "x": 8008.7412109375, + "y": -1738.15478515625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8053.34326171875, + "y": -1713.03271484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 8056.2685546875, + "y": -1715.15673828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 8056.2685546875, + "y": -1715.15673828125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 8056.9794921875, + "y": -1716.3125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + + + { + "x": 8258.3486328125, + "y": -1744.6220703125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8234.75, + "y": -1720.24462890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8230.8564453125, + "y": -1712.17041015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + { + "x": 8230.8564453125, + "y": -1712.17041015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + { + "x": 8400.59765625, + "y": -1221.3232421875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8374.5419921875, + "y": -1222.99951171875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8213.8203125, + "y": -1255.82275390625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8132.12255859375, + "y": -1276.19970703125, + "type": "path", + "move_mode": "run" + }, + + { + "x": 8127.0625, + "y": -1278.81005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 8127.0625, + "y": -1278.81005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + { + "x": 8127.0625, + "y": -1278.81005859375, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "4" + }, + + + + { + "x": 8124.8818359375, + "y": -1276.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 8124.8818359375, + "y": -1276.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 8124.8818359375, + "y": -1276.1015625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + { + "x": 8124.2548828125, + "y": -1277.1796875, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8125.6845703125, + "y": -1281.18212890625, + "type": "target", + "move_mode": "walk" + }, + { + "x": 8124.62060546875, + "y": -1290.23388671875, + "type": "path", + "move_mode": "run" + }, + { + "x": 8123.27001953125, + "y": -1330.814453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 8121.0458984375, + "y": -1400.533203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8140.86962890625, + "y": -1458.4140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 8143.2216796875, + "y": -1469.74072265625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 8144.7275390625, + "y": -1470.783203125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 8146.091796875, + "y": -1475.33837890625, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 8738.1943359375, + "y": -1857.46533203125, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 8766.15234375, + "y": -1834.3193359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8766.4541015625, + "y": -1825.40478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 8766.4541015625, + "y": -1825.40478515625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + } + + ] +} \ No newline at end of file diff --git a/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json new file mode 100644 index 00000000..ee11fd87 --- /dev/null +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json @@ -0,0 +1,272 @@ +{ + "info": { + "name": "", + "type": "collect", + "author":"Yang-z" + }, + "positions": [ + { + "x": 3128.6962890625, + "y": -1734.62841796875, + "type": "teleport", + "move_mode": "walk" + }, + { + "x": 3160.330078125, + "y": -1784.9462890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 3161.2568359375, + "y": -1780.14697265625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3162.83740234375, + "y": -1776.4501953125, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "1" + }, + { + "x": 3165.9248046875, + "y": -1770.85107421875, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3170.3037109375, + "y": -1771.859375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3175.1484375, + "y": -1776.59130859375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3178.7470703125, + "y": -1766.18896484375, + "type": "path", + "move_mode": "walk" + }, + + + { + "x": 3185.72119140625, + "y": -1755.3798828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3178.9228515625, + "y": -1743.14306640625, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3170.59619140625, + "y": -1737.13427734375, + "type": "path", + "move_mode": "walk" + }, + + { + "x": 3174.05126953125, + "y": -1723.1484375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3177.01318359375, + "y": -1719.6650390625, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "2" + }, + { + "x": 3210.4833984375, + "y": -1727.45556640625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3221.9130859375, + "y": -1706.65869140625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3238.64013671875, + "y": -1669.9541015625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3243.7470703125, + "y": -1675.4912109375, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3247.74853515625, + "y": -1670.6923828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3247.03955078125, + "y": -1668.3232421875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "3" + }, + + + + { + "x": 3259.34619140625, + "y": -1663.18896484375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3280.98681640625, + "y": -1663.34814453125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3303.05859375, + "y": -1658.505859375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3308.69287109375, + "y": -1649.82666015625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3333.64697265625, + "y": -1609.5849609375, + "type": "target", + "move_mode": "run", + "action": "", + "#": "4" + }, + { + "x": 3341.15234375, + "y": -1621.7734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3352.87890625, + "y": -1650.6552734375, + "type": "path", + "move_mode": "run" + }, + { + "x": 3343.59326171875, + "y": -1723.4775390625, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3331.9384765625, + "y": -1733.673828125, + "type": "path", + "move_mode": "walk" + }, + { + "x": 3330.30322265625, + "y": -1734.029296875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "5" + }, + + { + "x": 3317.349609375, + "y": -1764.421875, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3300.36376953125, + "y": -1788.787109375, + "type": "path", + "move_mode": "run" + }, + + { + "x": 3282.2421875, + "y": -1822.77490234375, + "type": "path", + "move_mode": "run" + }, + + + { + "x": 3236.48193359375, + "y": -1828.24462890625, + "type": "path", + "move_mode": "run" + }, + { + "x": 3233.76513671875, + "y": -1830.1875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "6" + }, + { + "x": 3232.25341796875, + "y": -1826.51806640625, + "type": "path", + "move_mode": "walk" + }, + + + + { + "x": 3206.49755859375, + "y": -1832.580078125, + "type": "path", + "move_mode": "run" + }, + { + "x": 3204.3251953125, + "y": -1832.138671875, + "type": "target", + "move_mode": "walk", + "action": "", + "#": "7" + }, + { + "x": 3202.92138671875, + "y": -1832.1591796875, + "type": "path", + "move_mode": "walk" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/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..5b01d6e3 Binary files /dev/null and b/repo/pathing/圣金虫/icon.ico differ diff --git a/repo/pathing/圣金虫/圣金虫_丰饶绿洲东南_4.json b/repo/pathing/圣金虫/圣金虫_丰饶绿洲东南_4.json new file mode 100644 index 00000000..7d042c22 --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_丰饶绿洲东南_4.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "圣金虫_丰饶绿洲东南_4", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "少一个点要用四叶印", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4444.7353515625, + "y": -2469.8173828125 + }, + { + "id": 2, + "x": 4466.77587890625, + "y": -2484.8798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4475.18359375, + "y": -2500.4716796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 4490.76416015625, + "y": -2524.3232421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4555.4697265625, + "y": -2517.5380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4572.78173828125, + "y": -2507.3291015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4595.47412109375, + "y": -2525.2568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4604.96630859375, + "y": -2534.1826171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4631.90380859375, + "y": -2558.353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4639.0224609375, + "y": -2569.341796875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/圣金虫_丰饶绿洲北_4.json b/repo/pathing/圣金虫/圣金虫_丰饶绿洲北_4.json new file mode 100644 index 00000000..cdddf9d2 --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_丰饶绿洲北_4.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "圣金虫_丰饶绿洲北_4", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4691.66455078125, + "y": -2345.1875 + }, + { + "id": 2, + "x": 4743.37158203125, + "y": -2342.0615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4761.01611328125, + "y": -2333.658203125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4761.81396484375, + "y": -2336.564453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4774.43359375, + "y": -2390.0693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4780.44970703125, + "y": -2406.8134765625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4758.908203125, + "y": -2441.9267578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4816.10107421875, + "y": -2451.2236328125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/圣金虫_丰饶绿洲南_1.json b/repo/pathing/圣金虫/圣金虫_丰饶绿洲南_1.json new file mode 100644 index 00000000..87cfc57d --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_丰饶绿洲南_1.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "圣金虫_丰饶绿洲南_1", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4795.578125, + "y": -2576.3466796875 + }, + { + "id": 2, + "x": 4803.3828125, + "y": -2621.3759765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4806.73681640625, + "y": -2632.6884765625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/圣金虫_显圣厅西_4.json b/repo/pathing/圣金虫/圣金虫_显圣厅西_4.json new file mode 100644 index 00000000..3d1272f7 --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_显圣厅西_4.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "圣金虫_显圣厅西_4", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4777.322265625, + "y": -1434.5712890625 + }, + { + "id": 2, + "x": 4786.32177734375, + "y": -1433.595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4798.00830078125, + "y": -1459.1015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4810.14990234375, + "y": -1453.8583984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4814.94091796875, + "y": -1463.60888671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4853.89697265625, + "y": -1494.97119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4897.56396484375, + "y": -1525.408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4905.619140625, + "y": -1539.60205078125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4916.18603515625, + "y": -1543.65283203125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/圣金虫_秘仪圣殿北_1.json b/repo/pathing/圣金虫/圣金虫_秘仪圣殿北_1.json new file mode 100644 index 00000000..b08f3159 --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_秘仪圣殿北_1.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "圣金虫_秘仪圣殿北_1", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4994.080078125, + "y": -2161.736328125 + }, + { + "id": 2, + "x": 4987.9482421875, + "y": -2190.603515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 4977.107421875, + "y": -2224.5419921875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/圣金虫_荼诃落谷西_3.json b/repo/pathing/圣金虫/圣金虫_荼诃落谷西_3.json new file mode 100644 index 00000000..3cd2eb91 --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_荼诃落谷西_3.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "圣金虫_荼诃落谷西_3", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "少一个点要用四叶印", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": 4790.89892578125, + "y": -3182.685546875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 4773.08447265625, + "y": -3147.3583984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4762.68603515625, + "y": -3115.7333984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4773.90576171875, + "y": -3089.408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4824.07958984375, + "y": -3103.958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4843.2880859375, + "y": -3111.1484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4881.9931640625, + "y": -3102.720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4888.08544921875, + "y": -3108.1396484375, + "type": "target", + "move_mode": "fly", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/圣金虫_阿如村东_1.json b/repo/pathing/圣金虫/圣金虫_阿如村东_1.json new file mode 100644 index 00000000..c8906a99 --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_阿如村东_1.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "圣金虫_阿如村东_1", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3999.75439453125, + "y": -2012.9365234375 + }, + { + "id": 2, + "x": 3963.4521484375, + "y": -1971.046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3948.6484375, + "y": -1954.4453125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/圣金虫_阿如村西北_5.json b/repo/pathing/圣金虫/圣金虫_阿如村西北_5.json new file mode 100644 index 00000000..2d889fa0 --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_阿如村西北_5.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "圣金虫_阿如村西北_5", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4409.697265625, + "y": -1874.69384765625 + }, + { + "id": 2, + "x": 4360.47705078125, + "y": -1865.017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4361.1416015625, + "y": -1845.07958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4366.8994140625, + "y": -1835.3701171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4368.17578125, + "y": -1839.111328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4387.716796875, + "y": -1811.794921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4396.39111328125, + "y": -1776.62451171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4380.41162109375, + "y": -1742.57666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4336.88134765625, + "y": -1736.919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4300.6279296875, + "y": -1725.248046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 4280.134765625, + "y": -1683.9169921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 12, + "x": 4283.11767578125, + "y": -1675.03857421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 4287.4599609375, + "y": -1670.8251953125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/圣金虫/圣金虫_饱饮之丘西_5.json b/repo/pathing/圣金虫/圣金虫_饱饮之丘西_5.json new file mode 100644 index 00000000..d20c6d2b --- /dev/null +++ b/repo/pathing/圣金虫/圣金虫_饱饮之丘西_5.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "圣金虫_饱饮之丘西_5", + "type": "collect", + "author": "Tim", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": 5655.60205078125, + "y": -1821.67626953125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 5651.4912109375, + "y": -1830.3291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 5673.34130859375, + "y": -1837.92724609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 5679.982421875, + "y": -1840.0048828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 5652.96240234375, + "y": -1902.60400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 5644.90966796875, + "y": -1914.69921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 5639.447265625, + "y": -1896.4111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 5630.94970703125, + "y": -1878.38720703125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 5634.46875, + "y": -1874.25390625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 5633.86181640625, + "y": -1855.525390625, + "type": "target", + "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..03eecfca Binary files /dev/null and b/repo/pathing/塞西莉亚花/icon.ico differ diff --git a/repo/pathing/塞西莉亚花/塞西莉亚花37个.json b/repo/pathing/塞西莉亚花/塞西莉亚花37个.json new file mode 100644 index 00000000..56c7c5c8 --- /dev/null +++ b/repo/pathing/塞西莉亚花/塞西莉亚花37个.json @@ -0,0 +1,396 @@ +{ + "info": { + "name": "塞西莉亚花37个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": -1506.9775390625, + "y": 2297.84130859375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1604.3701171875, + "y": 2409.84326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1652.3115234375, + "y": 2423.43408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1691.08984375, + "y": 2445.873779296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1702.5439453125, + "y": 2439.841064453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1723.6318359375, + "y": 2462.883056640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1720.6904296875, + "y": 2475.099609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1719.033203125, + "y": 2480.406494140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1702.3291015625, + "y": 2457.38916015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1701.1181640625, + "y": 2455.237548828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1701.11328125, + "y": 2455.240234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -1696.94921875, + "y": 2506.199951171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -1699.3232421875, + "y": 2508.429443359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -1722.06640625, + "y": 2512.48876953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -1725.1875, + "y": 2513.665771484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -1724.283203125, + "y": 2510.134521484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -1744.82421875, + "y": 2602.228515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -1745.4140625, + "y": 2610.408935546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -1744.2548828125, + "y": 2611.99853515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -1722.6513671875, + "y": 2601.17578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -1717.9814453125, + "y": 2600.48828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -1716.73828125, + "y": 2601.591552734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -1717.8671875, + "y": 2604.828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -1695.708984375, + "y": 2586.6015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -1695.5986328125, + "y": 2586.077392578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -1693.6162109375, + "y": 2582.2958984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -1698.5634765625, + "y": 2580.625244140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -1696.2646484375, + "y": 2554.865478515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -1695.65234375, + "y": 2552.568603515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": -1693.3056640625, + "y": 2554.842041015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -1691.0185546875, + "y": 2535.100341796875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": -1664.548828125, + "y": 2528.294677734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": -1662.69140625, + "y": 2528.20849609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": -1656.140625, + "y": 2492.5517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": -1648.09765625, + "y": 2489.28076171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": -1646.3388671875, + "y": 2488.601318359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": -1638.38671875, + "y": 2486.57568359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": -1702.412109375, + "y": 2453.161865234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": -1727.765625, + "y": 2426.619384765625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": -1727.958984375, + "y": 2425.51953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": -1746.82421875, + "y": 2421.1064453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": -1759.3056640625, + "y": 2419.96826171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 43, + "x": -1780.1279296875, + "y": 2419.27001953125, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 44, + "x": -1832.0966796875, + "y": 2417.60546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": -1834.326171875, + "y": 2423.422119140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": -1835.01953125, + "y": 2425.089599609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": -1833.9638671875, + "y": 2429.7880859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": -1827.4853515625, + "y": 2426.2109375, + "type": "target", + "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..d9d53d64 Binary files /dev/null and b/repo/pathing/墩墩桃/icon.ico differ diff --git a/repo/pathing/墩墩桃/墩墩桃1.json b/repo/pathing/墩墩桃/墩墩桃1.json new file mode 100644 index 00000000..22352333 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃1.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "墩墩桃", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "卡萨扎莱宫左边墩墩桃20个", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2803.81787109375, + "y": 9.4013671875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2815.603515625, + "y": 35.43896484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 2822.7783203125, + "y": 54.78515625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 2834.86279296875, + "y": 90.5712890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 2801.8916015625, + "y": 82.99853515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 2797.54833984375, + "y": 100.45654296875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 2789.02587890625, + "y": 134.32763671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 2782.26806640625, + "y": 140.70263671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 2841.30810546875, + "y": 116.57177734375, + "action": "", + "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..4488a3b0 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃10.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "墩墩桃10", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "墩墩桃", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2631.84423828125, + "y": -1016.96533203125 + }, + { + "id": 2, + "x": 2605.0615234375, + "y": -986.48974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2623.919921875, + "y": -944.66015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2618.47802734375, + "y": -919.05419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2612.658203125, + "y": -906.33154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2609.591796875, + "y": -912.57958984375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃11.json b/repo/pathing/墩墩桃/墩墩桃11.json new file mode 100644 index 00000000..48b2b9df --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃11.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "墩墩桃11", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "墩墩桃", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2701.60888671875, + "y": -761.87109375 + }, + { + "id": 2, + "x": 2688.40087890625, + "y": -772.849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2682.05224609375, + "y": -777.322265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2697.224609375, + "y": -795.376953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 2715.7431640625, + "y": -823.50732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2733.08056640625, + "y": -836.49609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃14.json b/repo/pathing/墩墩桃/墩墩桃14.json new file mode 100644 index 00000000..caa89d59 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃14.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "墩墩桃14", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2217.1240234375, + "y": -564.32861328125 + }, + { + "id": 2, + "x": 2236.54931640625, + "y": -585.27685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2214.158203125, + "y": -602.19580078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2203.38232421875, + "y": -623.271484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2188.34375, + "y": -653.61328125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃16.json b/repo/pathing/墩墩桃/墩墩桃16.json new file mode 100644 index 00000000..06a6a739 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃16.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "墩墩桃16", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2794.12451171875, + "y": -1216.42236328125 + }, + { + "id": 2, + "x": 2827.83740234375, + "y": -1241.81689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2844.529296875, + "y": -1261.75146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2864.041015625, + "y": -1283.14501953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2887.265625, + "y": -1299.10302734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2794.1494140625, + "y": -1216.4072265625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2843.5927734375, + "y": -1202.70263671875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 8, + "x": 2842.50439453125, + "y": -1197.4599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 2879.37548828125, + "y": -1188.86083984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 2880.29345703125, + "y": -1165.3154296875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 11, + "x": 2852.0390625, + "y": -1117.57373046875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 12, + "x": 2839.18115234375, + "y": -1087.25146484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 2782.41015625, + "y": -1124.6474609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃18.json b/repo/pathing/墩墩桃/墩墩桃18.json new file mode 100644 index 00000000..1c2b7051 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃18.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "墩墩桃18", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2567.50927734375, + "y": -1424.09423828125 + }, + { + "id": 2, + "x": 2560.853515625, + "y": -1421.1826171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2568.35009765625, + "y": -1375.78515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2596.810546875, + "y": -1299.25537109375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃19.json b/repo/pathing/墩墩桃/墩墩桃19.json new file mode 100644 index 00000000..4bdd8d1c --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃19.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "墩墩桃19", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2567.47802734375, + "y": -1424.0517578125 + }, + { + "id": 2, + "x": 2513.73876953125, + "y": -1515.3505859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 2514.9560546875, + "y": -1526.38232421875, + "type": "target", + "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..6edeed72 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃2.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "卡萨扎莱宫右下", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "卡萨扎莱宫右下4个墩墩桃", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2342.3232421875, + "y": -4.60888671875 + }, + { + "id": 2, + "x": 2369.5634765625, + "y": -5.961914062500002, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2403.70751953125, + "y": -21.48974609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃20 .json b/repo/pathing/墩墩桃/墩墩桃20 .json new file mode 100644 index 00000000..9882ce7c --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃20 .json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "墩墩桃20 ", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2246.1689453125, + "y": -1680.384765625 + }, + { + "id": 2, + "x": 2232.2998046875, + "y": -1668.60986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2221.48779296875, + "y": -1677.142578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2185.505859375, + "y": -1656.51904296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2178.6845703125, + "y": -1665.076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2172.6630859375, + "y": -1662.22119140625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃3.json b/repo/pathing/墩墩桃/墩墩桃3.json new file mode 100644 index 00000000..d4105c24 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃3.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "墩墩桃3", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "4个墩墩桃", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2531.90673828125, + "y": -144.70849609375 + }, + { + "id": 2, + "x": 2532.67431640625, + "y": -155.0859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2539.8466796875, + "y": -182.474609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 2548.8359375, + "y": -201.54736328125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃4.json b/repo/pathing/墩墩桃/墩墩桃4.json new file mode 100644 index 00000000..11e8549b --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃4.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "墩墩桃4", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "4个墩墩桃", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2531.96240234375, + "y": -144.7197265625 + }, + { + "id": 2, + "x": 2530.9150390625, + "y": -120.61474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2514.51806640625, + "y": -106.619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2502.95361328125, + "y": -97.82421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2498.13818359375, + "y": -89.11328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2503.11865234375, + "y": -73.5615234375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃5.json b/repo/pathing/墩墩桃/墩墩桃5.json new file mode 100644 index 00000000..65497fba --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃5.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "未命名路径", + "type": "collect", + "author": "墩墩桃5", + "version": "1.0", + "description": "4个墩墩桃", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3591.7177734375, + "y": -787.7001953125 + }, + { + "id": 2, + "x": 3594.99462890625, + "y": -835.45654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3599.67431640625, + "y": -846.42919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3601.34521484375, + "y": -860.34521484375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃7.json b/repo/pathing/墩墩桃/墩墩桃7.json new file mode 100644 index 00000000..2fc44617 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃7.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "墩墩桃7", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2220.1376953125, + "y": -431.1787109375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2187.83447265625, + "y": -394.04443359375, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃8.json b/repo/pathing/墩墩桃/墩墩桃8.json new file mode 100644 index 00000000..b148e52c --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃8.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "墩墩桃8", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "墩墩桃", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3252.83642578125, + "y": -591.27685546875 + }, + { + "id": 2, + "x": 3260.21435546875, + "y": -588.19580078125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/墩墩桃/墩墩桃9.json b/repo/pathing/墩墩桃/墩墩桃9.json new file mode 100644 index 00000000..cbe24b89 --- /dev/null +++ b/repo/pathing/墩墩桃/墩墩桃9.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "墩墩桃9", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3067.84521484375, + "y": -713.859375 + }, + { + "id": 2, + "x": 3081.55517578125, + "y": -730.06201171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3100.880859375, + "y": -748.13525390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 3098.53125, + "y": -755.26123046875, + "type": "target", + "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..736943c5 Binary files /dev/null and b/repo/pathing/天云草实/icon.ico differ diff --git a/repo/pathing/天云草实/天云草实-天云峠02-10个.json b/repo/pathing/天云草实/天云草实-天云峠02-10个.json new file mode 100644 index 00000000..83bee683 --- /dev/null +++ b/repo/pathing/天云草实/天云草实-天云峠02-10个.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "天云草实-天云峠0201-10个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -4170.5537109375, + "y": -4571.369140625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4194.4443359375, + "y": -4564.248046875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -4205.6318359375, + "y": -4572.7548828125, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 4, + "x": -4227.8828125, + "y": -4568.5302734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -4243.9189453125, + "y": -4565.666015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -4277.939453125, + "y": -4540.3837890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -4293.185546875, + "y": -4481.328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -4309.8740234375, + "y": -4470.0234375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": -4313.5400390625, + "y": -4450.9599609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -4322.03515625, + "y": -4448.06640625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/天云草实/天云草实-天云峠左下角-26个.json b/repo/pathing/天云草实/天云草实-天云峠左下角-26个.json new file mode 100644 index 00000000..78b74961 --- /dev/null +++ b/repo/pathing/天云草实/天云草实-天云峠左下角-26个.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "天云草实-天云峠左下角-26个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -4251.8896484375, + "y": -4785.4619140625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4191.798828125, + "y": -4802.6416015625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -4121.1064453125, + "y": -4839.08984375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -4086.4384765625, + "y": -4849.3173828125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": -4080.5361328125, + "y": -4805.7587890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -4067.345703125, + "y": -4757.71875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": -4048.90234375, + "y": -4732.5419921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": -4061.1376953125, + "y": -4685.978515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": -4066.451171875, + "y": -4688.671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": -4084.330078125, + "y": -4671.095703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": -4122.0859375, + "y": -4674.75390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -4119.248046875, + "y": -4686.6474609375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": -4114.494140625, + "y": -4705.8203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": -4120.4814453125, + "y": -4706.6630859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": -4114.9580078125, + "y": -4726.6923828125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": -4113.34765625, + "y": -4733.134765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": -4103.6220703125, + "y": -4775.705078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": -4109.798828125, + "y": -4805.7724609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": -4108.2744140625, + "y": -4816.23046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": -4135.2265625, + "y": -4812.4775390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": -4130.5458984375, + "y": -4807.458984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 23, + "x": -4145.0576171875, + "y": -4830.291015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": -4159.435546875, + "y": -4829.1416015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": -4164.974609375, + "y": -4832.0791015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 26, + "x": -4164.41015625, + "y": -4842.6015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 27, + "x": -4178.8974609375, + "y": -4850.361328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 28, + "x": -4192.330078125, + "y": -4844.1337890625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/天云草实/天云草实-石越村-6个.json b/repo/pathing/天云草实/天云草实-石越村-6个.json new file mode 100644 index 00000000..c6a7d010 --- /dev/null +++ b/repo/pathing/天云草实/天云草实-石越村-6个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "天云草实-石越村-6个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -3891.6279296875, + "y": -4389.9697265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3869.509765625, + "y": -4390.376953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3841.1982421875, + "y": -4397.029296875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -3834.916015625, + "y": -4398.3896484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -3835.609375, + "y": -4402, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3839.609375, + "y": -4401.32421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -3891.546875, + "y": -4389.9267578125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 8, + "x": -3893.123046875, + "y": -4381.1357421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -3893.7431640625, + "y": -4342.71484375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/天云草实/天云草实-越石村右侧-6个.json b/repo/pathing/天云草实/天云草实-越石村右侧-6个.json new file mode 100644 index 00000000..a324df70 --- /dev/null +++ b/repo/pathing/天云草实/天云草实-越石村右侧-6个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "天云草实-越石村右侧-6个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -4184.7373046875, + "y": -4244.7734375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 3, + "x": -4195.28125, + "y": -4253.775390625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 4, + "x": -4202.1484375, + "y": -4258.451171875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 5, + "x": -4214.4521484375, + "y": -4269.4794921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -4216.560546875, + "y": -4271.7607421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -4217.9716796875, + "y": -4269.0986328125, + "action": "", + "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..b6ba727b Binary files /dev/null and b/repo/pathing/子探测单元/icon.ico differ diff --git a/repo/pathing/子探测单元/子探测单元-1(共4个).json b/repo/pathing/子探测单元/子探测单元-1(共4个).json new file mode 100644 index 00000000..67b34751 --- /dev/null +++ b/repo/pathing/子探测单元/子探测单元-1(共4个).json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "子探测单元-1", + "type": "collect", + "author": "宇寒", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.3" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4545.48388671875, + "y": 4225.6357421875 + }, + { + "id": 2, + "x": 4541.55126953125, + "y": 4213.66796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4548.9560546875, + "y": 4212.3056640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4557.63671875, + "y": 4198.1728515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4570.1923828125, + "y": 4210.31689453125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/子探测单元/子探测单元-2(共9个).json b/repo/pathing/子探测单元/子探测单元-2(共9个).json new file mode 100644 index 00000000..32a936d3 --- /dev/null +++ b/repo/pathing/子探测单元/子探测单元-2(共9个).json @@ -0,0 +1,204 @@ +{ + "info": { + "name": "子探测单元-2(共9个)", + "type": "collect", + "author": "宇寒", + "version": "1.3.1", + "description": "修复历史:1.1:修复了飞行不下落的问题;1.2:修改了路径方案;1.3:避免了部分卡死;1.3.1:修复了已知问题", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4935.10498046875, + "y": 4183.357421875 + }, + { + "id": 2, + "x": 4921.83642578125, + "y": 4179.8603515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4950.39599609375, + "y": 4200.677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4948.11474609375, + "y": 4203.533203125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4984.76318359375, + "y": 4462.91650390625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4905.611328125, + "y": 4424.2236328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4893.77294921875, + "y": 4402.9775390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4878.89599609375, + "y": 4389.3935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4876.6748046875, + "y": 4370.005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4869.79248046875, + "y": 4379.73388671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 4870.52685546875, + "y": 4367.8056640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 4867.73095703125, + "y": 4280.0947265625, + "type": "path", + "move_mode": "swim", + "action": "" + }, + { + "id": 13, + "x": 4868.03759765625, + "y": 4276.17724609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 4866.1572265625, + "y": 4275.7177734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 4984.81201171875, + "y": 4462.9541015625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 5133.841796875, + "y": 4582.04052734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 5139.728515625, + "y": 4589.1123046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 5139.35693359375, + "y": 4594.6474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 5120.0185546875, + "y": 4615.7822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 5108.107421875, + "y": 4644.2314453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 5116.806640625, + "y": 4652.966796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 5130.8515625, + "y": 4668.63427734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 5129.17138671875, + "y": 4666.51220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 5132.0458984375, + "y": 4666.15283203125, + "type": "target", + "move_mode": "walk", + "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..c95b334c --- /dev/null +++ b/repo/pathing/子探测单元/子探测单元-3(共6个).json @@ -0,0 +1,212 @@ +{ + "info": { + "name": "子探测单元-3(共6个)", + "type": "collect", + "author": "宇寒", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4143.86474609375, + "y": 4423.58349609375 + }, + { + "id": 2, + "x": 4156.7001953125, + "y": 4428.7216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4170.25927734375, + "y": 4424.7080078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4174.623046875, + "y": 4421.8134765625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4179.80224609375, + "y": 4421.49365234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4143.87548828125, + "y": 4423.5673828125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4136.72119140625, + "y": 4419.30078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4132.30419921875, + "y": 4405.6484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4138.45263671875, + "y": 4403.11767578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4144.36279296875, + "y": 4412.7998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 4149.02685546875, + "y": 4432.39208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 4147.921875, + "y": 4432.67822265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 4168.83056640625, + "y": 4425.61279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 4167.01611328125, + "y": 4420.68701171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 4181.03515625, + "y": 4421.716796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 4208.6513671875, + "y": 4419.57666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 4277.5888671875, + "y": 4435.365234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 4309.0126953125, + "y": 4406.216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 4326.25439453125, + "y": 4428.4248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 4376.05712890625, + "y": 4420.375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 4379.45849609375, + "y": 4426.95458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 4385.39599609375, + "y": 4425.30078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 4378.6142578125, + "y": 4404.21044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 4382.47802734375, + "y": 4398.1298828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 4372.49658203125, + "y": 4395.0341796875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/子探测单元/子探测单元-4(共6个).json b/repo/pathing/子探测单元/子探测单元-4(共6个).json new file mode 100644 index 00000000..89da0858 --- /dev/null +++ b/repo/pathing/子探测单元/子探测单元-4(共6个).json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "子探测单元-4(共6个)", + "type": "collect", + "author": "宇寒", + "version": "1.1", + "description": "略", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3818.0673828125, + "y": 4950.0771484375 + }, + { + "id": 2, + "x": 3821.64111328125, + "y": 4878.1396484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3826.966796875, + "y": 4872.0478515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3794.40283203125, + "y": 4811.63671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3803.5498046875, + "y": 4811.53125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3811.1982421875, + "y": 4808.44970703125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4496.58203125, + "y": 4710.15966796875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 4450.83984375, + "y": 4607.79833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4442.5712890625, + "y": 4586.13525390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4435.8984375, + "y": 4586.375, + "type": "target", + "move_mode": "walk", + "action": "normal_attack" + }, + { + "id": 11, + "x": 4439.63037109375, + "y": 4584.92919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 4428.89013671875, + "y": 4544.1904296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 4415.65966796875, + "y": 4543.9453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 4395.47509765625, + "y": 4560.767578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 4300.98583984375, + "y": 4580.36083984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 4290.802734375, + "y": 4597.6240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 4270.279296875, + "y": 4592.6455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 4265.001953125, + "y": 4588.224609375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/子探测单元/子探测单元-5(共3个).json b/repo/pathing/子探测单元/子探测单元-5(共3个).json new file mode 100644 index 00000000..05952c3c --- /dev/null +++ b/repo/pathing/子探测单元/子探测单元-5(共3个).json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "子探测单元-5(共3个)", + "type": "collect", + "author": "宇寒", + "version": "1.0", + "description": "略", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4624.37109375, + "y": 4951.73974609375 + }, + { + "id": 2, + "x": 4678.09521484375, + "y": 4951.94970703125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4664.251953125, + "y": 4982.8388671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4715.7802734375, + "y": 4912.98583984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4730.07177734375, + "y": 4910.36181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4732.31640625, + "y": 4915.7529296875, + "type": "target", + "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..f0f4a6ff Binary files /dev/null and b/repo/pathing/小灯草/icon.ico differ diff --git a/repo/pathing/小灯草/小灯草-晨曦酒庄-蒙德4个.json b/repo/pathing/小灯草/小灯草-晨曦酒庄-蒙德4个.json index 70338533..50ab137c 100644 --- a/repo/pathing/小灯草/小灯草-晨曦酒庄-蒙德4个.json +++ b/repo/pathing/小灯草/小灯草-晨曦酒庄-蒙德4个.json @@ -1,54 +1,54 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"小灯草-晨曦酒庄-蒙德4个", - "description":"", - "type":"collect", - "author":"不瘦五十斤不改名" - }, - "positions":[ - { - "x":-201.20703125, - "y":1861.82958984375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-125.4638671875, - "y":1875.52197265625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-120.5341796875, - "y":1876.8720703125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-116.94921875, - "y":1873.3349609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-117.626953125, - "y":1870.197265625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-119.4970703125, - "y":1869.9794921875, - "type":"path", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "小灯草-晨曦酒庄-蒙德4个", + "description": "", + "type": "collect", + "author": "不瘦五十斤不改名" + }, + "positions": [ + { + "x": -201.20703125, + "y": 1861.82958984375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": -125.4638671875, + "y": 1875.52197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -120.5341796875, + "y": 1876.8720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -116.94921875, + "y": 1873.3349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -117.626953125, + "y": 1870.197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -119.4970703125, + "y": 1869.9794921875, + "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..b813fd36 Binary files /dev/null and b/repo/pathing/帕蒂沙兰/icon.ico differ diff --git a/repo/pathing/帕蒂沙兰/帕蒂沙兰 卡萨扎莱宫.json b/repo/pathing/帕蒂沙兰/帕蒂沙兰 卡萨扎莱宫.json new file mode 100644 index 00000000..da860479 --- /dev/null +++ b/repo/pathing/帕蒂沙兰/帕蒂沙兰 卡萨扎莱宫.json @@ -0,0 +1,196 @@ +{ + "info": { + "name": "帕蒂沙兰 卡萨扎莱宫", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 2482.81640625, + "y": 6.11083984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2500.750895987534, + "y": 20, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 2515.5007244689386, + "y": 36.5, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 2536.247760031165, + "y": 76.75, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 2551.77734375, + "y": 82.9755859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 2555.982421875, + "y": 82.857421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 2557.40966796875, + "y": 84.072265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 2581.12646484375, + "y": 88.7490234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 2589.93408203125, + "y": 83.92138671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 2591.58154296875, + "y": 75.03759765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 2596.103515625, + "y": 68.60107421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 12, + "x": 2603.55322265625, + "y": 64.869140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 13, + "x": 2617.375, + "y": 80.88525390625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 14, + "x": 2612.75, + "y": 88, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 15, + "x": 2602.9992533437216, + "y": 87, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 2595.59228515625, + "y": 91.453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 2612.5000452793083, + "y": 90.25, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 18, + "x": 2616.88525390625, + "y": 93.86474609375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": 2626.7607421875, + "y": 96.29052734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": 2625.7500452793083, + "y": 78, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 21, + "x": 2624.249230251753, + "y": 56, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 22, + "x": 2630.359375, + "y": 51.50439453125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 23, + "x": 2616.45556640625, + "y": 47.548828125, + "action": "", + "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..4a96b585 --- /dev/null +++ b/repo/pathing/帕蒂沙兰/帕蒂沙兰 桓那兰那.json @@ -0,0 +1,316 @@ +{ + "info": { + "name": "帕蒂沙兰 桓那兰那", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3453.4609375, + "y": -98.2236328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3464.658203125, + "y": -143.18310546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 3470.49951171875, + "y": -156.3564453125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 3485.96630859375, + "y": -155.52392578125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 3483.16845703125, + "y": -143.6259765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 3502.861328125, + "y": -131.3671875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 7, + "x": 3507.97607421875, + "y": -136.72021484375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 3509.65283203125, + "y": -142.955078125, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 9, + "x": 3505.19140625, + "y": -147.20947265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 3511.65625, + "y": -155.1552734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 3518.4921875, + "y": -156.68115234375, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 12, + "x": 3523.04150390625, + "y": -154.97705078125, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 13, + "x": 3525.5576171875, + "y": -152.880859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 3528.36474609375, + "y": -148.53515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 3531.02783203125, + "y": -147.79248046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 3533.970703125, + "y": -148.4033203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 3533.65869140625, + "y": -152.5068359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": 3535.7509765625, + "y": -156.666015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": 3532.720703125, + "y": -158.6875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 20, + "x": 3528.63037109375, + "y": -188.8232421875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 21, + "x": 3528.35302734375, + "y": -192.53955078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": 3508.75390625, + "y": -193.8134765625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 23, + "x": 3506.50048828125, + "y": -188.66943359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 3506.87890625, + "y": -194.8935546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": 3518.26171875, + "y": -191.88134765625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 26, + "x": 3535.07568359375, + "y": -192.2421875, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 27, + "x": 3550.1865234375, + "y": -215.59912109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 28, + "x": 3570.28125, + "y": -215.0673828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 29, + "x": 3589.22119140625, + "y": -189.5986328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 30, + "x": 3612.5732421875, + "y": -177.26171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 31, + "x": 3610.44482421875, + "y": -181.7509765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": 3613.2978515625, + "y": -201.33251953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 33, + "x": 3610.60546875, + "y": -202.45068359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 34, + "x": 3617.822265625, + "y": -195.75390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 35, + "x": 3610.2578125, + "y": -178.66015625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 36, + "x": 3638.67431640625, + "y": -177.294921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 37, + "x": 3641.0712890625, + "y": -196.06103515625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 38, + "x": 3643.69677734375, + "y": -197.529296875, + "action": "", + "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..99557980 --- /dev/null +++ b/repo/pathing/帕蒂沙兰/帕蒂沙兰 桓那兰那右上.json @@ -0,0 +1,252 @@ +{ + "info": { + "name": "帕蒂沙兰 桓那兰那右上", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3453.34912109375, + "y": -98.17431640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3436.20947265625, + "y": -108.50439453125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 3443.23193359375, + "y": -99.51416015625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 3443.041015625, + "y": -82.432373046875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 3442.85009765625, + "y": -65.3505859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 3444.560546875, + "y": -61.22314453125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 3442.27294921875, + "y": -68.55224609375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 3422.4986416207403, + "y": -61, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 3424.5000905586176, + "y": -52.5, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 10, + "x": 3421.9287109375, + "y": -41.5546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 3430.61279296875, + "y": -35.25, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 12, + "x": 3441.60400390625, + "y": -40.52685546875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 13, + "x": 3442.58642578125, + "y": -36.19384765625, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 14, + "x": 3420.994140625, + "y": -44.78271484375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 15, + "x": 3399.40185546875, + "y": -53.37158203125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 16, + "x": 3389.37841796875, + "y": -44.5087890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 17, + "x": 3378.52978515625, + "y": -37.83251953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 18, + "x": 3362.45458984375, + "y": -33.53662109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": 3349.69775390625, + "y": -40.22412109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": 3337.56591796875, + "y": -49.76611328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 21, + "x": 3314.62353515625, + "y": -58.7646484375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 22, + "x": 3281.06298828125, + "y": -50.05859375, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 23, + "x": 3273.46533203125, + "y": -43.18994140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 3260.6142578125, + "y": -37.4794921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 25, + "x": 3260.000905586173, + "y": -47, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 26, + "x": 3249.4462890625, + "y": -45.74560546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 27, + "x": 3234.41650390625, + "y": -57.4267578125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 28, + "x": 3232.37744140625, + "y": -53.66064453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 29, + "x": 3247.085205078125, + "y": -69.334228515625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 30, + "x": 3261.79296875, + "y": -85.0078125, + "action": "", + "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..b56cd176 --- /dev/null +++ b/repo/pathing/帕蒂沙兰/帕蒂沙兰 桓那兰那右下.json @@ -0,0 +1,276 @@ +{ + "info": { + "name": "帕蒂沙兰 桓那兰那右下", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3254.353515625, + "y": -189.5625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3294.31396484375, + "y": -182.76025390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 3301.1240234375, + "y": -176.5048828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 3312.64111328125, + "y": -172.52490234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 3330.72314453125, + "y": -174.693359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 3330.24609375, + "y": -163.17236328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 3326.40966796875, + "y": -174.0224609375, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 8, + "x": 3356.5498046875, + "y": -180.21728515625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 3373.291015625, + "y": -169.9775390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 3384.12353515625, + "y": -173.81494140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 3393.9994026749773, + "y": -165.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 3406.0077652252958, + "y": -168, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 3408.250447993767, + "y": -181.5, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 3412.50447993767, + "y": -186.5, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 15, + "x": 3418.7516426438124, + "y": -198.25, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 16, + "x": 3391.994922737307, + "y": -219.5, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 17, + "x": 3375.4013671875, + "y": -222.71044921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 18, + "x": 3373.69970703125, + "y": -217.15625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": 3376.306640625, + "y": -237.5927734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": 3395.951171875, + "y": -254.02490234375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 21, + "x": 3360.20751953125, + "y": -258.642578125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 22, + "x": 3352.796875, + "y": -244.611328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 23, + "x": 3350.2275390625, + "y": -246.59765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 3358.90087890625, + "y": -254.67333984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 3382.16943359375, + "y": -261.373046875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 26, + "x": 3406.9794921875, + "y": -267.14501953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 27, + "x": 3421.298828125, + "y": -257.517578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 3430.92578125, + "y": -245.3369140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 29, + "x": 3440.62255859375, + "y": -237.84716796875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 30, + "x": 3472.50732421875, + "y": -237.333984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 31, + "x": 3472.88134765625, + "y": -245.20751953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 32, + "x": 3476.14794921875, + "y": -218.22119140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 33, + "x": 3481.84716796875, + "y": -220.25146484375, + "action": "", + "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..206df591 --- /dev/null +++ b/repo/pathing/帕蒂沙兰/帕蒂沙兰 禅那园.json @@ -0,0 +1,220 @@ +{ + "info": { + "name": "帕蒂沙兰 禅那园", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3135.6357421875, + "y": -1079.64208984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3156.310546875, + "y": -1069.60205078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 3157.173828125, + "y": -1069.2236328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 3163.46044921875, + "y": -1080.71142578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3168.92236328125, + "y": -1079.72900390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 3171.30615234375, + "y": -1066.7666015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3180.1572265625, + "y": -1062.15576171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 3187.1416015625, + "y": -1063.8779296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 3194.048828125, + "y": -1082.24951171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 3204.896484375, + "y": -1068.646484375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 3202.9951171875, + "y": -1064.45068359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 3205.154296875, + "y": -1060.97265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 3204.1630859375, + "y": -1055.958984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 3206.05908203125, + "y": -1055.8720703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 3216.2353515625, + "y": -1058.74658203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 3213.0019413063237, + "y": -1066, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 3205.748656018699, + "y": -1066.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 3203.02685546875, + "y": -1072.37548828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 3199.572265625, + "y": -1077.01611328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 3207.76513671875, + "y": -1091.056640625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 21, + "x": 3230.0361328125, + "y": -1106.91259765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": 3236.01123046875, + "y": -1116.04150390625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 23, + "x": 3231.5927734375, + "y": -1113.58349609375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 3235.267578125, + "y": -1118.41015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": 3213.6455078125, + "y": -1131.60205078125, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 26, + "x": 3185.87451171875, + "y": -1136.85498046875, + "action": "", + "move_mode": "run", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/帕蒂沙兰/帕蒂沙兰 须弥城1.json b/repo/pathing/帕蒂沙兰/帕蒂沙兰 须弥城1.json new file mode 100644 index 00000000..55f78331 --- /dev/null +++ b/repo/pathing/帕蒂沙兰/帕蒂沙兰 须弥城1.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "帕蒂沙兰 须弥城1", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 2694.07763671875, + "y": -416.4404296875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2711.6396484375, + "y": -409.25048828125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 3, + "x": 2724.8994140625, + "y": -411.27734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 2743.21044921875, + "y": -429.43603515625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 5, + "x": 2751.71826171875, + "y": -431.19140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 2753.54248046875, + "y": -428.44677734375, + "action": "", + "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..9ec4a22b --- /dev/null +++ b/repo/pathing/帕蒂沙兰/帕蒂沙兰 须弥城右下.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "帕蒂沙兰 须弥城右下", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2651.42529296875, + "y": -564.408203125 + }, + { + "id": 2, + "x": 2653.37158203125, + "y": -530.6142578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2662.2506791896294, + "y": -518, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 4, + "x": 2698.04296875, + "y": -518.7275390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 2708.54443359375, + "y": -522.2294921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2717.32275390625, + "y": -523.20751953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2787.25048828125, + "y": -525.39697265625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/帕蒂沙兰/帕蒂沙兰 须弥城左上.json b/repo/pathing/帕蒂沙兰/帕蒂沙兰 须弥城左上.json new file mode 100644 index 00000000..75970f95 --- /dev/null +++ b/repo/pathing/帕蒂沙兰/帕蒂沙兰 须弥城左上.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "帕蒂沙兰 须弥城左上", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 2877.02294921875, + "y": -292.1318359375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2877.36474609375, + "y": -285.810546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 2869.3603515625, + "y": -273.28955078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 2860.2393974808465, + "y": -295.5, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 5, + "x": 2822.5986328125, + "y": -291.567626953125, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 6, + "x": 2767.21044921875, + "y": -287.45458984375, + "action": "", + "move_mode": "run", + "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..577bf412 Binary files /dev/null and b/repo/pathing/幽光星星/icon.ico differ diff --git a/repo/pathing/幽光星星/幽光星星@jbcaaa/幽光星星2.json b/repo/pathing/幽光星星/幽光星星@jbcaaa/幽光星星2.json index 234eb0a2..ac413995 100644 --- a/repo/pathing/幽光星星/幽光星星@jbcaaa/幽光星星2.json +++ b/repo/pathing/幽光星星/幽光星星@jbcaaa/幽光星星2.json @@ -12,7 +12,7 @@ "id": 1, "x": 4984.80078125, "y": 4463.00048828125, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, @@ -73,4 +73,4 @@ "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..e3cb7c04 Binary files /dev/null and b/repo/pathing/幽灯蕈/icon.ico differ diff --git a/repo/pathing/微光角菌/微光角菌-奥奇卡纳塔上-14个.json b/repo/pathing/微光角菌/微光角菌-奥奇卡纳塔上-14个.json new file mode 100644 index 00000000..73c1d84d --- /dev/null +++ b/repo/pathing/微光角菌/微光角菌-奥奇卡纳塔上-14个.json @@ -0,0 +1,164 @@ +{ + "info": { + "name": "微光角菌-奥奇卡纳塔上-14个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 10073.4208984375, + "y": 21.197265625, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 10067.9482421875, + "y": 15.77880859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 10066.2880859375, + "y": 14.619140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 10066.6630859375, + "y": -0.8466796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 10069.912109375, + "y": 30.6044921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 10062.99609375, + "y": 39.50439453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 10066.421875, + "y": 65.1181640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 10063.19921875, + "y": 73.83349609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 10058.7900390625, + "y": 76.91552734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 10057.359375, + "y": 119.2958984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 10039.4521484375, + "y": 133.76611328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 10027.2890625, + "y": 134.75830078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 10024.814453125, + "y": 137.44140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 10014.3740234375, + "y": 119.7958984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 10013.861328125, + "y": 118.10693359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 10038.56640625, + "y": 138.50439453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 10043.556640625, + "y": 175.44091796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 10026.2431640625, + "y": 200.4052734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": 10025.2744140625, + "y": 203.41845703125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/微光角菌/微光角菌-烟谜主01-27个.json b/repo/pathing/微光角菌/微光角菌-烟谜主01-27个.json new file mode 100644 index 00000000..8533f9c4 --- /dev/null +++ b/repo/pathing/微光角菌/微光角菌-烟谜主01-27个.json @@ -0,0 +1,316 @@ +{ + "info": { + "name": "微光角菌-烟谜主01-27个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9711.5087890625, + "y": -1551.8623046875, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9646.1650390625, + "y": -1534.2294921875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 9630.83984375, + "y": -1534.677734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 9627.466796875, + "y": -1532.15869140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 9668.439453125, + "y": -1552.5009765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 9672.50390625, + "y": -1551.61328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 9673.470703125, + "y": -1558.84716796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 9640.029296875, + "y": -1586.42333984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 9635.107421875, + "y": -1577.22314453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 9588.1416015625, + "y": -1611.1240234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 9552.255859375, + "y": -1609.931640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 9548.1298828125, + "y": -1615.421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 9549.25, + "y": -1616.66357421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 9539.4921875, + "y": -1563.990234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 9535.3515625, + "y": -1552.42431640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 9530.4404296875, + "y": -1559.8037109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 9532.099609375, + "y": -1550.57568359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 9454.724609375, + "y": -1580.06787109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": 9449.15234375, + "y": -1566.19384765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 9445.9208984375, + "y": -1570.1025390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 21, + "x": 9471.30078125, + "y": -1586.390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 9453.724609375, + "y": -1587.31689453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 23, + "x": 9465.251953125, + "y": -1623.79736328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 9422.3046875, + "y": -1621.72216796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": 9420.150390625, + "y": -1621.75146484375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 26, + "x": 9426.2412109375, + "y": -1664.78955078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 27, + "x": 9382.8466796875, + "y": -1659.560546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 28, + "x": 9340.7783203125, + "y": -1653.85400390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 29, + "x": 9336.8046875, + "y": -1655.013671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 30, + "x": 9322.75390625, + "y": -1653.111328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 31, + "x": 9327.435546875, + "y": -1676.02197265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 32, + "x": 9326.435546875, + "y": -1676.24462890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 33, + "x": 9327.759765625, + "y": -1678.95458984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 34, + "x": 9304.451171875, + "y": -1686.18701171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 35, + "x": 9302.8984375, + "y": -1683.7900390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 36, + "x": 9311.1611328125, + "y": -1703.57470703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 9317.08203125, + "y": -1719.4638671875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 38, + "x": 9336.41015625, + "y": -1719.04541015625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/微光角菌/微光角菌-烟谜主02-12个.json b/repo/pathing/微光角菌/微光角菌-烟谜主02-12个.json new file mode 100644 index 00000000..5816046a --- /dev/null +++ b/repo/pathing/微光角菌/微光角菌-烟谜主02-12个.json @@ -0,0 +1,196 @@ +{ + "info": { + "name": "微光角菌-烟谜主02-12个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9690.9052734375, + "y": -1623.69482421875, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9689.8173828125, + "y": -1609.32421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 9703.1103515625, + "y": -1611.57958984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 9703.603515625, + "y": -1614.96142578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 9700.38671875, + "y": -1622.96923828125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 9707.9150390625, + "y": -1623.1962890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 9768.3603515625, + "y": -1621.30859375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 9770.2275390625, + "y": -1628.57177734375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 9, + "x": 9773.400390625, + "y": -1635.818359375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 10, + "x": 9757.2685546875, + "y": -1645.9296875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 11, + "x": 9760.6728515625, + "y": -1614.59814453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 9739.6875, + "y": -1601.77294921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 9691.0478515625, + "y": -1623.353515625, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 14, + "x": 9679.7392578125, + "y": -1621.453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 9676.390625, + "y": -1617.27734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 9675.7431640625, + "y": -1618.5078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 9690.62890625, + "y": -1623.4599609375, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 18, + "x": 9672.791015625, + "y": -1696.46875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 9662.7353515625, + "y": -1715.21142578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 9623.378906250002, + "y": -1723.83837890625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 27, + "x": 9675.005859375, + "y": -1705.853515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 28, + "x": 9676.5751953125, + "y": -1697.72705078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 29, + "x": 9675.71875, + "y": -1697.39892578125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/微光角菌/微光角菌-翘枝崖-5个.json b/repo/pathing/微光角菌/微光角菌-翘枝崖-5个.json new file mode 100644 index 00000000..9815d02c --- /dev/null +++ b/repo/pathing/微光角菌/微光角菌-翘枝崖-5个.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "微光角菌-翘枝崖-5个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9844.8515625, + "y": -1288.966796875, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9803.345703125, + "y": -1327.43896484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 9752.5986328125, + "y": -1344.10107421875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 9752.154296875, + "y": -1361.71240234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 9764.103515625, + "y": -1371.1044921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 9796.513671875, + "y": -1427.2783203125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 8, + "x": 9813.23046875, + "y": -1443.27587890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 9818.28515625, + "y": -1434.47119140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 9798.4169921875, + "y": -1437.86767578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 9774.875, + "y": -1419.25830078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 12, + "x": 9749.1328125, + "y": -1445.0322265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 9735.83984375, + "y": -1450.59619140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 9716.6787109375, + "y": -1482.39111328125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/微光角菌/微光角菌-镜壁山-2个.json b/repo/pathing/微光角菌/微光角菌-镜壁山-2个.json new file mode 100644 index 00000000..662770d5 --- /dev/null +++ b/repo/pathing/微光角菌/微光角菌-镜壁山-2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "微光角菌-镜壁山-2个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9520.921875, + "y": -1779.77392578125, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9526.009765625, + "y": -1778.953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 9524.201171875, + "y": -1777.88720703125, + "action": "", + "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..75a473c9 Binary files /dev/null and b/repo/pathing/悼灵花/icon.ico differ diff --git a/repo/pathing/悼灵花/悼灵花-铁穆山-21个.json b/repo/pathing/悼灵花/悼灵花-铁穆山-21个.json new file mode 100644 index 00000000..37366c6c --- /dev/null +++ b/repo/pathing/悼灵花/悼灵花-铁穆山-21个.json @@ -0,0 +1,244 @@ +{ + "info": { + "name": "悼灵花-铁穆山-21个01", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 6160.6064453125, + "y": 1.76220703125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 6154.45703125, + "y": 27.5458984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 6151.833984375, + "y": 56.7080078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 6161.2978515625, + "y": 48.78564453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 6168.435546875, + "y": 47.8759765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 6182.3642578125, + "y": 47.6015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 6184.35205078125, + "y": 62.859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 6188.2626953125, + "y": 83.78662109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 6164.7216796875, + "y": 95.37255859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 6153.330078125, + "y": 116.0244140625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 12, + "x": 6155.5009765625, + "y": 116.81201171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 6144.80419921875, + "y": 125.1650390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 6143.56396484375, + "y": 126.92626953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 6122.83642578125, + "y": 120.15478515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 6116.89208984375, + "y": 125.404296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 6102.7900390625, + "y": 142.74267578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 6116.3837890625, + "y": 157.328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": 6143.16650390625, + "y": 176.212890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 20, + "x": 6143.357421875, + "y": 208.064453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 21, + "x": 6146.2158203125, + "y": 211.12158203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": 6156.724609375, + "y": 213.689453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 23, + "x": 6146.9912109375, + "y": 214.8427734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 6134.2529296875, + "y": 208.623046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": 6133.7431640625, + "y": 222.9326171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 26, + "x": 6149.10302734375, + "y": 227.81689453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 27, + "x": 6173.98779296875, + "y": 266.00634765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 28, + "x": 6181.91845703125, + "y": 294.5771484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 6185.578125, + "y": 306.07958984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 30, + "x": 6193.619140625, + "y": 357.7734375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/悼灵花/悼灵花-锋刃林泽上侧-4个.json b/repo/pathing/悼灵花/悼灵花-锋刃林泽上侧-4个.json new file mode 100644 index 00000000..6df2027e --- /dev/null +++ b/repo/pathing/悼灵花/悼灵花-锋刃林泽上侧-4个.json @@ -0,0 +1,180 @@ +{ + "info": { + "name": "悼灵花-锋刃林泽上侧-4个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "完成对应世界任务后可运行", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 5993.74462890625, + "y": 741.89794921875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 6042.4287109375, + "y": 718.01025390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 6057.494140625, + "y": 741.00634765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 6090.13818359375, + "y": 753.22412109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 6096.90966796875, + "y": 772.83984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 6154.9609375, + "y": 774.392578125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 6156.6279296875, + "y": 812.10400390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 6134.03759765625, + "y": 833.77734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 6134.54443359375, + "y": 842.8779296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 6139.28955078125, + "y": 851.91259765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 6138.5732421875, + "y": 867.0458984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 6120.197265625, + "y": 892.24267578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 6122.34912109375, + "y": 881.22705078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 6097.26220703125, + "y": 893.90966796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 6075.12548828125, + "y": 892.97509765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 6067.09814453125, + "y": 909.1953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 6041.60107421875, + "y": 906.5849609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 6041.60107421875, + "y": 906.5849609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 6034.04736328125, + "y": 913.2646484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 6035.12841796875, + "y": 941.13623046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 21, + "x": 6041.31689453125, + "y": 948.525390625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ 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..23cff0ee --- /dev/null +++ b/repo/pathing/悼灵花/悼灵花-锋刃林泽上侧02-10个.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "悼灵花-锋刃林泽上侧02-10个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 5794.3916015625, + "y": 795.0078125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5777.69775390625, + "y": 807.1025390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 5653.32666015625, + "y": 859.58447265625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 5624.25732421875, + "y": 849.7705078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 5615.23095703125, + "y": 867.509765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 5591.07861328125, + "y": 866.494140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 5588.4189453125, + "y": 873.4765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 5581.45458984375, + "y": 893.1162109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 5574.54150390625, + "y": 909.44091796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 5532.18798828125, + "y": 897.69921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 5555.2548828125, + "y": 846.0400390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 5556.94970703125, + "y": 845.80615234375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 5559.5498046875, + "y": 848.8408203125, + "action": "", + "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..2bae83ec --- /dev/null +++ b/repo/pathing/悼灵花/悼灵花-锋刃林泽右侧-12个.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "悼灵花-锋刃林泽右侧-12个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "请带血牛", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 5993.69091796875, + "y": 741.88330078125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 6010.42724609375, + "y": 783.2392578125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 3, + "x": 6009.09912109375, + "y": 789.02978515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 5990.36865234375, + "y": 790.71923828125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 5978.4326171875, + "y": 789.16552734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 5966.46044921875, + "y": 814.58251953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 5943.03662109375, + "y": 821.55712890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 5910.7666015625, + "y": 801.45947265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 5915.6025390625, + "y": 795.82080078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 5906.79736328125, + "y": 784.1923828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 5898.06640625, + "y": 794.31787109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 5874.0966796875, + "y": 803.61181640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 5864.109375, + "y": 800.50146484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 5860.44189453125, + "y": 807.85107421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 5836.763671875, + "y": 808.44384765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 5822.1015625, + "y": 829.22412109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 5795.8408203125, + "y": 841.2353515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 5774.046875, + "y": 835.12890625, + "action": "", + "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..a7cd4f3b 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..3517d287 Binary files /dev/null and b/repo/pathing/日落果/icon.ico differ diff --git a/repo/pathing/日落果/日落果18-灵矩关-璃月3个.json b/repo/pathing/日落果/日落果18-灵矩关-璃月3个.json index a51e9610..68d0b63b 100644 --- a/repo/pathing/日落果/日落果18-灵矩关-璃月3个.json +++ b/repo/pathing/日落果/日落果18-灵矩关-璃月3个.json @@ -12,7 +12,7 @@ "id": 1, "x": 1043.1806640625, "y": -558.06298828125, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, diff --git a/repo/pathing/日落果/日落果19-化城郭-须弥4个.json b/repo/pathing/日落果/日落果19-化城郭-须弥4个.json index afaabef9..398b4045 100644 --- a/repo/pathing/日落果/日落果19-化城郭-须弥4个.json +++ b/repo/pathing/日落果/日落果19-化城郭-须弥4个.json @@ -12,7 +12,7 @@ "id": 1, "x": 2703.53955078125, "y": -761.19091796875, - "type": "path", + "type": "teleport", "move_mode": "walk", "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..0d4824cd 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..bce3ed9f 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..8c813ed2 --- /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, + "x": -2365.9833984375, + "y": -3769.5166015625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -2348.5, + "y": -3739.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -2371.4375, + "y": -3733.76953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -2376.3271484375, + "y": -3698.3076171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -2364.140625, + "y": -3674.251953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -2353.7666015625, + "y": -3659.5361328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -2350.046875, + "y": -3646.78515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -2348.4365234375, + "y": -3645.873046875, + "action": "", + "move_mode": "climb", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/晶化骨髓/晶化骨髓02-藤兜砦-4个.json b/repo/pathing/晶化骨髓/晶化骨髓02-藤兜砦-4个.json new file mode 100644 index 00000000..af72e957 --- /dev/null +++ b/repo/pathing/晶化骨髓/晶化骨髓02-藤兜砦-4个.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "晶化骨髓02-藤兜砦-4个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2215.951171875, + "y": -3709.4794921875 + }, + { + "id": 2, + "x": -2210.828125, + "y": -3681.0234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2204.2705078125, + "y": -3645.546875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": -2202.8291015625, + "y": -3642.8779296875, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 5, + "x": -2202.8759765625, + "y": -3642.8759765625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 6, + "x": -2217.4482421875, + "y": -3632.0361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2214.9892578125, + "y": -3625.6513671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2201.5068359375, + "y": -3623.2265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2198.2744140625, + "y": -3617.87890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2195.029296875, + "y": -3618.7705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -2179.71484375, + "y": -3612.8212890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2163.5244140625, + "y": -3598.5458984375, + "type": "target", + "move_mode": "climb", + "action": "" + } + ] +} \ 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..ed634728 --- /dev/null +++ b/repo/pathing/晶化骨髓/晶化骨髓03-藤兜砦-3个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "晶化骨髓03-藤兜砦-3个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1964.103515625, + "y": -3576.49609375 + }, + { + "id": 2, + "x": -1964.9208984375, + "y": -3588.21484375, + "type": "target", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": -1982.466796875, + "y": -3597.6611328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1970.208984375, + "y": -3603.9169921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2004.515625, + "y": -3628.4130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2015.294921875, + "y": -3619.220703125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/晶化骨髓/晶化骨髓04-藤兜砦-5个.json b/repo/pathing/晶化骨髓/晶化骨髓04-藤兜砦-5个.json new file mode 100644 index 00000000..37531d6d --- /dev/null +++ b/repo/pathing/晶化骨髓/晶化骨髓04-藤兜砦-5个.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "晶化骨髓04-藤兜砦-5个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1964.083984375, + "y": -3576.501953125 + }, + { + "id": 2, + "x": -1959.2392578125, + "y": -3561.908203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -1962.154296875, + "y": -3566.2529296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1964.1982421875, + "y": -3576.4912109375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1949.18359375, + "y": -3582.44921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": -1948.5107421875, + "y": -3569.4404296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1964.1220703125, + "y": -3576.4921875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1953.80859375, + "y": -3527.44140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 9, + "x": -1947.0595703125, + "y": -3523.263671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1955.5615234375, + "y": -3517.732421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1951.103515625, + "y": -3512.8681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -1953.0400390625, + "y": -3508.150390625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/晶化骨髓/晶化骨髓05-踏鞴砂-10个.json b/repo/pathing/晶化骨髓/晶化骨髓05-踏鞴砂-10个.json new file mode 100644 index 00000000..bded19d2 --- /dev/null +++ b/repo/pathing/晶化骨髓/晶化骨髓05-踏鞴砂-10个.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "晶化骨髓05-踏鞴砂-10个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3016.875, + "y": -3623.599609375 + }, + { + "id": 2, + "x": -2960.32421875, + "y": -3651.41796875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": -2954.6708984375, + "y": -3693.103515625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -2996.2744140625, + "y": -3696.62890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -3005.6357421875, + "y": -3701.73828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3012.0361328125, + "y": -3703.166015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -3018.0029296875, + "y": -3709.208984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -3022.966796875, + "y": -3703.431640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -3022.1064453125, + "y": -3679.6376953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -3031.1708984375, + "y": -3674.951171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -3041.6767578125, + "y": -3680.3369140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -3037.8505859375, + "y": -3684.6552734375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/晶化骨髓/晶化骨髓06-八酝岛-11个.json b/repo/pathing/晶化骨髓/晶化骨髓06-八酝岛-11个.json new file mode 100644 index 00000000..4ef65cc3 --- /dev/null +++ b/repo/pathing/晶化骨髓/晶化骨髓06-八酝岛-11个.json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "晶化骨髓06-八酝岛-11个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2405.7724609375, + "y": -3912.9609375 + }, + { + "id": 2, + "x": -2425.1669921875, + "y": -3897.998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2462.75, + "y": -3847.625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -2462.71875, + "y": -3847.640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2450.62890625, + "y": -3829.431640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2452.2099609375, + "y": -3827.6142578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2464.685546875, + "y": -3832.466796875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2479.1591796875, + "y": -3843.244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2479.7763671875, + "y": -3840.2255859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2492.0439453125, + "y": -3828.97265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -2488.3984375, + "y": -3827.876953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2504.5791015625, + "y": -3832.37890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -2504.69921875, + "y": -3854.12109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -2513.03515625, + "y": -3846.623046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -2527.71875, + "y": -3853.3427734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -2555.83984375, + "y": -3864.6943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -2564.9375, + "y": -3874.251953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 18, + "x": -2558.552734375, + "y": -3868.51171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -2555.3525390625, + "y": -3865.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -2545.79296875, + "y": -3867.447265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -2551.5732421875, + "y": -3867.537109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -2552.4365234375, + "y": -3858.18359375, + "type": "target", + "move_mode": "climb", + "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..abdd993a 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..71d1ff74 Binary files /dev/null and b/repo/pathing/松果/icon.ico differ diff --git a/repo/pathing/松果/松果1.json b/repo/pathing/松果/松果1.json new file mode 100644 index 00000000..8678f206 --- /dev/null +++ b/repo/pathing/松果/松果1.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "松果1", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1629.37109375, + "y": 2834.395751953125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1660.2177734375, + "y": 2789.519775390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -1662.3212890625, + "y": 2786.100341796875, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 4, + "x": -1665.46484375, + "y": 2777.626953125, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": -1680.0546875, + "y": 2774.24365234375, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 6, + "x": -1663.515625, + "y": 2751.4169921875, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松果/松果2.json b/repo/pathing/松果/松果2.json new file mode 100644 index 00000000..63be4da9 --- /dev/null +++ b/repo/pathing/松果/松果2.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "松果2", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1558.5078125, + "y": 2497.741943359375 + }, + { + "id": 2, + "x": -1572.625, + "y": 2508.748291015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -1599.46875, + "y": 2523.78271484375, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 4, + "x": -1623.2880859375, + "y": 2554.579345703125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": -1627.6669921875, + "y": 2560.239501953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1643.81640625, + "y": 2579.885009765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": -1646.59765625, + "y": 2581.4208984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1679.6318359375, + "y": 2627.66357421875, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 9, + "x": -1343.09765625, + "y": 2567.631591796875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1324.0458984375, + "y": 2564.023681640625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松果/松果3.json b/repo/pathing/松果/松果3.json new file mode 100644 index 00000000..9ad448b5 --- /dev/null +++ b/repo/pathing/松果/松果3.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "松果3", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1558.5361328125, + "y": 2497.774658203125 + }, + { + "id": 2, + "x": -1523.6611328125, + "y": 2500.5546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -1504.6025390625, + "y": 2513.184814453125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": -1499.49609375, + "y": 2517.546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1503.7841796875, + "y": 2529.770751953125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": -1505.3525390625, + "y": 2537.3330078125, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 7, + "x": -1474.1474609375, + "y": 2532.19482421875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": -1461.23828125, + "y": 2531.2216796875, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": -1461.349609375, + "y": 2516.399658203125, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松果/松果4.json b/repo/pathing/松果/松果4.json new file mode 100644 index 00000000..f0353107 --- /dev/null +++ b/repo/pathing/松果/松果4.json @@ -0,0 +1,220 @@ +{ + "info": { + "name": "松果4", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1867.208984375, + "y": 1331.12451171875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1840.7421875, + "y": 1360.0205078125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": -1838.150390625, + "y": 1385.521484375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": -1835.455078125, + "y": 1390.85009765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -1823.7275390625, + "y": 1409.05126953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": -1819.22265625, + "y": 1413.609375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 8, + "x": -1833.6171875, + "y": 1416.7744140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": -1839.1064453125, + "y": 1416.35595703125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -1849.55078125, + "y": 1432.77197265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": -1849.8681640625, + "y": 1435.51025390625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -1874.42578125, + "y": 1438.86572265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 13, + "x": -1878.5625, + "y": 1439.443359375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -1845.560546875, + "y": 1456.7783203125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 15, + "x": -1838.130859375, + "y": 1456.07861328125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -1806.0400390625, + "y": 1440.92431640625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 17, + "x": -1798.830078125, + "y": 1438.6220703125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": -1778.8681640625, + "y": 1452.2880859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": -1767.5107421875, + "y": 1459.7255859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": -1755.302734375, + "y": 1473.24365234375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": -1728.9248046875, + "y": 1459.60595703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 22, + "x": -1724.009765625, + "y": 1457.39208984375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": -1714.1982421875, + "y": 1440.9033203125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 24, + "x": -1725.6904296875, + "y": 1440.50244140625, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 25, + "x": -1730.6748046875, + "y": 1438.41259765625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": -1266.5546875, + "y": 1933.58349609375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 27, + "x": -1264.2578125, + "y": 1929.45947265625, + "action": "nahida_collect", + "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..913b13cc --- /dev/null +++ b/repo/pathing/松果/松果5.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "松果5", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -576.59375, + "y": 1854.81396484375 + }, + { + "id": 2, + "x": -563.16015625, + "y": 1867.33056640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -553.158203125, + "y": 1901.5634765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": -544.7119140625, + "y": 1902.8779296875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": -509.251953125, + "y": 1920.708984375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": -505.39453125, + "y": 1922.8125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 7, + "x": -476.125, + "y": 1932.1591796875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": -471.1982421875, + "y": 1932.92919921875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": -439.701171875, + "y": 1938.7880859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": -436.494140625, + "y": 1940.20947265625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 11, + "x": -420.4560546875, + "y": 1911.3154296875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": -418.6396484375, + "y": 1908.6904296875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 13, + "x": -385.0029296875, + "y": 1917.75732421875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 14, + "x": -378.2548828125, + "y": 1916.99169921875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 15, + "x": -373.708984375, + "y": 1915.3173828125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 16, + "x": -359.3271484375, + "y": 1903.0673828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 17, + "x": -333.541015625, + "y": 1896.88037109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 18, + "x": -328.2509765625, + "y": 1898.7861328125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松果/松果6.json b/repo/pathing/松果/松果6.json new file mode 100644 index 00000000..7f649dfc --- /dev/null +++ b/repo/pathing/松果/松果6.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "松果6", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1009.8466796875, + "y": 1333.89892578125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1012.19140625, + "y": 1331.77685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1008.2001953125, + "y": 1325.97900390625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": -1006.9208984375, + "y": 859.46728515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 5, + "x": -997.1142578125, + "y": 855.86083984375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -486.4423828125, + "y": 860.1923828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 7, + "x": -473.099609375, + "y": 852.86083984375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -486.4384765625, + "y": 860.20361328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 9, + "x": -499.953125, + "y": 874.40478515625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -255.015625, + "y": 630.0546875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 11, + "x": -259.6630859375, + "y": 627.98876953125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松果/松果7.json b/repo/pathing/松果/松果7.json new file mode 100644 index 00000000..0a8c70ee --- /dev/null +++ b/repo/pathing/松果/松果7.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "松果7", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 801.599609375, + "y": 1796.07373046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 808.5087890625, + "y": 1795.69384765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 808.474609375, + "y": 1814.10791015625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 807.1181640625, + "y": 1838.62548828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 806.802734375, + "y": 1845.5380859375, + "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..eeca6401 Binary files /dev/null and b/repo/pathing/松茸/icon.ico differ diff --git a/repo/pathing/松茸/松茸1.json b/repo/pathing/松茸/松茸1.json new file mode 100644 index 00000000..2b4fae97 --- /dev/null +++ b/repo/pathing/松茸/松茸1.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "松茸1", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4143.8662109375, + "y": 4423.5634765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4134.4912109375, + "y": 4417.1083984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 4131.6181640625, + "y": 4404.8505859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 4126.830078125, + "y": 4397.01416015625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4065.23779296875, + "y": 4387.248046875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 4033.33349609375, + "y": 4397.42626953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 4032.087890625, + "y": 4388.2197265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 4032.75, + "y": 4384.5107421875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 9, + "x": 4027.7294921875, + "y": 4379.80810546875, + "action": "nahida_collect", + "move_mode": "walk", + "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..5405f077 --- /dev/null +++ b/repo/pathing/松茸/松茸10.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "松茸10", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4545.51611328125, + "y": 4225.56640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4568.1279296875, + "y": 4232.1611328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 4571.56640625, + "y": 4234.1435546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4624.87255859375, + "y": 4230.533203125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 4664.86376953125, + "y": 4222.98095703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 4668.3623046875, + "y": 4222.36767578125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": 4677.78759765625, + "y": 4220.927734375, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 4704.0712890625, + "y": 4228.64501953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 4718.6044921875, + "y": 4209.0390625, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 4724.53125, + "y": 4203.484375, + "action": "nahida_collect", + "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..d2d256d4 --- /dev/null +++ b/repo/pathing/松茸/松茸11.json @@ -0,0 +1,180 @@ +{ + "info": { + "name": "松茸11", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4701.39453125, + "y": 3958.7275390625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4687.88720703125, + "y": 3951.24072265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 4684.90966796875, + "y": 3949.3193359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4679.12353515625, + "y": 3939.341064453125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 4657.37548828125, + "y": 3905.4736328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 4654.12109375, + "y": 3900.503662109375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4655.39404296875, + "y": 3898.787841796875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 8, + "x": 4660.55322265625, + "y": 3891.856689453125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 4658.90869140625, + "y": 3895.378173828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4643.03759765625, + "y": 3891.234130859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 4628.76513671875, + "y": 3884.83544921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 12, + "x": 4609.69140625, + "y": 3890.552001953125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 4613.44189453125, + "y": 3877.847900390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 14, + "x": 4614.7861328125, + "y": 3874.84130859375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 4607.0146484375, + "y": 3879.292724609375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 4586.767578125, + "y": 3888.143310546875, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 17, + "x": 4585.01025390625, + "y": 3891.35400390625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 4585.953125, + "y": 3873.222412109375, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": 4583.8095703125, + "y": 3864.089111328125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 4545.5078125, + "y": 4225.72265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 21, + "x": 4540.90869140625, + "y": 4229.78076171875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸12.json b/repo/pathing/松茸/松茸12.json new file mode 100644 index 00000000..63b93acf --- /dev/null +++ b/repo/pathing/松茸/松茸12.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "松茸12", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4701.36669921875, + "y": 3958.730224609375 + }, + { + "id": 2, + "x": 4715.4423828125, + "y": 4030.447021484375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 4718.2109375, + "y": 4040.900390625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 4752.51513671875, + "y": 4033.206298828125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 4757.552734375, + "y": 4032.04052734375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸13.json b/repo/pathing/松茸/松茸13.json new file mode 100644 index 00000000..11d3aa9c --- /dev/null +++ b/repo/pathing/松茸/松茸13.json @@ -0,0 +1,300 @@ +{ + "info": { + "name": "松茸13", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4865.44873046875, + "y": 3912.97900390625 + }, + { + "id": 2, + "x": 4864.63232421875, + "y": 3885.47509765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 4860.6484375, + "y": 3877.60205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4861.923828125, + "y": 3867.790283203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 4862.541015625, + "y": 3862.93505859375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": 4845.3671875, + "y": 3859.956298828125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 4819.1328125, + "y": 3870.120361328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": 4808.578125, + "y": 3880.738037109375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": 4811.103515625, + "y": 3870.998291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4802.09912109375, + "y": 3857.10205078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 11, + "x": 4786.26171875, + "y": 3845.3603515625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": 4780.42333984375, + "y": 3842.078369140625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 13, + "x": 4771.1474609375, + "y": 3835.022705078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 14, + "x": 4763.71533203125, + "y": 3831.194091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 4774.779296875, + "y": 3813.752197265625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 16, + "x": 4773.396484375, + "y": 3807.03271484375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 17, + "x": 4760.12353515625, + "y": 3796.06787109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 18, + "x": 4756.779296875, + "y": 3795.623046875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 19, + "x": 4750.5078125, + "y": 3798.679443359375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 20, + "x": 4739.982421875, + "y": 3806.48486328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 21, + "x": 4736.76318359375, + "y": 3805.635498046875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 22, + "x": 4729.0302734375, + "y": 3767.60888671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 23, + "x": 4728.7724609375, + "y": 3765.96484375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 24, + "x": 4716.98095703125, + "y": 3739.01123046875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 25, + "x": 4714.84716796875, + "y": 3736.614501953125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 26, + "x": 4708.38818359375, + "y": 3718.85791015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 27, + "x": 4690.7060546875, + "y": 3719.973388671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 28, + "x": 4667.52490234375, + "y": 3739.854248046875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 29, + "x": 4662.00244140625, + "y": 3752.5791015625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 30, + "x": 4659.53466796875, + "y": 3737.710693359375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 31, + "x": 4700.36279296875, + "y": 3719.059326171875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 32, + "x": 4751.859375, + "y": 3682.909423828125, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 33, + "x": 4744.3271484375, + "y": 3639.596435546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 34, + "x": 4734.26708984375, + "y": 3628.504638671875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 37, + "x": 4545.5078125, + "y": 4225.6298828125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 4541.0087890625, + "y": 4229.8359375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸14.json b/repo/pathing/松茸/松茸14.json new file mode 100644 index 00000000..d193c6ef --- /dev/null +++ b/repo/pathing/松茸/松茸14.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "松茸14", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4865.3671875, + "y": 3912.8779296875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4876.9326171875, + "y": 3990.690185546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 4880.13232421875, + "y": 4001.65380859375, + "action": "nahida_collect", + "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..b292432f --- /dev/null +++ b/repo/pathing/松茸/松茸15.json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "松茸15", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4865.54638671875, + "y": 3912.889892578125 + }, + { + "id": 2, + "x": 4905.8427734375, + "y": 3870.441650390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 4908.61474609375, + "y": 3867.70947265625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 4921.03515625, + "y": 3848.270751953125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 4936.6416015625, + "y": 3844.3525390625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": 5007.17041015625, + "y": 3826.8955078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 5013.06982421875, + "y": 3825.0947265625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 8, + "x": 4990.46728515625, + "y": 3799.826416015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 9, + "x": 4975.21435546875, + "y": 3782.305908203125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": 4948.59375, + "y": 3758.824462890625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 11, + "x": 4949.87548828125, + "y": 3760.18701171875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 12, + "x": 4975.89697265625, + "y": 3740.901611328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 13, + "x": 4981.41015625, + "y": 3732.446044921875, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 14, + "x": 4920.92626953125, + "y": 3662.663330078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 15, + "x": 4913.9873046875, + "y": 3648.079345703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 16, + "x": 4914.912109375, + "y": 3650.956787109375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 17, + "x": 4883.39208984375, + "y": 3628.320556640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 18, + "x": 4883.21826171875, + "y": 3622.6728515625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 19, + "x": 4610.4990234375, + "y": 3600.647216796875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 4632.66552734375, + "y": 3596.611328125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸16.json b/repo/pathing/松茸/松茸16.json new file mode 100644 index 00000000..25cc71b9 --- /dev/null +++ b/repo/pathing/松茸/松茸16.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "松茸16", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 2, + "x": -1629.427734375, + "y": 2834.3818359375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1611.84375, + "y": 2874.603515625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -1610.080078125, + "y": 2878.1201171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1597.7470703125, + "y": 2900.2763671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": -1576.568359375, + "y": 2920.665771484375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": -1574.92578125, + "y": 2921.88818359375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸17.json b/repo/pathing/松茸/松茸17.json new file mode 100644 index 00000000..1e876d51 --- /dev/null +++ b/repo/pathing/松茸/松茸17.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "松茸17", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1273.849609375, + "y": 2721.698486328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1248.0341796875, + "y": 2746.649169921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": -1244.49609375, + "y": 2750.338623046875, + "action": "nahida_collect", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -1242.923828125, + "y": 2745.03759765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -1239.3173828125, + "y": 2733.2080078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": -1239.4755859375, + "y": 2733.65234375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -1232.5361328125, + "y": 2719.094970703125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -1225.525390625, + "y": 2700.7802734375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -1329.9990234375, + "y": 2563.89599609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1325.4716796875, + "y": 2566.825439453125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸18.json b/repo/pathing/松茸/松茸18.json new file mode 100644 index 00000000..a00061e8 --- /dev/null +++ b/repo/pathing/松茸/松茸18.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "松茸18", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1329.9697265625, + "y": 2563.91162109375 + }, + { + "id": 2, + "x": -1335.5634765625, + "y": 2551.58203125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -1344.9248046875, + "y": 2529.95068359375, + "type": "path", + "move_mode": "swim", + "action": "" + }, + { + "id": 4, + "x": -1367.671875, + "y": 2476.37744140625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": -1368.4638671875, + "y": 2469.94921875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": -1340.7900390625, + "y": 2460.8740234375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": -1341.544921875, + "y": 2453.32080078125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸19.json b/repo/pathing/松茸/松茸19.json new file mode 100644 index 00000000..b2e375d6 --- /dev/null +++ b/repo/pathing/松茸/松茸19.json @@ -0,0 +1,164 @@ +{ + "info": { + "name": "松茸19", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1536.8037109375, + "y": 1978.70556640625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1527.9580078125, + "y": 1986.2509765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -1510.46484375, + "y": 2020.939453125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": -1508.1123046875, + "y": 2025.40185546875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": -1536.82421875, + "y": 1978.69873046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1551.1611328125, + "y": 1980.427734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": -1585.7734375, + "y": 1987.470703125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": -1589.1650390625, + "y": 1994.74951171875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": -1607.634765625, + "y": 2001.67919921875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": -1617.62109375, + "y": 2002.203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 11, + "x": -1626.19140625, + "y": 2005.8876953125, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": -1629.841796875, + "y": 1995.96923828125, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 13, + "x": -1632.6298828125, + "y": 1996.60693359375, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 14, + "x": -1630.4111328125, + "y": 1988.57177734375, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 15, + "x": -1618.115234375, + "y": 1975.3798828125, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 16, + "x": -1614.2548828125, + "y": 1970.25732421875, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 17, + "x": -1612.7568359375, + "y": 1967.5234375, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 19, + "x": -1266.6533203125, + "y": 1933.80029296875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -1268.8134765625, + "y": 1927.49462890625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸2.json b/repo/pathing/松茸/松茸2.json new file mode 100644 index 00000000..eecefe6a --- /dev/null +++ b/repo/pathing/松茸/松茸2.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "松茸2", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3846.98681640625, + "y": 4652.82177734375 + }, + { + "id": 2, + "x": 3838.9052734375, + "y": 4604.3955078125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 3843.22802734375, + "y": 4592.271484375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸20.json b/repo/pathing/松茸/松茸20.json new file mode 100644 index 00000000..f77845a1 --- /dev/null +++ b/repo/pathing/松茸/松茸20.json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "松茸20", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1427.8369140625, + "y": 1661.4990234375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1433.7041015625, + "y": 1665.18798828125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1440.9365234375, + "y": 1663.7880859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": -1449.076171875, + "y": 1663.5537109375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": -1482.7451171875, + "y": 1655.2919921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": -1484.9267578125, + "y": 1653.158203125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -1510.8818359375, + "y": 1643.2509765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": -1513.8017578125, + "y": 1642.119140625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -1532.3681640625, + "y": 1638.93115234375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": -1549.400390625, + "y": 1624.58056640625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": -1559.947265625, + "y": 1613.70947265625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 12, + "x": -1559.95703125, + "y": 1613.70947265625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -1562.796875, + "y": 1613.91357421875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -1576.638671875, + "y": 1625.55029296875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 15, + "x": -1591.45703125, + "y": 1630.12451171875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": -1617.7685546875, + "y": 1632.7587890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 18, + "x": -1653.318359375, + "y": 1602.92529296875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": -1658.666015625, + "y": 1598.5869140625, + "action": "nahida_collect", + "move_mode": "fly", + "type": "path" + }, + { + "id": 20, + "x": -1671.8251953125, + "y": 1602.87890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 21, + "x": -1673.8310546875, + "y": 1603.4375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": -1266.4677734375, + "y": 1933.5634765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 23, + "x": -1268.2080078125, + "y": 1928.07763671875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸21.json b/repo/pathing/松茸/松茸21.json new file mode 100644 index 00000000..16fb5eb4 --- /dev/null +++ b/repo/pathing/松茸/松茸21.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "松茸21", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1999.1591796875, + "y": 1434.9150390625 + }, + { + "id": 2, + "x": -1981.203125, + "y": 1429.00390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -1964.4599609375, + "y": 1421.71533203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -1944.494140625, + "y": 1410.7138671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": -1933.642578125, + "y": 1418.19970703125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": -1875.4462890625, + "y": 1401.28271484375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": -1865.9853515625, + "y": 1407.31494140625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸22.json b/repo/pathing/松茸/松茸22.json new file mode 100644 index 00000000..c97d35ff --- /dev/null +++ b/repo/pathing/松茸/松茸22.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "松茸22", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1432.7255859375, + "y": 1464.6708984375 + }, + { + "id": 2, + "x": -1429.9267578125, + "y": 1475.72509765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": -1426.236328125, + "y": 1483.60595703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -1422.2490234375, + "y": 1493.33984375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": -1406.451171875, + "y": 1524.45166015625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": -1390.6904296875, + "y": 1570.0556640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": -1388.6015625, + "y": 1573.525390625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸23.json b/repo/pathing/松茸/松茸23.json new file mode 100644 index 00000000..dc1d4d02 --- /dev/null +++ b/repo/pathing/松茸/松茸23.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "松茸23", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1130.7607421875, + "y": 1597.9296875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1135.7900390625, + "y": 1576.95556640625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": -1133.423828125, + "y": 1571.767578125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -1134.40234375, + "y": 1546.95361328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": -1134.359375, + "y": 1545.9228515625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -1141.189453125, + "y": 1542.65380859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": -1144.740234375, + "y": 1541.13427734375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": -1155.8671875, + "y": 1527.443359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": -1161.9873046875, + "y": 1519.8134765625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 10, + "x": -1168.6728515625, + "y": 1512.4169921875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 11, + "x": -1176.3798828125, + "y": 1504.23291015625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸24.json b/repo/pathing/松茸/松茸24.json new file mode 100644 index 00000000..afb6f987 --- /dev/null +++ b/repo/pathing/松茸/松茸24.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "松茸24", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -663.6884765625, + "y": 1709.6259765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -659.767578125, + "y": 1718.0908203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -654.64453125, + "y": 1749.2041015625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -647.1689453125, + "y": 1762.4833984375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": -640.5712890625, + "y": 1774.087890625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -680.294921875, + "y": 1787.64697265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": -734.0771484375, + "y": 1766.07568359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": -736.806640625, + "y": 1764.8212890625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 9, + "x": -749.076171875, + "y": 1761.37353515625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": -746.7646484375, + "y": 1755.4111328125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -770.3369140625, + "y": 1766.9169921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 12, + "x": -774.0224609375, + "y": 1768.7607421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -777.3056640625, + "y": 1770.61083984375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 14, + "x": -789.978515625, + "y": 1785.923828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 15, + "x": -793.177734375, + "y": 1788.69970703125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -831.78125, + "y": 1779.01611328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 17, + "x": -850.876953125, + "y": 1778.47021484375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 18, + "x": -851.283203125, + "y": 1779.37939453125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸25.json b/repo/pathing/松茸/松茸25.json new file mode 100644 index 00000000..ddd21e6c --- /dev/null +++ b/repo/pathing/松茸/松茸25.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "松茸25", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 2, + "x": -255.0556640625, + "y": 630.12109375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -259.9150390625, + "y": 634.412109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": -263.8916015625, + "y": 640.287109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -267.9755859375, + "y": 641.9111328125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": -291.4765625, + "y": 637.56005859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": -305.1005859375, + "y": 635.7021484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": -322.89453125, + "y": 632.521484375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": -325.9052734375, + "y": 631.87646484375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": -341.8994140625, + "y": 632.41259765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": -355.5458984375, + "y": 628.5166015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 11, + "x": -381.072265625, + "y": 621.75390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": -389.666015625, + "y": 615.31982421875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸26.json b/repo/pathing/松茸/松茸26.json new file mode 100644 index 00000000..295b967a --- /dev/null +++ b/repo/pathing/松茸/松茸26.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "松茸26", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 2, + "x": 897.826171875, + "y": 583.49560546875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 910.625, + "y": 571.89306640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 910.6240234375, + "y": 571.88525390625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 922.6494140625, + "y": 574.06884765625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸27.json b/repo/pathing/松茸/松茸27.json new file mode 100644 index 00000000..978eb574 --- /dev/null +++ b/repo/pathing/松茸/松茸27.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "松茸27", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1153.3388671875, + "y": 141.8310546875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1137.1318359375, + "y": 225.76904296875, + "type": "target", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 1136.005859375, + "y": 242.00390625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 4, + "x": 1137.3212890625, + "y": 248.32177734375, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 1117.24609375, + "y": 266.1005859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 1060.705078125, + "y": 313.25830078125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 1052.0791015625, + "y": 313.24267578125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 259.4775390625, + "y": -14.0068359375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 9, + "x": 254.423828125, + "y": -12.9384765625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸28.json b/repo/pathing/松茸/松茸28.json new file mode 100644 index 00000000..6695df91 --- /dev/null +++ b/repo/pathing/松茸/松茸28.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "松茸28", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1153.4599609375, + "y": 142.84375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1151.5537109375, + "y": 99.51953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 1156.376953125, + "y": 66.80517578125, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 1127.80859375, + "y": 57.537109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 1118.330078125, + "y": 57.18017578125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 1089.8193359375, + "y": 57.248046875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 1088.9580078125, + "y": 58.5712890625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 259.4775390625, + "y": -14.02587890625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 11, + "x": 254.22265625, + "y": -10.4638671875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸29.json b/repo/pathing/松茸/松茸29.json new file mode 100644 index 00000000..47d8bda4 --- /dev/null +++ b/repo/pathing/松茸/松茸29.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "松茸29", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 259.490234375, + "y": -14.04345703125 + }, + { + "id": 2, + "x": 254.62109375, + "y": 2.24169921875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 257.0615234375, + "y": 9.609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 261.0341796875, + "y": 31.89404296875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 259.89453125, + "y": 36.26953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 256.0576171875, + "y": 45.26904296875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸3.json b/repo/pathing/松茸/松茸3.json new file mode 100644 index 00000000..f7d25789 --- /dev/null +++ b/repo/pathing/松茸/松茸3.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "松茸3", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4301.2763671875, + "y": 4765.0244140625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 4316.26171875, + "y": 4773.19091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4325.62060546875, + "y": 4763.4189453125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 4330.58203125, + "y": 4757.1318359375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": 4337.4794921875, + "y": 4746.0888671875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": 4352.36328125, + "y": 4733.1083984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": 4342.68701171875, + "y": 4727.11767578125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": 4348.76171875, + "y": 4686.96533203125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": 4346.02587890625, + "y": 4681.34423828125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 11, + "x": 4361.97607421875, + "y": 4650.40869140625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": 4364.68603515625, + "y": 4631.39990234375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 13, + "x": 4349.14990234375, + "y": 4623.35009765625, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 14, + "x": 4345.78369140625, + "y": 4621.01953125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 14, + "x": 3865.14453125, + "y": 4492.2890625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 3867.43896484375, + "y": 4496.97900390625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸4.json b/repo/pathing/松茸/松茸4.json new file mode 100644 index 00000000..401d889a --- /dev/null +++ b/repo/pathing/松茸/松茸4.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "松茸4", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4434.32421875, + "y": 5091.7314453125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4423.78125, + "y": 5099.37109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 4386.13525390625, + "y": 5126.67041015625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 4360.9677734375, + "y": 5133.6318359375, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 4353.75634765625, + "y": 5144.8720703125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4357.76611328125, + "y": 5161.9794921875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3865.1376953125, + "y": 4492.2880859375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 8, + "x": 3867.51953125, + "y": 4496.96484375, + "action": "nahida_collect", + "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..7c734d42 --- /dev/null +++ b/repo/pathing/松茸/松茸5.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "松茸5", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4434.337890625, + "y": 5091.79931640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4448.7060546875, + "y": 5120.34326171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 4449.765625, + "y": 5123.21240234375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4483.70458984375, + "y": 5097.0048828125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 4482.64794921875, + "y": 5096.255859375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": 4483.70068359375, + "y": 5097.0390625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4477.38037109375, + "y": 5099.22607421875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4465.15234375, + "y": 5092.6357421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 4461.392578125, + "y": 5090.31640625, + "action": "nahida_collect", + "move_mode": "climb", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸6.json b/repo/pathing/松茸/松茸6.json new file mode 100644 index 00000000..5b866c28 --- /dev/null +++ b/repo/pathing/松茸/松茸6.json @@ -0,0 +1,164 @@ +{ + "info": { + "name": "松茸6", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4434.33203125, + "y": 5091.75048828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4428.55224609375, + "y": 5050.1298828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 4427.93408203125, + "y": 5045.2705078125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4428.93603515625, + "y": 5026.94189453125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 4429.201171875, + "y": 5009.6904296875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4430.56982421875, + "y": 4998.1767578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4430.63818359375, + "y": 4980.2548828125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 4432.18896484375, + "y": 4963.794921875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 4431.9716796875, + "y": 4964.53173828125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4439.2021484375, + "y": 4958.919921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 4469.376953125, + "y": 4943.16748046875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 12, + "x": 4472.30712890625, + "y": 4941.99609375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 4472.76708984375, + "y": 4928.9677734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 4472.45556640625, + "y": 4919.63330078125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 4457.30859375, + "y": 4881.953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 16, + "x": 4442.56005859375, + "y": 4865.5888671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 17, + "x": 4436.32080078125, + "y": 4864.0712890625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 4434.15087890625, + "y": 4868.77880859375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 4419.486328125, + "y": 4877.5859375, + "action": "nahida_collect", + "move_mode": "fly", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸7.json b/repo/pathing/松茸/松茸7.json new file mode 100644 index 00000000..7cc1dd82 --- /dev/null +++ b/repo/pathing/松茸/松茸7.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "松茸7", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4498.130859375, + "y": 4710.76806640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4510.0419921875, + "y": 4702.728515625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 3, + "x": 4500.13818359375, + "y": 4702.9013671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 4499.26171875, + "y": 4773.07177734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 4481.26708984375, + "y": 4783.6328125, + "action": "nahida_collect", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 4474.27685546875, + "y": 4790.21923828125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4491.58203125, + "y": 4812.3623046875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 4502.04052734375, + "y": 4853.7353515625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 4501.8251953125, + "y": 4857.88037109375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4510.40283203125, + "y": 4867.9580078125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸8.json b/repo/pathing/松茸/松茸8.json new file mode 100644 index 00000000..74a289f2 --- /dev/null +++ b/repo/pathing/松茸/松茸8.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "松茸8", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4624.357421875, + "y": 4951.75927734375 + }, + { + "id": 2, + "x": 4611.03857421875, + "y": 4990.20263671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 4612.86962890625, + "y": 4994.001953125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 4628.83544921875, + "y": 5005.404296875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 4634.53125, + "y": 5008.4033203125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": 4634.29541015625, + "y": 5017.458984375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/松茸/松茸9.json b/repo/pathing/松茸/松茸9.json new file mode 100644 index 00000000..10ec3b11 --- /dev/null +++ b/repo/pathing/松茸/松茸9.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "松茸9", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 2, + "x": 4984.82470703125, + "y": 4462.9755859375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 5004.1201171875, + "y": 4463.66796875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 5007.9521484375, + "y": 4462.5830078125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 4, + "x": 5009.1142578125, + "y": 4433.72607421875, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 5, + "x": 5058.88232421875, + "y": 4362.79638671875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 5063.9638671875, + "y": 4360.67236328125, + "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..1d5fc630 Binary files /dev/null and b/repo/pathing/枣椰/icon.ico differ diff --git a/repo/pathing/枯叶紫英/枯叶紫英-天蛇船下方-11个.json b/repo/pathing/枯叶紫英/枯叶紫英-天蛇船下方-11个.json new file mode 100644 index 00000000..3f554cf9 --- /dev/null +++ b/repo/pathing/枯叶紫英/枯叶紫英-天蛇船下方-11个.json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "枯叶紫英-天蛇船下方-11个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 10018.703125, + "y": -338.09130859375, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9999.1474609375, + "y": -332.69873046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 9997.3232421875, + "y": -333.6787109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 9997.708984375, + "y": -302.8310546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 10013.201171875, + "y": -280.81494140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 10033.791015625, + "y": -264.869140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 10059.6943359375, + "y": -259.89599609375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 10062.701171875, + "y": -260.4052734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 10081.8681640625, + "y": -271.30517578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 10109.029296875, + "y": -247.9755859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 10104.7802734375, + "y": -239.14111328125, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 12, + "x": 10100.47265625, + "y": -233.51025390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 10135.322265625, + "y": -208.42626953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 10139.955078125, + "y": -207.34130859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 10168.169921875, + "y": -192.21240234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 10168.556640625, + "y": -181.7119140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 10188.650390625, + "y": -179.45458984375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/枯叶紫英/枯叶紫英-奥奇卡纳塔右01-1个.json b/repo/pathing/枯叶紫英/枯叶紫英-奥奇卡纳塔右01-1个.json new file mode 100644 index 00000000..c9c4ca49 --- /dev/null +++ b/repo/pathing/枯叶紫英/枯叶紫英-奥奇卡纳塔右01-1个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "枯叶紫英-奥奇卡纳塔右01-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "有神瞳标识可能影响识别,建议先拿", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9424.361328125, + "y": -354.6318359375, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9415.603515625, + "y": -359.51513671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 9399.7099609375, + "y": -368.58642578125, + "action": "", + "move_mode": "fly", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/枯叶紫英/枯叶紫英-奥奇卡纳塔神像右-7个.json b/repo/pathing/枯叶紫英/枯叶紫英-奥奇卡纳塔神像右-7个.json new file mode 100644 index 00000000..de4a99c4 --- /dev/null +++ b/repo/pathing/枯叶紫英/枯叶紫英-奥奇卡纳塔神像右-7个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "枯叶紫英-奥奇卡纳塔神像右-7个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9757.9365234375, + "y": -613.6259765625, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9767.482421875, + "y": -603.498046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 9760.5771484375, + "y": -599.49169921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 9738.681640625, + "y": -605.9970703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 9741.373046875, + "y": -609.150390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 9737.21484375, + "y": -629.9384765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 9680.38671875, + "y": -685.0224609375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 8, + "x": 9678.8623046875, + "y": -687.638671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 9662.65625, + "y": -700.2841796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 9660.6416015625, + "y": -702.42138671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 9629.6357421875, + "y": -715.1630859375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/枯叶紫英/枯叶紫英-奥斯卡纳塔左02-11个.json b/repo/pathing/枯叶紫英/枯叶紫英-奥斯卡纳塔左02-11个.json new file mode 100644 index 00000000..faf7532e --- /dev/null +++ b/repo/pathing/枯叶紫英/枯叶紫英-奥斯卡纳塔左02-11个.json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "枯叶紫英-奥斯卡纳塔左02-11个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9757.92578125, + "y": -613.60205078125, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9768.0009765625, + "y": -603.14404296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 9771.236328125, + "y": -615.15625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 9768.1357421875, + "y": -625.693359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 9789.041015625, + "y": -644.94189453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 9794.4111328125, + "y": -650.70556640625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": 9812.0849609375, + "y": -667.34033203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 9807.72265625, + "y": -687.66943359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 9799.1875, + "y": -731.08642578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 9782.056640625, + "y": -769.68310546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 9777.36328125, + "y": -772.013671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 9869.029296875, + "y": -785.8115234375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 13, + "x": 9874.111328125, + "y": -787.294921875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 14, + "x": 9879.2109375, + "y": -798.48876953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 9870.568359375, + "y": -802.32275390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 9867.25, + "y": -806.41796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 9876.6435546875, + "y": -774.40283203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": 9886.29296875, + "y": -761.49951171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": 9889.970703125, + "y": -728.71044921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 20, + "x": 9890.994140625, + "y": -710.3916015625, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 21, + "x": 9889.921875, + "y": -710.07470703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": 9889.21484375, + "y": -708.50732421875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/枯叶紫英/枯叶紫英-奥斯卡纳塔神像左-5个.json b/repo/pathing/枯叶紫英/枯叶紫英-奥斯卡纳塔神像左-5个.json new file mode 100644 index 00000000..57ab2390 --- /dev/null +++ b/repo/pathing/枯叶紫英/枯叶紫英-奥斯卡纳塔神像左-5个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "枯叶紫英-奥斯卡纳塔神像左-5个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "需要盾位", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 10030.4072265625, + "y": -643.35498046875, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 10041.791015625, + "y": -636.6591796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 9995.884765625, + "y": -766.53955078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 9991.169921875, + "y": -784.07373046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 9991.3095703125, + "y": -789.2470703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 9988.7568359375, + "y": -787.84033203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 9982.9345703125, + "y": -802.93017578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 9983.01953125, + "y": -803.90185546875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/枯叶紫英/枯叶紫英-托佐兹之岛-2个.json b/repo/pathing/枯叶紫英/枯叶紫英-托佐兹之岛-2个.json new file mode 100644 index 00000000..bf6e0cab --- /dev/null +++ b/repo/pathing/枯叶紫英/枯叶紫英-托佐兹之岛-2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "枯叶紫英-托佐兹之岛-2个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "有一个解密,剩余1个枯叶紫英", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 16, + "x": 9670.1640625, + "y": 171.38330078125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "id": 17, + "x": 9685.2041015625, + "y": 248.93212890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 9691.0078125, + "y": 261.84033203125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/枯叶紫英/枯叶紫英-火鹦之塔-18个.json b/repo/pathing/枯叶紫英/枯叶紫英-火鹦之塔-18个.json new file mode 100644 index 00000000..f85d9466 --- /dev/null +++ b/repo/pathing/枯叶紫英/枯叶紫英-火鹦之塔-18个.json @@ -0,0 +1,284 @@ +{ + "info": { + "name": "枯叶紫英-火鹦之塔-18个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9875.55859375, + "y": -401.0849609375, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 9880.40234375, + "y": -424.21728515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 9905.08984375, + "y": -419.62158203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 9852.13671875, + "y": -423.46826171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 9845.666015625, + "y": -428.82861328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 9854.7822265625, + "y": -443.51171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 9832.806640625, + "y": -449.30615234375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 9826.048828125, + "y": -464.78515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 9826.9970703125, + "y": -485.07421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 9815.2294921875, + "y": -468.66796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 9799.7841796875, + "y": -466.5673828125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 9804.58203125, + "y": -474.451171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 9803.892578125, + "y": -501.84326171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 9819.216796875, + "y": -496.1796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 9830.76953125, + "y": -531.2216796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 9837.8935546875, + "y": -547.1904296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 9881.3076171875, + "y": -593.3759765625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 19, + "x": 9898, + "y": -540.47021484375, + "action": "", + "move_mode": "swim", + "type": "path" + }, + { + "id": 20, + "x": 9903.2548828125, + "y": -500.59619140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 9912.326171875, + "y": -497.68994140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": 9886.7822265625, + "y": -486.0615234375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 23, + "x": 9853.9169921875, + "y": -498.39697265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": 9850.02734375, + "y": -493.73046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": 9851.9716796875, + "y": -536.63330078125, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 26, + "x": 9846.4990234375, + "y": -512.35693359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 9828.0595703125, + "y": -527.6494140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 9820.470703125, + "y": -523.92578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 29, + "x": 9808.8701171875, + "y": -528.4580078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 30, + "x": 9765.7998046875, + "y": -512.2099609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 9765.11328125, + "y": -509.2373046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": 9745.8154296875, + "y": -521.80322265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 9739.4560546875, + "y": -515.158203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 9745.8076171875, + "y": -506.396484375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 35, + "x": 9743.744140625, + "y": -490.0703125, + "action": "", + "move_mode": "walk", + "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..0caaf359 --- /dev/null +++ b/repo/pathing/枯叶紫英/枯叶紫英-空梦的起始-11个.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "枯叶紫英-空梦的起始-11个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "该处有首杀宝箱,9个枯叶紫英", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 10112.8125, + "y": -140.4072265625, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 10101.7880859375, + "y": -156.1826171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 10099.572265625, + "y": -158.34228515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 10076.068359375, + "y": -191.6240234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 10044.9814453125, + "y": -213.365234375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 10039.828125, + "y": -208.76220703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 10112.8330078125, + "y": -140.40771484375, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 8, + "x": 10080.078125, + "y": -143.33642578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 10066.666015625, + "y": -114.21923828125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 10019.50390625, + "y": -109.072265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 10012.990234375, + "y": -99.80419921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 10012.4033203125, + "y": -99.03955078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 9999.998046875, + "y": -121.20849609375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 9999.166015625, + "y": -122.9794921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 9989.5595703125, + "y": -127.77294921875, + "action": "", + "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..2c7922d5 Binary files /dev/null and b/repo/pathing/柔灯铃/icon.ico differ diff --git a/repo/pathing/树王圣体菇/1树王圣体菇 二净甸 2个.json b/repo/pathing/树王圣体菇/1树王圣体菇 二净甸 2个.json new file mode 100644 index 00000000..c76213ff --- /dev/null +++ b/repo/pathing/树王圣体菇/1树王圣体菇 二净甸 2个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "树王圣体菇 二净甸 2个", + "type": "collect", + "author": "梓默", + "version": "1.3", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3101.771484375, + "y": -354.8564453125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3125.3837890625, + "y": -350.3525390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 3154.82568359375, + "y": -350.71875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 3161.41455078125, + "y": -343.57763671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3174.53369140625, + "y": -358.74853515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 3153.74462890625, + "y": -359.72900390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3153.8564453125, + "y": -361.798828125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 3142.7822265625005, + "y": -360.11181640625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树王圣体菇/2树王圣体菇 水天丛林① 7个.json b/repo/pathing/树王圣体菇/2树王圣体菇 水天丛林① 7个.json new file mode 100644 index 00000000..62584d3b --- /dev/null +++ b/repo/pathing/树王圣体菇/2树王圣体菇 水天丛林① 7个.json @@ -0,0 +1,136 @@ +{ + "info": { + "name": "树王 水天丛林1", + "type": "collect", + "author": "梓默", + "version": "1.4", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3435.7978515625, + "y": -1470.6123046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3429.0205078125, + "y": -1456.08642578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 3436.1064453125, + "y": -1441.8671875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 3444.18701171875, + "y": -1438.001953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3443.74755859375, + "y": -1433.92529296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 3442.15087890625, + "y": -1430.5401367187496 + }, + { + "id": 7, + "x": 3429.0791015625, + "y": -1436.53515625 + }, + { + "id": 8, + "x": 3430.26171875, + "y": -1439.2734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 3429.2440429687504, + "y": -1436.5299999999997 + }, + { + "id": 10, + "x": 3427.2440429687504, + "y": -1439.0048828125 + }, + { + "id": 11, + "x": 3432.93701171875, + "y": -1445.1396484375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 3430.826171875, + "y": -1452.89697265625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 13, + "x": 3432.47119140625, + "y": -1456.6748046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 3427.68701171875, + "y": -1454.45751953125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 15, + "x": 3423.5040817992567, + "y": -1436.5, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 16, + "x": 3443.34326171875, + "y": -1419.86376953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 17, + "x": 3441.69580078125, + "y": -1421.41015625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树王圣体菇/3树王圣体菇 水天丛林② 3个.json b/repo/pathing/树王圣体菇/3树王圣体菇 水天丛林② 3个.json new file mode 100644 index 00000000..ed8593a2 --- /dev/null +++ b/repo/pathing/树王圣体菇/3树王圣体菇 水天丛林② 3个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "未命名路径", + "type": "collect", + "author": "旋风破晓", + "version": "1.0", + "description": "善见地-3个树王圣体姑", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3435.7548828125, + "y": -1470.60009765625 + }, + { + "id": 2, + "x": 3435.68115234375, + "y": -1465.4462890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 3432.685546875, + "y": -1471.47509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 3424.65283203125, + "y": -1475.1396484375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": 3400.23583984375, + "y": -1491.21044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3378.96826171875, + "y": -1512.4501953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 3369.02978515625, + "y": -1529.2109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": 3359.92529296875, + "y": -1531.16064453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 3352.26513671875, + "y": -1528.0458984375, + "type": "target", + "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..3ae77e5b --- /dev/null +++ b/repo/pathing/树王圣体菇/4树王圣体菇 水天丛林③ 3个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "树王圣体菇 水天丛林③ 3个", + "type": "collect", + "author": "梓默", + "version": "1.4", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3133.28857421875, + "y": -1733.736328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3128.453125, + "y": -1725.171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 3123.1982421875, + "y": -1721.5419921875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 3116.7511054872984, + "y": -1711.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3117.72314453125, + "y": -1700.5458984375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 3135.97412109375, + "y": -1694.30810546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 3147.80517578125, + "y": -1699.50927734375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树王圣体菇/5树王圣体菇 无郁稠林① 5个.json b/repo/pathing/树王圣体菇/5树王圣体菇 无郁稠林① 5个.json new file mode 100644 index 00000000..4fee0261 --- /dev/null +++ b/repo/pathing/树王圣体菇/5树王圣体菇 无郁稠林① 5个.json @@ -0,0 +1,129 @@ +{ + "info": { + "name": "树王圣体菇 须弥 无郁稠林 3个", + "type": "collect", + "author": "梓默", + "version": "1.4", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 2413.7498482404562, + "y": 351.75, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2402.746531856368, + "y": 357.526611328125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 2365.5068359375, + "y": 377.90771484375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 2372.17041015625, + "y": 381.39794921875, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 5, + "x": 2363.25654296875, + "y": 360.65087890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 2361.751870829152, + "y": 344.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2368.61328125, + "y": 330.8291015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 2356.92529296875, + "y": 318.79052734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 2347.83056640625, + "y": 318.70751953125, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 10, + "x": 2347.5006602926414, + "y": 316, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 11, + "x": 2282.3271484375, + "y": 318.57177734375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 12, + "x": 2256.500550243868, + "y": 328.25, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 13, + "x": 2237.13623046875, + "y": 343.060546875 + }, + { + "id": 14, + "x": 2230.14453125, + "y": 345.04248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 2229.3037109375, + "y": 344.88427734375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树王圣体菇/6树王圣体菇 无郁稠林② 5个 .json b/repo/pathing/树王圣体菇/6树王圣体菇 无郁稠林② 5个 .json new file mode 100644 index 00000000..4637a758 --- /dev/null +++ b/repo/pathing/树王圣体菇/6树王圣体菇 无郁稠林② 5个 .json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "树王圣体菇 无郁稠林2 5个", + "type": "collect", + "author": "梓默", + "version": "1.4", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2342.32080078125, + "y": -4.65869140625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2336.66943359375, + "y": 33.564453125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 2308.72216796875, + "y": 58.71875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 2304.95474609375, + "y": 53.4794921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 2299.7495598049054, + "y": 59.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 2292.6044921875, + "y": 60.294921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 2289.8311523437496, + "y": 57.46894531250018, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 2285.794921875, + "y": 57.42431640625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 9, + "x": 2276.56494140625, + "y": 52.421875, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 10, + "x": 2260.62646484375, + "y": 81.97998046875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 2256.10595703125, + "y": 80.015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 2264.5, + "y": 82.75, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 2267.7216796875, + "y": 62.19970703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 14, + "x": 2243.138671875, + "y": 33.68017578125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 15, + "x": 2241.93408203125, + "y": 32.1552734375, + "type": "target", + "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..520c65be 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..9d02bba5 Binary files /dev/null and b/repo/pathing/树莓/icon.ico differ diff --git a/repo/pathing/树莓/树莓1.json b/repo/pathing/树莓/树莓1.json new file mode 100644 index 00000000..ddcc8d49 --- /dev/null +++ b/repo/pathing/树莓/树莓1.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "树莓", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -440.140625, + "y": 2580.892578125 + }, + { + "id": 2, + "x": -458.154296875, + "y": 2566.329833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -481.4853515625, + "y": 2554.830322265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -472.458984375, + "y": 2554.12744140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -553.4375, + "y": 2618.07177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -497.876953125, + "y": 2646.230712890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -476.1875, + "y": 2665.854248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -455.61328125, + "y": 2692.27490234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -459.099609375, + "y": 2702.3642578125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓10.json b/repo/pathing/树莓/树莓10.json new file mode 100644 index 00000000..e3349b90 --- /dev/null +++ b/repo/pathing/树莓/树莓10.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "树莓10", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 978.7841796875, + "y": -353.48291015625 + }, + { + "id": 2, + "x": 979.0458984375, + "y": -332.5927734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 999.8876953125, + "y": -329.88134765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1026.7998046875, + "y": -335.85888671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1028.2080078125, + "y": -304.42333984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 1027.201171875, + "y": -295.67724609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": 1024.10546875, + "y": -286.58544921875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓11.json b/repo/pathing/树莓/树莓11.json new file mode 100644 index 00000000..9629d561 --- /dev/null +++ b/repo/pathing/树莓/树莓11.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "树莓11", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 828.2099609375, + "y": -583.390625 + }, + { + "id": 2, + "x": 817.8427734375, + "y": -591.6796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 813.125, + "y": -609.84033203125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 824.4482421875, + "y": -687.1884765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 840.810546875, + "y": -681.93505859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 825.341796875, + "y": -695.36328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 803.6474609375, + "y": -718.00341796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": 802.0390625, + "y": -721.8525390625, + "type": "target", + "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..858775fb --- /dev/null +++ b/repo/pathing/树莓/树莓12.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "树莓12", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2533.3896484375, + "y": -3539.6142578125 + }, + { + "id": 2, + "x": -2561.8388671875, + "y": -3511.7470703125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2672.55078125, + "y": -3513.25390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2653.22265625, + "y": -3475.1123046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2738.26953125, + "y": -3414.6591796875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2770.7275390625, + "y": -3442.1640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2785.7978515625, + "y": -3434.498046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2793.5556640625, + "y": -3474.6923828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2735.2451171875, + "y": -3549.1064453125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓13.json b/repo/pathing/树莓/树莓13.json new file mode 100644 index 00000000..e4148eb6 --- /dev/null +++ b/repo/pathing/树莓/树莓13.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "树莓13", + "type": "collect", + "author": "", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3684.861328125, + "y": -4278.6240234375 + }, + { + "id": 2, + "x": -3694.5283203125, + "y": -4307.326171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3738.2998046875, + "y": -4346.5146484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -3729.427734375, + "y": -4353.60546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -3755.908203125, + "y": -4401.4013671875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓14.json b/repo/pathing/树莓/树莓14.json new file mode 100644 index 00000000..b973f933 --- /dev/null +++ b/repo/pathing/树莓/树莓14.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "树莓14", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -2598.38671875, + "y": -6690.4384765625 + }, + { + "id": 2, + "x": -2599.11328125, + "y": -6698.841796875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2665.3232421875, + "y": -6745.208984375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -2712.5419921875, + "y": -6765.7197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2739.98046875, + "y": -6742.015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2734.15625, + "y": -6732.6826171875, + "type": "target", + "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..930aff1f --- /dev/null +++ b/repo/pathing/树莓/树莓2.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "树莓2", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1120.8740234375, + "y": 2190.460693359375 + }, + { + "id": 2, + "x": -1084.7392578125, + "y": 2173.6767578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1070.576171875, + "y": 2125.8359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1120.8046875, + "y": 2190.542236328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1091.6337890625, + "y": 2202.30029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1087.1123046875, + "y": 2221.42236328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1104.8203125, + "y": 2257.154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1118.33203125, + "y": 2285.37060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1096.1064453125, + "y": 2286.11181640625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓3.json b/repo/pathing/树莓/树莓3.json new file mode 100644 index 00000000..e1df632b --- /dev/null +++ b/repo/pathing/树莓/树莓3.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "树莓3", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1273.78125, + "y": 2721.680908203125 + }, + { + "id": 2, + "x": -1259.87109375, + "y": 2653.366455078125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1329.9423828125, + "y": 2563.93115234375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1359.158203125, + "y": 2600.465576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1388.185546875, + "y": 2636.631591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1419.94921875, + "y": 2650.991455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1329.947265625, + "y": 2563.903076171875, + "type": "teleport", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓4.json b/repo/pathing/树莓/树莓4.json new file mode 100644 index 00000000..2e477f6b --- /dev/null +++ b/repo/pathing/树莓/树莓4.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "树莓4", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 8, + "x": -1505.896484375, + "y": 2296.20263671875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1392.8505859375, + "y": 2266.16064453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1348.734375, + "y": 2239.318359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1361.55859375, + "y": 2315.42236328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -1296.5654296875, + "y": 2304.9775390625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -1276.068359375, + "y": 2308.185546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -1242.84375, + "y": 2257.47802734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -1230.4375, + "y": 2257.553955078125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓5.json b/repo/pathing/树莓/树莓5.json new file mode 100644 index 00000000..26323a9d --- /dev/null +++ b/repo/pathing/树莓/树莓5.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "树莓5", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1505.8935546875, + "y": 2296.187255859375 + }, + { + "id": 2, + "x": -1483.7490234375, + "y": 2342.124267578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1451.5439453125, + "y": 2364.34228515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1472.453125, + "y": 2383.34619140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1507.541015625, + "y": 2433.373779296875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓6.json b/repo/pathing/树莓/树莓6.json new file mode 100644 index 00000000..5c540c68 --- /dev/null +++ b/repo/pathing/树莓/树莓6.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "树莓6", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1505.873046875, + "y": 2296.2001953125 + }, + { + "id": 2, + "x": -1516.978515625, + "y": 2291.902099609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1556.4501953125, + "y": 2345.112060546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1624.7958984375, + "y": 2370.252685546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1608.419921875, + "y": 2320.009521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1610.146484375, + "y": 2303.319580078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": -1603.9306640625, + "y": 2302.307861328125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓7.json b/repo/pathing/树莓/树莓7.json new file mode 100644 index 00000000..b4945158 --- /dev/null +++ b/repo/pathing/树莓/树莓7.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "树莓7", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -578.841796875, + "y": 1853.31298828125 + }, + { + "id": 2, + "x": -518.5947265625, + "y": 1869.46630859375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓8.json b/repo/pathing/树莓/树莓8.json new file mode 100644 index 00000000..83ffdbf2 --- /dev/null +++ b/repo/pathing/树莓/树莓8.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "树莓8", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -578.724609375, + "y": 1853.4091796875 + }, + { + "id": 2, + "x": -587.45703125, + "y": 1835.50732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -602.7353515625, + "y": 1797.6279296875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/树莓/树莓9.json b/repo/pathing/树莓/树莓9.json new file mode 100644 index 00000000..f7d2eb2f --- /dev/null +++ b/repo/pathing/树莓/树莓9.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "树莓9", + "type": "collect", + "author": "风埠", + "version": "1.0", + "description": "树莓", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -663.5947265625, + "y": 1709.68994140625 + }, + { + "id": 2, + "x": -681.1875, + "y": 1717.82861328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -715.0439453125, + "y": 1737.62060546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -735.3017578125, + "y": 1750.03662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -747.3662109375, + "y": 1758.8681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -761.2607421875, + "y": 1757.07666015625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/庆云顶01-12个(不稳定).json b/repo/pathing/水晶矿/庆云顶01-12个(不稳定).json new file mode 100644 index 00000000..e74b3680 --- /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)" + } + ] +} diff --git a/repo/pathing/水晶矿/沉玉古南陵.json b/repo/pathing/水晶矿/沉玉古南陵.json new file mode 100644 index 00000000..4de70151 --- /dev/null +++ b/repo/pathing/水晶矿/沉玉古南陵.json @@ -0,0 +1,164 @@ +{ + "info": { + "name": "沉玉古南陵", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2461.671875, + "y": 1802.4765625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 2481.3583984375, + "y": 1720.35546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 2471.310546875, + "y": 1723.51708984375, + "type": "path", + "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": 4, + "x": 2471.3076171875, + "y": 1726.3369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2470.689453125, + "y": 1729.2109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2474.2451171875, + "y": 1727.90234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2470.326171875, + "y": 1718.19970703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 2467.3740234375, + "y": 1718.517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 2467.51953125, + "y": 1722.63330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 2468.814453125, + "y": 1723.94189453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 2470.0595703125, + "y": 1722.8056640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 2471.96875, + "y": 1721.3623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 2472.2607421875, + "y": 1719.13818359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 2471.7607421875, + "y": 1717.0283203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 2470.3984375, + "y": 1716.384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 2469.8271484375, + "y": 1719.07958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 2469.390625, + "y": 1720.43798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 2471.1083984375, + "y": 1725.27294921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 2471.484375, + "y": 1727.205078125, + "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..40b84bb3 --- /dev/null +++ b/repo/pathing/水晶矿/沉玉古南陵2.json @@ -0,0 +1,684 @@ +{ + "info": { + "name": "沉玉古南陵2", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1863.630859375, + "y": 1590.99951171875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1862.5009765625, + "y": 1580.271484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 1854.4306640625, + "y": 1555.73828125, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 4, + "x": 1835.8896484375, + "y": 1524.169921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 1621.6875, + "y": 1504.3798828125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 1610.3427734375, + "y": 1526.62060546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 1613.6298828125, + "y": 1520.12158203125, + "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": 1613.9404296875, + "y": 1520.84033203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 1618.380859375, + "y": 1516.33203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 1620.0625, + "y": 1516.85009765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 1622.9169921875, + "y": 1520.8701171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 1619.125, + "y": 1523.71435546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 1617.7119140625, + "y": 1517.30810546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 1615.0341796875, + "y": 1519.8193359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 1618.427734375, + "y": 1521.87890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 1619.9228515625, + "y": 1520.951171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 1598.767578125, + "y": 1527.53173828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 1551.7578125, + "y": 1556.3896484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 1562.8671875, + "y": 1615.0234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 1563.931640625, + "y": 1623.560546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 1560.935546875, + "y": 1627.96435546875, + "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": 22, + "x": 1568.6962890625, + "y": 1626.931640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 1570.97265625, + "y": 1628.53759765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 1565.2705078125, + "y": 1629.404296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 1567.2099609375, + "y": 1631.58447265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 1564.4814453125, + "y": 1634.0869140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 1559.7880859375, + "y": 1634.38037109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 1562.7109375, + "y": 1629.30224609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 1563.5546875, + "y": 1629.107421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 30, + "x": 1558.8076171875, + "y": 1629.869140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 1557.052734375, + "y": 1630.7431640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 32, + "x": 1554.732421875, + "y": 1629.19384765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 1553.1943359375, + "y": 1626.64306640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 1556.5986328125, + "y": 1624.69970703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 35, + "x": 1558.4736328125, + "y": 1624.6650390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 36, + "x": 1562.3955078125, + "y": 1623.580078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 1563.59375, + "y": 1621.6220703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 38, + "x": 1564.5107421875, + "y": 1623.45947265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 39, + "x": 1562.478515625, + "y": 1625.55810546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 40, + "x": 1559.8427734375, + "y": 1624.505859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 41, + "x": 1557.4609375, + "y": 1624.44384765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 42, + "x": 1559.455078125, + "y": 1628.98681640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 43, + "x": 1564.275390625, + "y": 1626.06591796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 44, + "x": 1567.4521484375, + "y": 1626.00341796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 45, + "x": 1537.3984375, + "y": 1602.7734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 46, + "x": 1495.685546875, + "y": 1631.9375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 47, + "x": 1493.5068359375, + "y": 1677.51123046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 48, + "x": 1488.1572265625, + "y": 1770.2763671875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 49, + "x": 1486.1337890625, + "y": 1780.19921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 50, + "x": 1491.814453125, + "y": 1781.771484375, + "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": 51, + "x": 1490.541015625, + "y": 1778.03857421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 52, + "x": 1494.3642578125, + "y": 1779.86328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 53, + "x": 1489.66796875, + "y": 1779.21240234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 54, + "x": 1488.4951171875, + "y": 1777.73095703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 55, + "x": 1487.17578125, + "y": 1776.912109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 56, + "x": 1488.1220703125, + "y": 1784.86474609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 57, + "x": 1492.486328125, + "y": 1785.93115234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 58, + "x": 1493.2548828125, + "y": 1783.35546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 59, + "x": 1488.349609375, + "y": 1783.703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 60, + "x": 1487.7431640625, + "y": 1785.5283203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 61, + "x": 1490.8486328125, + "y": 1785.64501953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 62, + "x": 1491.4599609375, + "y": 1788.435546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 63, + "x": 1511.240234375, + "y": 1822.1796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 64, + "x": 1543.5751953125, + "y": 1841.56689453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 65, + "x": 1582.212890625, + "y": 1869.81201171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 66, + "x": 1590.4736328125, + "y": 1889.2421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 67, + "x": 1620.2265625, + "y": 1915.041015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 68, + "x": 1638.0546875, + "y": 1915.53173828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 69, + "x": 1652.9677734375, + "y": 1912.6484375, + "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": 70, + "x": 1652.9453125, + "y": 1908.76953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 71, + "x": 1656.70703125, + "y": 1909.962890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 72, + "x": 1658.154296875, + "y": 1913.4306640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 73, + "x": 1661.2138671875, + "y": 1915.83203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 74, + "x": 1656.1943359375, + "y": 1915.3173828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 75, + "x": 1652.736328125, + "y": 1915.05322265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 76, + "x": 1656.1083984375, + "y": 1919.3154296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 77, + "x": 1651.1376953125, + "y": 1916.30615234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 78, + "x": 1649.3251953125, + "y": 1911.734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 79, + "x": 1649.3056640625, + "y": 1910.78173828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 80, + "x": 1650.1953125, + "y": 1908.62158203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 81, + "x": 1648.572265625, + "y": 1913.09130859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 82, + "x": 1651.62890625, + "y": 1911.19140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 83, + "x": 1652.3974609375, + "y": 1914.34130859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 84, + "x": 1660.3203125, + "y": 1917.16845703125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/沉玉谷上谷.json b/repo/pathing/水晶矿/沉玉谷上谷.json new file mode 100644 index 00000000..9ba7ca3f --- /dev/null +++ b/repo/pathing/水晶矿/沉玉谷上谷.json @@ -0,0 +1,284 @@ +{ + "info": { + "name": "沉玉谷上谷", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1977.2900390625, + "y": 2341.0302734375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 1954.697265625, + "y": 2364.881591796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 1957.74609375, + "y": 2359.410400390625, + "type": "path", + "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": 4, + "x": 1953.3828125, + "y": 2355.6259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1952.34375, + "y": 2355.164306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 1951.4794921875, + "y": 2356.484130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1952.11328125, + "y": 2357.262451171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1953.0126953125, + "y": 2358.420654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1951.14453125, + "y": 2358.323486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1956.466796875, + "y": 2360.84033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1959.2548828125, + "y": 2363.634033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1963.0830078125, + "y": 2360.286865234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 1964.83984375, + "y": 2361.394287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1966.3642578125, + "y": 2362.822509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1963.96875, + "y": 2361.17236328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 1964.208984375, + "y": 2362.604736328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1963.34765625, + "y": 2363.988037109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1960.8955078125, + "y": 2364.021728515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1962.2685546875, + "y": 2365.593505859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1961.638671875, + "y": 2367.158935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1959.8974609375, + "y": 2366.237548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 1958.13671875, + "y": 2365.645751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 1972.43359375, + "y": 2374.97998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 2010.0634765625, + "y": 2379.798095703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 2016.2607421875, + "y": 2374.998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 2029.1533203125, + "y": 2374.34765625, + "type": "path", + "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": 27, + "x": 2026.3564453125, + "y": 2374.157958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 2027.3525390625, + "y": 2376.3193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 2029.0615234375, + "y": 2377.537353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 2030.71484375, + "y": 2377.38330078125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 31, + "x": 2032.2900390625, + "y": 2374.697021484375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 32, + "x": 2032.9208984375, + "y": 2371.72509765625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 33, + "x": 2031.9794921875, + "y": 2371.67431640625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 34, + "x": 2029.29296875, + "y": 2370.62451171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/沉玉谷上谷2.json b/repo/pathing/水晶矿/沉玉谷上谷2.json new file mode 100644 index 00000000..e9eb7dcd --- /dev/null +++ b/repo/pathing/水晶矿/沉玉谷上谷2.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "沉玉谷上谷2", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2145.66015625, + "y": 2412.950439453125 + }, + { + "id": 2, + "x": 2182.1708984375, + "y": 2391.7265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 2176.8583984375, + "y": 2395.16259765625, + "type": "path", + "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": 4, + "x": 2178.8505859375, + "y": 2395.331787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2179.7412109375, + "y": 2396.4482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2177.1201171875, + "y": 2400.516357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2181.1064453125, + "y": 2396.331787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 2180.693359375, + "y": 2395.604248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 2178.140625, + "y": 2392.4462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 2175.3837890625, + "y": 2393.01806640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 2175.4052734375, + "y": 2393.83935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 2173.943359375, + "y": 2395.16455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 2174.6884765625, + "y": 2396.967041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 2173.697265625, + "y": 2398.020263671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 2171.876953125, + "y": 2400.224609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/沉玉谷上谷3.json b/repo/pathing/水晶矿/沉玉谷上谷3.json new file mode 100644 index 00000000..8430b774 --- /dev/null +++ b/repo/pathing/水晶矿/沉玉谷上谷3.json @@ -0,0 +1,396 @@ +{ + "info": { + "name": "沉玉谷上谷3", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 2191.53125, + "y": 2110.84814453125 + }, + { + "id": 2, + "x": 2177.8701171875, + "y": 2108.8330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2158.400390625, + "y": 2130.7265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2150.49609375, + "y": 2163.4609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2160.5546875, + "y": 2186.9716796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2153.1552734375, + "y": 2183.166748046875, + "type": "path", + "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": 7, + "x": 2154.9384765625, + "y": 2182.4697265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 2153.283203125, + "y": 2184.84033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 2150.0419921875, + "y": 2184.827880859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 2145.533203125, + "y": 2184.118896484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 2145.09375, + "y": 2182.529052734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 2147.26171875, + "y": 2182.56640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 2148.640625, + "y": 2183.58203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 2151.72265625, + "y": 2183.14013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 2152.7529296875, + "y": 2187.233154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 2149.1142578125, + "y": 2189.629638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 2146.1611328125, + "y": 2187.1328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 2151.9140625, + "y": 2188.706787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 2154.4443359375, + "y": 2187.28369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 2177.587890625, + "y": 2179.990478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 2178.1357421875, + "y": 2180.87548828125, + "type": "path", + "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": 22, + "x": 2178.6376953125, + "y": 2179.865478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 2178.6318359375, + "y": 2177.864990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 2180.4052734375, + "y": 2178.982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 2181.5009765625, + "y": 2180.585693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 2181.69140625, + "y": 2182.443115234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 2183.755859375, + "y": 2182.50439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 2182.056640625, + "y": 2181.357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 2181.29296875, + "y": 2179.62060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 2179.6025390625, + "y": 2178.984619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 2178.8515625, + "y": 2180.37060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 2177.1552734375, + "y": 2181.22509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 2176.2353515625, + "y": 2178.251953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 2177.3544921875, + "y": 2171.8447265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 2177.869140625, + "y": 2164.577392578125, + "type": "path", + "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": 36, + "x": 2174.318359375, + "y": 2165.715576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 2174.099609375, + "y": 2164.81103515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 2173.3623046875, + "y": 2162.1962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 2177.1337890625, + "y": 2160.7490234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 2178.9609375, + "y": 2160.706787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 2179.0947265625, + "y": 2164.19775390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 2178.70703125, + "y": 2166.92138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 2178.6025390625, + "y": 2168.942138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 2178.037109375, + "y": 2169.59619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 2177.16015625, + "y": 2168.11181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 2177.0947265625, + "y": 2164.55224609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 2177.04296875, + "y": 2163.564208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 2176.328125, + "y": 2163.008056640625, + "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..ef10e1fc --- /dev/null +++ b/repo/pathing/水晶矿/沉玉谷暝还山01.json @@ -0,0 +1,204 @@ +{ + "info": { + "name": "沉玉谷暝还山01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2614.7099609375, + "y": 2374.785888671875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 2603.4580078125, + "y": 2512.29150390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 2617.3115234375, + "y": 2506.982177734375, + "type": "path", + "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": 4, + "x": 2618.7578125, + "y": 2509.22119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2619.927734375, + "y": 2510.97607421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2617.8095703125, + "y": 2512.705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2616.02734375, + "y": 2513.549560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 2618.3447265625, + "y": 2516.595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 2621.0791015625, + "y": 2516.2099609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 2620.791015625, + "y": 2513.82421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 2620.2158203125, + "y": 2511.291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 2619.904296875, + "y": 2509.357666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 2619.3916015625, + "y": 2507.765380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 2618.875, + "y": 2505.698974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 2617.2626953125, + "y": 2503.393798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 2615.767578125, + "y": 2501.9296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 2612.927734375, + "y": 2502.404541015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 2610.15625, + "y": 2503.3349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 2609.666015625, + "y": 2505.661865234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 2611.919921875, + "y": 2506.436279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 2613.9072265625, + "y": 2504.5400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 2616.1337890625, + "y": 2503.1455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 2617.58203125, + "y": 2504.800048828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 2617.0986328125, + "y": 2501.90771484375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/沉玉谷暝还山02.json b/repo/pathing/水晶矿/沉玉谷暝还山02.json new file mode 100644 index 00000000..0a80b8ee --- /dev/null +++ b/repo/pathing/水晶矿/沉玉谷暝还山02.json @@ -0,0 +1,436 @@ +{ + "info": { + "name": "沉玉谷暝还山02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 2615.005859375, + "y": 2050.9130859375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 2604.4228515625, + "y": 2078.27880859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2615.3505859375, + "y": 2066.28515625, + "type": "path", + "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": 4, + "x": 2610.2763671875, + "y": 2063.719482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2609.6708984375, + "y": 2064.56689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2609.529296875, + "y": 2066.24365234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2611.515625, + "y": 2068.057861328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 2612.984375, + "y": 2069.442138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 2612.8994140625, + "y": 2067.05615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 2616.0634765625, + "y": 2067.280029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 2616.076171875, + "y": 2069.416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 2616.751953125, + "y": 2070.162353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 2619.880859375, + "y": 2069.32421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 2620.2236328125, + "y": 2067.95703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 2617.728515625, + "y": 2070.81005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 2622.6171875, + "y": 2066.4140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 2625.9609375, + "y": 2063.417724609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 2625.2763671875, + "y": 2063.98095703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 2623.14453125, + "y": 2062.19970703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 2622.083984375, + "y": 2062.576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 2622.4208984375, + "y": 2063.173095703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 2622.416015625, + "y": 2063.16455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 2622.4365234375, + "y": 2061.86181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 2621.0810546875, + "y": 2063.223876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 2625.6728515625, + "y": 2066.7822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 2633.576171875, + "y": 2089.721923828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 2666.1474609375, + "y": 2097.41357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 2707.220703125, + "y": 2096.617431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 2779.1865234375, + "y": 2117.65673828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 2788.1015625, + "y": 2116.06689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 2801.5126953125, + "y": 2109.17529296875, + "type": "path", + "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": 32, + "x": 2802.81640625, + "y": 2112.915771484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 2801.294921875, + "y": 2110.30126953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 2799.0849609375, + "y": 2112.084228515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 2799.048828125, + "y": 2109.1591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 2803.5654296875, + "y": 2103.765869140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 2807.201171875, + "y": 2102.014404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 2808.517578125, + "y": 2103.601806640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 2806.9150390625, + "y": 2105.094970703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 2803.07421875, + "y": 2105.98095703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 2802.5634765625, + "y": 2107.070068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 2806.630859375, + "y": 2107.107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 2809.7841796875, + "y": 2106.564208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 2810.9443359375, + "y": 2107.207275390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 2807.26953125, + "y": 2108.454345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 2803.48046875, + "y": 2108.9384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 2800.3818359375, + "y": 2109.085693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 2799.4580078125, + "y": 2110.126220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 2805.1943359375, + "y": 2112.365966796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": 2803.6162109375, + "y": 2113.264892578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 2800.0546875, + "y": 2112.722900390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": 2795.9228515625, + "y": 2115.0751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 2798.59765625, + "y": 2116.2822265625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ 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..80092821 --- /dev/null +++ b/repo/pathing/水晶矿/璃月-01-轻策庄南-6个.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "轻策庄南-6个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 839.9580078125, + "y": 1532.56005859375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 820.8251953125, + "y": 1548.1875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 820.0869140625, + "y": 1559.16748046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 815.375, + "y": 1559.8876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 808.7021484375, + "y": 1561.1162109375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 6, + "x": 778.7890625, + "y": 1530.09130859375, + "type": "path", + "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": 7, + "x": 778.7666015625, + "y": 1530.0849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 782.388671875, + "y": 1530.84619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 776.341796875, + "y": 1530.32861328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 774.3154296875, + "y": 1530.96875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 774.7255859375, + "y": 1530.31982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 768.87890625, + "y": 1559.12158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 748.36328125, + "y": 1563.22216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 724.12890625, + "y": 1560.9150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 720.787109375, + "y": 1563.4921875, + "type": "path", + "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": 16, + "x": 722.630859375, + "y": 1568.49853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 720.0302734375, + "y": 1565.35546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 720.044921875, + "y": 1563.2216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 719.384765625, + "y": 1561.31982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 720.533203125, + "y": 1559.853515625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/璃月-02-奥藏山-8个.json b/repo/pathing/水晶矿/璃月-02-奥藏山-8个.json new file mode 100644 index 00000000..370e5a05 --- /dev/null +++ b/repo/pathing/水晶矿/璃月-02-奥藏山-8个.json @@ -0,0 +1,299 @@ +{ + "info": { + "name": "奥藏山-8个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "刚需钟离", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1603.064453125, + "y": 1039.716796875 + }, + { + "id": 2, + "x": 1630.0498046875, + "y": 1047.5390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 1658.8232421875, + "y": 1059.12353515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 1657.541015625, + "y": 1073.2177734375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold)" + }, + { + "id": 5, + "x": 1637.8798828125, + "y": 1095.09375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 1652.4140625, + "y": 1098.6904296875, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 wait(3),e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 7, + "x": 1651.7568359375, + "y": 1094.671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1650.0263671875, + "y": 1094.9892578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1653.138671875, + "y": 1104.91552734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1651.302734375, + "y": 1104.13671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1651.3095703125, + "y": 1107.14892578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1646.5908203125, + "y": 1107.4580078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 1649.8056640625, + "y": 1110.70458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1639.798828125, + "y": 1113.85498046875, + "type": "path", + "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": 15, + "x": 1645.330078125, + "y": 1109.2568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 1647.4130859375, + "y": 1113.32373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1638.28515625, + "y": 1113.82470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1639.31640625, + "y": 1116.81982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1632.6005859375, + "y": 1117.1142578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1633.6533203125, + "y": 1114.03466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1617.787109375, + "y": 1106.30322265625, + "type": "path", + "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": 22, + "x": 1620.8505859375, + "y": 1111.37353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 1617.9111328125, + "y": 1113.0771484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 1614.7958984375, + "y": 1109.05859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 1620.1943359375, + "y": 1102.24951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 1614.2392578125, + "y": 1100.19775390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 1612.3115234375, + "y": 1093.37548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 1624.1181640625, + "y": 1091.8037109375, + "type": "path", + "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": 29, + "x": 1618.1416015625, + "y": 1092.36572265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 1629.0546875, + "y": 1093.95361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 1612.2646484375, + "y": 1093.2763671875, + "type": "path", + "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": 32, + "x": 1624.7509765625, + "y": 1102.89794921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 1644.7685546875, + "y": 1107.4931640625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 wait(2),e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 34, + "x": 1650.4326171875, + "y": 1111.38916015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 1639.8173828125, + "y": 1103.904296875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/璃月-03-宗室本北-2个.json b/repo/pathing/水晶矿/璃月-03-宗室本北-2个.json new file mode 100644 index 00000000..77523d20 --- /dev/null +++ b/repo/pathing/水晶矿/璃月-03-宗室本北-2个.json @@ -0,0 +1,93 @@ +{ + "info": { + "name": "宗室本北-2个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1436.3076171875, + "y": 1289.9482421875 + }, + { + "id": 2, + "x": 1430.544921875, + "y": 1303.15234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1416.568359375, + "y": 1310.83251953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1410.4677734375, + "y": 1321.0625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1369.41796875, + "y": 1358.5478515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 1375.3671875, + "y": 1364.6064453125, + "type": "path", + "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": 7, + "x": 1376.990234375, + "y": 1360.13818359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1373.0625, + "y": 1366.2265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1377.4951171875, + "y": 1370.30419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1374.3173828125, + "y": 1370.755859375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/璃月-04-珉林中部-3个.json b/repo/pathing/水晶矿/璃月-04-珉林中部-3个.json new file mode 100644 index 00000000..2a112639 --- /dev/null +++ b/repo/pathing/水晶矿/璃月-04-珉林中部-3个.json @@ -0,0 +1,222 @@ +{ + "info": { + "name": "珉林中部-3个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1121.0146484375, + "y": 1190.39453125 + }, + { + "id": 2, + "x": 1100.287109375, + "y": 1192.2958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1061.83203125, + "y": 1184.01416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1048.9638671875, + "y": 1204.025390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1045.728515625, + "y": 1201.3525390625, + "type": "path", + "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": 6, + "x": 1052.3095703125, + "y": 1202.42919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1048.4453125, + "y": 1203.1044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1042.4521484375, + "y": 1203.8271484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1038.951171875, + "y": 1201.638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1031.3935546875, + "y": 1196.66357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1046.9833984375, + "y": 1188.9521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1053.0458984375, + "y": 1195.4677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 1052.21484375, + "y": 1196.71875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1049.70703125, + "y": 1199.3603515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1046.744140625, + "y": 1198.78369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 1042.4248046875, + "y": 1202.00244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1032, + "y": 1199.3740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1031.5185546875, + "y": 1201.2861328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1038.9560546875, + "y": 1189.11572265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1046.5234375, + "y": 1193.283203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1053.7265625, + "y": 1191.478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 1004.9931640625, + "y": 1148.451171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 983.640625, + "y": 1138.87890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 931.2451171875, + "y": 1121.77978515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 25, + "x": 900.3583984375, + "y": 1128.61962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 900.1328125, + "y": 1125.8740234375, + "type": "path", + "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/水晶矿/璃月-05-荻花洲西-1个.json b/repo/pathing/水晶矿/璃月-05-荻花洲西-1个.json new file mode 100644 index 00000000..9538d274 --- /dev/null +++ b/repo/pathing/水晶矿/璃月-05-荻花洲西-1个.json @@ -0,0 +1,69 @@ +{ + "info": { + "name": "荻花洲西-1个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 696.5703125, + "y": 1007.4013671875 + }, + { + "id": 2, + "x": 676.9267578125, + "y": 999.7822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 685.71875, + "y": 990.12451171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 683.4404296875, + "y": 983.42138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 693.5654296875, + "y": 980.66015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 697.54296875, + "y": 980.80078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 699.1865234375, + "y": 982.98681640625, + "type": "path", + "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..676819e7 --- /dev/null +++ b/repo/pathing/水晶矿/璃月天衡山 (1).json @@ -0,0 +1,500 @@ +{ + "info": { + "name": "璃月天衡山", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 508.0322265625, + "y": -630.46337890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 525.71484375, + "y": -616.39111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 558.330078125, + "y": -617.34423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 562.51171875, + "y": -609.2626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 565.5166015625, + "y": -599.03369140625, + "type": "path", + "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": 6, + "x": 561.751953125, + "y": -598.39990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 560.8427734375, + "y": -598.3291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 559.8994140625, + "y": -595.52197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 562.8623046875, + "y": -594.984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 563.87890625, + "y": -594.98876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 566.5615234375, + "y": -593.58154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 567.5712890625, + "y": -593.8427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 569.5224609375, + "y": -594.74658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 571.26953125, + "y": -595.81689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 571.76171875, + "y": -598.421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 571.412109375, + "y": -600.27197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 568.5830078125, + "y": -599.21435546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 568.0205078125, + "y": -598.41064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 565.7578125, + "y": -597.6357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 564.7080078125, + "y": -597.6044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 567.591796875, + "y": -594.35791015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 569.40625, + "y": -593.52587890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 571.5751953125, + "y": -595.68896484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 572.630859375, + "y": -595.548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 567.34765625, + "y": -592.609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 575.99609375, + "y": -552.86181640625, + "type": "path", + "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": 27, + "x": 576.7958984375, + "y": -555.0078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 577.7294921875, + "y": -553.2216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 578.3017578125, + "y": -552.53271484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 578.14453125, + "y": -551.5107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 579.07421875, + "y": -550.93115234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 578.478515625, + "y": -549.0693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 578.732421875, + "y": -548.0791015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 579.962890625, + "y": -549.705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 579.931640625, + "y": -549.69921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 579.0126953125, + "y": -547.87841796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 578.1416015625, + "y": -548.0947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 576.189453125, + "y": -546.080078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 576.5224609375, + "y": -545.193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 577.2626953125, + "y": -545.80029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 577.2421875, + "y": -545.8017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 577.2431640625, + "y": -545.8125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 575.68359375, + "y": -545.38623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 575.7001953125, + "y": -545.4267578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 575.6669921875, + "y": -544.427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 574.64453125, + "y": -544.3896484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 576.42578125, + "y": -546.44287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 576.31640625, + "y": -548.35888671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 574.0673828125, + "y": -551.35009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": 574.525390625, + "y": -554.98193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 574.814453125, + "y": -556.6357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": 575.6923828125, + "y": -559.15478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 575.017578125, + "y": -558.35302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": 576.123046875, + "y": -556.57568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": 577.46484375, + "y": -554.2041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 56, + "x": 578.541015625, + "y": -551.43896484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 57, + "x": 577.8125, + "y": -548.615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 58, + "x": 575.3662109375, + "y": -547.3330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 59, + "x": 574.8037109375, + "y": -545.90625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 60, + "x": 576.0498046875, + "y": -545.03125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 61, + "x": 573.4052734375, + "y": -544.068359375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/璃月天衡山2 (1).json b/repo/pathing/水晶矿/璃月天衡山2 (1).json new file mode 100644 index 00000000..2ce7063b --- /dev/null +++ b/repo/pathing/水晶矿/璃月天衡山2 (1).json @@ -0,0 +1,324 @@ +{ + "info": { + "name": "璃月天衡山2", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 614.384765625, + "y": -281.87109375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 650.7294921875, + "y": -286.919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 713.2421875, + "y": -292.5546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 700.87890625, + "y": -271.80517578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 705.6748046875, + "y": -273.8955078125, + "type": "path", + "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": 6, + "x": 707.2822265625, + "y": -272.5234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 706.880859375, + "y": -275.47998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 706.8984375, + "y": -275.455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 707.59375, + "y": -274.8056640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 706.44921875, + "y": -272.00927734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 705.080078125, + "y": -276.72314453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 703.5810546875, + "y": -272.97216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 704.33984375, + "y": -270.083984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 704.173828125, + "y": -269.1689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 706.2265625, + "y": -270.53662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 702.6376953125, + "y": -273.9931640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 702.3994140625, + "y": -275.92529296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 694.642578125, + "y": -267.24853515625, + "type": "path", + "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": 19, + "x": 697.515625, + "y": -272.16845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 700.1318359375, + "y": -270.92822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 696.68359375, + "y": -267.96728515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 694.775390625, + "y": -268.36083984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 695.4658203125, + "y": -272.4189453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 699.546875, + "y": -280.404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 699.7978515625, + "y": -294.5517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 689.4150390625, + "y": -296.46484375, + "type": "path", + "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": 27, + "x": 688.740234375, + "y": -297.97802734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 685.0673828125, + "y": -299.85400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 688.8466796875, + "y": -299.90234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 690.625, + "y": -296.40234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 689.9873046875, + "y": -294.88671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 688.83203125, + "y": -296.67626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 701.609375, + "y": -311.99072265625, + "type": "path", + "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": 34, + "x": 702.326171875, + "y": -311.1357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 699.728515625, + "y": -308.447265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 697.279296875, + "y": -309.50390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 700.990234375, + "y": -312.5849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 703.005859375, + "y": -312.77197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 703.66796875, + "y": -318.6201171875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/璃月层岩01 (1).json b/repo/pathing/水晶矿/璃月层岩01 (1).json new file mode 100644 index 00000000..9fb460b6 --- /dev/null +++ b/repo/pathing/水晶矿/璃月层岩01 (1).json @@ -0,0 +1,476 @@ +{ + "info": { + "name": "璃月层岩01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1702.271484375, + "y": -581.76171875 + }, + { + "id": 2, + "x": 1666.0751953125, + "y": -585.72216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1647.8359375, + "y": -580.41845703125, + "type": "path", + "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)","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": 4, + "x": 1651.70703125, + "y": -579.61474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1645.8583984375, + "y": -581.4453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 1643.431640625, + "y": -583.05615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1642.0146484375, + "y": -582.93994140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1642.8291015625, + "y": -581.17626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1644.0732421875, + "y": -586.626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1647.8447265625, + "y": -583.61962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1649.2744140625, + "y": -581.32373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1644.5869140625, + "y": -597.955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 1615.9609375, + "y": -610.2294921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1608.2880859375, + "y": -621.8154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1602.6650390625, + "y": -618.71875, + "type": "path", + "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)","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": 16, + "x": 1602.9599609375, + "y": -614.8779296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1603.5732421875, + "y": -614.2265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1603.15234375, + "y": -619.0693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1604.9853515625, + "y": -618.89794921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1606.984375, + "y": -618.9951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1608.4599609375, + "y": -614.52392578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 1607.578125, + "y": -613.259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 1607.11328125, + "y": -616.45654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 1590.8330078125, + "y": -638.080078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 1583.0005241428244, + "y": -640, + "type": "path", + "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)","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": 26, + "x": 1577.458984375, + "y": -643.2041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 1574.828125, + "y": -641.5537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 1577.611328125, + "y": -639.6552734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 1577.9453125, + "y": -643.9560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 1579.3525390625, + "y": -643.28173828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 1593.5166015625, + "y": -640.306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 1611.9638671875, + "y": -659.08935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 1639.5419921875, + "y": -672.72265625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 34, + "x": 1640.4189453125, + "y": -697.0810546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 1632.466796875, + "y": -698.89697265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 1631.8857421875, + "y": -698.16259765625, + "type": "path", + "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)","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": 1625.306640625, + "y": -701.81298828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 1625.4091796875, + "y": -702.77587890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 1627.83203125, + "y": -703.1943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 1630.65625, + "y": -702.708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 1631.7451171875, + "y": -702.69970703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 1632.431640625, + "y": -703.38232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 1632.16015625, + "y": -701.4150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 1630.6337890625, + "y": -700.54638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 1628.744140625, + "y": -698.244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 1627.4453125, + "y": -697.16748046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 1626.7470703125, + "y": -695.064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 1628.3271484375, + "y": -694.5908203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 1629.1162109375, + "y": -696.685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": 1631.0927734375, + "y": -697.4482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 1630.4462890625, + "y": -694.16650390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": 1633.1650390625, + "y": -693.20166015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 1635.236328125, + "y": -695.64306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": 1633.2275390625, + "y": -696.130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": 1631.1357421875, + "y": -700.13427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 56, + "x": 1632.5048828125, + "y": -701.05810546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 57, + "x": 1633.7119140625, + "y": -703.9736328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 58, + "x": 1633.5703125, + "y": -700.96044921875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/璃月层岩02.json b/repo/pathing/水晶矿/璃月层岩02.json new file mode 100644 index 00000000..203e4b33 --- /dev/null +++ b/repo/pathing/水晶矿/璃月层岩02.json @@ -0,0 +1,196 @@ +{ + "info": { + "name": "璃月层岩02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1760.4599609375, + "y": -870.25048828125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 1767.9169921875, + "y": -879.0068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1776.654296875, + "y": -890.1416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1775.5771484375, + "y": -895.03857421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1775.5322265625, + "y": -896.96826171875, + "type": "path", + "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": 6, + "x": 1776.7890625, + "y": -901.46484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1778.4541015625, + "y": -900.42919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1777.6083984375, + "y": -899.8515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1775.6279296875, + "y": -899.58837890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1776.3369140625, + "y": -898.9404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1778.8466796875, + "y": -899.318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1780.48046875, + "y": -898.4794921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 1781.16015625, + "y": -896.7783203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1779.142578125, + "y": -895.85546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1778.80859375, + "y": -897.1748046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 1775.2783203125, + "y": -896.3525390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1775.044921875, + "y": -894.31591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1773.193359375, + "y": -894.02880859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1774.1865234375, + "y": -892.7744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1772.369140625, + "y": -892.42041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1775.2734375, + "y": -895.10693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 1773.4501953125, + "y": -896.60107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 1772.6748046875, + "y": -897.779296875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ 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..b4e3bc89 --- /dev/null +++ b/repo/pathing/水晶矿/璃月层岩03 (1).json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "璃月层岩03", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1917.9130859375, + "y": -760.8818359375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 1907.40625, + "y": -742.4873046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 1907.4111328125, + "y": -742.47998046875, + "type": "path", + "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": 4, + "x": 1905.1728515625, + "y": -743.37060546875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": 1903.8046875, + "y": -744.86962890625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": 1905.9716796875, + "y": -746.9609375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 7, + "x": 1906.5419921875, + "y": -746.28369140625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 8, + "x": 1903.4716796875, + "y": -741.892578125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 9, + "x": 1904.58203125, + "y": -743.00439453125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 10, + "x": 1905.9072265625, + "y": -744.4345703125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 11, + "x": 1907.5009765625, + "y": -744.67431640625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 12, + "x": 1906.8984375, + "y": -742.30126953125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 13, + "x": 1903.25390625, + "y": -738.115234375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 14, + "x": 1905.66796875, + "y": -741.22119140625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 15, + "x": 1910.1181640625, + "y": -739.4658203125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 16, + "x": 1909.779296875, + "y": -737.486328125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 17, + "x": 1907.6787109375, + "y": -737.95166015625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 18, + "x": 1907.13671875, + "y": -737.21435546875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 19, + "x": 1906.4765625, + "y": -736.357421875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 20, + "x": 1907.095703125, + "y": -738.32421875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 21, + "x": 1902.1181640625, + "y": -742.31884765625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 22, + "x": 1899.091796875, + "y": -742.677734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/璃月灵矩关1 (1).json b/repo/pathing/水晶矿/璃月灵矩关1 (1).json new file mode 100644 index 00000000..24383f72 --- /dev/null +++ b/repo/pathing/水晶矿/璃月灵矩关1 (1).json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "璃月灵矩关1", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 1043.537109375, + "y": -557.900390625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 1097.400390625, + "y": -646.49755859375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 1090.529296875, + "y": -651.30224609375, + "type": "path", + "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": 4, + "x": 1090.1748046875, + "y": -650.49560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1091.93359375, + "y": -651.20458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 1094.32421875, + "y": -652.8291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1092.802734375, + "y": -657.2158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1091.8076171875, + "y": -657.400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1090.45703125, + "y": -656.3564453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1086.953125, + "y": -659.01416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1086.0048828125, + "y": -658.52490234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1086.900390625, + "y": -655.95458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 1088.955078125, + "y": -653.6875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1090.349609375, + "y": -652.52978515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1090.0283203125, + "y": -651.640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 1091.01953125, + "y": -650.12060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1091.091796875, + "y": -649.05908203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1093.1953125, + "y": -648.4365234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1092.7275390625, + "y": -647.56005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1094.181640625, + "y": -655.66015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1090.5595703125, + "y": -658.736328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 1086.9404296875, + "y": -659.85302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 1087.4853515625, + "y": -662.544921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 1091.130859375, + "y": -661.296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 1091.9775390625, + "y": -657.546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 1094.0771484375, + "y": -656.40966796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 1093.765625, + "y": -653.94287109375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/璃月璃沙郊.json b/repo/pathing/水晶矿/璃月璃沙郊.json new file mode 100644 index 00000000..a7b89560 --- /dev/null +++ b/repo/pathing/水晶矿/璃月璃沙郊.json @@ -0,0 +1,260 @@ +{ + "info": { + "name": "璃月璃沙郊", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 710.85546875, + "y": -772.3876953125 + }, + { + "id": 2, + "x": 797.05859375, + "y": -758.08251953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 788.828125, + "y": -773.30078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 781.5078125, + "y": -789.96337890625, + "type": "path", + "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": 784.1123046875, + "y": -789.32177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 784.16796875, + "y": -789.35302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 783.8740234375, + "y": -790.25732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 781.2822265625, + "y": -795.2255859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 780.7841796875, + "y": -794.1904296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 777.9716796875, + "y": -793.1591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 778.2724609375, + "y": -791.4033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 778.8251953125, + "y": -788.86474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 777.900390625, + "y": -789.572265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 781.08203125, + "y": -790.96826171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 783.94921875, + "y": -791.361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 783.9716796875, + "y": -791.384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 784.5361328125, + "y": -790.7568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 783.427734375, + "y": -789.14794921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 784.2001953125, + "y": -786.193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 782.9541015625, + "y": -784.80712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 780.7744140625, + "y": -786.44921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 780.4208984375, + "y": -785.41162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 783.337890625, + "y": -784.76318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 784.3544921875, + "y": -784.85205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 784.9150390625, + "y": -781.8193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 788.1748046875, + "y": -772.4990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 788.080078125, + "y": -774.62744140625, + "type": "path", + "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": 28, + "x": 786.2412109375, + "y": -774.79443359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 786.2646484375, + "y": -774.751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 785.6748046875, + "y": -777.7197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 785.3896484375, + "y": -779.64599609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/璃月遁玉陵1.json b/repo/pathing/水晶矿/璃月遁玉陵1.json new file mode 100644 index 00000000..77b789a7 --- /dev/null +++ b/repo/pathing/水晶矿/璃月遁玉陵1.json @@ -0,0 +1,268 @@ +{ + "info": { + "name": "璃月遁玉陵1", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 977.875, + "y": -354.091796875 + }, + { + "id": 2, + "x": 980.5146484375, + "y": -335.884765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1002.8115234375, + "y": -330.96630859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1114.154296875, + "y": -334.55078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 1119.748046875, + "y": -341.8994140625, + "type": "path", + "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": 6, + "x": 1125.546875, + "y": -343.3955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1125.529296875, + "y": -343.4111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1124.5009765625, + "y": -343.2021484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1123.0341796875, + "y": -343.26025390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1119.0234375, + "y": -343.59326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1117.0439453125, + "y": -343.41064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1116.00390625, + "y": -343.28466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 1115.5498046875, + "y": -342.3193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1117.7001953125, + "y": -343.24951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1120.421875, + "y": -342.19287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 1124.404296875, + "y": -341.6259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1128.3779296875, + "y": -341.59814453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1125.5390625, + "y": -342.75537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1122.5478515625, + "y": -343.69580078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1118.4169921875, + "y": -343.658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1116.5029296875, + "y": -343.3974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 1117.986328125, + "y": -340.24609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 1127.1123046875, + "y": -339.18310546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 1130.8203125, + "y": -340.71923828125, + "type": "path", + "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": 1132.5634765625, + "y": -343.845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 1133.3154296875, + "y": -344.34033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 1131.2705078125, + "y": -344.5205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 1130.91015625, + "y": -342.63720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 1130.5947265625, + "y": -339.69873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 1128.1318359375, + "y": -336.45947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 1125.890625, + "y": -338.1494140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 1124.51171875, + "y": -339.974609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/蒙德-01-望风山地东-2个.json b/repo/pathing/水晶矿/蒙德-01-望风山地东-2个.json new file mode 100644 index 00000000..c1e97e34 --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-01-望风山地东-2个.json @@ -0,0 +1,85 @@ +{ + "info": { + "name": "望风山地东-2个", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1273.76953125, + "y": 2721.699951171875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1342.275390625, + "y": 2714.49951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1347.275390625, + "y": 2698.661376953125, + "type": "target", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e" + }, + { + "id": 4, + "x": -1352.89453125, + "y": 2698.23876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1350.5205078125, + "y": 2690.7607421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1344.4072265625, + "y": 2693.153076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1345.19140625, + "y": 2699.296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1348.3251953125, + "y": 2701.76806640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1347.623046875, + "y": 2705.521484375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/水晶矿/蒙德-02-望风角西-1个.json b/repo/pathing/水晶矿/蒙德-02-望风角西-1个.json new file mode 100644 index 00000000..a97c20bf --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-02-望风角西-1个.json @@ -0,0 +1,109 @@ +{ + "info": { + "name": "望风角西-1个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1629.4033203125, + "y": 2834.371826171875 + }, + { + "id": 2, + "x": -1641.2373046875, + "y": 2868.02734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1629.154296875, + "y": 2908.923095703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -1628.2548828125, + "y": 2909.484619140625, + "type": "path", + "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": -1627.08203125, + "y": 2905.3349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1622.8896484375, + "y": 2905.3955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1621.19140625, + "y": 2910.285400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1626.0234375, + "y": 2913.850830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1630.9501953125, + "y": 2913.664794921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1629.8017578125, + "y": 2909.659912109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1631.9990234375, + "y": 2907.982177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -1631.79296875, + "y": 2905.455078125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-03-铭记之谷南-4个.json b/repo/pathing/水晶矿/蒙德-03-铭记之谷南-4个.json new file mode 100644 index 00000000..d82943bb --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-03-铭记之谷南-4个.json @@ -0,0 +1,149 @@ +{ + "info": { + "name": "铭记之谷南-4个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -663.4921875, + "y": 1709.72314453125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -654.654296875, + "y": 1703.3408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -652.42578125, + "y": 1687.3359375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 4, + "x": -656.4658203125, + "y": 1679.14306640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -710.48828125, + "y": 1675.845703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -719.26171875, + "y": 1675.33935546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -714.6689453125, + "y": 1673.74853515625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": -718.65234375, + "y": 1673.76123046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -719.263671875, + "y": 1671.3515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -719.248046875, + "y": 1667.26220703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -719.8544921875, + "y": 1663.30810546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -711.9921875, + "y": 1675.4384765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -707.3681640625, + "y": 1674.10009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -710.001953125, + "y": 1675.8388671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -711.0673828125, + "y": 1678.46533203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -713.060546875, + "y": 1681.013671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": -715.0693359375, + "y": 1682.3017578125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-04-苍风高地神像北-1个.json b/repo/pathing/水晶矿/蒙德-04-苍风高地神像北-1个.json new file mode 100644 index 00000000..4e07e846 --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-04-苍风高地神像北-1个.json @@ -0,0 +1,101 @@ +{ + "info": { + "name": "苍风高地神像北-1个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -578.75390625, + "y": 1853.40478515625 + }, + { + "id": 2, + "x": -587.068359375, + "y": 1876.4326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -607.90625, + "y": 1935.17626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -612.3154296875, + "y": 1984.728515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": -635.44921875, + "y": 2021.7197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -634.052734375, + "y": 2033.033203125, + "type": "path", + "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": 7, + "x": -629.1171875, + "y": 2035.24609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -627.46875, + "y": 2035.119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -629.37109375, + "y": 2032.8046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -633.537109375, + "y": 2030.19384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -636.5185546875, + "y": 2031.0283203125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-05-奔狼领-3个.json b/repo/pathing/水晶矿/蒙德-05-奔狼领-3个.json new file mode 100644 index 00000000..046db511 --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-05-奔狼领-3个.json @@ -0,0 +1,174 @@ +{ + "info": { + "name": "奔狼领-3个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -521.56640625, + "y": 2181.350830078125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -486.033203125, + "y": 2183.771484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -474.583984375, + "y": 2177.2236328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -468.416015625, + "y": 2171.796875, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": -458.7822265625, + "y": 2165.853759765625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 6, + "x": -422.6123046875, + "y": 2168.66162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -387.6064453125, + "y": 2091.696044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -345.3525390625, + "y": 2063.81982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -343.576171875, + "y": 2068.14697265625, + "type": "path", + "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": 10, + "x": -350.2080078125, + "y": 2067.6796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -350.64453125, + "y": 2070.395263671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -354.1005859375, + "y": 2073.150634765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -347.59375, + "y": 2062.4326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -344.017578125, + "y": 2073.310791015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -344.8583984375, + "y": 2069.274169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -342.9267578125, + "y": 2071.618896484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -340.4892578125, + "y": 2067.175537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -341.2490234375, + "y": 2061.18701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -337.1572265625, + "y": 2062.373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -335.751953125, + "y": 2063.48876953125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-06-奔狼岭东-1个.json b/repo/pathing/水晶矿/蒙德-06-奔狼岭东-1个.json new file mode 100644 index 00000000..94090032 --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-06-奔狼岭东-1个.json @@ -0,0 +1,87 @@ +{ + "info": { + "name": "奔狼岭东-1个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -521.6318359375, + "y": 2181.341796875 + }, + { + "id": 2, + "x": -574.3427734375, + "y": 2163.740478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -585.5224609375, + "y": 2150.30615234375, + "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": 4, + "x": -581.794921875, + "y": 2146.080322265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -588.611328125, + "y": 2142.691162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -594.123046875, + "y": 2139.95166015625, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 wait(3),e(hold);坎蒂丝 e(hold);雷泽 e(hold);卡齐娜 e;凝光 attack(0.2),attack(0.2),attack(0.2),attack(0.2),attack(0.2)" + }, + { + "id": 7, + "x": -599.7236328125, + "y": 2156.706787109375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 wait(3)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": -585.4013671875, + "y": 2153.25390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -579.1123046875, + "y": 2151.080078125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-07-奔狼领北-1个.json b/repo/pathing/水晶矿/蒙德-07-奔狼领北-1个.json new file mode 100644 index 00000000..eef9d72f --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-07-奔狼领北-1个.json @@ -0,0 +1,85 @@ +{ + "info": { + "name": "奔狼领北-1个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -386.189453125, + "y": 2297.5537109375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -369.8193359375, + "y": 2339.214599609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -338.3837890625, + "y": 2358.6201171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -329.4404296875, + "y": 2389.094482421875, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": -332.4609375, + "y": 2387.237060546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -334.41015625, + "y": 2383.962890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -329.140625, + "y": 2379.811767578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -332.4462890625, + "y": 2377.017822265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -334.0205078125, + "y": 2376.275146484375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-08-塞西莉亚苗圃东-3个.json b/repo/pathing/水晶矿/蒙德-08-塞西莉亚苗圃东-3个.json new file mode 100644 index 00000000..e124748b --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-08-塞西莉亚苗圃东-3个.json @@ -0,0 +1,101 @@ +{ + "info": { + "name": "塞西莉亚苗圃东-3个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -386.2490234375, + "y": 2297.65625 + }, + { + "id": 2, + "x": -414.640625, + "y": 2301.650146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -425.109375, + "y": 2297.041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -427.333984375, + "y": 2302.368896484375, + "type": "path", + "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": -431.8740234375, + "y": 2302.116943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -434.5419921875, + "y": 2300.651611328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -426.12890625, + "y": 2304.82666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -425.0595703125, + "y": 2300.658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -420.4873046875, + "y": 2301.815673828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -422.4375, + "y": 2305.000244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -422.6875, + "y": 2306.837158203125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-09-明冠峡东北-1个.json b/repo/pathing/水晶矿/蒙德-09-明冠峡东北-1个.json new file mode 100644 index 00000000..e7d3f45f --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-09-明冠峡东北-1个.json @@ -0,0 +1,101 @@ +{ + "info": { + "name": "明冠峡东北-1个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -440.115234375, + "y": 2580.90087890625 + }, + { + "id": 3, + "x": -464.31640625, + "y": 2631.714111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -481.5302734375, + "y": 2665.27685546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -477.64453125, + "y": 2674.515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -483.5498046875, + "y": 2673.285400390625, + "type": "path", + "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": 6, + "x": -483.8076171875, + "y": 2675.997802734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -480.861328125, + "y": 2670.224853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -480.2900390625, + "y": 2667.7119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -483.1083984375, + "y": 2664.845947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -485.9921875, + "y": 2671.399169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -498.78125, + "y": 2663.12744140625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-10-晨曦酒庄西-1个.json b/repo/pathing/水晶矿/蒙德-10-晨曦酒庄西-1个.json new file mode 100644 index 00000000..c6879647 --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-10-晨曦酒庄西-1个.json @@ -0,0 +1,69 @@ +{ + "info": { + "name": "晨曦酒庄西-1个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -201.017578125, + "y": 1861.82373046875 + }, + { + "id": 2, + "x": -187.439453125, + "y": 1914.72900390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -166.228515625, + "y": 1971.623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -44.466796875, + "y": 2026.89990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -15.6806640625, + "y": 2065.70751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -39.4013671875, + "y": 2071.38720703125, + "type": "path", + "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": 7, + "x": -44.6318359375, + "y": 2068.355224609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-11-风龙废墟入口-5个.json b/repo/pathing/水晶矿/蒙德-11-风龙废墟入口-5个.json new file mode 100644 index 00000000..31889d35 --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-11-风龙废墟入口-5个.json @@ -0,0 +1,161 @@ +{ + "info": { + "name": "风龙废墟入口-5个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 36.7666015625, + "y": 2380.8740234375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 62.556640625, + "y": 2388.259765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 73.9111328125, + "y": 2389.407958984375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 73.0771484375, + "y": 2387.312255859375, + "type": "target", + "move_mode": "climb", + "action": "" + }, + { + "id": 5, + "x": 73, + "y": 2382.5, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 6, + "x": 95.24646821392525, + "y": 2387.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 95.73828125, + "y": 2402.567626953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 94.59375, + "y": 2389.73583984375, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 9, + "x": 92.9296875, + "y": 2401.4296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 157.2099609375, + "y": 2409.35693359375, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 152.876953125, + "y": 2433.02880859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 150.84375, + "y": 2443.87890625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 13, + "x": 187.173828125, + "y": 2434.751708984375, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 185.939453125, + "y": 2447.296630859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 250.23828125, + "y": 2452.027099609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 254.052734375, + "y": 2436.83349609375, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 17, + "x": 255.279296875, + "y": 2429.80712890625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 18, + "x": 354.6572265625, + "y": 2449.6259765625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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/水晶矿/蒙德-12-风龙废墟西-8个.json b/repo/pathing/水晶矿/蒙德-12-风龙废墟西-8个.json new file mode 100644 index 00000000..ec71d5dc --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-12-风龙废墟西-8个.json @@ -0,0 +1,260 @@ +{ + "info": { + "name": "风龙废墟西-8个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 338.2421875, + "y": 2581.19775390625 + }, + { + "id": 2, + "x": 362.3232421875, + "y": 2569.714599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 363.4541015625, + "y": 2575.271240234375, + "type": "path", + "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": 4, + "x": 353.5205078125, + "y": 2562.31396484375, + "type": "path", + "move_mode": "walk", + "action": "combat_script", + "action_params": "钟离 wait(3),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": 356.0087890625, + "y": 2552.338134765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 353.2099609375, + "y": 2529.82666015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": 348.26171875, + "y": 2515.962158203125, + "type": "path", + "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": 351.07421875, + "y": 2526.14404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 387.0546875, + "y": 2533.954345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 411.126953125, + "y": 2550.624755859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 425.205078125, + "y": 2542.833251953125, + "type": "path", + "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": 12, + "x": 410.453125, + "y": 2553.210693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 391.3388671875, + "y": 2566.580322265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 382.3837890625, + "y": 2604.62744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 386.0966796875, + "y": 2615.087158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 382.5888671875, + "y": 2619.07080078125, + "type": "path", + "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": 17, + "x": 404.72265625, + "y": 2620.66015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 407.193359375, + "y": 2687.1962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 402.439453125, + "y": 2688.4306640625, + "type": "path", + "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": 20, + "x": 401.07421875, + "y": 2692.1005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 414.015625, + "y": 2708.4423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 406.1630859375, + "y": 2729.289794921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 419.6748046875, + "y": 2732.47265625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 24, + "x": 423.9345703125, + "y": 2734.5361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 432.7958984375, + "y": 2727.129638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 548.791015625, + "y": 2812.754638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 532.439453125, + "y": 2819.16259765625, + "type": "path", + "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": 28, + "x": 552.908203125, + "y": 2765.388916015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 543.390625, + "y": 2741.78369140625, + "type": "path", + "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": 30, + "x": 542.9365234375, + "y": 2740.261962890625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} diff --git a/repo/pathing/水晶矿/蒙德-13-风龙废墟神像-9个.json b/repo/pathing/水晶矿/蒙德-13-风龙废墟神像-9个.json new file mode 100644 index 00000000..ab7f38bc --- /dev/null +++ b/repo/pathing/水晶矿/蒙德-13-风龙废墟神像-9个.json @@ -0,0 +1,334 @@ +{ + "info": { + "name": "风龙废墟神像-9个", + "type": "collect", + "author": "愚溪", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 177.166015625, + "y": 2647.081298828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 172.638671875, + "y": 2686.18994140625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 159.8408203125, + "y": 2695.412109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 178.2470703125, + "y": 2727.574951171875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 5, + "x": 213.341796875, + "y": 2708.92138671875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 220.3837890625, + "y": 2689.383056640625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 7, + "x": 228.484375, + "y": 2696.076171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 245.98828125, + "y": 2676.11083984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 253.7470703125, + "y": 2668.081298828125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 10, + "x": 245.90625, + "y": 2668.41650390625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 259.3515625, + "y": 2666.1494140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 241.103515625, + "y": 2600.89208984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 244.5703125, + "y": 2599.218017578125, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 230.8935546875, + "y": 2602.199462890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 227.578125, + "y": 2603.168212890625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 16, + "x": 212.373046875, + "y": 2583.973388671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 211.330078125, + "y": 2594.116455078125, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 19, + "x": 205.7744140625, + "y": 2532.4189453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 216.662109375, + "y": 2505.6533203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 212.162109375, + "y": 2486.549072265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 213.1220703125, + "y": 2477.80810546875, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 23, + "x": 190.7392578125, + "y": 2511.2314453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 179.099609375, + "y": 2515.30908203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 174.4990234375, + "y": 2530.048095703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 145.4248046875, + "y": 2538.000732421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 118.8955078125, + "y": 2534.96484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 102.119140625, + "y": 2552.6640625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 29, + "x": 68.376953125, + "y": 2557.7802734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 30, + "x": 25.1416015625, + "y": 2614.46044921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 32.470703125, + "y": 2614.98779296875, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 32, + "x": 20.841796875, + "y": 2633.8603515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 34.794921875, + "y": 2695.415771484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 39.5458984375, + "y": 2729.590087890625, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 35, + "x": 63.53515625, + "y": 2743.4052734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 36, + "x": 79.525390625, + "y": 2763.638671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 121.3623046875, + "y": 2760.82958984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 38, + "x": 104.67578125, + "y": 2748.7861328125, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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": 39, + "x": 133.017578125, + "y": 2747.231201171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 40, + "x": 142.7060546875, + "y": 2750.12060546875, + "action": "combat_script", + "move_mode": "walk", + "type": "path", + "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/沉玉仙茗/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..731bd059 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..9f5ef54e 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..c95a207c Binary files /dev/null and b/repo/pathing/浪沫羽鳃/icon.ico differ diff --git a/repo/pathing/浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json b/repo/pathing/浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json index 691c08d6..eadb14f0 100644 --- a/repo/pathing/浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json +++ b/repo/pathing/浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json @@ -1,142 +1,142 @@ { - "info":{ - "name":"浪沫羽鳃1-流泉之众上-11个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":8918.9560546875, - "y":-2679.0810546875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8877.21484375, - "y":-2724.689453125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8886.08984375, - "y":-2858.322265625, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":8886.08984375, - "y":-2858.322265625, - "type":"target", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":8884.4150390625, - "y":-2858.046875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8879.9091796875, - "y":-2861.529296875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8875.4892578125, - "y":-2864.3974609375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8837.703125, - "y":-2891.904296875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8856.499301863947, - "y":-2946.489155489824, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8841.3486328125, - "y":-2947.5869140625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8820.6904296875, - "y":-2946.0986328125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8817.1953125, - "y":-2941.5517578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8813.1259765625, - "y":-2939.8759765625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8806.92578125, - "y":-2931.4462890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8805.9482421875, - "y":-2891.3486328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8798.9375, - "y":-2856.0009765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8781.01953125, - "y":-2820.23046875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8769.5302734375, - "y":-2824.3251953125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8771.05859375, - "y":-2829.9208984375, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "浪沫羽鳃1-流泉之众上-11个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 8918.9560546875, + "y": -2679.0810546875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 8877.21484375, + "y": -2724.689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8886.08984375, + "y": -2858.322265625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "x": 8886.08984375, + "y": -2858.322265625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8884.4150390625, + "y": -2858.046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8879.9091796875, + "y": -2861.529296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8875.4892578125, + "y": -2864.3974609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8837.703125, + "y": -2891.904296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8856.499301863947, + "y": -2946.489155489824, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8841.3486328125, + "y": -2947.5869140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8820.6904296875, + "y": -2946.0986328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8817.1953125, + "y": -2941.5517578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8813.1259765625, + "y": -2939.8759765625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8806.92578125, + "y": -2931.4462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8805.9482421875, + "y": -2891.3486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8798.9375, + "y": -2856.0009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8781.01953125, + "y": -2820.23046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8769.5302734375, + "y": -2824.3251953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8771.05859375, + "y": -2829.9208984375, + "type": "target", + "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..1d11c8bd Binary files /dev/null and b/repo/pathing/海灵芝/icon.ico differ diff --git a/repo/pathing/海灵芝/海灵芝_天云峠右上2_稻妻_3个.json b/repo/pathing/海灵芝/海灵芝_天云峠右上2_稻妻_3个.json deleted file mode 100644 index f032150b..00000000 --- a/repo/pathing/海灵芝/海灵芝_天云峠右上2_稻妻_3个.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "info":{ - "name":"海灵芝_天云峠右上2", - "type":"collect", - "author":"tignioj" - }, - "positions":[ - { - "x":-4478.146484375, - "y":-4576.683789253235, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":-4494.38671875, - "y":-4528.036914825439, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4503.6318359375, - "y":-4500.936328887939, - "type":"path", - "move_mode":"jump", - "action":"" - }, - { - "x":-4523.2099609375, - "y":-4479.918750762939, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4531.0048828125, - "y":-4472.203906059265, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4548.2138671875, - "y":-4447.970508575439, - "type":"path", - "move_mode":"swim", - "action":"" - }, - { - "x":-4576.125, - "y":-4443.105274200439, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4576.8818359375, - "y":-4417.280921936035, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4554.955078125, - "y":-4397.444454193115, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4540.7744140625, - "y":-4398.130001068115, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/海灵芝/海灵芝_天云峠右上_稻妻_4个.json b/repo/pathing/海灵芝/海灵芝_天云峠右上_稻妻_4个.json deleted file mode 100644 index 028fa0de..00000000 --- a/repo/pathing/海灵芝/海灵芝_天云峠右上_稻妻_4个.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "info":{ - "name":"海灵芝_天云峠右上", - "type":"collect", - "author":"tignioj" - }, - "positions":[ - { - "x":-4477.16796875, - "y":-4577.01953125, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":-4482.3134765625, - "y":-4554.097461700439, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4512.396484375, - "y":-4550.932422637939, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4527.7880859375, - "y":-4547.660938262939, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4542.0654296875, - "y":-4558.051563262939, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4561.7861328125, - "y":-4550.412891387939, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4589.017578125, - "y":-4543.534961700439, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4605.7041015625, - "y":-4557.66015625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4627.162109375, - "y":-4548.934375762939, - "type":"path", - "move_mode":"swim", - "action":"" - }, - { - "x":-4653.162109375, - "y":-4540.934375762939, - "type":"path", - "move_mode":"swim", - "action":"" - }, - { - "x":-4680.7783203125, - "y":-4535.5771484375, - "type":"path", - "move_mode":"swim", - "action":"" - }, - { - "x":-4690.1201171875, - "y":-4549.0390625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4713.0400390625, - "y":-4567.55859375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4731.6083984375, - "y":-4567.7333984375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4743.4716796875, - "y":-4542.3291015625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4742.5361328125, - "y":-4516.712890625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4741.0205078125, - "y":-4502.2099609375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4709.49609375, - "y":-4481.6455078125, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/海灵芝/海灵芝_天云峠右下_稻妻_10个.json b/repo/pathing/海灵芝/海灵芝_天云峠右下_稻妻_10个.json deleted file mode 100644 index 3acd7c3f..00000000 --- a/repo/pathing/海灵芝/海灵芝_天云峠右下_稻妻_10个.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "info":{ - "name":"海灵芝_天云峠右下", - "type":"collect", - "author":"tignioj" - }, - "positions":[ - { - "x":-4478.611328125, - "y":-4577.7685546875, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":-4498.3310546875, - "y":-4605.6259765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4529.728515625, - "y":-4646.0234375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4535.779296875, - "y":-4682.5126953125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4529.4609375, - "y":-4732.458984375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4532.703125, - "y":-4754.0341796875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4538.5537109375, - "y":-4760.404296875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4531.205078125, - "y":-4766.3056640625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4552.3193359375, - "y":-4768.7587890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4579.1591796875, - "y":-4779.1630859375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4598.5908203125, - "y":-4787.2314453125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4604.853515625, - "y":-4807.9033203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4596.392578125, - "y":-4841.365234375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4596.427734375, - "y":-4857.6943359375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4596.27734375, - "y":-4866.490234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4602.9326171875, - "y":-4873.8984375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4607.0673828125, - "y":-4895.5283203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4608.2763671875, - "y":-4920.421875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4615.9736328125, - "y":-4940.015625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4625.767578125, - "y":-4954.6796875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4650.068359375, - "y":-4959.818359375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4671.4775390625, - "y":-4966.884765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4701.3994140625, - "y":-4949.7724609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4723.4833984375, - "y":-4933.8046875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4736.4404296875, - "y":-4913.2578125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4738.455078125, - "y":-4887.9462890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4756.3984375, - "y":-4869.708984375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4762.064453125, - "y":-4853.04296875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4784.1044921875, - "y":-4847.779296875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4792.13671875, - "y":-4855.6201171875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4788.6826171875, - "y":-4870.1162109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4791.6181640625, - "y":-4874.79296875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4786.4658203125, - "y":-4874.4267578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4809.349609375, - "y":-4890.7158203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4839.4853515625, - "y":-4878.890625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4841.234375, - "y":-4857.1103515625, - "type":"target", - "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 720b9249..00000000 --- a/repo/pathing/海灵芝/海灵芝_神里屋敷右小角小岛_稻妻_5个.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "info":{ - "name":"海灵芝_神里屋敷右小角小岛", - "type":"collect", - "author":"tignioj" - }, - "positions":[ - { - "x":-4583.2001953125, - "y":-2580.001953125, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":-4569.3037109375, - "y":-2596.681640625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4571.4404296875, - "y":-2626.9951171875, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-4577.173828125, - "y":-2641.333984375, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-4608.431640625, - "y":-2657.3544921875, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":-4624.931640625, - "y":-2663.37890625, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-4634.6220703125, - "y":-2665.931640625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4639.6513671875, - "y":-2678.2626953125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4626.583984375, - "y":-2684.63671875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4621.8583984375, - "y":-2686.3388671875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4609.1650390625, - "y":-2716.9792976379395, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/海灵芝/海灵芝_荒海右边_稻妻_4个.json b/repo/pathing/海灵芝/海灵芝_荒海右边_稻妻_4个.json deleted file mode 100644 index e9ff54f0..00000000 --- a/repo/pathing/海灵芝/海灵芝_荒海右边_稻妻_4个.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "info":{ - "name":"海灵芝_荒海右边", - "type":"collect", - "author":"tignioj" - }, - "positions":[ - { - "x":-4406.486328125, - "y":-2398.90625, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":-4409.8740234375, - "y":-2381.416015625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4400.58984375, - "y":-2358.15234375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4393.5537109375, - "y":-2345.701171875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-4376.990234375, - "y":-2335.0310554504395, - "type":"target", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-4372.9033203125, - "y":-2312.0341796875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4409.927734375, - "y":-2316.46875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-4419.5126953125, - "y":-2321.8212890625, - "type":"target", - "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..0ec65624 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..18b5f278 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..02bfa5db --- /dev/null +++ b/repo/pathing/海露花/海露花-中央实验室右侧-2个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "海露花-中央实验室右侧-2个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3811.611328125, + "y": 4952.607421875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3761.48291015625, + "y": 4903.95068359375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 3716.673828125, + "y": 4914.8896484375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 3561.1884765625, + "y": 4887.625, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/海露花/海露花-厄里那斯上侧-4个.json b/repo/pathing/海露花/海露花-厄里那斯上侧-4个.json new file mode 100644 index 00000000..fce8a797 --- /dev/null +++ b/repo/pathing/海露花/海露花-厄里那斯上侧-4个.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "海露花-厄里那斯上侧-4个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5113.666015625, + "y": 2998.24853515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5080.99609375, + "y": 3052.154541015625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 5070.10791015625, + "y": 3061.187255859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 5050.282714843749, + "y": 3085.830078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 5023.090332031251, + "y": 3117.9699707031255, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 5003.77490234375, + "y": 3108.109619140625, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 7, + "x": 4997.2578125, + "y": 3095.5234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4990.61279296875, + "y": 3094.05908203125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 4979.62890625, + "y": 3094.2470703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4979.4111328125, + "y": 3089.87255859375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 4978.3564453125, + "y": 3085.6005859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 4985.03466796875, + "y": 3081.80517578125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/海露花/海露花-厄里那斯右下角-6个.json b/repo/pathing/海露花/海露花-厄里那斯右下角-6个.json new file mode 100644 index 00000000..8435014e --- /dev/null +++ b/repo/pathing/海露花/海露花-厄里那斯右下角-6个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "海露花-厄里那斯右下角-6个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4689.41162109375, + "y": 2429.50146484375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4688.94140625, + "y": 2387.95849609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4687.794433593749, + "y": 2353.553955078125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 4645.61962890625, + "y": 2327.52490234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4636.50927734375, + "y": 2285.450439453125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 4641, + "y": 2305, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4598.60009765625, + "y": 2335.7578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4567.58251953125, + "y": 2351.424072265625, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 4555.62109375, + "y": 2350.292236328125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 4546.38037109375, + "y": 2359.484130859375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 4562.47119140625, + "y": 2362.876953125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/海露花/海露花-幽林雾道-5个.json b/repo/pathing/海露花/海露花-幽林雾道-5个.json new file mode 100644 index 00000000..0e9c7837 --- /dev/null +++ b/repo/pathing/海露花/海露花-幽林雾道-5个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "海露花-幽林雾道-5个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3367.06982421875, + "y": 3294.133056640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3418.66064453125, + "y": 3299.1357421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 3448.49853515625, + "y": 3267.92138671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 3454.3505859375005, + "y": 3273.687255859375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 3450.27685546875, + "y": 3235.798583984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 3437.5341796875, + "y": 3189.893798828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3442.6259765625, + "y": 3151.44921875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 8, + "x": 3471.07177734375, + "y": 3138.39013671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 3487.22021484375, + "y": 3145.89794921875, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 3487.85009765625, + "y": 3141.4580078125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 3500.565917, + "y": 3149.912353, + "action": "hydro_collect", + "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..e7d869f1 --- /dev/null +++ b/repo/pathing/海露花/海露花-柔灯港-10个.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "海露花-柔灯港-10个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3094.25244140625, + "y": 3354.820068359375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3083.58056640625, + "y": 3350.259765625, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 3039.775390625, + "y": 3317.945556640625, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 3009.8623046875, + "y": 3322.8203125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 2991.18994140625, + "y": 3340.97509765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 3000.81640625, + "y": 3367.78564453125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 2953.4853515625, + "y": 3389.380615234375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 2940.97021484375, + "y": 3371.456787109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 2945.9599609375, + "y": 3354.295654296875, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 2914.47802734375, + "y": 3348.989990234375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 2866.140625, + "y": 3353.238525390625, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 2854.107421875, + "y": 3370.589111328125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 2825.7099609375, + "y": 3406.033447265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 2821.02734375, + "y": 3416.02392578125, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/海露花/海露花-茉洁站-6个.json b/repo/pathing/海露花/海露花-茉洁站-6个.json new file mode 100644 index 00000000..ed4c7f95 --- /dev/null +++ b/repo/pathing/海露花/海露花-茉洁站-6个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "海露花-茉洁站-6个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3635.56884765625, + "y": 3801.400390625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3655.2314453125, + "y": 3698.8701171875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 3662.900390625, + "y": 3670.67724609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 3689.224609375, + "y": 3670.644287109375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 3689.4931640625, + "y": 3652.152099609375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 3686.947265625, + "y": 3662.046630859375, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 3683.126953125, + "y": 3664.10791015625, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 3684.8671875, + "y": 3666.0390625, + "action": "hydro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 3669.64697265625, + "y": 3651.517578125, + "action": "hydro_collect", + "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..79753d8a 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..bc0497a0 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..1a839c00 Binary files /dev/null and b/repo/pathing/珊瑚真珠/icon.ico differ diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠1-望泷村右上-9个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠1-望泷村右上-9个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠1-望泷村右上-9个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠1-望泷村右上-9个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠2-珊瑚宫下-7个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠2-珊瑚宫下-7个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠2-珊瑚宫下-7个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠2-珊瑚宫下-7个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠3-珊瑚宫右-3个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠3-珊瑚宫右-3个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠3-珊瑚宫右-3个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠3-珊瑚宫右-3个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠4-珊瑚宫上-12个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠4-珊瑚宫上-12个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠4-珊瑚宫上-12个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠4-珊瑚宫上-12个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠5-水月池-5个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠5-水月池-5个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠5-水月池-5个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠5-水月池-5个.json diff --git a/repo/pathing/珊瑚珍珠/珊瑚珍珠6-水月池下-6个.json b/repo/pathing/珊瑚真珠/珊瑚珍珠6-水月池下-6个.json similarity index 100% rename from repo/pathing/珊瑚珍珠/珊瑚珍珠6-水月池下-6个.json rename to repo/pathing/珊瑚真珠/珊瑚珍珠6-水月池下-6个.json 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..057aa198 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..77a06d4a 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..2c0837f0 --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-天工峡-2个.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "琉璃带-天工峡-2个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": 1759.5361328125, + "y": -874.17578125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 1759.544921875, + "y": -874.1806640625, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-天遒谷-2个.json b/repo/pathing/琉璃袋/琉璃袋-天遒谷-2个.json new file mode 100644 index 00000000..86fdc9ee --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-天遒谷-2个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "琉璃带-天球古-2个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 3, + "x": 1268.359375, + "y": -64.189453125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1261.0966796875, + "y": -76.41796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1228.5927734375, + "y": -114.6513671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 1183.3837890625, + "y": -160.3134765625, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-孤云阁-2个.json b/repo/pathing/琉璃袋/琉璃袋-孤云阁-2个.json new file mode 100644 index 00000000..2a373255 --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-孤云阁-2个.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "琉璃带-孤云阁-2个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -632.01171875, + "y": -103.8642578125 + }, + { + "id": 2, + "x": -667.3994140625, + "y": -102.7119140625, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-层岩巨渊-4个.json b/repo/pathing/琉璃袋/琉璃袋-层岩巨渊-4个.json new file mode 100644 index 00000000..b676ffdb --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-层岩巨渊-4个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "琉璃带-曾言剧院-4个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1998.1162109375, + "y": -678.548828125 + }, + { + "id": 2, + "x": 2000.560546875, + "y": -680.33935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 2003.068359375, + "y": -682.197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 2004.73828125, + "y": -683.4248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 2007.263671875, + "y": -685.1806640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 2008.6669921875, + "y": -686.5205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 2009.0302734375, + "y": -688.4306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 2010.94921875, + "y": -690.02001953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 2010.9765625, + "y": -690.0166015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 2049.41796875, + "y": -681.78466796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 11, + "x": 2049.43505859375, + "y": -681.83935546875, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-无妄坡-3个.json b/repo/pathing/琉璃袋/琉璃袋-无妄坡-3个.json new file mode 100644 index 00000000..19d708d2 --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-无妄坡-3个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "琉璃袋-无妄坡-3个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 489.7939453125, + "y": 1435.13525390625 + }, + { + "id": 2, + "x": 548.2391037864345, + "y": 1428.25, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect", + "x": 558.9267578125, + "y": 1417.95703125 + } + ] +} \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-无妄坡2-6个.json b/repo/pathing/琉璃袋/琉璃袋-无妄坡2-6个.json new file mode 100644 index 00000000..3b9738c2 --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-无妄坡2-6个.json @@ -0,0 +1,308 @@ +{ + "info": { + "name": "琉璃袋-无妄坡2-6个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": 489.77734375, + "y": 1435.14208984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 488.2476164532818, + "y": 1451, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 476.375, + "y": 1465.87548828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 472.9521484375, + "y": 1471.01123046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 471.27698021035576, + "y": 1474.7584228515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 469.6018119832115, + "y": 1478.505615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 466.2514755289212, + "y": 1486, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 466.9992054844279, + "y": 1483.25, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 468.87392172886575, + "y": 1480.625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 470.74863797330363, + "y": 1478, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 468.4989784799782, + "y": 1471.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 467.37890625, + "y": 1465.02783203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 466.1337890625, + "y": 1461.7158203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 457.837890625, + "y": 1463.74267578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 453.2685546875, + "y": 1465.01123046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 449.6884765625, + "y": 1463.64404296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 445.96484375, + "y": 1463.21826171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 441.41796875, + "y": 1463.77734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 436.25390625, + "y": 1464.44873046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 432.2705078125, + "y": 1464.892578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 427.494140625, + "y": 1466.53173828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 424.4853515625, + "y": 1469.06396484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 421.4365234375, + "y": 1471.64404296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 418.3486328125, + "y": 1474.3056640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 408.9111328125, + "y": 1476.3310546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 405.09765625, + "y": 1481.30810546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 402.4130859375, + "y": 1496.35791015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 404.951171875, + "y": 1499.015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 402.3095703125, + "y": 1501.41162109375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 30, + "x": 402.7607421875, + "y": 1505.4912109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 404.0185546875, + "y": 1512.15771484375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 32, + "x": 404.59765625, + "y": 1518.20263671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 403.1416015625, + "y": 1520.82958984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 401.8759765625, + "y": 1524.6748046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 35, + "x": 401.0205078125, + "y": 1528.5654296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 36, + "x": 399.8515625, + "y": 1532.33447265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 399.3271484375, + "y": 1536.1826171875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-明蕴镇-6个.json b/repo/pathing/琉璃袋/琉璃袋-明蕴镇-6个.json new file mode 100644 index 00000000..254f881f --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-明蕴镇-6个.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "琉璃带-命运真-6个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -416.15234375, + "y": 729.060546875 + }, + { + "id": 2, + "x": -409.7493189866527, + "y": 715.25, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 3, + "x": -411.7265625, + "y": 709.99609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -432.1298828125, + "y": 690.017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -455.025390625, + "y": 660.19921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -487.498046875, + "y": 673.2265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -495.521484375, + "y": 676.99951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -498.0791015625, + "y": 681.66845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -489.8583984375, + "y": 682.15966796875, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 10, + "x": -502.978515625, + "y": 679.1416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -521.341796875, + "y": 673.763671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -539.2158203125, + "y": 668.11279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -556.5966796875, + "y": 663.83984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -560.9990234375, + "y": 658.24169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -562.0390625, + "y": 655.2119140625, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-池中盐水-5个.json b/repo/pathing/琉璃袋/琉璃袋-池中盐水-5个.json new file mode 100644 index 00000000..606e3558 --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-池中盐水-5个.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "琉璃袋-池中盐水-5个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": -188.5517578125, + "y": 972.47998046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -188.37890625, + "y": 980.69580078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -188.2060546875, + "y": 988.91162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -188.033203125, + "y": 997.12744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -187.8603515625, + "y": 1005.34326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -187.77734375, + "y": 1014.515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -188.0771484375, + "y": 1024.5732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "type": "path", + "move_mode": "walk", + "action": "", + "x": -189.02978515625, + "y": 1031.897216796875 + }, + { + "id": 9, + "type": "path", + "move_mode": "walk", + "action": "", + "x": -189.982421875, + "y": 1039.22119140625 + }, + { + "id": 10, + "type": "path", + "move_mode": "fly", + "action": "stop_flying", + "x": -199.36328125, + "y": 1061.59765625 + }, + { + "id": 11, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect", + "x": -201.775390625, + "y": 1070.2890625 + }, + { + "id": 12, + "x": -202.982421875, + "y": 1073.45947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -183.3701171875, + "y": 1076.09814453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 14, + "x": -183.3701171875, + "y": 1076.09814453125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 15, + "x": -194.388671875, + "y": 1082.61376953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -200.361328125, + "y": 1086.28662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -203.87890625, + "y": 1088.2998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -205.58203125, + "y": 1089.8076171875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-灵矩关-6个.json b/repo/pathing/琉璃袋/琉璃袋-灵矩关-6个.json new file mode 100644 index 00000000..1eca0982 --- /dev/null +++ b/repo/pathing/琉璃袋/琉璃袋-灵矩关-6个.json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "琉璃袋-领居冠-6个", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1043.1552734375, + "y": -558.06494140625 + }, + { + "id": 2, + "x": 1041.4765625, + "y": -552.06787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1039.79296875, + "y": -547.19287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1037.4453125, + "y": -543.09765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1038.439453125, + "y": -541.29931640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 1040.330078125, + "y": -540.30078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1042.86328125, + "y": -538.5908203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1044.7919921875, + "y": -538.31787109375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": 1055.5537109375, + "y": -541.32275390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 10, + "x": 1056.478515625, + "y": -541.63818359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1060.365234375, + "y": -543.06787109375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 12, + "x": 1054.921875, + "y": -545.33740234375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 13, + "x": 1043.0947265625, + "y": -558.083984375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1036.4453125, + "y": -568.84130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1027.3955078125, + "y": -570.93017578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 16, + "x": 1025.955078125, + "y": -571.861328125, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 17, + "x": 1024.3896484375, + "y": -588.11865234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 18, + "x": 1021.458984375, + "y": -588.078125, + "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..236d5cde 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..50681ab0 Binary files /dev/null and b/repo/pathing/石珀/icon.ico differ diff --git a/repo/pathing/石珀/石珀1-虎牢山1-4个.json b/repo/pathing/石珀/石珀1-虎牢山1-4个.json deleted file mode 100644 index 3ca7f815..00000000 --- a/repo/pathing/石珀/石珀1-虎牢山1-4个.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"虎牢山1", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1806.029296875, - "y":699.9052734375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1819.9977299555067, - "y":680.75, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":1829.0029296875, - "y":666.88720703125, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1829.15234375, - "y":667.8740234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1825.28125, - "y":670.03759765625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1826.4404296875, - "y":665.189453125, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀10-无妄坡1-2个.json b/repo/pathing/石珀/石珀10-无妄坡1-2个.json deleted file mode 100644 index e5a27a96..00000000 --- a/repo/pathing/石珀/石珀10-无妄坡1-2个.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"巫王珀1-2", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":289.466796875, - "y":1667.30517578125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":286.6298828125, - "y":1666.24609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":283.0439453125, - "y":1664.419921875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":282.3515625, - "y":1661.42578125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":281.755859375, - "y":1658.455078125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":280.33203125, - "y":1654.89306640625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":278.1640625, - "y":1652.96240234375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":276.59765625, - "y":1651.6884765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":273.7265625, - "y":1646.73681640625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":273.0556640625, - "y":1645.92724609375, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":278.109375, - "y":1643.64990234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":268.560546875, - "y":1649.67822265625, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀11-孤云阁1-1个.json b/repo/pathing/石珀/石珀11-孤云阁1-1个.json deleted file mode 100644 index 83b5417e..00000000 --- a/repo/pathing/石珀/石珀11-孤云阁1-1个.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"孤云阁1-1", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":-963.419921875, - "y":-288.93212890625, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":-964.1103515625, - "y":-254.16943359375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-962.9423828125, - "y":-250.37744140625, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":-962.8544921875, - "y":-249.765625, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀2-虎牢山2-2个.json b/repo/pathing/石珀/石珀2-虎牢山2-2个.json deleted file mode 100644 index 2bf80bcc..00000000 --- a/repo/pathing/石珀/石珀2-虎牢山2-2个.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"虎牢山2", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1794.19140625, - "y":717.47314453125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1799.2568359375, - "y":738.9970703125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1796.544921875, - "y":750.96044921875, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":1800.0947265625, - "y":748.8349609375, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1795.55078125, - "y":749.1826171875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1804.2109375, - "y":750.05322265625, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀3-虎牢山2-4个.json b/repo/pathing/石珀/石珀3-虎牢山2-4个.json deleted file mode 100644 index 82e12c45..00000000 --- a/repo/pathing/石珀/石珀3-虎牢山2-4个.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"虎牢山2-4", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1813.3720703125, - "y":712.63818359375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1828.9697265625, - "y":711.7939453125, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":1854.9052734375, - "y":710.45654296875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1859.2705078125, - "y":710.43701171875, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1858.2978515625, - "y":711.3203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1855.3671875, - "y":712.6943359375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1857.8056640625, - "y":714.37939453125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1856.2548828125, - "y":715.322265625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1858.19921875, - "y":712.96826171875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1860.3681640625, - "y":709.51025390625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1864.3818359375, - "y":705.3603515625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1860.369140625, - "y":704.39111328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1855.73828125, - "y":703.3154296875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀4-层岩巨渊1-2个.json b/repo/pathing/石珀/石珀4-层岩巨渊1-2个.json deleted file mode 100644 index cbe3cd53..00000000 --- a/repo/pathing/石珀/石珀4-层岩巨渊1-2个.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"曾言剧院1", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1998.1064453125, - "y":-678.54541015625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1998.115234375, - "y":-644.91259765625, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1999.69140625, - "y":-648.62841796875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀5-清策庄1-2个.json b/repo/pathing/石珀/石珀5-清策庄1-2个.json deleted file mode 100644 index 15735ecf..00000000 --- a/repo/pathing/石珀/石珀5-清策庄1-2个.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"清册装1", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":801.57421875, - "y":1796.1171875, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":792.5625, - "y":1787.0478515625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":781.201171875, - "y":1785.21826171875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":772.90234375, - "y":1785.7490234375, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀6-清策庄2-2个.json b/repo/pathing/石珀/石珀6-清策庄2-2个.json deleted file mode 100644 index 8940a7e4..00000000 --- a/repo/pathing/石珀/石珀6-清策庄2-2个.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"清册装2", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":839.8701171875, - "y":1532.546875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":845.435546875, - "y":1567.111328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":837.392578125, - "y":1593.37744140625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":836.771484375, - "y":1596.21337890625, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀7-清策庄3-1个.json b/repo/pathing/石珀/石珀7-清策庄3-1个.json deleted file mode 100644 index fbc0791b..00000000 --- a/repo/pathing/石珀/石珀7-清策庄3-1个.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"清册装3完成1个", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":547.7353515625, - "y":1766.80908203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":509.052734375, - "y":1826.19677734375, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":508.8544921875, - "y":1826.0107421875, - "type":"path", - "move_mode":"walk", - "action":"nahida_collect" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀8-清策庄4-2个.json b/repo/pathing/石珀/石珀8-清策庄4-2个.json deleted file mode 100644 index 198c5eb8..00000000 --- a/repo/pathing/石珀/石珀8-清策庄4-2个.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"清册装32个", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":547.689453125, - "y":1766.78662109375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":540.6123046875, - "y":1770.8388671875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":520.9853515625, - "y":1810.00244140625, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":517.25390625, - "y":1823.44970703125, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":516.3916015625, - "y":1821.6552734375, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/石珀/石珀9-奥藏山1-2个.json b/repo/pathing/石珀/石珀9-奥藏山1-2个.json deleted file mode 100644 index 23cf39c7..00000000 --- a/repo/pathing/石珀/石珀9-奥藏山1-2个.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"奥苍山1-2", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1120.880859375, - "y":1190.388671875, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":1107.1474609375, - "y":1211.63330078125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1085.310546875, - "y":1232.84716796875, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":1065.5068359375, - "y":1254.197265625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1066.8251953125, - "y":1274.81689453125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1065.06640625, - "y":1277.7880859375, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1065.0927734375, - "y":1277.78125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1064.216796875, - "y":1277.57861328125, - "type":"target", - "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..520c0744 Binary files /dev/null and b/repo/pathing/竹笋/icon.ico differ diff --git a/repo/pathing/紫晶块/稻妻八云岛01 (1).json b/repo/pathing/紫晶块/稻妻八云岛01 (1).json new file mode 100644 index 00000000..e4dccfc7 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻八云岛01 (1).json @@ -0,0 +1,204 @@ +{ + "info": { + "name": "稻妻八云岛01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2221.107421875, + "y": -4006.8984375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -2212.3037109375, + "y": -4048.900390625, + "type": "path", + "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": 3, + "x": -2215.244140625, + "y": -4048.7216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2214.5517578125, + "y": -4051.453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2213.693359375, + "y": -4045.5849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2206.0341796875, + "y": -4046.275390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2111.66796875, + "y": -4044.896484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": -2080.21875, + "y": -4023.3974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2070.0341796875, + "y": -3983.3134765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2069.8125, + "y": -3976.4404296875, + "type": "path", + "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": -2073.849609375, + "y": -3975.2734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2073.91796875, + "y": -3977.2236328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -2071.8203125, + "y": -3977.9482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -2071.9755859375, + "y": -3976.94921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -2071.857421875, + "y": -3978.037109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -2067.87890625, + "y": -3978.4091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -2067.146484375, + "y": -3975.5791015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -2066.4541015625, + "y": -3974.79296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -2065.46875, + "y": -3973.25390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -2065.4677734375, + "y": -3973.3203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -2066.1728515625, + "y": -3974.828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -2067.47265625, + "y": -3974.9130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -2070.8583984375, + "y": -3976.29296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -2061.69140625, + "y": -3973.3349609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻八云岛02.json b/repo/pathing/紫晶块/稻妻八云岛02.json new file mode 100644 index 00000000..a5898fef --- /dev/null +++ b/repo/pathing/紫晶块/稻妻八云岛02.json @@ -0,0 +1,164 @@ +{ + "info": { + "name": "稻妻八云岛02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2405.75390625, + "y": -3912.904296875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -2425.6318359375, + "y": -3923.62109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2448.005859375, + "y": -3950.0439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2501.3125, + "y": -4029.3623046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": -2498.2724609375, + "y": -4023.904296875, + "type": "path", + "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": 6, + "x": -2501.91015625, + "y": -4023.4951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2501.7236328125, + "y": -4020.724609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2500.71484375, + "y": -4022.6123046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2497.052734375, + "y": -4025.7734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2495.126953125, + "y": -4023.9873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -2495.583984375, + "y": -4023.2255859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2494.611328125, + "y": -4024.8623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -2481.06640625, + "y": -4063.083984375, + "type": "path", + "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": -2480.5322265625, + "y": -4062.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -2479.7607421875, + "y": -4063.861328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -2481.212890625, + "y": -4062.3046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -2480.1171875, + "y": -4065.8076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -2479.5478515625, + "y": -4063.40234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -2479.451171875, + "y": -4061.9609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻八云岛03非木村.json b/repo/pathing/紫晶块/稻妻八云岛03非木村.json new file mode 100644 index 00000000..b91a7728 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻八云岛03非木村.json @@ -0,0 +1,140 @@ +{ + "info": { + "name": "稻妻八云岛03非木村", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2216.0341796875, + "y": -3709.4873046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -2100.5224609375, + "y": -3754.287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2110.65625, + "y": -3768.396484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2119.0703125, + "y": -3767.1171875, + "type": "path", + "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": -2114.9580078125, + "y": -3766.6259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2114.865234375, + "y": -3763.544921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2119.6181640625, + "y": -3764.9326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2123.845703125, + "y": -3767.107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2123.27734375, + "y": -3768.919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2127.0439453125, + "y": -3766.34765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -2123.5576171875, + "y": -3767.85546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2119.798828125, + "y": -3768.28125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -2114.03125, + "y": -3766.4833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -2113.97265625, + "y": -3761.4384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -2114.923828125, + "y": -3759.5595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -2114.708984375, + "y": -3764.5048828125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻八云岛04非木村.json b/repo/pathing/紫晶块/稻妻八云岛04非木村.json new file mode 100644 index 00000000..50b05205 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻八云岛04非木村.json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "稻妻八云岛04非木村", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2216.0341796875, + "y": -3709.4873046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -2270.6015625, + "y": -3763.8369140625, + "type": "path", + "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": 3, + "x": -2271.568359375, + "y": -3760.611328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2275.7236328125, + "y": -3761.7041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2274.7763671875, + "y": -3765.736328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2278.5439453125, + "y": -3766.7998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2277.4375, + "y": -3769.82421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2274.380859375, + "y": -3769.1962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2270.162109375, + "y": -3766.9072265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2267.5751953125, + "y": -3765.361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -2269.1845703125, + "y": -3760.630859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2271.91015625, + "y": -3764.30859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -2273.60546875, + "y": -3765.1826171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -2269.623046875, + "y": -3776.9599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -2270.90234375, + "y": -3781.6298828125, + "type": "path", + "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": 16, + "x": -2269.4853515625, + "y": -3782.8623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -2269.5478515625, + "y": -3783.9189453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -2271.24609375, + "y": -3784.455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -2272.2529296875, + "y": -3784.744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -2272.01953125, + "y": -3782.330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -2270.865234375, + "y": -3779.7373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -2269.939453125, + "y": -3777.8388671875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻八云岛05上.json b/repo/pathing/紫晶块/稻妻八云岛05上.json new file mode 100644 index 00000000..9b259093 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻八云岛05上.json @@ -0,0 +1,268 @@ +{ + "info": { + "name": "稻妻八云岛05上", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2193.7080078125, + "y": -3485.66015625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -2163.0361328125, + "y": -3424.541015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2181.6171875, + "y": -3422.5126953125, + "type": "path", + "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": 4, + "x": -2189.2509765625, + "y": -3424.6181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2189.0966796875, + "y": -3430.9091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2183.6884765625, + "y": -3426.7880859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2183.560546875, + "y": -3421.033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2187.7392578125, + "y": -3419.646484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2189.146484375, + "y": -3421.953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2174.1015625, + "y": -3426.3876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -2177.2041015625, + "y": -3427.7890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2175.8447265625, + "y": -3423.49609375, + "type": "path", + "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": 13, + "x": -2173.96875, + "y": -3416.6865234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -2174.736328125, + "y": -3413.720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -2178.8310546875, + "y": -3417.10546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -2178.28125, + "y": -3417.810546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -2176.177734375, + "y": -3416.087890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -2178.337890625, + "y": -3418.1162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -2180.2421875, + "y": -3418.3408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -2248.9345703125, + "y": -3469.4033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -2310.1240234375, + "y": -3507.689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -2390.263671875, + "y": -3509.529296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -2429.1923828125, + "y": -3490.6474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -2441.46875, + "y": -3488.29296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -2440.408203125, + "y": -3483.798828125, + "type": "path", + "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": 26, + "x": -2436.525390625, + "y": -3485.06640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -2434.576171875, + "y": -3482.9140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -2438.357421875, + "y": -3483.9736328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -2444.6904296875, + "y": -3482.283203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": -2438.1923828125, + "y": -3476.634765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -2441.83203125, + "y": -3476.62890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": -2439.3310546875, + "y": -3480.9990234375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻八云岛06华染.json b/repo/pathing/紫晶块/稻妻八云岛06华染.json new file mode 100644 index 00000000..293d541b --- /dev/null +++ b/repo/pathing/紫晶块/稻妻八云岛06华染.json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "稻妻八云岛06华染", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2367.1123046875, + "y": -3769.8017578125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -2353.2705078125, + "y": -3742.2373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2426.5478515625, + "y": -3689.0908203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2399.4892578125, + "y": -3684.63671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2389.412109375, + "y": -3661.5849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2397.2880859375, + "y": -3669.4873046875, + "type": "path", + "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": 7, + "x": -2399.412109375, + "y": -3663.6982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2401.3251953125, + "y": -3666.08984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2395.2705078125, + "y": -3663.2509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2394.818359375, + "y": -3661.0185546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -2396.328125, + "y": -3671.1708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2396.5927734375, + "y": -3675.142578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -2398.3154296875, + "y": -3674.078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -2392.666015625, + "y": -3670.7099609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -2388.3076171875, + "y": -3673.2412109375, + "type": "path", + "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": 16, + "x": -2390.5546875, + "y": -3674.43359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -2383.642578125, + "y": -3672.8115234375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻八云岛07名稚.json b/repo/pathing/紫晶块/稻妻八云岛07名稚.json new file mode 100644 index 00000000..fdfa969d --- /dev/null +++ b/repo/pathing/紫晶块/稻妻八云岛07名稚.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "稻妻八云岛07名稚", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2731.28125, + "y": -3418.1015625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -2735.37109375, + "y": -3443.75390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2776.0986328125, + "y": -3487.3642578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2768.5615234375, + "y": -3535.5546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2751.3359375, + "y": -3552.8515625, + "type": "path", + "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": 6, + "x": -2755.9833984375, + "y": -3550.8046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -2756.771484375, + "y": -3554.322265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -2753.138671875, + "y": -3555.49609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -2751.04296875, + "y": -3560.2685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -2749.0361328125, + "y": -3560.3740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -2750.6708984375, + "y": -3554.314453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -2743.009765625, + "y": -3552.474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -2746.16796875, + "y": -3558.37109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -2748.9541015625, + "y": -3551.1123046875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻揉备沙01 (1).json b/repo/pathing/紫晶块/稻妻揉备沙01 (1).json new file mode 100644 index 00000000..3462e9f5 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻揉备沙01 (1).json @@ -0,0 +1,468 @@ +{ + "info": { + "name": "稻妻揉备沙01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3156.587890625, + "y": -3886.140625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -3164.884765625, + "y": -3886.89453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3182.859375, + "y": -3911.1123046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -3176.1904296875, + "y": -3902.134765625, + "type": "path", + "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": -3174.23828125, + "y": -3897.6318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3172.814453125, + "y": -3903.390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -3171.98046875, + "y": -3907.0068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -3176.130859375, + "y": -3907.4677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -3175.689453125, + "y": -3904, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -3178.5390625, + "y": -3902.6552734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -3180.19140625, + "y": -3904.3876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -3179.693359375, + "y": -3905.6845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -3177.0009765625, + "y": -3900.0205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -3174.453125, + "y": -3897.263671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -3174.7197265625, + "y": -3906.7763671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -3170.0615234375, + "y": -3904.779296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -3165.583984375, + "y": -3906.5712890625, + "type": "path", + "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": 18, + "x": -3169.28125, + "y": -3908.9658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -3170.0390625, + "y": -3905.69921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -3167.1455078125, + "y": -3909.3232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -3159.7529296875, + "y": -3910.6826171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -3162.4873046875, + "y": -3906.8974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -3164.7392578125, + "y": -3912.306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -3161.474609375, + "y": -3907.591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -3161.236328125, + "y": -3911.5400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -3168.91015625, + "y": -3909.1533203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -3160.6162109375, + "y": -3931.2568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -3121.6591796875, + "y": -3919.53125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -3038.6337890625, + "y": -3878.4111328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 30, + "x": -3041.615234375, + "y": -3873.5146484375, + "type": "path", + "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": 31, + "x": -3045.4033203125, + "y": -3878.1484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": -3041.642578125, + "y": -3879.484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": -3046.49609375, + "y": -3873.888671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": -3043.625, + "y": -3868.583984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": -3037.21484375, + "y": -3865.0341796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": -3039.736328125, + "y": -3862.4052734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": -3037.4150390625, + "y": -3867.4697265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": -3041.2275390625, + "y": -3868.5859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": -3040.107421875, + "y": -3873.21484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": -3010.283203125, + "y": -3861.486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": -3007.8076171875, + "y": -3870.22265625, + "type": "path", + "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": -3003.6416015625, + "y": -3869.4111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": -3002.7666015625, + "y": -3869.9482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": -3003.95703125, + "y": -3867.6611328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": -3011.029296875, + "y": -3868.1005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": -3006.935546875, + "y": -3877.892578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": -3008.9150390625, + "y": -3870.189453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": -3009.9248046875, + "y": -3866.3046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": -3012.54296875, + "y": -3865.9521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": -3007.439453125, + "y": -3871.390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": -3006.8115234375, + "y": -3869.2314453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": -3004.1357421875, + "y": -3869.048828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": -3003.890625, + "y": -3868.193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": -3011.3828125, + "y": -3870.490234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": -3013.607421875, + "y": -3870.884765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 56, + "x": -3013.576171875, + "y": -3876.759765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 57, + "x": -3011.087890625, + "y": -3874.2138671875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻揉备沙02借景.json b/repo/pathing/紫晶块/稻妻揉备沙02借景.json new file mode 100644 index 00000000..ea5ce3c3 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻揉备沙02借景.json @@ -0,0 +1,260 @@ +{ + "info": { + "name": "稻妻揉备沙02借景", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3233.083984375, + "y": -3870.7041015625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -3274.8984375, + "y": -3870.462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3292.9375, + "y": -3906.6669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -3329.4482421875, + "y": -3918.0576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -3317.71484375, + "y": -3937.458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3309.759765625, + "y": -3939.2255859375, + "type": "path", + "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": 7, + "x": -3309.3544921875, + "y": -3936.232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -3308.6796875, + "y": -3935.546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -3307.78515625, + "y": -3937.9150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -3307.072265625, + "y": -3942.1142578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -3304.6005859375, + "y": -3945.9130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -3302.6376953125, + "y": -3945.6845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -3309.7607421875, + "y": -3945.453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -3310.2001953125, + "y": -3944.25390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -3308.3447265625, + "y": -3943.9990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -3307.9462890625, + "y": -3943.35546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -3308.3359375, + "y": -3939.7255859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -3310.662109375, + "y": -3939.8115234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -3311.4697265625, + "y": -3943.154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -3313.13671875, + "y": -3945.4169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -3304.7685546875, + "y": -3960.7626953125, + "type": "path", + "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": 22, + "x": -3301.2646484375, + "y": -3959.7509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -3303.232421875, + "y": -3958.80078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -3305.5009765625, + "y": -3962.62109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -3307.947265625, + "y": -3948.734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -3309.59765625, + "y": -3944.3603515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -3303.78125, + "y": -3949.1630859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -3300.3408203125, + "y": -3949.126953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -3302.9765625, + "y": -3950.798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": -3306.51171875, + "y": -3939.662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -3307.765625, + "y": -3937.630859375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻揉备沙03神无冢.json b/repo/pathing/紫晶块/稻妻揉备沙03神无冢.json new file mode 100644 index 00000000..098e2523 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻揉备沙03神无冢.json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "稻妻揉备沙03神无冢", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3473.287109375, + "y": -3755.1572265625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -3479.6552734375, + "y": -3768.7958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3482.5888671875, + "y": -3763.4794921875, + "type": "path", + "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": 4, + "x": -3481.884765625, + "y": -3761.1767578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -3484.806640625, + "y": -3758.0419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3483.517578125, + "y": -3760.220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -3480.2333984375, + "y": -3762.4873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -3481.1455078125, + "y": -3762.57421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -3477.68359375, + "y": -3763.74609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -3475.7666015625, + "y": -3764.75390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -3467.466796875, + "y": -3760.7421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -3487.9599609375, + "y": -3763.212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -3483.0751953125, + "y": -3764.15234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -3474.6865234375, + "y": -3765.8095703125, + "type": "path", + "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": 15, + "x": -3475.8955078125, + "y": -3767.396484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -3475.9677734375, + "y": -3765.232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -3470.1884765625, + "y": -3762.2919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -3472.67578125, + "y": -3764.751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -3474.1142578125, + "y": -3765.615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -3470.0263671875, + "y": -3763.8837890625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻揉备沙04神无冢 (1).json b/repo/pathing/紫晶块/稻妻揉备沙04神无冢 (1).json new file mode 100644 index 00000000..e3ac409f --- /dev/null +++ b/repo/pathing/紫晶块/稻妻揉备沙04神无冢 (1).json @@ -0,0 +1,428 @@ +{ + "info": { + "name": "稻妻揉备沙04神无冢", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3393.146484375, + "y": -3556.029296875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -3387.626953125, + "y": -3544.1796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3377.9833984375, + "y": -3531.7177734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -3381.9521484375, + "y": -3545.83984375, + "type": "path", + "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": -3383.0556640625, + "y": -3546.33984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3383.9521484375, + "y": -3546.6357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -3383.80859375, + "y": -3544.8466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -3379.990234375, + "y": -3538.853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -3371.6015625, + "y": -3510.8154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -3371.3095703125, + "y": -3501.80078125, + "type": "path", + "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": -3376.408203125, + "y": -3502.181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -3376.9248046875, + "y": -3504.017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -3374.267578125, + "y": -3504.005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -3371.32421875, + "y": -3505.720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -3368.232421875, + "y": -3499.64453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -3369.1640625, + "y": -3499.080078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -3369.0751953125, + "y": -3498.064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -3371.5908203125, + "y": -3496.5302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -3372.8984375, + "y": -3499.3720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -3376.5341796875, + "y": -3497.8974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -3369.1220703125, + "y": -3500.56640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -3369.6396484375, + "y": -3504.1474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -3374.3203125, + "y": -3502.2158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -3375.33203125, + "y": -3506.169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -3373.2451171875, + "y": -3507.150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -3368.359375, + "y": -3497.833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -3362.560546875, + "y": -3504.93359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -3363.1552734375, + "y": -3504.1591796875, + "type": "path", + "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": 29, + "x": -3362.341796875, + "y": -3504.3955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": -3362.3564453125, + "y": -3504.380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -3368.1376953125, + "y": -3508.654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": -3375.7314453125, + "y": -3499.458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": -3379.7158203125, + "y": -3493.5146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": -3374.1220703125, + "y": -3489.6396484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": -3370.5322265625, + "y": -3490.1279296875, + "type": "path", + "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": 36, + "x": -3375.23828125, + "y": -3490.5478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": -3378.9580078125, + "y": -3492.33984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": -3378.4326171875, + "y": -3489.2431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": -3410.484375, + "y": -3462.4912109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": -3425.2607421875, + "y": -3450.0029296875, + "type": "path", + "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": 41, + "x": -3423.4658203125, + "y": -3449.439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": -3424.8798828125, + "y": -3446.951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": -3427.3525390625, + "y": -3447.1875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": -3420.7236328125, + "y": -3451.1103515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": -3423.826171875, + "y": -3454.4462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": -3427.0654296875, + "y": -3448.40625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": -3419.44140625, + "y": -3437.162109375, + "type": "path", + "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": 48, + "x": -3416.271484375, + "y": -3434.6630859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": -3416.005859375, + "y": -3437.4208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": -3419.298828125, + "y": -3431.3486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": -3424.884765625, + "y": -3434.5068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": -3418.3037109375, + "y": -3438.7587890625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻揉备沙05九条 (1).json b/repo/pathing/紫晶块/稻妻揉备沙05九条 (1).json new file mode 100644 index 00000000..4c90a8de --- /dev/null +++ b/repo/pathing/紫晶块/稻妻揉备沙05九条 (1).json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "稻妻揉备沙05九条", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3436.08984375, + "y": -3319.81640625 + }, + { + "id": 2, + "x": -3425.2607421875, + "y": -3321.4716796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -3421.447265625, + "y": -3315.9921875, + "type": "path", + "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": 4, + "x": -3425.8994140625, + "y": -3315.1298828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -3424.8623046875, + "y": -3313.69921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3422.1640625, + "y": -3312.4638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -3421.6875, + "y": -3311.4970703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -3419.4306640625, + "y": -3313.615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -3418.55078125, + "y": -3312.9541015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -3416.2724609375, + "y": -3314.7412109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -3415.458984375, + "y": -3315.32421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -3413.9541015625, + "y": -3315.876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -3415.5390625, + "y": -3317.0986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -3414.34765625, + "y": -3319.751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -3416.005859375, + "y": -3316.30859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -3420.9228515625, + "y": -3315.556640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -3420.625, + "y": -3312.623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -3423.9111328125, + "y": -3315.013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -3420.1279296875, + "y": -3316.521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -3421.232421875, + "y": -3312.1630859375, + "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..8492a876 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻海祗岛01.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "稻妻神祗岛01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1056.689453125, + "y": -3945.7421875 + }, + { + "id": 2, + "x": -1039.1357421875, + "y": -3926.349609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -1043.080078125, + "y": -3914.1845703125, + "type": "path", + "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": 4, + "x": -1046.71875, + "y": -3914.818359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1046.4873046875, + "y": -3911.2529296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1046.08984375, + "y": -3910.212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1044.2744140625, + "y": -3910.6416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1045.0380859375, + "y": -3912.5302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1042.0927734375, + "y": -3908.5556640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1045.01953125, + "y": -3908.8720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1045.8525390625, + "y": -3907.4609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻海祗岛02.json b/repo/pathing/紫晶块/稻妻海祗岛02.json new file mode 100644 index 00000000..bca48d23 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻海祗岛02.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "稻妻神祗岛02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1056.689453125, + "y": -3945.7421875 + }, + { + "id": 2, + "x": -1090.4794921875, + "y": -3920.041015625, + "type": "path", + "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": 3, + "x": -1088.5205078125, + "y": -3923.908203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1088.322265625, + "y": -3924.853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1087.9794921875, + "y": -3924.0234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1089.900390625, + "y": -3918.1240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1090.859375, + "y": -3916.2734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1088.3935546875, + "y": -3914.025390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1090.986328125, + "y": -3914.373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1091.814453125, + "y": -3916.35546875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻海祗岛03.json b/repo/pathing/紫晶块/稻妻海祗岛03.json new file mode 100644 index 00000000..fbd249ff --- /dev/null +++ b/repo/pathing/紫晶块/稻妻海祗岛03.json @@ -0,0 +1,212 @@ +{ + "info": { + "name": "稻妻海祗岛03", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -755.5810546875, + "y": -4001.0703125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -740.3173828125, + "y": -4016.86328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -725.0022255621716, + "y": -4036.5, + "move_mode": "fly", + "action": "stop_flying", + "type": "path" + }, + { + "id": 4, + "x": -676.63671875, + "y": -4080.408203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -619.2685546875, + "y": -4047.775390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -623.4208984375, + "y": -4039.130859375, + "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": 7, + "x": -623.8662109375, + "y": -4042.4111328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -623.84765625, + "y": -4041.37890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -624.642578125, + "y": -4036.501953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -625.744140625, + "y": -4035.060546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -621.1376953125, + "y": -4039.2646484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -622.0625, + "y": -4042.935546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -623.58203125, + "y": -4039.34765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -627.3779296875, + "y": -4027.9169921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -630.5888671875, + "y": -4024.1083984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -631.23046875, + "y": -4018.927734375, + "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": 17, + "x": -631.951171875, + "y": -4018.2333984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": -630.4638671875, + "y": -4017.1484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": -629.9306640625, + "y": -4012.4755859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": -631.912109375, + "y": -4008.7392578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": -631.8876953125, + "y": -4008.72265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": -632.2509765625, + "y": -4009.6943359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": -632.1494140625, + "y": -4011.615234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": -632.763671875, + "y": -4014.6259765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": -632.0302734375, + "y": -4017.541015625, + "action": "", + "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..5f3eacac --- /dev/null +++ b/repo/pathing/紫晶块/稻妻海祗岛04.json @@ -0,0 +1,228 @@ +{ + "info": { + "name": "稻妻海祗岛04", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -755.5869140625, + "y": -4001.0615234375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -770.7822265625, + "y": -3937.9296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -776.828125, + "y": -3947.9443359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -788.1064453125, + "y": -3941.9599609375, + "type": "path", + "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": -783.0224609375, + "y": -3944.0126953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -781.314453125, + "y": -3944.85546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -784.646484375, + "y": -3946.5771484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -785.5263671875, + "y": -3946.173828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -784.4091796875, + "y": -3943.8974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -779.8359375, + "y": -3941.55859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -786.9326171875, + "y": -3934.09765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -797.2548828125, + "y": -3935.890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -800.5673828125, + "y": -3932.6025390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -798.1279296875, + "y": -3934.8603515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -797.87109375, + "y": -3936.8212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -796.5029296875, + "y": -3938.11328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -796.4873046875, + "y": -3938.1005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -795.7734375, + "y": -3939.9072265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -794.728515625, + "y": -3939.6435546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -793.05078125, + "y": -3939.783203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -797.6943359375, + "y": -3936.150390625, + "type": "path", + "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": 22, + "x": -796.5751953125, + "y": -3935.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -794.7509765625, + "y": -3937.03125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -796.1865234375, + "y": -3938.2392578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -796.3046875, + "y": -3939.232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -797.09375, + "y": -3937.494140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -797.404296875, + "y": -3936.5888671875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻海祗岛05珊瑚宫.json b/repo/pathing/紫晶块/稻妻海祗岛05珊瑚宫.json new file mode 100644 index 00000000..731e5833 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻海祗岛05珊瑚宫.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "稻妻海祗岛珊瑚宫01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 2, + "x": -757.9638671875, + "y": -3815.1796875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -737.7021484375, + "y": -3861.7763671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -734.1142578125, + "y": -3837.474609375, + "type": "path", + "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": 4, + "x": -732.205078125, + "y": -3837.63671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -732.240234375, + "y": -3839.3798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -735.9814453125, + "y": -3838.029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -735.2734375, + "y": -3835.1279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -736.81640625, + "y": -3833.8466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -737.671875, + "y": -3832.064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -738.640625, + "y": -3831.7333984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -739.6240234375, + "y": -3833.2783203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -737.1982421875, + "y": -3834.7763671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -737.2431640625, + "y": -3838.4541015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -741.5283203125, + "y": -3838.259765625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻海祗岛06神像.json b/repo/pathing/紫晶块/稻妻海祗岛06神像.json new file mode 100644 index 00000000..066e38df --- /dev/null +++ b/repo/pathing/紫晶块/稻妻海祗岛06神像.json @@ -0,0 +1,420 @@ +{ + "info": { + "name": "稻妻海祗岛06神像", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -575.2392578125, + "y": -3832.1474609375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -575.302734375, + "y": -3832.130859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -605.4580078125, + "y": -3803.033203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -612.16796875, + "y": -3771.7353515625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": -609.982421875, + "y": -3808.7822265625, + "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": -609.91015625, + "y": -3808.779296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -609.2646484375, + "y": -3807.9091796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -611.0166015625, + "y": -3807.5556640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -612.2412109375, + "y": -3810.72265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -611.310546875, + "y": -3811.025390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -611.3173828125, + "y": -3810.99609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -612.236328125, + "y": -3811.4443359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -612.775390625, + "y": -3813.2763671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -612.4658203125, + "y": -3818.46484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -612.1865234375, + "y": -3816.453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -611.9296875, + "y": -3822.541015625, + "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": 17, + "x": -612.2958984375, + "y": -3820.576171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": -612.3271484375, + "y": -3820.57421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": -614.271484375, + "y": -3820.84375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": -614.6650390625, + "y": -3825.974609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": -612.6865234375, + "y": -3827.03125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": -611.8046875, + "y": -3827.189453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": -613.806640625, + "y": -3828.388671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": -614.44140625, + "y": -3829.2509765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": -666.8876953125, + "y": -3797.4140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 26, + "x": -672.94921875, + "y": -3787.0859375, + "type": "path", + "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": 27, + "x": -673.4150390625, + "y": -3787.4140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -673.45703125, + "y": -3788.4140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -671.7421875, + "y": -3788.1474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": -670.8427734375, + "y": -3786.490234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -670.3076171875, + "y": -3782.546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": -672.228515625, + "y": -3778.8349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": -674.2158203125, + "y": -3779.56640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": -675.876953125, + "y": -3778.7529296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": -677.12890625, + "y": -3776.9921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": -677.1318359375, + "y": -3777.005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": -680.0224609375, + "y": -3774.2626953125, + "type": "path", + "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": 38, + "x": -679.099609375, + "y": -3774.82421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": -679.328125, + "y": -3776.283203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": -683.7578125, + "y": -3771.69140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": -672.0068359375, + "y": -3779.2373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": -671.7822265625, + "y": -3784.9990234375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 43, + "x": -677.265625, + "y": -3785.4814453125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 44, + "x": -677.89453125, + "y": -3787.896484375, + "type": "path", + "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": 45, + "x": -677.509765625, + "y": -3789.150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": -678.83203125, + "y": -3787.9677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": -678.830078125, + "y": -3787.9609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": -679.7578125, + "y": -3788.9326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": -679.5751953125, + "y": -3789.8857421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": -677.8544921875, + "y": -3790.4697265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": -677.86328125, + "y": -3788.4677734375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻鸣神01甘田 (1).json b/repo/pathing/紫晶块/稻妻鸣神01甘田 (1).json new file mode 100644 index 00000000..159bf4a5 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻鸣神01甘田 (1).json @@ -0,0 +1,233 @@ +{ + "info": { + "name": "稻妻鸣神01甘田", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4124.556640625, + "y": -2759.865234375 + }, + { + "id": 2, + "x": -4122.5859375, + "y": -2760.287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4073.75, + "y": -2741.75 + }, + { + "id": 4, + "x": -4059.4716796875, + "y": -2794.3662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4043.70703125, + "y": -2796.7177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -4025.5185546875, + "y": -2800.7490234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": -4034.873046875, + "y": -2808.498046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -4034.904296875, + "y": -2805.8212890625, + "type": "path", + "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": 9, + "x": -4035.2314453125, + "y": -2806.8564453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -4032.3251953125, + "y": -2806.0244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -4032.2802734375, + "y": -2808.73828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -4029.890625, + "y": -2810.69140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -4030.4169921875, + "y": -2807.19921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -4030.3935546875, + "y": -2815.4208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -4033.1630859375, + "y": -2814.9541015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -4034.7451171875, + "y": -2810.8681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -4036.55078125, + "y": -2809.8232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -4033.8212890625, + "y": -2808.373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -4030.212890625, + "y": -2817.2431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -4033.9033203125, + "y": -2817.857421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -4033.9462890625, + "y": -2817.314453125, + "type": "path", + "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": 22, + "x": -4033.876953125, + "y": -2817.9501953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -4033.9228515625, + "y": -2818.0302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -4034.671875, + "y": -2818.421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -4034.6650390625, + "y": -2818.19921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -4030.4404296875, + "y": -2817.416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -4027.8408203125, + "y": -2807.2744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -4032.892578125, + "y": -2806.4189453125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻鸣神02甘田 (1).json b/repo/pathing/紫晶块/稻妻鸣神02甘田 (1).json new file mode 100644 index 00000000..a73df403 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻鸣神02甘田 (1).json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "稻妻鸣神02甘田", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4233.73046875, + "y": -3001.46875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -4213, + "y": -2969, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4211.01171875, + "y": -2912.3896484375, + "type": "path", + "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": 4, + "x": -4216.048828125, + "y": -2913.171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4205.71875, + "y": -2911.1171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -4204.326171875, + "y": -2907.4375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4210.470703125, + "y": -2909.724609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -4217.072265625, + "y": -2905.01953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -4211.830078125, + "y": -2906.6259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -4208.23046875, + "y": -2912.0439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -4212.1875, + "y": -2909.9599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -4217.7890625, + "y": -2913.5830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -4210.779296875, + "y": -2914.826171875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ 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..6a4dba1c --- /dev/null +++ b/repo/pathing/紫晶块/稻妻鸣神03荒海 (1).json @@ -0,0 +1,436 @@ +{ + "info": { + "name": "稻妻鸣神03荒海", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4218.201171875, + "y": -2396.873046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -4152.1171875, + "y": -2347.1220703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": -4180.65234375, + "y": -2348.0791015625, + "type": "path", + "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": 4, + "x": -4182.40234375, + "y": -2351.12109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4183.98046875, + "y": -2349.9306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -4180.896484375, + "y": -2349.9755859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4178.546875, + "y": -2347.8671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -4178.13671875, + "y": -2346.01171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -4182.916015625, + "y": -2344.978515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -4179.58203125, + "y": -2344.974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -4181.33984375, + "y": -2347.462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -4179.46875, + "y": -2348.0791015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -4178.017578125, + "y": -2347.251953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -4165.283203125, + "y": -2349.8955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -4154.10546875, + "y": -2332.80859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -4162.552734375, + "y": -2324.9384765625, + "type": "path", + "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": 17, + "x": -4162.5, + "y": -2329.4814453125, + "type": "path", + "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": 18, + "x": -4164.248046875, + "y": -2328.5810546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -4168.640625, + "y": -2327.41015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -4160.81640625, + "y": -2326.931640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -4158.830078125, + "y": -2322.5283203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -4167.3125, + "y": -2318.55078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -4164.53125, + "y": -2323.783203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -4163.181640625, + "y": -2317.7421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -4160.037109375, + "y": -2318.3291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -4164.767578125, + "y": -2333.173828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -4160.541015625, + "y": -2320.119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -4168.64453125, + "y": -2287.7060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -4195.888671875, + "y": -2282.1591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": -4229.4921875, + "y": -2237.337890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -4243.462890625, + "y": -2212.3154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": -4247.150390625, + "y": -2201.177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": -4253.583984375, + "y": -2201.876953125, + "type": "path", + "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": 34, + "x": -4255.318359375, + "y": -2198.306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": -4258.953125, + "y": -2198.2021484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": -4259.705078125, + "y": -2198.3076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": -4251.5390625, + "y": -2197.619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": -4250.787109375, + "y": -2196.85546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": -4245.099609375, + "y": -2202.224609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": -4249.984375, + "y": -2205.0595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": -4248.990234375, + "y": -2208.0625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": -4245.984375, + "y": -2205.42578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": -4245.525390625, + "y": -2203.828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": -4249.93359375, + "y": -2205.0068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": -4252.54296875, + "y": -2207.984375, + "type": "path", + "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": -4251.26171875, + "y": -2209.1533203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": -4251.25390625, + "y": -2209.1416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": -4252.48828125, + "y": -2208.9912109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": -4252.21484375, + "y": -2208.986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": -4252.623046875, + "y": -2209.078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": -4248.138671875, + "y": -2200.9345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": -4259.173828125, + "y": -2195.3916015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": -4259.947265625, + "y": -2194.1416015625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/紫晶块/稻妻鸣神04甘田.json b/repo/pathing/紫晶块/稻妻鸣神04甘田.json new file mode 100644 index 00000000..2a1dea79 --- /dev/null +++ b/repo/pathing/紫晶块/稻妻鸣神04甘田.json @@ -0,0 +1,404 @@ +{ + "info": { + "name": "稻妻鸣神04甘田", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4128.025390625, + "y": -2752.2744140625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -4136.171875, + "y": -2715.8662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4151.072265625, + "y": -2662.2216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4148.306640625, + "y": -2663.05859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4143.041015625, + "y": -2656.0498046875, + "type": "path", + "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": 6, + "x": -4136.01171875, + "y": -2654.9931640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4139.740234375, + "y": -2659.2724609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -4142.658203125, + "y": -2660.48046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -4144.94140625, + "y": -2658.12890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -4144.232421875, + "y": -2657.37890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -4148.541015625, + "y": -2652.2900390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -4148.59375, + "y": -2651.34375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -4146.212890625, + "y": -2654.212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -4146.876953125, + "y": -2654.869140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -4150.857421875, + "y": -2649.435546875, + "type": "path", + "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": 16, + "x": -4151.75, + "y": -2649.8701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -4153.20703125, + "y": -2649.5927734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -4151.822265625, + "y": -2647.2626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -4154.244140625, + "y": -2659.04296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -4153.8984375, + "y": -2622.7275390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -4144.775390625, + "y": -2589.7607421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -4156.775390625, + "y": -2567.203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -4169.90234375, + "y": -2564.3876953125, + "type": "path", + "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": 24, + "x": -4172.107421875, + "y": -2560.0732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -4173.095703125, + "y": -2557.3017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -4170.076171875, + "y": -2557.369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": -4169.97265625, + "y": -2561.794921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -4167.52734375, + "y": -2562.6220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -4165.638671875, + "y": -2562.9033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": -4164.091796875, + "y": -2567.0634765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -4163.923828125, + "y": -2569.2021484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": -4166.388671875, + "y": -2570.4150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": -4167.236328125, + "y": -2570.5244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": -4167.90234375, + "y": -2568.650390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": -4168.021484375, + "y": -2566.703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": -4168.92578125, + "y": -2565.1513671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": -4169.068359375, + "y": -2563.1455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": -4151.09375, + "y": -2553.046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": -4135.234375, + "y": -2554.0537109375, + "type": "path", + "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": -4133.919921875, + "y": -2548.1015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": -4137.4765625, + "y": -2550.0654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": -4130.94140625, + "y": -2551.228515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": -4126.380859375, + "y": -2553.3564453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": -4131.294921875, + "y": -2560.296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": -4134.275390625, + "y": -2559.681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": -4134.93359375, + "y": -2558.921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": -4133.400390625, + "y": -2555.2744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": -4137.171875, + "y": -2552.146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": -4131.236328125, + "y": -2559.3193359375, + "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..9492f07e Binary files /dev/null and b/repo/pathing/绝云椒椒/icon.ico differ diff --git a/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_地中之盐上方.json b/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_地中之盐上方.json new file mode 100644 index 00000000..544eb7e7 --- /dev/null +++ b/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_地中之盐上方.json @@ -0,0 +1,348 @@ +{ + "info": { + "name": "绝云椒椒_地中之盐上方", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -321.6044921875, + "y": 1473.31201171875 + }, + { + "id": 2, + "x": -267.5185546875, + "y": 1517.47021484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -230.1494140625, + "y": 1520.0478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -208.4033203125, + "y": 1510.91064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -156.26953125, + "y": 1523.2138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -106.3583984375, + "y": 1524.375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -89.591796875, + "y": 1538.97509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -57.6416015625, + "y": 1528.82177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -45.9033203125, + "y": 1501.32470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -32.42578125, + "y": 1503.21240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -30.3564453125, + "y": 1501.13525390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": -30.3564453125, + "y": 1501.13525390625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -29.94140625, + "y": 1500.32275390625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -29.1083984375, + "y": 1512.37939453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": -12.28515625, + "y": 1557.740234375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 16, + "x": -6.94921875, + "y": 1557.6708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -5.23046875, + "y": 1557.43701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -4.2802734375, + "y": 1557.69384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -4.283203125, + "y": 1557.74609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -5.2900390625, + "y": 1557.41943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -5.921875, + "y": 1555.8828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": -5.04296875, + "y": 1556.4970703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": -4.2001953125, + "y": 1557.0576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": -25.939453125, + "y": 1560.60205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": -27.36328125, + "y": 1567.19482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": -36.873046875, + "y": 1579.0615234375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 27, + "x": -29.8876953125, + "y": 1584.14453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": -28.0400390625, + "y": 1583.7685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": -27.123046875, + "y": 1583.28515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": -27.6201171875, + "y": 1581.392578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": -27.609375, + "y": 1581.39111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": -27.47265625, + "y": 1583.00830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": -32.4150390625, + "y": 1598.275390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": -37.6708984375, + "y": 1610.052734375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 35, + "x": -42.7578125, + "y": 1642.75439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 4.3125, + "y": 1670.734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 5.8154296875, + "y": 1669.9541015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 5.861328125, + "y": 1671.9169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 4.783203125, + "y": 1672.2431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 4.736328125, + "y": 1670.20703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 4.7216796875, + "y": 1670.20361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 5.34375, + "y": 1673.09130859375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_绝云间上方.json b/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_绝云间上方.json new file mode 100644 index 00000000..0705c72d --- /dev/null +++ b/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_绝云间上方.json @@ -0,0 +1,484 @@ +{ + "info": { + "name": "绝云椒椒_绝云间上方", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1045.5791015625, + "y": 950.6513671875 + }, + { + "id": 2, + "x": 1111.2880859375, + "y": 981.67578125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 1111.2880859375, + "y": 981.66455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 1111.2880859375, + "y": 981.66455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 1115.546875, + "y": 964.2978515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 1134.3447265625, + "y": 956.57080078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 1159.212890625, + "y": 948.50830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 1200.1533203125, + "y": 949.99462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 1231.326171875, + "y": 979.9248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 1277.2587890625, + "y": 1008.583984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 1277.2587890625, + "y": 1008.58349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 1277.2626953125, + "y": 1008.57666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 1315.26171875, + "y": 975.55078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 1317.7265625, + "y": 973.79931640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 1317.7138671875, + "y": 973.77880859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 1317.689453125, + "y": 973.76171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 1312.2041015625, + "y": 1003.16064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 1321.2373046875, + "y": 1009.46044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 1321.23828125, + "y": 1009.4482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 1321.2431640625, + "y": 1009.45458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 1338.341796875, + "y": 1039.11669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 1373.4765625, + "y": 1031.623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 1401.5693359375, + "y": 1036.73193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 1404.8623046875, + "y": 1026.6064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 1404.8623046875, + "y": 1026.6064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 1404.8623046875, + "y": 1026.6064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 1376.212890625, + "y": 982.87451171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 28, + "x": 1377.2529296875, + "y": 982.60791015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 1377.244140625, + "y": 982.623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 1364.181640625, + "y": 973.44287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 1295.6806640625, + "y": 946.77197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 1282.2392578125, + "y": 928.244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 1238.076171875, + "y": 898.40625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 1225.50390625, + "y": 895.36962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 1226.7705078125, + "y": 876.3076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 1226.7509765625, + "y": 876.2626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 1226.751953125, + "y": 876.26318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 1221.251953125, + "y": 855.884765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 1225.6708984375, + "y": 849.55712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 1228.2451171875, + "y": 814.3134765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 1204.7783203125, + "y": 797.19091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 1204.7783203125, + "y": 797.19091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 1204.7783203125, + "y": 797.19140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 1172.23828125, + "y": 766.20556640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 1170.27734375, + "y": 763.9013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 1170.2763671875, + "y": 763.90185546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 1170.291015625, + "y": 763.90478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 1180.419921875, + "y": 756.2978515625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 49, + "x": 1185.55859375, + "y": 746.4052734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 50, + "x": 1158.80078125, + "y": 741.47705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 1127.12109375, + "y": 762.95703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": 1104.1318359375, + "y": 756.6181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 1104.150390625, + "y": 756.60546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": 1104.1279296875, + "y": 756.6201171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": 1085.1181640625, + "y": 743.001953125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 56, + "x": 1093.1826171875, + "y": 703.5947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 57, + "x": 1101.3056640625, + "y": 657.65185546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 58, + "x": 1101.30078125, + "y": 657.67333984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 59, + "x": 1101.322265625, + "y": 657.7080078125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_轻策庄.json b/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_轻策庄.json new file mode 100644 index 00000000..3666b8ea --- /dev/null +++ b/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_轻策庄.json @@ -0,0 +1,372 @@ +{ + "info": { + "name": "绝云椒椒_轻策庄", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 547.6884765625, + "y": 1766.83740234375 + }, + { + "id": 2, + "x": 551.0166015625, + "y": 1790.34375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 551.0029296875, + "y": 1790.3203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 551.0087890625, + "y": 1790.31201171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 547.7001953125, + "y": 1766.79150390625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 556.923828125, + "y": 1748.4248046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 7, + "x": 556.923828125, + "y": 1748.423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 556.923828125, + "y": 1748.42529296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 563.7763671875, + "y": 1744.6787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 563.4658203125, + "y": 1734.6044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 563.724609375, + "y": 1730.4609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 588.0018111723457, + "y": 1726.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 592.08984375, + "y": 1718.1748046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 634.0166015625, + "y": 1716.20654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 640.8525390625, + "y": 1706.287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 638.6171875, + "y": 1704.31298828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 639.4873046875, + "y": 1704.83740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 639.455078125, + "y": 1704.82763671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 658.7978515625, + "y": 1694.1533203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 20, + "x": 658.7685546875, + "y": 1694.15185546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 658.802734375, + "y": 1694.13720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 659.60546875, + "y": 1706.345703125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 23, + "x": 667.498046875, + "y": 1717.4921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 680.0390625, + "y": 1724.67041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 678.09765625, + "y": 1756.0625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 661.8154296875, + "y": 1774.5830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 658.328125, + "y": 1776.57568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 658.3212890625, + "y": 1776.56640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 658.3193359375, + "y": 1776.5595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 669.3232421875, + "y": 1787.07373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 678.1513671875, + "y": 1803.29150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 685.037109375, + "y": 1798.6025390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 685.0341796875, + "y": 1798.60302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 685.0361328125, + "y": 1798.6064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 691.7119140625, + "y": 1816.994140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 705.5625, + "y": 1822.63525390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 703.578125, + "y": 1851.5712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 707.1669921875, + "y": 1852.26953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 707.1611328125, + "y": 1852.26806640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 707.1728515625, + "y": 1852.2490234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 700.90234375, + "y": 1849.9921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 719.5048828125, + "y": 1878.87939453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 711.4814453125, + "y": 1883.5859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 711.478515625, + "y": 1883.583984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 711.4775390625, + "y": 1883.59814453125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_轻策庄左侧.json b/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_轻策庄左侧.json new file mode 100644 index 00000000..e269bf36 --- /dev/null +++ b/repo/pathing/绝云椒椒/绝云椒椒@jbcaaa/绝云椒椒_轻策庄左侧.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "绝云椒椒_轻策庄左侧", + "type": "collect", + "author": "jbcaaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 801.5869140625, + "y": 1796.103515625 + }, + { + "id": 2, + "x": 821.69921875, + "y": 1797.224609375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 822.03125, + "y": 1798.0986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 822.078125, + "y": 1798.072265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 801.5947265625, + "y": 1796.1025390625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 795.369140625, + "y": 1771.47509765625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 7, + "x": 804.2495472069131, + "y": 1773.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 809.5007244689386, + "y": 1767.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 806.9287109375, + "y": 1746.3994140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 760.28515625, + "y": 1696.44384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 750.7607421875, + "y": 1645.5478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 750.791015625, + "y": 1645.59765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 750.7802734375, + "y": 1645.58447265625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绝云椒椒/绝云椒椒-奥藏山(一)-璃月1×3个.json b/repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-奥藏山(一)-璃月1×3个.json similarity index 100% rename from repo/pathing/绝云椒椒/绝云椒椒-奥藏山(一)-璃月1×3个.json rename to repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-奥藏山(一)-璃月1×3个.json diff --git a/repo/pathing/绝云椒椒/绝云椒椒-奥藏山(二)-璃月6×3个.json b/repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-奥藏山(二)-璃月6×3个.json similarity index 100% rename from repo/pathing/绝云椒椒/绝云椒椒-奥藏山(二)-璃月6×3个.json rename to repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-奥藏山(二)-璃月6×3个.json diff --git a/repo/pathing/绝云椒椒/绝云椒椒-宗室本-璃月4×3个.json b/repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-宗室本-璃月4×3个.json similarity index 100% rename from repo/pathing/绝云椒椒/绝云椒椒-宗室本-璃月4×3个.json rename to repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-宗室本-璃月4×3个.json diff --git a/repo/pathing/绝云椒椒/绝云椒椒-苍白本-璃月7×3个.json b/repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-苍白本-璃月7×3个.json similarity index 100% rename from repo/pathing/绝云椒椒/绝云椒椒-苍白本-璃月7×3个.json rename to repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-苍白本-璃月7×3个.json diff --git a/repo/pathing/绝云椒椒/绝云椒椒-轻策庄(一)-璃月1×3个.json b/repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-轻策庄(一)-璃月1×3个.json similarity index 100% rename from repo/pathing/绝云椒椒/绝云椒椒-轻策庄(一)-璃月1×3个.json rename to repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-轻策庄(一)-璃月1×3个.json diff --git a/repo/pathing/绝云椒椒/绝云椒椒-轻策庄(三)-璃月1×3个.json b/repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-轻策庄(三)-璃月1×3个.json similarity index 100% rename from repo/pathing/绝云椒椒/绝云椒椒-轻策庄(三)-璃月1×3个.json rename to repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-轻策庄(三)-璃月1×3个.json diff --git a/repo/pathing/绝云椒椒/绝云椒椒-轻策庄(二)-璃月7×3个.json b/repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-轻策庄(二)-璃月7×3个.json similarity index 100% rename from repo/pathing/绝云椒椒/绝云椒椒-轻策庄(二)-璃月7×3个.json rename to repo/pathing/绝云椒椒/绝云椒椒@不瘦五十斤不改名/绝云椒椒-轻策庄(二)-璃月7×3个.json diff --git a/repo/pathing/绯樱绣球/01绯樱绣球-白狐之野-5个.json b/repo/pathing/绯樱绣球/01绯樱绣球-白狐之野-5个.json new file mode 100644 index 00000000..b4e21c34 --- /dev/null +++ b/repo/pathing/绯樱绣球/01绯樱绣球-白狐之野-5个.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "绯樱绣球-白狐之野-5个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4231.962890625, + "y": -3001.522705078125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4226.3095703125, + "y": -2990.7880859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -4152.044921875, + "y": -2962.9833984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -4147.629, + "y": -2956.295, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -4217.666, + "y": -2912.355, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -4231.962890625, + "y": -3001.522705078125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 7, + "x": -4242.214, + "y": -3015.338, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -4267, + "y": -3019.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -4296.239, + "y": -3043.153, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": -4301, + "y": -3042, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绯樱绣球/02绯樱绣球-绀田村-3个.json b/repo/pathing/绯樱绣球/02绯樱绣球-绀田村-3个.json new file mode 100644 index 00000000..58f16d0c --- /dev/null +++ b/repo/pathing/绯樱绣球/02绯樱绣球-绀田村-3个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "绯樱绣球-绀田村-3个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4124.87, + "y": -2755.13, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4133.5, + "y": -2793.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -4110.95, + "y": -2804.5, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -4151.9, + "y": -2784.76, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -4231.19, + "y": -2796.5, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -4050.0732421875, + "y": -2657.4228515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 7, + "x": -4069.197265625, + "y": -2690.6064453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -4128.6328125, + "y": -2675.3017578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -4188.493, + "y": -2651.3, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ 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..0ee4735f --- /dev/null +++ b/repo/pathing/绯樱绣球/03绯樱绣球-荒海-7个.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "绯樱绣球-荒海-7个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -4217.634765625, + "y": -2397.204833984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4277.25, + "y": -2343.76, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -4283.616, + "y": -2338.456, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -4285.75, + "y": -2309.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -4249.62, + "y": -2311.336, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -4265.25, + "y": -2295.9949837547574, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -4269, + "y": -2242.228957828398, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -4284.773, + "y": -2240.042, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": -4295, + "y": -2243.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -4278.985, + "y": -2266.819, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": -4291.891, + "y": -2285.137, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": -4217.634765625, + "y": -2397.204833984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 13, + "x": -4236, + "y": -2353, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 14, + "x": -4237.946, + "y": -2346.986, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": -4218.329, + "y": -2343.689, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绯樱绣球/04绯樱绣球-稻妻城-4个(途经一个半空的不采).json b/repo/pathing/绯樱绣球/04绯樱绣球-稻妻城-4个(途经一个半空的不采).json new file mode 100644 index 00000000..a1156e90 --- /dev/null +++ b/repo/pathing/绯樱绣球/04绯樱绣球-稻妻城-4个(途经一个半空的不采).json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "绯樱绣球-稻妻城-4个(途经一个半空的不采)", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.36.5" + }, + "positions": [ + { + "id": 1, + "x": -4400.837890625, + "y": -3051.087890625, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4394.177734375, + "y": -3051.9951171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -4386.6328125, + "y": -3047.404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -4379.58203125, + "y": -3054.8212890625, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -4401.16015625, + "y": -3051.0791015625, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 7, + "x": -4407.748046875, + "y": -3055.2763671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -4442.71484375, + "y": -3029.7724609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -4451.88671875, + "y": -3025.7578125, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": -4404.69921875, + "y": -2977.689453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -4397.31640625, + "y": -2985.3955078125, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": -4379.2421875, + "y": -2979.8818359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -4363.30859375, + "y": -2983.12109375, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ 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..58bc9c0d --- /dev/null +++ b/repo/pathing/绯樱绣球/05绯樱绣球-鸣神大社-3个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "绯樱绣球-鸣神大社-3个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "x": -4375.9765625, + "y": -2500.068359375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -4374.119140625, + "y": -2469.8017578125, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": -4380.75, + "y": -2465.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -4387.537109375, + "y": -2468.890625, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -4377.8515625, + "y": -2501.1357421875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 6, + "x": -4412.14453125, + "y": -2494.033203125, + "action": "electro_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/绯樱绣球/06绯樱绣球-镇守之森-4个.json b/repo/pathing/绯樱绣球/06绯樱绣球-镇守之森-4个.json new file mode 100644 index 00000000..02d8cc89 --- /dev/null +++ b/repo/pathing/绯樱绣球/06绯樱绣球-镇守之森-4个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "绯樱绣球-镇守之森-4个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.37.3" + }, + "positions": [ + { + "id": 1, + "x": -4429.80078125, + "y": -2798.5849609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -4441.2890625, + "y": -2799.7509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -4464.7421875, + "y": -2813.2109375, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 4, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -4430.189453125, + "y": -2799.4716796875 + }, + { + "id": 5, + "x": -4432.47265625, + "y": -2763.388671875, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 6, + "x": -4415.365234375, + "y": -2790.0234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -4405.775390625, + "y": -2793.630859375, + "type": "target", + "move_mode": "walk", + "action": "electro_collect" + }, + { + "id": 8, + "x": -4383.607421875, + "y": -2793.5517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -4378.828125, + "y": -2849.36328125, + "type": "target", + "move_mode": "walk", + "action": "electro_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..e78cedef 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..9a7cbe1c Binary files /dev/null and b/repo/pathing/肉龙掌/icon.ico differ diff --git a/repo/pathing/肉龙掌/肉龙掌2-坚岩隘谷上-18个.json b/repo/pathing/肉龙掌/肉龙掌2-坚岩隘谷上-18个.json index 16c30f2e..380189d3 100644 --- a/repo/pathing/肉龙掌/肉龙掌2-坚岩隘谷上-18个.json +++ b/repo/pathing/肉龙掌/肉龙掌2-坚岩隘谷上-18个.json @@ -1,191 +1,191 @@ { - "info":{ - "name":"肉龙掌2-坚岩隘谷上-18个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":8400.6953125, - "y":-1221.4111328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8357.0625, - "y":-1225.69091796875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8277.7294921875, - "y":-1188.48681640625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8296.201171875, - "y":-1213.18212890625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8330.904296875, - "y":-1291.4462890625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8318.240234375, - "y":-1293.9248046875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8259.1259765625, - "y":-1307.67041015625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8263.49759150458, - "y":-1314.0, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8255.6689453125, - "y":-1313.23681640625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8164.14599609375, - "y":-1311.05517578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8163.5556640625, - "y":-1307.1376953125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8115.750602123855, - "y":-1309.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8071.000200707951, - "y":-1291.75, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8026.0003010619275, - "y":-1274.0, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7965.515354158304, - "y":-1259.75, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7981.57421875, - "y":-1296.32177734375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7976.802734375, - "y":-1295.435546875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8042.765625, - "y":-1349.9892578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8048.0322265625, - "y":-1354.607421875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7916.3916015625, - "y":-1292.61865234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7908.474609375, - "y":-1291.779296875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7880.013246724811, - "y":-1326.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7917.04296875, - "y":-1394.6494140625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7930.5751953125, - "y":-1402.87158203125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7962.3779296875, - "y":-1419.95458984375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7968.7685546875, - "y":-1425.8544921875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "肉龙掌2-坚岩隘谷上-18个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 8400.6953125, + "y": -1221.4111328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 8357.0625, + "y": -1225.69091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8277.7294921875, + "y": -1188.48681640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8296.201171875, + "y": -1213.18212890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8330.904296875, + "y": -1291.4462890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8318.240234375, + "y": -1293.9248046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8259.1259765625, + "y": -1307.67041015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8263.49759150458, + "y": -1314, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8255.6689453125, + "y": -1313.23681640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8164.14599609375, + "y": -1311.05517578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8163.5556640625, + "y": -1307.1376953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8115.750602123855, + "y": -1309.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8071.000200707951, + "y": -1291.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8026.0003010619275, + "y": -1274, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7965.515354158304, + "y": -1259.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7981.57421875, + "y": -1296.32177734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7976.802734375, + "y": -1295.435546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8042.765625, + "y": -1349.9892578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8048.0322265625, + "y": -1354.607421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7916.3916015625, + "y": -1292.61865234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7908.474609375, + "y": -1291.779296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7880.013246724811, + "y": -1326.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7917.04296875, + "y": -1394.6494140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7930.5751953125, + "y": -1402.87158203125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7962.3779296875, + "y": -1419.95458984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7968.7685546875, + "y": -1425.8544921875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/肉龙掌/肉龙掌3-坚岩隘谷右-14个.json b/repo/pathing/肉龙掌/肉龙掌3-坚岩隘谷右-14个.json index b78747ad..ad6622f7 100644 --- a/repo/pathing/肉龙掌/肉龙掌3-坚岩隘谷右-14个.json +++ b/repo/pathing/肉龙掌/肉龙掌3-坚岩隘谷右-14个.json @@ -1,107 +1,107 @@ { - "info":{ - "name":"肉龙掌3-坚岩隘谷右-14个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":7973.6591796875, - "y":-1557.6474609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8098.841796875, - "y":-1542.27099609375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8098.8779296875, - "y":-1536.9892578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8120.52734375, - "y":-1548.83642578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8121.89306640625, - "y":-1547.82080078125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8118.91015625, - "y":-1523.75927734375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8193.224710798087, - "y":-1477.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8141.720703125, - "y":-1419.4267578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8117.8154296875, - "y":-1399.94677734375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8117.248896106266, - "y":-1391.75, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8111.20703125, - "y":-1388.3515625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8081.8125, - "y":-1383.92724609375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8070.499197168194, - "y":-1399.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8055.1865234375, - "y":-1393.951171875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "肉龙掌3-坚岩隘谷右-14个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 7973.6591796875, + "y": -1557.6474609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 8098.841796875, + "y": -1542.27099609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8098.8779296875, + "y": -1536.9892578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8120.52734375, + "y": -1548.83642578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8121.89306640625, + "y": -1547.82080078125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8118.91015625, + "y": -1523.75927734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8193.224710798087, + "y": -1477.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8141.720703125, + "y": -1419.4267578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8117.8154296875, + "y": -1399.94677734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8117.248896106266, + "y": -1391.75, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8111.20703125, + "y": -1388.3515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8081.8125, + "y": -1383.92724609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8070.499197168194, + "y": -1399.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8055.1865234375, + "y": -1393.951171875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/肉龙掌/肉龙掌5-硫晶支脉左-5个.json b/repo/pathing/肉龙掌/肉龙掌5-硫晶支脉左-5个.json index bb36e107..850ef380 100644 --- a/repo/pathing/肉龙掌/肉龙掌5-硫晶支脉左-5个.json +++ b/repo/pathing/肉龙掌/肉龙掌5-硫晶支脉左-5个.json @@ -1,65 +1,65 @@ { - "info":{ - "name":"肉龙掌5-硫晶支脉左-5个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":8452.509765625, - "y":-1477.23046875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8443.138671875, - "y":-1495.28662109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8437.236328125, - "y":-1497.9099999999999, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8445.0400390625, - "y":-1531.3720703125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8450.256422654455, - "y":-1517.75, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8486.763671875, - "y":-1516.75732421875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8481.252007079516, - "y":-1515.0, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8485.919921875, - "y":-1513.4580078125, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "肉龙掌5-硫晶支脉左-5个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 8452.509765625, + "y": -1477.23046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 8443.138671875, + "y": -1495.28662109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8437.236328125, + "y": -1497.9099999999999, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8445.0400390625, + "y": -1531.3720703125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8450.256422654455, + "y": -1517.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8486.763671875, + "y": -1516.75732421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8481.252007079516, + "y": -1515, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8485.919921875, + "y": -1513.4580078125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json b/repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json index d5d73e4c..bd8568b3 100644 --- a/repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json +++ b/repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json @@ -1,170 +1,170 @@ { - "info":{ - "name":"肉龙掌7-隆崛坡-13个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":7857.5, - "y":-1751.31982421875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7808.752910265299, - "y":-1724.0, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7791.250200707951, - "y":-1648.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7791.99638725687, - "y":-1613.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7774.509765625, - "y":-1611.37939453125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7767.994681239281, - "y":-1594.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7744.752709557348, - "y":-1612.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7734.8583984375, - "y":-1600.625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7731.6201171875, - "y":-1599.73193359375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7727.2822265625, - "y":-1602.2294921875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7714.2822265625, - "y":-1556.46875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7718.744140625, - "y":-1552.44287109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7736.500200707951, - "y":-1567.0, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7755.50439453125, - "y":-1557.8193359375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7759.68896484375, - "y":-1557.2021484375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7769.8515625, - "y":-1555.51806640625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7764.250903185783, - "y":-1542.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7766.24879575229, - "y":-1523.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7745.7685546875, - "y":-1500.830078125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7743.749498230121, - "y":-1491.75, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7736.5947265625, - "y":-1489.6162109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7705.5048169908405, - "y":-1493.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7698.30419921875, - "y":-1498.427734375, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "肉龙掌7-隆崛坡-13个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 7857.5, + "y": -1751.31982421875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 7808.752910265299, + "y": -1724, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7791.250200707951, + "y": -1648.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7791.99638725687, + "y": -1613.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7774.509765625, + "y": -1611.37939453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7767.994681239281, + "y": -1594.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7744.752709557348, + "y": -1612.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7734.8583984375, + "y": -1600.625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7731.6201171875, + "y": -1599.73193359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7727.2822265625, + "y": -1602.2294921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7714.2822265625, + "y": -1556.46875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7718.744140625, + "y": -1552.44287109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7736.500200707951, + "y": -1567, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7755.50439453125, + "y": -1557.8193359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7759.68896484375, + "y": -1557.2021484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7769.8515625, + "y": -1555.51806640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7764.250903185783, + "y": -1542.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7766.24879575229, + "y": -1523.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7745.7685546875, + "y": -1500.830078125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7743.749498230121, + "y": -1491.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7736.5947265625, + "y": -1489.6162109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7705.5048169908405, + "y": -1493.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7698.30419921875, + "y": -1498.427734375, + "type": "target", + "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..3067561c 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..8f703f61 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..486472c0 Binary files /dev/null and b/repo/pathing/茉洁草/icon.ico differ diff --git a/repo/pathing/茉洁草/茉洁草08-厄里那斯神像-枫丹13个.json b/repo/pathing/茉洁草/茉洁草08-厄里那斯神像-枫丹13个.json index 1bca776c..aa5c54f7 100644 --- a/repo/pathing/茉洁草/茉洁草08-厄里那斯神像-枫丹13个.json +++ b/repo/pathing/茉洁草/茉洁草08-厄里那斯神像-枫丹13个.json @@ -12,7 +12,7 @@ "id": 1, "x": 4749.6357421875, "y": 2636.186767578125, - "type": "path", + "type": "teleport", "move_mode": "walk", "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..0ac2b928 Binary files /dev/null and b/repo/pathing/莲蓬/icon.ico differ diff --git a/repo/pathing/莲蓬/莲蓬1-狄花州-璃月2个.json b/repo/pathing/莲蓬/莲蓬1-狄花州-璃月2个.json new file mode 100644 index 00000000..2b0f4369 --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬1-狄花州-璃月2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "莲蓬1-狄花州-璃月2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 253.10546875, + "y": 1285.19091796875 + }, + { + "id": 2, + "x": 242.8359375, + "y": 1294.07568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 209.1416015625, + "y": 1305.79541015625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/莲蓬/莲蓬2-宗室本-璃月4个.json b/repo/pathing/莲蓬/莲蓬2-宗室本-璃月4个.json new file mode 100644 index 00000000..3533d7fc --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬2-宗室本-璃月4个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "莲蓬2-宗室本-璃月4个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1436.3310546875, + "y": 1289.95166015625 + }, + { + "id": 2, + "x": 1450.4169921875, + "y": 1246.1669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1458.388671875, + "y": 1246.61962890625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/莲蓬/莲蓬3-若陀周本-璃月3个.json b/repo/pathing/莲蓬/莲蓬3-若陀周本-璃月3个.json new file mode 100644 index 00000000..4f1b0559 --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬3-若陀周本-璃月3个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "莲蓬3-若陀周本-璃月3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 1754.9716796875, + "y": 606.03076171875 + }, + { + "id": 2, + "x": 1763.4716796875, + "y": 580.703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 1736.294921875, + "y": 543.0224609375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ 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..1b89f995 --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬4-归离原(一)-璃月3个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "莲蓬4-归离原(一)-璃月3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "x": 341.4296875, + "y": 548.10498046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 363.373046875, + "y": 558.62158203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 408.0361328125, + "y": 599.62109375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/莲蓬/莲蓬5-归离原(二)-璃月2个.json b/repo/pathing/莲蓬/莲蓬5-归离原(二)-璃月2个.json new file mode 100644 index 00000000..f4a4eb9f --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬5-归离原(二)-璃月2个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "莲蓬5-归离原(二)-璃月2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 341.326171875, + "y": 548.0498046875 + }, + { + "id": 2, + "x": 321.669921875, + "y": 556.8056640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 279.6552734375, + "y": 523.75146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 258.318359375, + "y": 516.02392578125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/莲蓬/莲蓬6-归离原(三)-璃月2个.json b/repo/pathing/莲蓬/莲蓬6-归离原(三)-璃月2个.json new file mode 100644 index 00000000..939e9cd4 --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬6-归离原(三)-璃月2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "莲蓬5-归离原(三)-璃月2个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 4, + "x": 173.9443359375, + "y": 389.45068359375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 124.37890625, + "y": 380.2568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 91.74609375, + "y": 344.177734375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/莲蓬/莲蓬7-渌华池-璃月12个.json b/repo/pathing/莲蓬/莲蓬7-渌华池-璃月12个.json new file mode 100644 index 00000000..bcc759cd --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬7-渌华池-璃月12个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "莲蓬7-渌华池-璃月12个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 526.177734375, + "y": 106.16162109375 + }, + { + "id": 2, + "x": 529.4375, + "y": 104.271484375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 544.99609375, + "y": 104.1220703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 610.265625, + "y": 101.59423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 627.1513671875, + "y": 85.57958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 628.9951171875, + "y": 83.3271484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 695.6572265625, + "y": 111.615234375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 8, + "x": 664.1796875, + "y": 148.99462890625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": 698.9814453125, + "y": 166.0029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 717.6435546875, + "y": 153.1650390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 737.9248046875, + "y": 170.5634765625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/莲蓬/莲蓬8-遁玉陵-璃月7个.json b/repo/pathing/莲蓬/莲蓬8-遁玉陵-璃月7个.json new file mode 100644 index 00000000..168f3162 --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬8-遁玉陵-璃月7个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "莲蓬8-遁玉陵-璃月7个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 978.7275390625, + "y": -353.57080078125 + }, + { + "id": 2, + "x": 978.720703125, + "y": -353.60595703125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 850.5849609375, + "y": -258.37109375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 847.7646484375, + "y": -250.2900390625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 5, + "x": 823.453125, + "y": -232.83154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 810.453125, + "y": -199.634765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 816.3037109375, + "y": -171.60693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 825.294921875, + "y": -171.126953125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/莲蓬/莲蓬9-天衡山-璃月3个.json b/repo/pathing/莲蓬/莲蓬9-天衡山-璃月3个.json new file mode 100644 index 00000000..6d18ec23 --- /dev/null +++ b/repo/pathing/莲蓬/莲蓬9-天衡山-璃月3个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "莲蓬9-天衡山-璃月3个", + "type": "collect", + "author": "不瘦五十斤不改名", + "version": "1.0", + "description": "", + "bgiVersion": "0.34.5" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 710.8330078125, + "y": -772.42626953125 + }, + { + "id": 2, + "x": 714.76953125, + "y": -771.31591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 717.3427734375, + "y": -770.5322265625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": 758.607421875, + "y": -749.2119140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 758.2607421875, + "y": -749.68603515625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/中央实验室基地东.json b/repo/pathing/萃凝晶/中央实验室基地东.json new file mode 100644 index 00000000..8bf28541 --- /dev/null +++ b/repo/pathing/萃凝晶/中央实验室基地东.json @@ -0,0 +1,145 @@ +{ + "info": { + "name": "中央实验室基地东", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3635.93212890625, + "y": 4796.05224609375 + }, + { + "id": 2, + "x": 3648.88671875, + "y": 4735.9111328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 3637.27978515625, + "y": 4714.32861328125, + "type": "path", + "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": 4, + "x": 3637.2919921875, + "y": 4712, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3631.2919921875, + "y": 4710.8388671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3634.19140625, + "y": 4717.517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 3642.90234375, + "y": 4716.193359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 3641.21240234375, + "y": 4711.28271484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 3665.341796875, + "y": 4706.244140625, + "type": "path", + "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": 10, + "x": 3664.17626953125, + "y": 4703.8759765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 3664.20166015625, + "y": 4713.9736328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 3728.61181640625, + "y": 4760.59375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 13, + "x": 3750.64501953125, + "y": 4778.7236328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 3771.41357421875, + "y": 4795.37841796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 3771.146484375, + "y": 4788.86328125, + "type": "path", + "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": 16, + "x": 3767.1298828125, + "y": 4789.96630859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 3776.99951171875, + "y": 4785.818359375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/中央实验室基地东北.json b/repo/pathing/萃凝晶/中央实验室基地东北.json new file mode 100644 index 00000000..ca2acc18 --- /dev/null +++ b/repo/pathing/萃凝晶/中央实验室基地东北.json @@ -0,0 +1,67 @@ +{ + "info": { + "name": "中央实验室基地右上", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3811.5703125, + "y": 4952.625 + }, + { + "id": 2, + "x": 3742.47607421875, + "y": 4930.1728515625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 3672.125, + "y": 4970.0595703125, + "type": "path", + "move_mode": "run","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": 4, + "x": 3676.80029296875, + "y": 4973.6533203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 3672.3525390625, + "y": 4971.3544921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3661.3994140625, + "y": 4965.91650390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 3674.37255859375, + "y": 4968.0205078125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/中央实验室基地东南.json b/repo/pathing/萃凝晶/中央实验室基地东南.json new file mode 100644 index 00000000..07108604 --- /dev/null +++ b/repo/pathing/萃凝晶/中央实验室基地东南.json @@ -0,0 +1,138 @@ +{ + "info": { + "name": "中央实验室基地东南", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3628.51806640625, + "y": 4447.64599609375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3628.5341796875, + "y": 4447.580078125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 3634.74609375, + "y": 4473.54052734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 3622.23291015625, + "y": 4494.82080078125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 3636.44580078125, + "y": 4510.32177734375,"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": 3637.87548828125, + "y": 4508.8720703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3637.30322265625, + "y": 4514.68798828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 3636.45361328125, + "y": 4509.84130859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 3612.26708984375, + "y": 4546.9658203125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 3623.94091796875, + "y": 4553.94775390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 3624.69287109375, + "y": 4559.41357421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 3627.314453125, + "y": 4562.54541015625,"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": 13, + "x": 3632.0068359375, + "y": 4564.021484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 3622.94189453125, + "y": 4562.1640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 3619.29541015625, + "y": 4562.64453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 3624.0439453125, + "y": 4564.1962890625, + "action": "", + "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..fd0c35ec --- /dev/null +++ b/repo/pathing/萃凝晶/仓晶区南.json @@ -0,0 +1,136 @@ +{ + "info": { + "name": "仓晶区南", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4876.60498046875, + "y": 2255.18212890625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 4850.69677734375, + "y": 2275.215576171875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 4832.2958984375, + "y": 2259.337890625, + "type": "path", + "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": 4, + "x": 4826.55908203125, + "y": 2258.4638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4832.8984375, + "y": 2256.17822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4840.5380859375, + "y": 2262.3662109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4854.42333984375, + "y": 2247.667236328125, + "type": "path", + "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": 4850.07666015625, + "y": 2243.21533203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 4855.03515625, + "y": 2248.031982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4838.2392578125, + "y": 2235.393798828125, + "type": "path", + "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": 4837.2783203125, + "y": 2232.173828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 4840.9091796875, + "y": 2237.451416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 4843.35791015625, + "y": 2246.09619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 4830.5625, + "y": 2238.2734375, + "type": "path", + "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": 15, + "x": 4830.08984375, + "y": 2239.815673828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 4829.740234375, + "y": 2235.2666015625, + "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..44bcaaab --- /dev/null +++ b/repo/pathing/萃凝晶/仓晶区南2.json @@ -0,0 +1,90 @@ +{ + "info": { + "name": "仓晶区南2", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4689.45703125, + "y": 2429.351806640625, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4655.4208984375, + "y": 2409.8623046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4639.46044921875, + "y": 2405.529541015625,"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": "fly", + "type": "path" + }, + { + "id": 4, + "x": 4633.7939453125, + "y": 2399.27978515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4642.87744140625, + "y": 2409.89013671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4644, + "y": 2428, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4653.7470703125, + "y": 2433.610595703125,"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": 4649.49365234375, + "y": 2434.91162109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 4654.73876953125, + "y": 2428.35205078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4654.63623046875, + "y": 2436.331298828125, + "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..2ddcb151 --- /dev/null +++ b/repo/pathing/萃凝晶/仓晶区南3.json @@ -0,0 +1,91 @@ +{ + "info": { + "name": "仓晶区南3", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 5117.5009765625, + "y": 2543.4033203125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "id": 2, + "x": 5073.84619140625, + "y": 2512.2822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 5048.5986328125, + "y": 2515.392578125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 4, + "x": 5035.431640625, + "y": 2511.41943359375, + "type": "path", + "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": 5032.7802734375, + "y": 2505.8740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 5026.99658203125, + "y": 2501.62890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 5028.939453125, + "y": 2508.475341796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 5031.64697265625, + "y": 2515.86865234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 5028.97509765625, + "y": 2515.093017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 5036, + "y": 2516, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/优兰尼娅湖北.json b/repo/pathing/萃凝晶/优兰尼娅湖北.json new file mode 100644 index 00000000..bd9e015a --- /dev/null +++ b/repo/pathing/萃凝晶/优兰尼娅湖北.json @@ -0,0 +1,182 @@ +{ + "info": { + "name": "优蓝尼雅湖上", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3344.24365234375, + "y": 3903.365478515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3337.7119140625, + "y": 3879.299560546875,"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": 3342.7109375, + "y": 3879.373291015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 3320.01171875, + "y": 3859.587158203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3325.36474609375, + "y": 3851.658935546875,"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": 3328.35888671875, + "y": 3846.3779296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3325.75634765625, + "y": 3855.36474609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 3269.361328125, + "y": 3891.56591796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 3261.3251953125, + "y": 3905.8251953125,"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": 10, + "x": 3266.998046875, + "y": 3908.14501953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 3252.1669921875, + "y": 3907.06103515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 3200.14501953125, + "y": 3931.566162109375,"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": 13, + "x": 3200.193359375, + "y": 3934.829345703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 3191.677734375, + "y": 3922.840576171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 3186.6083984375, + "y": 3911.3046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 3178.69091796875, + "y": 3916.237060546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 3186.90087890625, + "y": 3927.733154296875,"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": 3193.86474609375, + "y": 3928.427978515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 3175.421875, + "y": 3931.18115234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 3149.2333984375, + "y": 3964.9658203125,"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": 21, + "x": 3154.31640625, + "y": 3968.816162109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 3145.826171875, + "y": 3966.2578125, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/卡布狄斯堡1.json b/repo/pathing/萃凝晶/卡布狄斯堡1.json new file mode 100644 index 00000000..860f40d7 --- /dev/null +++ b/repo/pathing/萃凝晶/卡布狄斯堡1.json @@ -0,0 +1,135 @@ +{ + "info": { + "name": "卡布狄斯堡1", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3259.5, + "y": 2955.00375398295, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3277, + "y": 3041,"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": 3288, + "y": 3042, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 3263, + "y": 3040, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3240, + "y": 2980, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 3172, + "y": 2975, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3128, + "y": 2930, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 3133, + "y": 2923,"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": 3139, + "y": 2923, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 3100, + "y": 2913, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 3099, + "y": 2922,"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": 12, + "x": 3102, + "y": 2927, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 3098, + "y": 2916, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 3139, + "y": 2902,"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": 3135, + "y": 2902,"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": 3132, + "y": 2907, + "action": "", + "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..b6a8954a --- /dev/null +++ b/repo/pathing/萃凝晶/幽林雾道北.json @@ -0,0 +1,201 @@ +{ + "info": { + "name": "幽林雾道北", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3199.8076171875, + "y": 3433.720947265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3215.73095703125, + "y": 3450.878662109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 3270.1279296875, + "y": 3441.8740234375005, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 3271.73828125, + "y": 3448.0029296875,"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": 3271.5, + "y": 3449, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3260.83935546875, + "y": 3437.7419433593745, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 3322.943359375, + "y": 3403.795654296875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 3374.21875, + "y": 3405.035400390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 3396.29248046875, + "y": 3402.05517578125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 3415.7412109375, + "y": 3394.650390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 3415.24755859375, + "y": 3405.987548828125,"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": 12, + "x": 3418.00634765625, + "y": 3404.70703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 3416.68212890625, + "y": 3410.944091796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 3413.83056640625, + "y": 3410.7373046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 3411.33251953125, + "y": 3401.30126953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 3424.60498046875, + "y": 3383.99951171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 3440.0166015625, + "y": 3394.462890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 18, + "x": 3458.201171875, + "y": 3430.892578125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": 3464.91748046875, + "y": 3451.609375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": 3470.974609375, + "y": 3486.579345703125,"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": 21, + "x": 3471.47119140625, + "y": 3494.591064453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 3467.81982421875, + "y": 3494.9697265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 3472.521484375, + "y": 3486.013671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 3468.24658203125, + "y": 3483.642333984375, + "action": "", + "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..93dfc145 --- /dev/null +++ b/repo/pathing/萃凝晶/新枫丹科学院东北.json @@ -0,0 +1,239 @@ +{ + "info": { + "name": "新枫丹科学院东北", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3811.60302734375, + "y": 4952.615234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 2, + "x": 3814.181640625, + "y": 4996.060546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 3815.97119140625, + "y": 5024.7626953125,"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": 4, + "x": 3816.611328125, + "y": 5029.44970703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3816.59033203125, + "y": 5004.05322265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 3906.7138671875, + "y": 5000.6845703125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 3988.40087890625, + "y": 4983.466796875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 3996.4951171875, + "y": 5027.20263671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 3979.388671875, + "y": 5059.18701171875,"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": "run", + "type": "target" + }, + { + "id": 10, + "x": 3987.388671875, + "y": 5065.187011718748, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 3989.5078125, + "y": 5071.7373046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 4001.0668945312505, + "y": 5069.3818359375,"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": 13, + "x": 4006.9033203125, + "y": 5068.53125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 4000.6791992187495, + "y": 5073.8916015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 3984.4409179687505, + "y": 5039.273925781251, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 3992, + "y": 5010, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 17, + "x": 3993, + "y": 4994, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 18, + "x": 4032.98046875, + "y": 5018.683105468751, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": 4073.91552734375, + "y": 5034.2099609375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": 4111.60791015625, + "y": 5063.294921875,"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": 21, + "x": 4111.93798828125, + "y": 5058.326171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 4113.84423828125, + "y": 5068.181640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 4110.274902343751, + "y": 5070.419921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 24, + "x": 4108.435546875001, + "y": 5060.0966796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 4155.3017578125, + "y": 5098.87890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 26, + "x": 4179.5244140625, + "y": 5099.07080078125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 27, + "x": 4184.7431640625, + "y": 5097.3134765625,"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": 4177.8876953125, + "y": 5093.32421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 4180.6357421875, + "y": 5091.66015625, + "action": "", + "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..03daca29 --- /dev/null +++ b/repo/pathing/萃凝晶/新枫丹科学院东南.json @@ -0,0 +1,67 @@ +{ + "info": { + "name": "枫丹科学院右下", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 4001.0146484375, + "y": 4878.36181640625 + }, + { + "id": 2, + "x": 4054.82177734375, + "y": 4875.81201171875, + "type": "path", + "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": 3, + "x": 4059.93408203125, + "y": 4870.9677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4054.44189453125, + "y": 4879.74853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 4051.25, + "y": 4878.8818359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4056.806640625, + "y": 4870.4775390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4057.53173828125, + "y": 4878.447265625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/新枫丹科学院西北.json b/repo/pathing/萃凝晶/新枫丹科学院西北.json new file mode 100644 index 00000000..d9d74a3b --- /dev/null +++ b/repo/pathing/萃凝晶/新枫丹科学院西北.json @@ -0,0 +1,59 @@ +{ + "info": { + "name": "新枫丹科学院左上", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4620, + "y": 4936, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4608.095703125, + "y": 5017.7724609375,"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": 4610.53369140625, + "y": 5025.0087890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4608.92431640625, + "y": 5026.3916015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4607.1689453125, + "y": 5011.61181640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4612.1689453125, + "y": 5023.611816406247, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/枫丹厅西北.json b/repo/pathing/萃凝晶/枫丹厅西北.json new file mode 100644 index 00000000..2c282538 --- /dev/null +++ b/repo/pathing/萃凝晶/枫丹厅西北.json @@ -0,0 +1,98 @@ +{ + "info": { + "name": "枫丹厅西北", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4856.254212230217, + "y": 3915.2002905022873, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4920, + "y": 3902.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4925, + "y": 3896, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 4927, + "y": 3896,"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": 4932, + "y": 3889, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 4950.75, + "y": 3872.6927517600016, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": 4983.75, + "y": 3837.1794251205265, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4992.5, + "y": 3838.6799882179694,"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": 4990.25, + "y": 3841.4340237496417, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4996.5, + "y": 3839, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 4992, + "y": 3837, + "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..c5577e12 --- /dev/null +++ b/repo/pathing/萃凝晶/枫丹厅西北2.json @@ -0,0 +1,299 @@ +{ + "info": { + "name": "枫丹厅西北2", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4708, + "y": 3957.4564537977712, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4783, + "y": 4060.9938059281303,"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": "run", + "type": "path" + }, + { + "id": 3, + "x": 4780, + "y": 4061.997559911082, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4785.5, + "y": 4060.9911781400656, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4810, + "y": 4060, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 4796.5, + "y": 4167.034348943998,"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": "run", + "type": "path" + }, + { + "id": 7, + "x": 4791.5, + "y": 4171.033598147409, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4801.5, + "y": 4163.0302195627555, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 4810.5, + "y": 4151.0302195627555, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4865, + "y": 4159.032847350818,"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": 4868, + "y": 4157, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 4862, + "y": 4163.035099740589, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 4880.5, + "y": 4179.0396045201305, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 4926, + "y": 4171.537915227802,"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": 4932, + "y": 4169.537539829507, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 4901.5, + "y": 4169.537915227802, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 4884, + "y": 4188, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 4886, + "y": 4206,"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": 4891, + "y": 4206, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 4887, + "y": 4208, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 21, + "x": 4878, + "y": 4220, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 22, + "x": 4819, + "y": 4234, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 4777, + "y": 4234,"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": 24, + "x": 4781, + "y": 4235, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 4774, + "y": 4237.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 4761, + "y": 4245,"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": 4765, + "y": 4242, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 4761.5, + "y": 4248, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 4746, + "y": 4227, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 30, + "x": 4697, + "y": 4232, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 4694, + "y": 4220,"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": 4691, + "y": 4221.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 33, + "x": 4698, + "y": 4221, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 34, + "x": 4678, + "y": 4225, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 35, + "x": 4671, + "y": 4216,"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": 4666, + "y": 4217, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 37, + "x": 4675, + "y": 4216, + "action": "", + "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..b34dc44e --- /dev/null +++ b/repo/pathing/萃凝晶/枫丹厅西北下.json @@ -0,0 +1,145 @@ +{ + "info": { + "name": "枫丹厅西北下", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4699.4130859375, + "y": 3958.68896484375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4740.84521484375, + "y": 3971.8232421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 4747.056640625, + "y": 3919.73876953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 4746.3837890625, + "y": 3869.110107421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4754.2265625, + "y": 3840.740234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4745.81689453125, + "y": 3838.000244140625,"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": 7, + "x": 4751.65380859375, + "y": 3837.11083984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4747.27587890625, + "y": 3843.97705078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 4740.76318359375, + "y": 3836.7734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 4741.55322265625, + "y": 3828.41015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 4705.478515625, + "y": 3794.736328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 4698.46728515625, + "y": 3795.9072265625,"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": 13, + "x": 4697.81396484375, + "y": 3798.670654296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 4696.2275390625, + "y": 3793.843017578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 4711.49609375, + "y": 3784.73583984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 4704.4736328125, + "y": 3779.703125,"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": 17, + "x": 4701.6513671875, + "y": 3787.640625, + "action": "", + "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..1c4b7a46 --- /dev/null +++ b/repo/pathing/萃凝晶/猎人本南.json @@ -0,0 +1,74 @@ +{ + "info": { + "name": "猎人本下", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 4722.19873046875, + "y": 1854.67578125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 4697.748046875, + "y": 1850.40966796875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 4725.5166015625, + "y": 1814.31103515625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 4749.67919921875, + "y": 1796.60791015625, + "type": "path", + "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": 4755.2890625, + "y": 1798.0595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 4745.111816406249, + "y": 1798.154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 4737.8203125, + "y": 1781.04443359375, + "type": "path", + "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": 4734.5, + "y": 1786.22802734375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/秋分山西侧北.json b/repo/pathing/萃凝晶/秋分山西侧北.json new file mode 100644 index 00000000..41a5f15e --- /dev/null +++ b/repo/pathing/萃凝晶/秋分山西侧北.json @@ -0,0 +1,137 @@ +{ + "info": { + "name": "秋分山西侧北", + "type": "collect", + "author": "cy", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3955.03271484375, + "y": 2869.064697265625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 3955.08349609375, + "y": 2893.15966796875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 3958.10693359375, + "y": 2919.369140625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 3940.1806640625, + "y": 2949.135986328125, + "type": "path", + "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": 3938.1806640625, + "y": 2947.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 3997.39208984375, + "y": 2968.088623046875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 3996.56103515625, + "y": 2953.35107421875, + "type": "path", + "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": 4000.90380859375, + "y": 2947.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 3995.92919921875, + "y": 2952.00146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4002.470703125, + "y": 2954.22705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 3957.12646484375, + "y": 2980.65380859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": 3897.39013671875, + "y": 2979.468017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 3895.287109375, + "y": 3007.01318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 3905.17236328125, + "y": 3007.191162109375, + "type": "path", + "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": 15, + "x": 3905.62109375, + "y": 3003.84765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 3908.416015625, + "y": 3012.14404296875, + "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..19b77656 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔万火之欧01.json @@ -0,0 +1,204 @@ +{ + "info": { + "name": "纳塔万火之欧01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 2, + "x": 8598.103515625, + "y": -1925.06884765625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 8604.4306640625, + "y": -1893.1806640625, + "type": "path", + "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": 3, + "x": 8602.32421875, + "y": -1890.3837890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 8600.9462890625, + "y": -1887.4775390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8600.69921875, + "y": -1886.984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8601.16796875, + "y": -1887.65185546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8602.1455078125, + "y": -1887.875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8604.8125, + "y": -1888.5751953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8606.501953125, + "y": -1887.69970703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8607.291015625, + "y": -1886.95361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8610.05078125, + "y": -1886.02392578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8611.1025390625, + "y": -1886.17626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8609.6767578125, + "y": -1888.6015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8609.291015625, + "y": -1889.673828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8608.39453125, + "y": -1890.02978515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8607.6279296875, + "y": -1890.63330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8604.2353515625, + "y": -1890.36083984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 8606.373046875, + "y": -1888.3857421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8603.3564453125, + "y": -1890.59033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 8602.4052734375, + "y": -1890.32666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 8604.3017578125, + "y": -1889.392578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 8607.3759765625, + "y": -1887.20947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 8609.296875, + "y": -1889.08740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 8606.72265625, + "y": -1891.5, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔万火之欧02.json b/repo/pathing/萃凝晶/纳塔万火之欧02.json new file mode 100644 index 00000000..86a0aeb0 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔万火之欧02.json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "纳塔万火之欧02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8738.2060546875, + "y": -1857.43212890625, + "type": "teleport", + "move_mode": "fly", + "action": "" + }, + { + "id": 2, + "x": 8840.5595703125, + "y": -1930.70166015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 8825.49609375, + "y": -1935.26025390625, + "type": "path", + "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": 4, + "x": 8823.111328125, + "y": -1940.353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8821.4130859375, + "y": -1938.01806640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8821.8984375, + "y": -1936.66748046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8823.3974609375, + "y": -1932.7119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8820.958984375, + "y": -1933.48388671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8823.669921875, + "y": -1933.80712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8826.744140625, + "y": -1934.64111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8823.66015625, + "y": -1935.7392578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8822.1669921875, + "y": -1936.7216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8824.3076171875, + "y": -1938.6064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8823.4375, + "y": -1940.015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8823.0927734375, + "y": -1937.798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8822.912109375, + "y": -1936.75244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8822.763671875, + "y": -1932.79541015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 8820.7197265625, + "y": -1934.01123046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8822.8974609375, + "y": -1935.701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 8824.875, + "y": -1936.60205078125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ 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..05669421 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔万火之欧03 (1).json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "纳塔万火之欧03", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8674.1259765625, + "y": -2063.326171875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 8691.2705078125, + "y": -2061.306640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 8854.0244140625, + "y": -2069.58203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 8909.91015625, + "y": -2039.6064453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 8913.333984375, + "y": -2044.4248046875, + "type": "path", + "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": 6, + "x": 8917.517578125, + "y": -2041.94482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8915.4921875, + "y": -2041.85107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8917.44921875, + "y": -2044.24267578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8916.759765625, + "y": -2046.654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8914.1298828125, + "y": -2046.638671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8914.369140625, + "y": -2048.94140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8915.0341796875, + "y": -2044.97119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8912.693359375, + "y": -2044.79052734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8914.1669921875, + "y": -2041.169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8915.798828125, + "y": -2040.37060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8917.412109375, + "y": -2042.8037109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8915.21875, + "y": -2043.5068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 8915.2255859375, + "y": -2045.33740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8914.576171875, + "y": -2049.279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 8913.734375, + "y": -2046.44921875, + "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..c69bf5f3 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔坚岩缢谷01.json @@ -0,0 +1,204 @@ +{ + "info": { + "name": "纳塔坚岩缢谷01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7633.78955078125, + "y": -1646.6533203125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7654.98974609375, + "y": -1783.7861328125, + "type": "path", + "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": 3, + "x": 7644.2060546875, + "y": -1781.2373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 7652.607421875, + "y": -1778.44091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 7650.78759765625, + "y": -1784.67822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 7645.36962890625, + "y": -1782.56201171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7655.25732421875, + "y": -1782.66455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7656.9482421875, + "y": -1773.69482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 7662.74267578125, + "y": -1775.974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 7661.21875, + "y": -1784.9189453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 7652.5, + "y": -1781.03369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 7651.32958984375, + "y": -1786.01416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 7648.2431640625, + "y": -1780.8251953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 7650.18359375, + "y": -1781.51806640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 7754.4169921875, + "y": -1828.59326171875, + "type": "path", + "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": 16, + "x": 7760.76708984375, + "y": -1831.904296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 7753.18359375, + "y": -1823.69140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 7751.20166015625, + "y": -1826.05126953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 7754.2275390625, + "y": -1825.12060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 7756.205078125, + "y": -1825.27197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 7757.67236328125, + "y": -1827.63427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 7760.59912109375, + "y": -1831.29345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 7763.16796875, + "y": -1831.599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 7762.92138671875, + "y": -1832.14892578125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔坚岩缢谷02.json b/repo/pathing/萃凝晶/纳塔坚岩缢谷02.json new file mode 100644 index 00000000..5e5ab9ab --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔坚岩缢谷02.json @@ -0,0 +1,260 @@ +{ + "info": { + "name": "纳塔坚岩缢谷02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7633.78955078125, + "y": -1646.6533203125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7593.10400390625, + "y": -1738.1572265625, + "type": "path", + "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": 3, + "x": 7585.87646484375, + "y": -1740.01513671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 7591.16943359375, + "y": -1734.3671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 7591.853515625, + "y": -1734.97509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 7591.8408203125, + "y": -1738.0830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7586.4990234375, + "y": -1737.92431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7587.00537109375, + "y": -1742.53515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 7618.197265625, + "y": -1857.3046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 7556.26513671875, + "y": -1874.3466796875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 11, + "x": 7508.333984375, + "y": -1903.89501953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 12, + "x": 7513.564453125, + "y": -1913.56005859375, + "type": "path", + "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": 13, + "x": 7506.6669921875, + "y": -1916.1845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 7509.47607421875, + "y": -1912.25341796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 7517.40576171875, + "y": -1919.666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 7515.32666015625, + "y": -1916.4462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 7517.88134765625, + "y": -1913.11181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 7515.63916015625, + "y": -1910.24853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 7512.52880859375, + "y": -1909.29296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 7517.84033203125, + "y": -1909.40283203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 7509.00634765625, + "y": -1911.98974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 7503.7138671875, + "y": -1927.947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 7504.63671875, + "y": -1932.31982421875, + "type": "path", + "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": 24, + "x": 7503.9326171875, + "y": -1938.30517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 7507.29296875, + "y": -1938.04833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 7501.93115234375, + "y": -1934.14404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 7505.95751953125, + "y": -1925.515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 7507.0478515625, + "y": -1928.4482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 7501.49755859375, + "y": -1926.35205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 7503.81201171875, + "y": -1925.296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 7504.23974609375, + "y": -1931.05078125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔坚岩缢谷03.json b/repo/pathing/萃凝晶/纳塔坚岩缢谷03.json new file mode 100644 index 00000000..d0a5a973 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔坚岩缢谷03.json @@ -0,0 +1,140 @@ +{ + "info": { + "name": "纳塔坚岩缢谷03", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8670.9453125, + "y": -1269.611328125, + "type": "teleport", + "move_mode": "fly", + "action": "" + }, + { + "id": 2, + "x": 8675.556640625, + "y": -1344.36767578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 8675.408203125, + "y": -1343.79443359375, + "type": "path", + "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": 4, + "x": 8670.40234375, + "y": -1341.52685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8672.71484375, + "y": -1338.72607421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8675.986328125, + "y": -1336.37548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8675.4189453125, + "y": -1341.80029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8676.7265625, + "y": -1344.6259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8674.9609375, + "y": -1347.62744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8670.3232421875, + "y": -1344.81640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8670.451171875, + "y": -1340.107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8672.0078125, + "y": -1341.16455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8674.8876953125, + "y": -1345.53125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8680.2626953125, + "y": -1347.2421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8680.654296875, + "y": -1346.38720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8676.8984375, + "y": -1348.29443359375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔坚岩缢谷04.json b/repo/pathing/萃凝晶/纳塔坚岩缢谷04.json new file mode 100644 index 00000000..830fd10a --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔坚岩缢谷04.json @@ -0,0 +1,204 @@ +{ + "info": { + "name": "纳塔坚岩缢谷04", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 2, + "x": 7633.79296875, + "y": -1646.654296875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7647.9794921875, + "y": -1546.7275390625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 7645.4541015625, + "y": -1539.6767578125, + "type": "path", + "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": 4, + "x": 7640.15625, + "y": -1538.99853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 7642.0126953125, + "y": -1537.85009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 7643.06298828125, + "y": -1535.60302734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7643.7158203125, + "y": -1535.66552734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7644.9853515625, + "y": -1536.01708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 7649.6455078125, + "y": -1535.55322265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 7651.556640625, + "y": -1537.79833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 7650.533203125, + "y": -1539.06689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 7647.82958984375, + "y": -1537.77392578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 7647.7236328125, + "y": -1536.97705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 7645.76611328125, + "y": -1536.62060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 7642.75146484375, + "y": -1538.97119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 7647.13623046875, + "y": -1537.4384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 7648.64990234375, + "y": -1538.71875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 7648.5771484375, + "y": -1538.61279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 7651.392578125, + "y": -1540.3515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 7648.75732421875, + "y": -1541.31787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 7643.775390625, + "y": -1542.224609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 7642.56640625, + "y": -1541.5126953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 7644.423828125, + "y": -1540.841796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 7648.4814453125, + "y": -1540.37939453125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔坚岩缢谷七天神像 (1).json b/repo/pathing/萃凝晶/纳塔坚岩缢谷七天神像 (1).json new file mode 100644 index 00000000..f5889e67 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔坚岩缢谷七天神像 (1).json @@ -0,0 +1,436 @@ +{ + "info": { + "name": "纳塔坚岩缢谷七天神像", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7759.30126953125, + "y": -1401.41943359375, + "type": "teleport", + "move_mode": "fly", + "action": "" + }, + { + "id": 2, + "x": 7825.134765625, + "y": -1427.75048828125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 7844.314453125, + "y": -1451.0732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 7849.62451171875, + "y": -1457.46142578125, + "type": "path", + "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": 7855.00244140625, + "y": -1457.18603515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 7855.4677734375, + "y": -1460.52685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7852.9453125, + "y": -1464.9248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7852.5048828125, + "y": -1465.822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 7849.04296875, + "y": -1461.37109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 7848.119140625, + "y": -1461.03955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 7847.06201171875, + "y": -1458.30712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 7848.04541015625, + "y": -1457.97021484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 7850.77490234375, + "y": -1457.92919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 7851.5400390625, + "y": -1457.5283203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 7854.35205078125, + "y": -1458.93896484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 7853.14599609375, + "y": -1456.0400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 7849.2744140625, + "y": -1455.09716796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 7846.19287109375, + "y": -1454.55712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 7845.19970703125, + "y": -1456.125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 7845.38134765625, + "y": -1459.06494140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 7847.2119140625, + "y": -1461.23828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 7849.162109375, + "y": -1462.00146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 7852.3349609375, + "y": -1465.57080078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 7853.37255859375, + "y": -1467.2890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 7850.8701171875, + "y": -1468.87841796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 7848.173828125, + "y": -1464.69775390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 7854.8154296875, + "y": -1454.42626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 7861.84716796875, + "y": -1440.958984375, + "type": "path", + "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": 29, + "x": 7860.30908203125, + "y": -1438.35986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 7858.22900390625, + "y": -1436.2841796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 7861.09130859375, + "y": -1435.56591796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 7862.31201171875, + "y": -1436.84619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 7862.55859375, + "y": -1439.66357421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 7865.76123046875, + "y": -1439.48291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 7869.546875, + "y": -1439.70947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 7885.45849609375, + "y": -1464.95751953125, + "type": "path", + "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": 38, + "x": 7884.47119140625, + "y": -1465.88134765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 7887.86279296875, + "y": -1466.3291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 7888.79345703125, + "y": -1463.98046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 7888.01123046875, + "y": -1462.57568359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 7888.8759765625, + "y": -1459.80419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 7890.0654296875, + "y": -1461.3115234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 7891.20947265625, + "y": -1462.11669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 7888.71630859375, + "y": -1463.33154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 7885.041015625, + "y": -1460.27099609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 7879.2490234375, + "y": -1456.6708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 7880.9248046875, + "y": -1448.17822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 7889.24609375, + "y": -1449.2373046875, + "type": "path", + "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": 50, + "x": 7891.64892578125, + "y": -1451.35400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 7895.23046875, + "y": -1450.03955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": 7893.701171875, + "y": -1449.00390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 7892.5703125, + "y": -1449.685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": 7890.88330078125, + "y": -1450.376953125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔坚岩缢谷七天神像 2 (1).json b/repo/pathing/萃凝晶/纳塔坚岩缢谷七天神像 2 (1).json new file mode 100644 index 00000000..f5b28fd6 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔坚岩缢谷七天神像 2 (1).json @@ -0,0 +1,484 @@ +{ + "info": { + "name": "纳塔坚岩缢谷七天神像 2", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7759.30810546875, + "y": -1401.46484375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7870.68017578125, + "y": -1384.61328125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 7933.921875, + "y": -1348.0810546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 7950.650390625, + "y": -1330.37109375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 5, + "x": 7977.14892578125, + "y": -1347.87353515625, + "type": "path", + "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": 6, + "x": 7979.53125, + "y": -1342.7548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7983.05859375, + "y": -1344.14599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7981.85205078125, + "y": -1347.986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 7986.26708984375, + "y": -1350.82861328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 7986.44873046875, + "y": -1349.8857421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 7986.22412109375, + "y": -1352.93505859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 7983.62255859375, + "y": -1351.72021484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 7984.8251953125, + "y": -1355.3076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 7984.33056640625, + "y": -1357.994140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 7980.25244140625, + "y": -1356.9501953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 7977.7763671875, + "y": -1355.46875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 7979.4716796875, + "y": -1354.7041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 7983.01025390625, + "y": -1353.0234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 7983.40185546875, + "y": -1352.05810546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 7982.31982421875, + "y": -1351.04150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 7981.2744140625, + "y": -1351.0390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 7981.36181640625, + "y": -1350.07763671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 7980.73828125, + "y": -1348.3017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 7981.18408203125, + "y": -1345.8212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 7980.24658203125, + "y": -1345.365234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 7977.76318359375, + "y": -1349.56005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 7977.25244140625, + "y": -1352.6376953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 7975.7724609375, + "y": -1356.6455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 7977.353515625, + "y": -1358.68408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 7979.54931640625, + "y": -1357.48583984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 7982.7041015625, + "y": -1357.287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 7980.96435546875, + "y": -1355.2626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 8018.3837890625, + "y": -1403.4013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 8077.3701171875, + "y": -1454.802734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 35, + "x": 8086.68017578125, + "y": -1464.24267578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 8081.95263671875, + "y": -1491.732421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 37, + "x": 8081.55908203125, + "y": -1481.6953125, + "type": "path", + "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": 38, + "x": 8083.4228515625, + "y": -1478.25537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 8080.78125, + "y": -1477.02294921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 8076.6513671875, + "y": -1480.1845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 8078.17138671875, + "y": -1482.16845703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 8080.228515625, + "y": -1481.31494140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 8080.26025390625, + "y": -1479.71826171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 8075.33056640625, + "y": -1484.21044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 8078.767578125, + "y": -1484.1171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 8079.88134765625, + "y": -1482.54052734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 8082.1552734375, + "y": -1482.83740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 8076.3720703125, + "y": -1485.3125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 8076.3701171875, + "y": -1485.32177734375, + "type": "path", + "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": 50, + "x": 8074.34765625, + "y": -1487.22314453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 8074.7998046875, + "y": -1484.33203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": 8074.86474609375, + "y": -1483.45068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 8076.24755859375, + "y": -1484.54345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": 8078.04052734375, + "y": -1484.4130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": 8077.6298828125, + "y": -1482.8388671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 56, + "x": 8074.55908203125, + "y": -1486.14306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 57, + "x": 8073.88525390625, + "y": -1486.95068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 58, + "x": 8076.76416015625, + "y": -1486.3623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 59, + "x": 8074.17822265625, + "y": -1485.47607421875, + "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..fb9e1f87 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔奥奇卡纳塔下01.json @@ -0,0 +1,244 @@ +{ + "info": { + "name": "纳塔奥奇卡纳塔下01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 10030.37109375, + "y": -643.380859375, + "type": "teleport", + "move_mode": "fly", + "action": "force_tp" + }, + { + "id": 2, + "x": 10087.462890625, + "y": -613.9482421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 10079.2578125, + "y": -627.677734375, + "type": "path", + "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": 4, + "x": 10081.140625, + "y": -634.60205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 10080.89453125, + "y": -631.68408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 10079.828125, + "y": -631.58349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 10079.9296875, + "y": -630.388671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 10081.833984375, + "y": -630.470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 10077.279296875, + "y": -631.158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 10076.4130859375, + "y": -630.49755859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 10074.62109375, + "y": -630, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 10074.990234375, + "y": -628.2841796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 10076.044921875, + "y": -628.33349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 10077.755859375, + "y": -627.61962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 10076.720703125, + "y": -625.88232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 10074.259765625, + "y": -627.3310546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 10073.349609375, + "y": -626.7109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 10070.9873046875, + "y": -626.95947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 10072.78125, + "y": -631.0205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 10078.71875, + "y": -638.41015625, + "type": "path", + "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": 21, + "x": 10080.607421875, + "y": -639.28515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 10080.6455078125, + "y": -641.1875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 10079.3408203125, + "y": -641.97705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 10077.8759765625, + "y": -642.39013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 10078.3369140625, + "y": -641.4765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 10077.349609375, + "y": -641.015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 10076.4111328125, + "y": -640.51953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 10076.236328125, + "y": -639.013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 10077.638671875, + "y": -638.4873046875, + "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..58a5b471 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔奥奇卡纳塔右边小岛01.json @@ -0,0 +1,244 @@ +{ + "info": { + "name": "纳塔奥奇卡纳塔右边小岛01", + "type": "collect", + "author": "mfkvfhdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9424.412109375, + "y": -354.63916015625, + "type": "teleport", + "move_mode": "fly", + "action": "force_tp" + }, + { + "id": 2, + "x": 9208.361328125, + "y": -343.896484375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9183.6611328125, + "y": -312.76953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 9175.7578125, + "y": -307.373046875, + "type": "path", + "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": 9176.353515625, + "y": -312.578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9174.6474609375, + "y": -311.42724609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9172.484375, + "y": -309.234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 9174.5263671875, + "y": -307.130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 9175.25, + "y": -305.0986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9174.841796875, + "y": -307.89697265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9174.556640625, + "y": -310.94873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9170.4716796875, + "y": -309.53466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9172.919921875, + "y": -306.13671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 9175.560546875, + "y": -304.8232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 9174.8466796875, + "y": -304.10498046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 9174.666015625, + "y": -299.05224609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 9176.75390625, + "y": -297.59521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 9179.005859375, + "y": -299.40087890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 9178.2607421875, + "y": -301.28955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 9176.2890625, + "y": -301.85595703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 9175.37890625, + "y": -300.6103515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 9174.7705078125, + "y": -300.052734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 9174.06640625, + "y": -304.037109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 9175.8408203125, + "y": -304.4873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 9175.9345703125, + "y": -309.41064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 9174.623046875, + "y": -310.99560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 9176.037109375, + "y": -312.56982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 9172.69140625, + "y": -309.08740234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 9169.5625, + "y": -308.75048828125, + "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..18cc812c --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔彩石顶01.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "纳塔彩石顶01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8372.12890625, + "y": -2196.224609375 + }, + { + "id": 2, + "x": 8462.41796875, + "y": -2260.6533203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 8470.38671875, + "y": -2245.564453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 8469.900390625, + "y": -2250.5185546875, + "type": "path", + "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": 8476.0126953125, + "y": -2257.904296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8474.5791015625, + "y": -2254.390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8468.56640625, + "y": -2255.7294921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8463.4248046875, + "y": -2251.490234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8459.560546875, + "y": -2250.4248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8465.7578125, + "y": -2248.4873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8461.701171875, + "y": -2255.041015625, + "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..ea7ae8e9 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔柴薪之丘01.json @@ -0,0 +1,404 @@ +{ + "info": { + "name": "纳塔柴薪之丘01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9033.3134765625, + "y": -1373.109375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 8908.4921875, + "y": -1386.79736328125, + "type": "path", + "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": 3, + "x": 8906.5712890625, + "y": -1392.001953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 8901.798828125, + "y": -1393.05859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8902.888671875, + "y": -1389.587890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8906.2109375, + "y": -1389.08349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8908.484375, + "y": -1386.826171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8906.03125, + "y": -1385.7607421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8905.8916015625, + "y": -1392.8857421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8909.0361328125, + "y": -1390.619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8900.5419921875, + "y": -1391.38916015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8918.38671875, + "y": -1373.2861328125, + "type": "path", + "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": 13, + "x": 8920.060546875, + "y": -1376.466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8922.298828125, + "y": -1373.62109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8919.4365234375, + "y": -1374.35986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8926.6962890625, + "y": -1311.79443359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8922.849609375, + "y": -1316.201171875, + "type": "path", + "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": 18, + "x": 8926.845703125, + "y": -1319.2578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8926.236328125, + "y": -1320.14892578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 8923.6162109375, + "y": -1316.19140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 8920.8623046875, + "y": -1320.74169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 8920.7177734375, + "y": -1316.7685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 8916.7109375, + "y": -1320.85498046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 8918.08203125, + "y": -1321.99951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 8918.759765625, + "y": -1321.31787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 8920.529296875, + "y": -1317.63623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 8932.720703125, + "y": -1267.13623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 8930.2939453125, + "y": -1260.4853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 8933.28125, + "y": -1259.734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 8929.8974609375, + "y": -1265.22802734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 8933.060546875, + "y": -1267.9228515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 8872.0234375, + "y": -1300.18212890625, + "type": "path", + "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": 8865.2109375, + "y": -1301.49560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 8866.255859375, + "y": -1294.61669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 8871.935546875, + "y": -1296.38720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 8872.080078125, + "y": -1298.76123046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 8869.6953125, + "y": -1299.13720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 8869.16796875, + "y": -1296.16796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 8871.958984375, + "y": -1296.7177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 8870.33203125, + "y": -1301.8505859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 8865.7265625, + "y": -1299.3701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 8847.84765625, + "y": -1275.50146484375, + "type": "path", + "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": 43, + "x": 8844.1376953125, + "y": -1277.77685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 8842.666015625, + "y": -1271.11376953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 8846.8017578125, + "y": -1268.4345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 8849.2900390625, + "y": -1272.859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 8846.482421875, + "y": -1273.48681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 8844.8857421875, + "y": -1277.09521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 8847.3291015625, + "y": -1275.30419921875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔涌流地01 (1).json b/repo/pathing/萃凝晶/纳塔涌流地01 (1).json new file mode 100644 index 00000000..587001a1 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔涌流地01 (1).json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "纳塔涌流地01", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8285.984375, + "y": -2521.44140625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 8275.6416015625, + "y": -2566.638671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 8284.7841796875, + "y": -2570.9091796875, + "type": "path", + "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": 4, + "x": 8289.0751953125, + "y": -2570.333984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8288.96484375, + "y": -2573.1396484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8289.236328125, + "y": -2576.5400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8288.056640625, + "y": -2575.220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8288.1005859375, + "y": -2573.5986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8287.56640625, + "y": -2570.53125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8288.5126953125, + "y": -2570.5166015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8286.333984375, + "y": -2571.3427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8288.7119140625, + "y": -2572.7958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8284.8310546875, + "y": -2572.1123046875, + "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..59213c86 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔深渊古瞭望所01.json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "纳塔深渊古瞭望所01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8179.39599609375, + "y": -1868.03076171875 + }, + { + "id": 2, + "x": 8261.2529296875, + "y": -1879.2470703125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 8277.6201171875, + "y": -1851.47998046875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 8273.3046875, + "y": -1853.32568359375, + "type": "path", + "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": 8269.724609375, + "y": -1846.2724609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8267.20703125, + "y": -1849.63525390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8274.65234375, + "y": -1848.79150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8270.58203125, + "y": -1852.07470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8273.4765625, + "y": -1855.3544921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8285.0244140625, + "y": -1858.4873046875, + "type": "path", + "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": 8284.7607421875, + "y": -1861.68798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8283.228515625, + "y": -1854.63232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8290.2587890625, + "y": -1858.52880859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8291.5927734375, + "y": -1857.18994140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8286.240234375, + "y": -1860.05908203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8283.046875, + "y": -1859.94677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8280.9697265625, + "y": -1856.802734375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔深渊古瞭望所02.json b/repo/pathing/萃凝晶/纳塔深渊古瞭望所02.json new file mode 100644 index 00000000..46896f49 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔深渊古瞭望所02.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "纳塔深渊古瞭望所02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 8179.39599609375, + "y": -1868.03076171875 + }, + { + "id": 2, + "x": 8213.673828125, + "y": -1899.21484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 8206.990234375, + "y": -1942.3671875, + "type": "path", + "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": 4, + "x": 8200.939453125, + "y": -1947.19091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8201.845703125, + "y": -1943.6982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8206.48828125, + "y": -1941.3828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8205.466796875, + "y": -1947.31884765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8209.0439453125, + "y": -1943.84423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8205.87890625, + "y": -1960.5673828125, + "type": "path", + "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": 10, + "x": 8201.6162109375, + "y": -1956.46435546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8205.3134765625, + "y": -1963.9697265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8208.7421875, + "y": -1966.08935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8203.7353515625, + "y": -1960.0625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8204.37890625, + "y": -1955.15234375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔溶水域01 (1).json b/repo/pathing/萃凝晶/纳塔溶水域01 (1).json new file mode 100644 index 00000000..f5e747c3 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔溶水域01 (1).json @@ -0,0 +1,209 @@ +{ + "info": { + "name": "纳塔溶水域01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8637.6962890625, + "y": -2446.62890625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 8636.06640625, + "y": -2467.6796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 8644.989803094233, + "y": -2473.5 + }, + { + "id": 4, + "x": 8726.1845703125, + "y": -2458.1435546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 8739.755859375, + "y": -2454.8447265625, + "type": "path", + "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": 6, + "x": 8746.494140625, + "y": -2448.9501953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8743.763671875, + "y": -2450.318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8745, + "y": -2452.0029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8748.6904296875, + "y": -2458.07421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8744.181640625, + "y": -2459.4228515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8739.1875, + "y": -2461.0380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8738.923828125, + "y": -2459.9521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8739.974609375, + "y": -2459.8291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8740.9951171875, + "y": -2457.705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8741.701171875, + "y": -2456.904296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8738.0185546875, + "y": -2457.9150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8737.046875, + "y": -2458.1328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 8736.80078125, + "y": -2459.9423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8737.1240234375, + "y": -2462.9599609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 8740.017578125, + "y": -2463.4697265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 8740.671875, + "y": -2459.5234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 8741.6396484375, + "y": -2459.1611328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 8741.1591796875, + "y": -2457.5361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 8745.3134765625, + "y": -2452.1767578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 8744.2158203125, + "y": -2458.0556640625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔溶水域02.json b/repo/pathing/萃凝晶/纳塔溶水域02.json new file mode 100644 index 00000000..fb32ed02 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔溶水域02.json @@ -0,0 +1,612 @@ +{ + "info": { + "name": "纳塔溶水域02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 8637.6962890625, + "y": -2446.62890625, + "type": "teleport", + "move_mode": "fly", + "action": "" + }, + { + "id": 2, + "x": 8562.08203125, + "y": -2449.640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 8560.765625, + "y": -2445.1513671875, + "type": "path", + "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": 4, + "x": 8559.892578125, + "y": -2440.931640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 8558.8076171875, + "y": -2441.078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8560.1259765625, + "y": -2445.0390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8562.216796875, + "y": -2443.447265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8559.3134765625, + "y": -2444.46484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8558.05859375, + "y": -2447.248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8558.712890625, + "y": -2448.61328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8559.775390625, + "y": -2446.9609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8564.48828125, + "y": -2459.056640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8551.76171875, + "y": -2457.4990234375, + "type": "path", + "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": 8547.861328125, + "y": -2454.3203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8548.701171875, + "y": -2452.6416015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8548.1201171875, + "y": -2454.3681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8549.591796875, + "y": -2455.8486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 8551.8779296875, + "y": -2457.5244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8553.96875, + "y": -2456.5712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 8554.02734375, + "y": -2455.0390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 8552.357421875, + "y": -2455.7119140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 8550.6826171875, + "y": -2455.537109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 8551.1953125, + "y": -2453.66015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 8502.0537109375, + "y": -2489.2109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 8491.79296875, + "y": -2488.4189453125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 26, + "x": 8488.529296875, + "y": -2488.3408203125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 27, + "x": 8450.4716796875, + "y": -2484.38671875, + "type": "path", + "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": 28, + "x": 8443.5166015625, + "y": -2486.619140625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 29, + "x": 8443.7724609375, + "y": -2485.0400390625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 30, + "x": 8445.5322265625, + "y": -2484.291015625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 31, + "x": 8447.5078125, + "y": -2484.080078125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 32, + "x": 8448.5390625, + "y": -2484.265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 8449.2431640625, + "y": -2482.6005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 8447.298828125, + "y": -2482.5849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 8449.537109375, + "y": -2483.1064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 8450.083984375, + "y": -2482.3671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 8444.7548828125, + "y": -2478.8291015625, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 38, + "x": 8428.3515625, + "y": -2475.8046875, + "type": "path", + "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": 39, + "x": 8424.94921875, + "y": -2477.33203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 8422.9931640625, + "y": -2474.9619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 8423.892578125, + "y": -2474.439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 8426.908203125, + "y": -2474.556640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 8427.0966796875, + "y": -2473.615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 8425.970703125, + "y": -2475.76953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 8425.7314453125, + "y": -2476.6474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 8422.24609375, + "y": -2477.99609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 8422.400390625, + "y": -2476.326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 8428.75, + "y": -2473.2216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 8427.302734375, + "y": -2476.7216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": 8426.8974609375, + "y": -2475.9521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 8452.244140625, + "y": -2528.9267578125, + "type": "path", + "move_mode": "walk", + "action": "stop_flying" + }, + { + "id": 52, + "x": 8455.4345703125, + "y": -2547.921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 8432.3466796875, + "y": -2564.8525390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": 8414.0234375, + "y": -2564.9833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": 8388.244140625, + "y": -2586.466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 56, + "x": 8362.1650390625, + "y": -2622.16015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 57, + "x": 8380.466796875, + "y": -2629.5771484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 58, + "x": 8384.376953125, + "y": -2627.734375, + "type": "path", + "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": 59, + "x": 8380.8037109375, + "y": -2625.6455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 60, + "x": 8382.455078125, + "y": -2623.8203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 61, + "x": 8383.263671875, + "y": -2622.388671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 62, + "x": 8383.23828125, + "y": -2622.4462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 63, + "x": 8384.693359375, + "y": -2625.0400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 64, + "x": 8385.513671875, + "y": -2625.5185546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 65, + "x": 8386.30859375, + "y": -2625.0009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 66, + "x": 8386.810546875, + "y": -2625.7685546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 67, + "x": 8384.9990234375, + "y": -2626.126953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 68, + "x": 8383.009765625, + "y": -2626.0419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 69, + "x": 8382.1474609375, + "y": -2626.5087890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 70, + "x": 8383.392578125, + "y": -2626.818359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 71, + "x": 8385.8125, + "y": -2627.998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 72, + "x": 8385.8525390625, + "y": -2625.072265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 73, + "x": 8385.0947265625, + "y": -2624.521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 74, + "x": 8384.078125, + "y": -2626.0361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 75, + "x": 8382.6875, + "y": -2626.818359375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔烟迷主.json b/repo/pathing/萃凝晶/纳塔烟迷主.json new file mode 100644 index 00000000..8a0da0c1 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔烟迷主.json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "纳塔烟迷主", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9685.994140625, + "y": -1620.5361328125, + "type": "teleport", + "move_mode": "fly", + "action": "force_tp" + }, + { + "id": 2, + "x": 9668.0654296875, + "y": -1676.92919921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9669.5859375, + "y": -1692.1494140625, + "type": "path", + "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": 4, + "x": 9674.423828125, + "y": -1694.43212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9672.62890625, + "y": -1692.44921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9670.3740234375, + "y": -1695.4462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9668.169921875, + "y": -1698.82275390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 9664.5732421875, + "y": -1700.40380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 9666.0439453125, + "y": -1700.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9666.341796875, + "y": -1698.359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9667.744140625, + "y": -1694.2548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9665.73046875, + "y": -1696.63525390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9663.359375, + "y": -1698.7841796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 9662.919921875, + "y": -1695.4169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 9668.1962890625, + "y": -1691.07177734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 9671.90625, + "y": -1691.5732421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 9658.892578125, + "y": -1701.42626953125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔翘枝崖 (1).json b/repo/pathing/萃凝晶/纳塔翘枝崖 (1).json new file mode 100644 index 00000000..311393df --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔翘枝崖 (1).json @@ -0,0 +1,332 @@ +{ + "info": { + "name": "纳塔翘枝崖", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "force_tp", + "move_mode": "fly", + "type": "teleport", + "x": 9719.20703125, + "y": -852.04443359375 + }, + { + "id": 2, + "x": 9764.248046875, + "y": -838.154296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9760.0390625, + "y": -830.92041015625, + "type": "path", + "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": 4, + "x": 9760.478515625, + "y": -829.0888671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9758.505859375, + "y": -827.10693359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9756.7958984375, + "y": -827.16552734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9755.90625, + "y": -829.05859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 9756.8154296875, + "y": -831.56884765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 9758.7958984375, + "y": -832.1748046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9760.115234375, + "y": -831.0361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9759.4736328125, + "y": -829.68994140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9758.7119140625, + "y": -827.85205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9763.12109375, + "y": -824.0400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 9761.947265625, + "y": -819.51904296875, + "type": "path", + "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": 15, + "x": 9762.123046875, + "y": -822.3759765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 9764.859375, + "y": -821.8154296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 9767.103515625, + "y": -818.9306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 9763.7646484375, + "y": -816.28564453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 9761.16015625, + "y": -816.36376953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 9760.408203125, + "y": -816.96923828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 9759.724609375, + "y": -817.48486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 9759.697265625, + "y": -817.4990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 9759.7216796875, + "y": -817.47216796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 9761.072265625, + "y": -817.67578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 9762.4326171875, + "y": -817.71240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 9761.701171875, + "y": -819.93408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 9763.01171875, + "y": -821.5654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 9766.1630859375, + "y": -818.77392578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 9854.7548828125, + "y": -815.43994140625, + "type": "path", + "move_mode": "swim", + "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": 30, + "x": 9855.626953125, + "y": -817.71044921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 9857.5830078125, + "y": -817.7822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 32, + "x": 9856.9296875, + "y": -819.66552734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 9858.46484375, + "y": -815.962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 9858.4638671875, + "y": -815.947265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 9857.0224609375, + "y": -813.55224609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 9857.5859375, + "y": -812.11962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 9856.509765625, + "y": -812.56787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 9856.662109375, + "y": -813.57421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 9855.6552734375, + "y": -815.4248046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 9854.80859375, + "y": -815.76171875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔花羽会.json b/repo/pathing/萃凝晶/纳塔花羽会.json new file mode 100644 index 00000000..5e5b6f4c --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔花羽会.json @@ -0,0 +1,204 @@ +{ + "info": { + "name": "纳塔花羽会", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9587.310546875, + "y": -1278.5849609375, + "type": "teleport", + "move_mode": "fly", + "action": "force_tp" + }, + { + "id": 2, + "x": 9626.7412109375, + "y": -1313.4033203125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9624.3544921875, + "y": -1308.8447265625, + "type": "path", + "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": 4, + "x": 9619.3251953125, + "y": -1311.9453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9618.384765625, + "y": -1310.1201171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9620.80078125, + "y": -1311.67138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9623.1015625, + "y": -1304.79345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 9628.1328125, + "y": -1305.912109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 9628.1328125, + "y": -1305.912109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9630.466796875, + "y": -1306.5771484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9625.3759765625, + "y": -1309.0146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9624.1123046875, + "y": -1307.53271484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9624.4072265625, + "y": -1305.69482421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 9623.046875, + "y": -1311.42822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 9619.2421875, + "y": -1311.73046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 9619.5751953125, + "y": -1309.3623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 9683.443359375, + "y": -1359.484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 9689.0302734375, + "y": -1348.29150390625, + "type": "path", + "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": 19, + "x": 9680.880859375, + "y": -1346.67822265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 9684.75, + "y": -1348.86083984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 9683.791015625, + "y": -1345.1240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 9689.6318359375, + "y": -1345.7236328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 9686.90625, + "y": -1345.181640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 9691.3203125, + "y": -1344.01806640625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔花羽会003.json b/repo/pathing/萃凝晶/纳塔花羽会003.json new file mode 100644 index 00000000..e0ce569f --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔花羽会003.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "纳塔花羽会003", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 3, + "x": 9548.275390625, + "y": -1116.56103515625, + "type": "teleport", + "move_mode": "fly", + "action": "force_tp" + }, + { + "id": 2, + "x": 9607.244140625, + "y": -1148.734375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9598.306640625, + "y": -1153.27294921875, + "type": "path", + "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": 4, + "x": 9599.4189453125, + "y": -1158.9775390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9595.931640625, + "y": -1157.55078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9595.9833984375, + "y": -1155.68701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9592.244140625, + "y": -1156.658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 9591.2724609375, + "y": -1155.86767578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 9590.9384765625, + "y": -1152.04931640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9592.8955078125, + "y": -1152.7138671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9596.099609375, + "y": -1152.88330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9599.1826171875, + "y": -1152.63330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9599.0625, + "y": -1155.8544921875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔花羽会004.json b/repo/pathing/萃凝晶/纳塔花羽会004.json new file mode 100644 index 00000000..4962c5d3 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔花羽会004.json @@ -0,0 +1,612 @@ +{ + "info": { + "name": "纳塔花羽会004", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9548.275390625, + "y": -1116.56103515625, + "action": "force_tp", + "move_mode": "fly", + "type": "teleport" + }, + { + "id": 2, + "x": 9743.484375, + "y": -1102.84326171875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 9735.76953125, + "y": -1096.28369140625, + "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": 4, + "x": 9731.9599609375, + "y": -1099.46044921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 9729.5166015625, + "y": -1097.8095703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 9733.8076171875, + "y": -1095.267578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 9733.103515625, + "y": -1089.52490234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 9736.2158203125, + "y": -1088.7373046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 9736.078125, + "y": -1092.76611328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 9736.869140625, + "y": -1095.6708984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 9734.8388671875, + "y": -1095.50244140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 9732.455078125, + "y": -1095.486328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 9733.068359375, + "y": -1097.658203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 9732.14453125, + "y": -1100.3349609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 9729.4248046875, + "y": -1099.279296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 9733.3671875, + "y": -1089.3359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 9737.947265625, + "y": -1071.302734375, + "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": 9735.880859375, + "y": -1072.6865234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 9735.9462890625, + "y": -1069.6591796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 9737.5927734375, + "y": -1069.6826171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 9738.16796875, + "y": -1068.75390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 9758.005859375, + "y": -1051.34130859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": 9757.0576171875, + "y": -1042.107421875, + "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": 24, + "x": 9752.236328125, + "y": -1043.61767578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 25, + "x": 9757.380859375, + "y": -1037.93701171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 26, + "x": 9757.6474609375, + "y": -1040.80126953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 27, + "x": 9759.642578125, + "y": -1040.41357421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 28, + "x": 9756.5126953125, + "y": -1041.705078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 29, + "x": 9754.759765625, + "y": -1042.87158203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 30, + "x": 9756.578125, + "y": -1042.08251953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 31, + "x": 9831.763671875, + "y": -1044.65771484375, + "type": "path", + "move_mode": "swim", + "action": "" + }, + { + "id": 32, + "x": 9860.1181640625, + "y": -1004.61669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 9872.697265625, + "y": -998.61474609375, + "type": "path", + "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": 34, + "x": 9876.5439453125, + "y": -995.89404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 9877.6689453125, + "y": -999.30029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 9877.232421875, + "y": -1000.2431640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 9875.04296875, + "y": -999.72802734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 9872.732421875, + "y": -999.86474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 39, + "x": 9869.447265625, + "y": -1002.345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 9869.775390625, + "y": -1004.18798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 9874.3427734375, + "y": -1002.33935546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 9873.830078125, + "y": -1001.73095703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 9875.314453125, + "y": -1001.55517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 9874.66015625, + "y": -1000.98291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 9873.240234375, + "y": -1001.3359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 9871.494140625, + "y": -1001.53076171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 9872.669921875, + "y": -998.173828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 9882.61328125, + "y": -974.89013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 9907.9052734375, + "y": -959.033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": 9923.4267578125, + "y": -937.75439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 9942.609375, + "y": -909.74853515625, + "type": "path", + "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": 52, + "x": 9944.125, + "y": -904.642578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 53, + "x": 9943.294921875, + "y": -906.79296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 54, + "x": 9944.017578125, + "y": -908.681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 55, + "x": 9945.6767578125, + "y": -911.05712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 56, + "x": 9946.685546875, + "y": -911.53369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 57, + "x": 9946.6552734375, + "y": -911.5869140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 58, + "x": 9945.2099609375, + "y": -913.01708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 59, + "x": 9944.1796875, + "y": -912.5263671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 60, + "x": 9942.828125, + "y": -912.5615234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 61, + "x": 9941.119140625, + "y": -911.5478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 62, + "x": 9949.23046875, + "y": -920.6162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 63, + "x": 9957.01171875, + "y": -912.806640625, + "type": "path", + "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": 64, + "x": 9959.271484375, + "y": -912.267578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 65, + "x": 9961.154296875, + "y": -911.64501953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 66, + "x": 9962.5751953125, + "y": -909.4033203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 67, + "x": 9961.9326171875, + "y": -908.8798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 68, + "x": 9959.2236328125, + "y": -907.4736328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 69, + "x": 9959.220703125, + "y": -907.439453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 70, + "x": 9958.037109375, + "y": -908.8955078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 71, + "x": 9956.9423828125, + "y": -911.75390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 72, + "x": 9958.234375, + "y": -912.46630859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 73, + "x": 9959.455078125, + "y": -910.0986328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 74, + "x": 9958.935546875, + "y": -908.86962890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 75, + "x": 9958.185546875, + "y": -909.38232421875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔花羽会02 (1).json b/repo/pathing/萃凝晶/纳塔花羽会02 (1).json new file mode 100644 index 00000000..b08b938d --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔花羽会02 (1).json @@ -0,0 +1,428 @@ +{ + "info": { + "name": "纳塔花羽会02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9548.66796875, + "y": -1116.03125, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "id": 2, + "x": 9555.9677734375, + "y": -1107.13916015625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": 9579.2216796875, + "y": -1083.85888671875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 9601.9013671875, + "y": -1062.2705078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9618.94921875, + "y": -1048.876953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": 9605.001953125, + "y": -1059.4775390625, + "type": "path", + "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": 7, + "x": 9601.453125, + "y": -1068.4189453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 9604.21875, + "y": -1067.40625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 9601.4833984375, + "y": -1062.77978515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9595.45703125, + "y": -1061.07666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9601.576171875, + "y": -1059.7763671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9602.2763671875, + "y": -1057.87158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9604.0927734375, + "y": -1058.80517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 9633.4619140625, + "y": -1036.7255859375, + "type": "path", + "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": 15, + "x": 9640.21484375, + "y": -1030.81982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 9640.900390625, + "y": -1035.62548828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 9634.2490234375, + "y": -1032.13037109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 9637.7861328125, + "y": -1027.6552734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 9638.3251953125, + "y": -1031.38623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 9635.4619140625, + "y": -1038.9208984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 9659.986328125, + "y": -1012.88818359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 9666.7626953125, + "y": -995.82666015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 9648.0947265625, + "y": -989.23779296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 9648.962890625, + "y": -993.0361328125, + "type": "path", + "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": 9652.7314453125, + "y": -993.96533203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 9646.197265625, + "y": -995.876953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 9648.720703125, + "y": -994.2158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 9647.6640625, + "y": -993.7490234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 9650.3671875, + "y": -992.068359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 9648.1650390625, + "y": -990.130859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 9569.5107421875, + "y": -977.67236328125, + "type": "path", + "move_mode": "swim", + "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": 32, + "x": 9566.1953125, + "y": -979.798828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 33, + "x": 9565.833984375, + "y": -976.94189453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 34, + "x": 9566.015625, + "y": -975.19384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 35, + "x": 9565.849609375, + "y": -976.015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 36, + "x": 9569.5283203125, + "y": -977.2197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 37, + "x": 9551.4931640625, + "y": -999.64990234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 38, + "x": 9541.6630859375, + "y": -972.5361328125, + "type": "path", + "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": 39, + "x": 9541.6103515625, + "y": -968.81494140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 40, + "x": 9539.0986328125, + "y": -971.10400390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 41, + "x": 9542.6455078125, + "y": -965.8623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 42, + "x": 9545.048828125, + "y": -967.6328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 43, + "x": 9545.3291015625, + "y": -970.43212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 44, + "x": 9544.8134765625, + "y": -971.326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 45, + "x": 9544.0732421875, + "y": -973.1435546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 46, + "x": 9544.7021484375, + "y": -974.0849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 47, + "x": 9541.8193359375, + "y": -976.56982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 48, + "x": 9537.6376953125, + "y": -973.47998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 49, + "x": 9541.375, + "y": -967.47021484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 50, + "x": 9542.275390625, + "y": -965.8720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 51, + "x": 9542.564453125, + "y": -968.20458984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 52, + "x": 9541.64453125, + "y": -971.11474609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔蕴火的废墟.json b/repo/pathing/萃凝晶/纳塔蕴火的废墟.json new file mode 100644 index 00000000..e44bcb7a --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔蕴火的废墟.json @@ -0,0 +1,260 @@ +{ + "info": { + "name": "纳塔蕴火的废墟", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7796.73046875, + "y": -1870.728515625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7820.3935546875, + "y": -1861.3798828125, + "type": "path", + "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": 3, + "x": 7820.47216796875, + "y": -1854.97998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 7826.61572265625, + "y": -1858.39111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 7830.28173828125, + "y": -1860.78271484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 7832.658203125, + "y": -1858.35498046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7825.861328125, + "y": -1860.62109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7826.3193359375, + "y": -1861.90380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 7817.75830078125, + "y": -1860.7001953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 7815.19140625, + "y": -1862.107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 7863.23779296875, + "y": -1839.32080078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 7953.869140625, + "y": -1875.51953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 7969.6640625, + "y": -1896.92041015625, + "type": "path", + "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": 7972.75146484375, + "y": -1904.49560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 7968.7060546875, + "y": -1899.95166015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 7968.68896484375, + "y": -1894.291015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 7964.73779296875, + "y": -1889.892578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 7970.57373046875, + "y": -1892.47802734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8004.59033203125, + "y": -1924.28564453125, + "type": "path", + "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": 20, + "x": 8003.396484375, + "y": -1929.10009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 7997.8974609375, + "y": -1921.04150390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 8005.23876953125, + "y": -1918.0390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 8009.5732421875, + "y": -1925.00146484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 7997.994140625, + "y": -1918.5341796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 8001.9619140625, + "y": -1915.509765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 8015.8974609375, + "y": -1932.669921875, + "type": "path", + "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": 27, + "x": 8020.18798828125, + "y": -1937.81298828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 8016.15576171875, + "y": -1936.43359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 8016.22119140625, + "y": -1931.71435546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 8014.59765625, + "y": -1929.2646484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 31, + "x": 8020.45751953125, + "y": -1933.08837890625, + "type": "path", + "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 new file mode 100644 index 00000000..244a3f25 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔虹灵净土.json @@ -0,0 +1,252 @@ +{ + "info": { + "name": "纳塔虹灵净土", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9038.8125, + "y": -2429.3642578125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 8924.376953125, + "y": -2473.8837890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 8823.7490234375, + "y": -2505.9814453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 8824.249507735583, + "y": -2519.75, + "type": "path", + "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": 8831.3076171875, + "y": -2512.2412109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 8831.423828125, + "y": -2514.484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 8828.90625, + "y": -2512.912109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 8825.154296875, + "y": -2519.9921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 8822.5693359375, + "y": -2523.837890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 8819.6435546875, + "y": -2522.849609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 8820.216796875, + "y": -2522.0009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 8822.080078125, + "y": -2519.873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 8822.59765625, + "y": -2521.9326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 8825.443359375, + "y": -2519.48046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 8827.5673828125, + "y": -2517.7353515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 8830.56640625, + "y": -2515.212890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 8831.37109375, + "y": -2511.404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 8821.6240234375, + "y": -2518.6923828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 8819.970703125, + "y": -2522.765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 8828.7431640625, + "y": -2511.5693359375, + "type": "path", + "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": 21, + "x": 8833.255859375, + "y": -2510.369140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 8833.318359375, + "y": -2512.0341796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 8831.359375, + "y": -2514.4833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 8828.5166015625, + "y": -2517.423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 8827.037109375, + "y": -2518.20703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 8825.7783203125, + "y": -2516.365234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 27, + "x": 8828.630859375, + "y": -2514.923828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 8829.353515625, + "y": -2512.8486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 8827.53515625, + "y": -2514.224609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 30, + "x": 8825.0390625, + "y": -2517.4150390625, + "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..dcae969f --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔踞石山01.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "纳塔踞石山01", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7977.74853515625, + "y": -2425.7470703125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7977.74853515625, + "y": -2425.7470703125, + "type": "path", + "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": 3, + "x": 7972.80322265625, + "y": -2432.1572265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 7984.880859375, + "y": -2419.169921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 7985.27490234375, + "y": -2424.01171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 7977.84814453125, + "y": -2420.19921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7978.48828125, + "y": -2425.712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7984.06640625, + "y": -2419.974609375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔踞石山02.json b/repo/pathing/萃凝晶/纳塔踞石山02.json new file mode 100644 index 00000000..b5b0f4ca --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔踞石山02.json @@ -0,0 +1,140 @@ +{ + "info": { + "name": "纳塔踞石山02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7853.8505859375, + "y": -2209.52734375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7853.845703125, + "y": -2209.5732421875, + "type": "path", + "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": 3, + "x": 7863.98779296875, + "y": -2212.7158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": 7864.93505859375, + "y": -2208.125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 7861.05517578125, + "y": -2208.5048828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 7863.08203125, + "y": -2205.10546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7857.0458984375, + "y": -2206.38671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7856.126953125, + "y": -2204.5048828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 7851.7529296875, + "y": -2204.1669921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 7851.35107421875, + "y": -2207.517578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 7848.4482421875, + "y": -2207.7041015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 7850.220703125, + "y": -2210.107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 7855.1015625, + "y": -2208.53515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 7856.837890625, + "y": -2210.5810546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 7855.26953125, + "y": -2206.029296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 7850.8046875, + "y": -2204.0947265625, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ 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..486f330f --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔踞石山03 (1).json @@ -0,0 +1,244 @@ +{ + "info": { + "name": "纳塔踞石山03", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 7845.060546875, + "y": -2047.36962890625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": 7840.9619140625, + "y": -2069.59375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 7846.4296875, + "y": -2073.9755859375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": 7911.03173828125, + "y": -2127.4267578125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 7897.79541015625, + "y": -2117.8525390625, + "type": "path", + "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": 6, + "x": 7893.27197265625, + "y": -2111.318359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 7892.52587890625, + "y": -2112.8427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 7896.46875, + "y": -2113.3701171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 7895.5712890625, + "y": -2116.8681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 7894.841796875, + "y": -2122.3994140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 7896.88671875, + "y": -2120.8720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 7893.35498046875, + "y": -2119.6015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 7891.4658203125, + "y": -2116.9384765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 7894.4033203125, + "y": -2117.0263671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 7898.2490234375, + "y": -2116.6162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 7930.791015625, + "y": -2136.11328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 7965.84423828125, + "y": -2132.9716796875, + "type": "path", + "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": 18, + "x": 7969.49609375, + "y": -2128.2998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 7973.5634765625, + "y": -2132.1806640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 7967.0849609375, + "y": -2130.853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 7964.9345703125, + "y": -2134.3984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 7967.591796875, + "y": -2135.466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 7969.31005859375, + "y": -2127.9677734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 24, + "x": 7972.1328125, + "y": -2128.7626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 25, + "x": 7988.4599609375, + "y": -2148.61328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 26, + "x": 7984.072265625, + "y": -2158.0244140625, + "type": "path", + "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": 27, + "x": 7980.17578125, + "y": -2157.5791015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 28, + "x": 7982.39111328125, + "y": -2160.44921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 29, + "x": 7983.033203125, + "y": -2154.6669921875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔镜壁山.json b/repo/pathing/萃凝晶/纳塔镜壁山.json new file mode 100644 index 00000000..c602c71e --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔镜壁山.json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "纳塔镜壁山", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9989.5380859375, + "y": -1607.7685546875, + "action": "force_tp", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 10005.619140625, + "y": -1605.603515625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 10029.1943359375, + "y": -1599.3447265625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 10020.14453125, + "y": -1603.1982421875, + "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": 10016.6728515625, + "y": -1599.21875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 10013.052734375, + "y": -1602.4765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 10015.1494140625, + "y": -1604.7060546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 10016.595703125, + "y": -1605.05712890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 10018.3681640625, + "y": -1604.06298828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 10020.8505859375, + "y": -1603.73876953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 10020.2734375, + "y": -1607.85693359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 10017.8330078125, + "y": -1608.564453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 10016.21484375, + "y": -1606.79248046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 10018.1298828125, + "y": -1604.66259765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": 10018.916015625, + "y": -1601.8759765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 9987.7783203125, + "y": -1564.94140625, + "type": "path", + "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": 17, + "x": 9981.8330078125, + "y": -1560.42919921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 9988.056640625, + "y": -1557.09521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 9989.837890625, + "y": -1563.76611328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 9987.576171875, + "y": -1565.18115234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 9984.9375, + "y": -1563.9404296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 9983.4423828125, + "y": -1561.89208984375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔镜壁山七天神像 (1).json b/repo/pathing/萃凝晶/纳塔镜壁山七天神像 (1).json new file mode 100644 index 00000000..9357e9d8 --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔镜壁山七天神像 (1).json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "纳塔镜壁山七天神像", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9540.630859375, + "y": -1784.59375, + "type": "teleport", + "move_mode": "walk", + "action": "force_tp" + }, + { + "id": 2, + "x": 9459.478515625, + "y": -1779.16259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 9464.40234375, + "y": -1774.79248046875, + "type": "path", + "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": 4, + "x": 9464.361328125, + "y": -1777.86767578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9467.265625, + "y": -1778.03466796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9466.310546875, + "y": -1775.90234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9466.767578125, + "y": -1773.939453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 9467.326171875, + "y": -1771.064453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 9465.3564453125, + "y": -1768.59326171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9465.017578125, + "y": -1769.87646484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9467.1484375, + "y": -1771.2109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9464.265625, + "y": -1772.10205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9466.607421875, + "y": -1772.78515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 9466.2236328125, + "y": -1774.16162109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 15, + "x": 9456.0703125, + "y": -1768.5703125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/萃凝晶/纳塔镜壁山七天神像02 (1).json b/repo/pathing/萃凝晶/纳塔镜壁山七天神像02 (1).json new file mode 100644 index 00000000..c628b20a --- /dev/null +++ b/repo/pathing/萃凝晶/纳塔镜壁山七天神像02 (1).json @@ -0,0 +1,196 @@ +{ + "info": { + "name": "纳塔镜壁山七天神像02", + "type": "collect", + "author": "mfkvfhpdx", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 9540.62109375, + "y": -1784.52197265625, + "type": "teleport", + "move_mode": "fly", + "action": "force_tp" + }, + { + "id": 2, + "x": 9561.2998046875, + "y": -1700.36279296875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 3, + "x": 9583.44140625, + "y": -1713.8935546875, + "type": "path", + "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": 4, + "x": 9584.0009765625, + "y": -1710.19287109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": 9585.6220703125, + "y": -1713.4658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": 9585.8505859375, + "y": -1714.35205078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": 9584.83984375, + "y": -1717.96826171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 9585.712890625, + "y": -1716.6005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 9583.2119140625, + "y": -1719.07958984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 9582.1708984375, + "y": -1718.4853515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 9582.423828125, + "y": -1715.1279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 9580.677734375, + "y": -1715.44873046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 9576.0546875, + "y": -1712.1240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 9575.275390625, + "y": -1728.6494140625, + "type": "path", + "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": 15, + "x": 9578.96875, + "y": -1727.06982421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 9577.66796875, + "y": -1730.9375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 9577.2099609375, + "y": -1728.013671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": 9574.583984375, + "y": -1732.998046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": 9572.5302734375, + "y": -1735.072265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": 9571.529296875, + "y": -1731.5419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 9569.74609375, + "y": -1732.1279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 22, + "x": 9573.333984375, + "y": -1732.51904296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 9574.818359375, + "y": -1731.376953125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/落落梅/望风山地1x24.json b/repo/pathing/落落梅/望风山地1x24.json deleted file mode 100644 index bf801995..00000000 --- a/repo/pathing/落落梅/望风山地1x24.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"望风山地1x24", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":-1272.5078125, - "y":2722.89111328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1263.2421875, - "y":2750.99560546875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1254.302734375, - "y":2764.2880859375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1219.087890625, - "y":2753.079833984375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1142.9013671875, - "y":2778.504638671875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1122.6328125, - "y":2786.236572265625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1099.109375, - "y":2778.91357421875, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-1062.796875, - "y":2779.894287109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1095.2402388086812, - "y":2718.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1084.7060546875, - "y":2649.568603515625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1074.6552734375, - "y":2640.092529296875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1118.29296875, - "y":2603.93115234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1156.6181640625, - "y":2658.3427734375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1176.8037109375, - "y":2685.01171875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/落落梅/望风山地2x28.json b/repo/pathing/落落梅/望风山地2x28.json deleted file mode 100644 index 935011b8..00000000 --- a/repo/pathing/落落梅/望风山地2x28.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"望风山地2x28", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":-1273.70703125, - "y":2721.664794921875, - "type":"teleport", - "move_mode":"walk", - "action":"" - }, - { - "x":-1277.54296875, - "y":2716.417724609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1293.5673828125, - "y":2685.89208984375, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":-1304.7099609375, - "y":2672.21484375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1307.853515625, - "y":2674.1318359375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1325.427734375, - "y":2679.72119140625, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":-1362.875, - "y":2681.56884765625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1367.9921875, - "y":2681.28662109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1368.8798828125, - "y":2684.73388671875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1414.0, - "y":2670.0, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":-1425.8994140625, - "y":2671.697021484375, - "type":"target", - "move_mode":"fly", - "action":"" - }, - { - "x":-1442.8955078125, - "y":2672.922607421875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1461.328125, - "y":2673.90576171875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1487.2177734375, - "y":2669.09814453125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1451.1611328125, - "y":2711.33984375, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":-1427.4111328125, - "y":2744.72412109375, - "type":"target", - "move_mode":"fly", - "action":"" - }, - { - "x":-1417.7353515625, - "y":2749.205322265625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1406.572265625, - "y":2767.641357421875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1404.0087890625, - "y":2806.2861328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1416.3759765625, - "y":2820.66064453125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1455.2314453125, - "y":2840.6015625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1398.931640625, - "y":2844.23828125, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":-1360.6103515625, - "y":2844.04296875, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":-1350.5390625, - "y":2847.770263671875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] -} \ No newline at end of file diff --git a/repo/pathing/落落梅/望风山地3x16.json b/repo/pathing/落落梅/望风山地3x16.json deleted file mode 100644 index b4187873..00000000 --- a/repo/pathing/落落梅/望风山地3x16.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"望风山地3x16", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":-1629.3642578125, - "y":2834.408203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1640.2412109375, - "y":2868.231201171875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1626.0022700444933, - "y":2910.5, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-1622.078125, - "y":2923.192626953125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1631.078125, - "y":2927.06494140625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1650.080078125, - "y":2929.49658203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1666.3515625, - "y":2933.884521484375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1707.9934168709715, - "y":2934.0, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-1720.3017578125, - "y":2934.336669921875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1727.1533203125, - "y":2920.980712890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1739.77734375, - "y":2913.212158203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1774.2646484375, - "y":2907.720703125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1790.306640625, - "y":2918.33056640625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1769.3798828125, - "y":2932.182373046875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1763.775390625, - "y":2933.12939453125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1810.21484375, - "y":2929.4658203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1850.5244140625, - "y":2915.93017578125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1862.1005859375, - "y":2895.688232421875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1857.900390625, - "y":2870.1259765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1846.8193359375, - "y":2847.69970703125, - "type":"target", - "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..87c7cda5 Binary files /dev/null and b/repo/pathing/落落莓/icon.ico differ diff --git a/repo/pathing/落落莓/望风山地1x24.json b/repo/pathing/落落莓/望风山地1x24.json new file mode 100644 index 00000000..23fa0790 --- /dev/null +++ b/repo/pathing/落落莓/望风山地1x24.json @@ -0,0 +1,110 @@ +{ + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "望风山地1x24", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": -1272.5078125, + "y": 2722.89111328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": -1263.2421875, + "y": 2750.99560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1254.302734375, + "y": 2764.2880859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1219.087890625, + "y": 2753.079833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1142.9013671875, + "y": 2778.504638671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1122.6328125, + "y": 2786.236572265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1099.109375, + "y": 2778.91357421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -1062.796875, + "y": 2779.894287109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1095.2402388086812, + "y": 2718.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1084.7060546875, + "y": 2649.568603515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1074.6552734375, + "y": 2640.092529296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1118.29296875, + "y": 2603.93115234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1156.6181640625, + "y": 2658.3427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1176.8037109375, + "y": 2685.01171875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/落落莓/望风山地2x28.json b/repo/pathing/落落莓/望风山地2x28.json new file mode 100644 index 00000000..5175bfaf --- /dev/null +++ b/repo/pathing/落落莓/望风山地2x28.json @@ -0,0 +1,204 @@ +{ + "info": { + "name": "望风山地2x28", + "type": "collect", + "author": "yulalaa", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1273.70703125, + "y": 2721.664794921875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1277.54296875, + "y": 2716.417724609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1293.5673828125, + "y": 2685.89208984375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -1304.7099609375, + "y": 2672.21484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -1307.853515625, + "y": 2674.1318359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -1325.427734375, + "y": 2679.72119140625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 7, + "x": -1362.875, + "y": 2681.56884765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -1367.9921875, + "y": 2681.28662109375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": -1368.8798828125, + "y": 2684.73388671875, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 10, + "x": -1414, + "y": 2670, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -1425.8994140625, + "y": 2671.697021484375, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 12, + "x": -1442.8955078125, + "y": 2672.922607421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": -1461.328125, + "y": 2673.90576171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -1487.2177734375, + "y": 2669.09814453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": -1451.1611328125, + "y": 2711.33984375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 16, + "x": -1427.4111328125, + "y": 2744.72412109375, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 17, + "x": -1417.7353515625, + "y": 2749.205322265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": -1406.572265625, + "y": 2767.641357421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": -1404.0087890625, + "y": 2806.2861328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": -1416.3759765625, + "y": 2820.66064453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": -1455.2314453125, + "y": 2840.6015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": -1398.931640625, + "y": 2844.23828125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 23, + "x": -1360.6103515625, + "y": 2844.04296875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 24, + "x": -1350.5390625, + "y": 2847.770263671875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} diff --git a/repo/pathing/落落莓/望风山地3x16.json b/repo/pathing/落落莓/望风山地3x16.json new file mode 100644 index 00000000..dfdd7d68 --- /dev/null +++ b/repo/pathing/落落莓/望风山地3x16.json @@ -0,0 +1,152 @@ +{ + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "望风山地3x16", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": -1629.3642578125, + "y": 2834.408203125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": -1640.2412109375, + "y": 2868.231201171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1626.0022700444933, + "y": 2910.5, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -1622.078125, + "y": 2923.192626953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1631.078125, + "y": 2927.06494140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1650.080078125, + "y": 2929.49658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1666.3515625, + "y": 2933.884521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1707.9934168709715, + "y": 2934, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -1720.3017578125, + "y": 2934.336669921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1727.1533203125, + "y": 2920.980712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1739.77734375, + "y": 2913.212158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1774.2646484375, + "y": 2907.720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1790.306640625, + "y": 2918.33056640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1769.3798828125, + "y": 2932.182373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1763.775390625, + "y": 2933.12939453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1810.21484375, + "y": 2929.4658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1850.5244140625, + "y": 2915.93017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1862.1005859375, + "y": 2895.688232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1857.900390625, + "y": 2870.1259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1846.8193359375, + "y": 2847.69970703125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/01-蒲公英-蒙德城门口9个.json b/repo/pathing/蒲公英/01-蒲公英-蒙德城门口9个.json new file mode 100644 index 00000000..3b2701b1 --- /dev/null +++ b/repo/pathing/蒲公英/01-蒲公英-蒙德城门口9个.json @@ -0,0 +1,180 @@ +{ + "info": { + "name": "01-蒲公英-蒙德城门口9个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1120.7939453125, + "y": 2190.409912109375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1081.12109375, + "y": 2177.13623046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1069.828125, + "y": 2182.971435546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -1052.0712890625, + "y": 2171.8759765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -999.7822265625, + "y": 2198.776611328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -962.5810546875, + "y": 2216.734619140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -950.8837890625, + "y": 2196.876953125, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -943.349609375, + "y": 2194.820068359375, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": -944.5517578125, + "y": 2184.166259765625, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": -957.0859375, + "y": 2221.210205078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -976.7529296875, + "y": 2251.494140625, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": -974.0966796875, + "y": 2241.904296875, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": -981.869140625, + "y": 2235.80859375, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": -976.4296875, + "y": 2229.74609375, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": -973.1943359375, + "y": 2284.090576171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": -976.1904296875, + "y": 2320.13134765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -970.169921875, + "y": 2321.600341796875, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 18, + "x": -938.2470703125, + "y": 2338.535888671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 19, + "x": -920.470703125, + "y": 2342.7333984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 20, + "x": -906.0439453125, + "y": 2355.616943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": -903.5498046875, + "y": 2367.630859375, + "type": "target", + "move_mode": "walk", + "action": "anemo_collect" + } + ] +} \ 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..6d686b16 --- /dev/null +++ b/repo/pathing/蒲公英/02-蒲公英-山脊守望西10个.json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "02-蒲公英-山脊守望西10个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -321.5478515625, + "y": 1473.33544921875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -316.5166015625, + "y": 1521.7744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -275.486328125, + "y": 1543.349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -262.1552734375, + "y": 1548.65380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -208.0341796875, + "y": 1547.119140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 6, + "x": -173.474609375, + "y": 1542.3837890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -153.2919921875, + "y": 1555.658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -146.828125, + "y": 1591.294921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -130.5732421875, + "y": 1588.44189453125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 10, + "x": -123.634765625, + "y": 1586.68408203125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 11, + "x": -131.9873046875, + "y": 1600.11669921875, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 12, + "x": -166.95703125, + "y": 1648.2021484375, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 13, + "x": -143.61328125, + "y": 1674.31787109375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": -100.2578125, + "y": 1686.6259765625, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 15, + "x": -89.263671875, + "y": 1649.751953125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 16, + "x": -71.513671875, + "y": 1636.705078125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 17, + "x": -49.287109375, + "y": 1641.43408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 18, + "x": -43.4765625, + "y": 1669.876953125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 19, + "x": -52.4365234375, + "y": 1667.0908203125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 20, + "x": -57.4912109375, + "y": 1672.01611328125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/03-蒲公英-西风庙宇东2个.json b/repo/pathing/蒲公英/03-蒲公英-西风庙宇东2个.json new file mode 100644 index 00000000..8d8453fc --- /dev/null +++ b/repo/pathing/蒲公英/03-蒲公英-西风庙宇东2个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "03-蒲公英-西风庙宇东2个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1167.21, + "y": 2133.16 + }, + { + "id": 2, + "x": -1177.07, + "y": 2123.67, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1182.43, + "y": 2128.3, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1184.53, + "y": 2131.76, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 5, + "x": -1192.22, + "y": 2131.82, + "type": "target", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 6, + "x": -1195.7, + "y": 2135.14, + "type": "target", + "move_mode": "walk", + "action": "anemo_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..7b0b4f72 --- /dev/null +++ b/repo/pathing/蒲公英/04-蒲公英-星落湖南3个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "04-蒲公英-星落湖南3个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1329.462890625, + "y": 2564.1328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1305.5263671875, + "y": 2545.823974609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1278.2958984375, + "y": 2535.373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1287.2041015625, + "y": 2514.2255859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1282.7841796875, + "y": 2497.6220703125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 6, + "x": -1286.7841796875, + "y": 2497.6220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1269.533203125, + "y": 2486.619873046875, + "type": "path", + "move_mode": "walk", + "action": "anemo_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..190c858b --- /dev/null +++ b/repo/pathing/蒲公英/05-蒲公英-仲夏庭园3个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "05-蒲公英-仲夏庭园3个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1505.880859375, + "y": 2296.201904296875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1506.494140625, + "y": 2312.6220703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1541.291015625, + "y": 2364.279541015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1541.943359375, + "y": 2365.1279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1560.2587890625, + "y": 2413.156005859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1567.6923828125, + "y": 2442.651123046875, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 7, + "x": -1572.4775390625, + "y": 2444.308837890625, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 8, + "x": -1572.9296875, + "y": 2443.353515625, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 9, + "x": -1567.6923828125, + "y": 2442.651123046875, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/06-蒲公英-誓言岬2个.json b/repo/pathing/蒲公英/06-蒲公英-誓言岬2个.json new file mode 100644 index 00000000..b93569fc --- /dev/null +++ b/repo/pathing/蒲公英/06-蒲公英-誓言岬2个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "06-蒲公英-誓言岬2个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 5, + "x": -1999.0615234375, + "y": 1435.04541015625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2022.4638671875, + "y": 1465.4189453125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 7, + "x": -2030.4267578125, + "y": 1455.52587890625, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + } + ] +} \ 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..41ef9006 --- /dev/null +++ b/repo/pathing/蒲公英/07-蒲公英-达达乌帕谷3个.json @@ -0,0 +1,84 @@ +{ + "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": -1867.373046875, + "y": 1331.08984375 + }, + { + "id": 2, + "x": -1773.0119177335873, + "y": 1383.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1706.2568101334782, + "y": 1388, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": -1675.521484375, + "y": 1370.046875, + "type": "path", + "move_mode": "climb", + "action": "anemo_collect" + }, + { + "id": 5, + "x": -1660.982421875, + "y": 1433.0478515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1654.08203125, + "y": 1482.556640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1677.529296875, + "y": 1522.759765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -1690.5849609375, + "y": 1546.92431640625, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 9, + "x": -1692.861328125, + "y": 1552.54345703125, + "type": "path", + "move_mode": "walk", + "action": "anemo_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..9a595cb8 --- /dev/null +++ b/repo/pathing/蒲公英/08-蒲公英-达达乌帕谷南3个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "08-蒲公英-达达乌帕谷南3个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1024.3349609375, + "y": 1174.7392578125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1260.4775390625, + "y": 1229.67919921875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 3, + "x": -1310.998046875, + "y": 1173.99267578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1359.3525390625, + "y": 1126.00830078125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 5, + "x": -1361.404296875, + "y": 1123.9404296875, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 6, + "x": -1370.2197265625, + "y": 1139.572265625, + "type": "path", + "move_mode": "walk", + "action": "anemo_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..6a3ff0bc --- /dev/null +++ b/repo/pathing/蒲公英/09-蒲公英-奔狼领北2个.json @@ -0,0 +1,60 @@ +{ + "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": -424.4150390625, + "y": 2324.51171875 + }, + { + "id": 2, + "x": -361.7763671875, + "y": 2301.235107421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -341.7373046875, + "y": 2317.936279296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -344.994140625, + "y": 2322.552001953125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 5, + "x": -354.98046875, + "y": 2326.62646484375, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 6, + "x": -356.3505859375, + "y": 2331.69873046875, + "type": "path", + "move_mode": "walk", + "action": "anemo_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..c55367a8 --- /dev/null +++ b/repo/pathing/蒲公英/10-蒲公英-风起地南3个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "10-蒲公英-风起地南3个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1431.6748046875, + "y": 1661.4609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1453.732421875, + "y": 1680.14453125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 3, + "x": -1371.33203125, + "y": 1664.951171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1347.2236328125, + "y": 1642.697265625, + "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, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -1302.685546875, + "y": 1668.80810546875, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 8, + "x": -1266.9980704621812, + "y": 1671.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -1259.7611232180152, + "y": 1688.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": -1272.7138671875, + "y": 1703.734375, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 11, + "x": -1279.345703125, + "y": 1704.7470703125, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/11-蒲公英-零散2个(路远,不建议).json b/repo/pathing/蒲公英/11-蒲公英-零散2个(路远,不建议).json new file mode 100644 index 00000000..08c89243 --- /dev/null +++ b/repo/pathing/蒲公英/11-蒲公英-零散2个(路远,不建议).json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "11-蒲公英-零散2个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1273.7841796875, + "y": 2721.707763671875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1263.252610551166, + "y": 2735.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1263.9824071551811, + "y": 2773.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -1248.980818124035, + "y": 2795.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -1216.4925088531727, + "y": 2803.75, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -1190.375, + "y": 2775.902587890625, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -1142.7353515625, + "y": 2736.6279296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -1118.2099609375, + "y": 2713.2958984375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 9, + "x": -1106.7822265625, + "y": 2682.40673828125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 10, + "x": -1093.2538590756376, + "y": 2645.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": -1096.650390625, + "y": 2595.154052734375, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/12-蒲公英-零散3个(路远,不建议).json b/repo/pathing/蒲公英/12-蒲公英-零散3个(路远,不建议).json new file mode 100644 index 00000000..c42d3bff --- /dev/null +++ b/repo/pathing/蒲公英/12-蒲公英-零散3个(路远,不建议).json @@ -0,0 +1,156 @@ +{ + "info": { + "name": "12-蒲公英-零散3个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -577.17578125, + "y": 1857.5478515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -540.2236328125, + "y": 1854.65869140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -524.8896484375, + "y": 1871.45654296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -486.4560546875, + "y": 1871.5283203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -463.7255859375, + "y": 1890.17333984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -447.650390625, + "y": 1926.89404296875, + "action": "anemo_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -426.4482421875, + "y": 1955.84326171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -422.55078125, + "y": 1977.69482421875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 9, + "x": -396.8046875, + "y": 1996.4931640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -393.7919921875, + "y": 2030.7763671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -376.53515625, + "y": 2054.541748046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -382.6650390625, + "y": 2057.4228515625, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -376.2489784799782, + "y": 2054.25, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -393.99863797330363, + "y": 2030, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -396.2489784799782, + "y": 1997, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -392.2497729955503, + "y": 1983, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": -390.25034050667455, + "y": 1965.25, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 18, + "x": -389.56640625, + "y": 1966.01123046875, + "action": "anemo_collect", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/13-蒲公英-零散1个(路远,不建议).json b/repo/pathing/蒲公英/13-蒲公英-零散1个(路远,不建议).json new file mode 100644 index 00000000..55b1708b --- /dev/null +++ b/repo/pathing/蒲公英/13-蒲公英-零散1个(路远,不建议).json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "13-蒲公英-零散1个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -578.7744140625, + "y": 1858.76611328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -595.869140625, + "y": 1896.71240234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -608.8740234375, + "y": 1933.47265625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -663.5849609375, + "y": 1932.00244140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": -663.5849609375, + "y": 1932.00244140625, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 6, + "x": -666.720703125, + "y": 1931.9501953125, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/14-蒲公英-零散1个(路远,不建议).json b/repo/pathing/蒲公英/14-蒲公英-零散1个(路远,不建议).json new file mode 100644 index 00000000..6742f5a3 --- /dev/null +++ b/repo/pathing/蒲公英/14-蒲公英-零散1个(路远,不建议).json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "14-蒲公英-零散1个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -867.5986328125, + "y": 1992.251953125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -908.326171875, + "y": 1978.1943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -953.1494140625, + "y": 1976.02880859375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": -969.1123046875, + "y": 1971.7646484375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 5, + "x": -968.2265625, + "y": 1946.3759765625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": -960.0029296875, + "y": 1929.07958984375, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/15-蒲公英-零散1个(路远,不建议).json b/repo/pathing/蒲公英/15-蒲公英-零散1个(路远,不建议).json new file mode 100644 index 00000000..bc473c04 --- /dev/null +++ b/repo/pathing/蒲公英/15-蒲公英-零散1个(路远,不建议).json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "15-蒲公英-零散1个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 2, + "x": -1629.35546875, + "y": 2834.30517578125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1634.3828125, + "y": 2846.015380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1643.2490234375, + "y": 2867.230224609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1683.2391037864345, + "y": 2909, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 6, + "x": -1704.0185546875, + "y": 2987.650390625, + "type": "path", + "move_mode": "fly", + "action": "anemo_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/20-蒲公英-北风庙宇东3个(传送点缺失).json b/repo/pathing/蒲公英/20-蒲公英-北风庙宇东3个(传送点缺失).json new file mode 100644 index 00000000..23e0ca12 --- /dev/null +++ b/repo/pathing/蒲公英/20-蒲公英-北风庙宇东3个(传送点缺失).json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "20-蒲公英-北风庙宇东3个", + "type": "collect", + "author": "秋云", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -1638.5673828125, + "y": 2153.915283203125 + }, + { + "id": 2, + "x": -1645.5556640625, + "y": 2116.386474609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1643.0126953125, + "y": 2086.951171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -1658.4306640625, + "y": 2071.6384277343745, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1682.4306640625, + "y": 2083.638427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -1723.43359375, + "y": 2092.970947265625, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 7, + "x": -1729.3095703125, + "y": 2094.01123046875, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + }, + { + "id": 8, + "x": -1728.7626953125, + "y": 2083.14990234375, + "type": "path", + "move_mode": "walk", + "action": "anemo_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/南风之狮蒲公英1个.json b/repo/pathing/蒲公英/南风之狮蒲公英1个.json new file mode 100644 index 00000000..b224db40 --- /dev/null +++ b/repo/pathing/蒲公英/南风之狮蒲公英1个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "南风之狮蒲公英1个", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1427.75390625, + "y": 1661.5712890625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -1427.73046875, + "y": 1661.5771484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -1427.7763671875, + "y": 1661.5634765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -1435.2568359375, + "y": 1683.54345703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -1451.572265625, + "y": 1680.39013671875, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 6, + "x": -1454.7197265625, + "y": 1680.00927734375, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/奔狼古上蒲公英.json b/repo/pathing/蒲公英/奔狼古上蒲公英.json new file mode 100644 index 00000000..f7f82741 --- /dev/null +++ b/repo/pathing/蒲公英/奔狼古上蒲公英.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "奔狼古上蒲公英", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -386.1953125, + "y": 2297.678955078125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -366.55859375, + "y": 2313.87744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -362.201171875, + "y": 2316.1455078125, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 4, + "x": -360.04296875, + "y": 2320.839111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -358.32421875, + "y": 2322.40234375, + "type": "path", + "move_mode": "climb", + "action": "" + }, + { + "id": 6, + "x": -355.193359375, + "y": 2326.325927734375, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 7, + "x": -356.125, + "y": 2330.59423828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -356.1259765625, + "y": 2329.755126953125, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/蒲公英.json b/repo/pathing/蒲公英/蒲公英.json new file mode 100644 index 00000000..d4d9de49 --- /dev/null +++ b/repo/pathing/蒲公英/蒲公英.json @@ -0,0 +1,196 @@ +{ + "info": { + "name": "蒲公英", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -321.533203125, + "y": 1473.345703125 + }, + { + "id": 2, + "x": -321.5673828125, + "y": 1473.3505859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -235.58203125, + "y": 1523.42626953125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -215.275390625, + "y": 1519.4619140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -178.0498046875, + "y": 1517.21435546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -170.69140625, + "y": 1520.63330078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -135.6533203125, + "y": 1519.95361328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -123.0302734375, + "y": 1536.00244140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": -123.4482421875, + "y": 1539.2099609375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 10, + "x": -127.1953125, + "y": 1575.72998046875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 11, + "x": -127.638671875, + "y": 1579.3232421875, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 12, + "x": -129.75, + "y": 1587.6806640625, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 13, + "x": -131.677734375, + "y": 1599.65087890625, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 14, + "x": -182.03515625, + "y": 1622.0654296875, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 15, + "x": -167.8134765625, + "y": 1647.935546875, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 16, + "x": -127.134765625, + "y": 1649.046875, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 17, + "x": -101.7548828125, + "y": 1686.49462890625, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 18, + "x": -89.830078125, + "y": 1651.2841796875, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 19, + "x": -70.974609375, + "y": 1637.09130859375, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 20, + "x": -53.23828125, + "y": 1637.896484375, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 21, + "x": -44.2333984375, + "y": 1667.7548828125, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 22, + "x": -52.7041015625, + "y": 1667.59130859375, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 23, + "x": -55.8359375, + "y": 1669.423828125, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/誓言蒲公英1个.json b/repo/pathing/蒲公英/誓言蒲公英1个.json new file mode 100644 index 00000000..049ce0dd --- /dev/null +++ b/repo/pathing/蒲公英/誓言蒲公英1个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "誓言蒲公英1个", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -1999.0830078125, + "y": 1434.97314453125, + "type": "teleport", + "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, + "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, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/蒲公英/铭记之谷附近蒲公英.json b/repo/pathing/蒲公英/铭记之谷附近蒲公英.json new file mode 100644 index 00000000..a2fd5bbe --- /dev/null +++ b/repo/pathing/蒲公英/铭记之谷附近蒲公英.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "铭记之谷附近蒲公英", + "type": "collect", + "author": "", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -663.646484375, + "y": 1709.59716796875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -655.67578125, + "y": 1714.53857421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -587.94140625, + "y": 1708.66943359375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 4, + "x": -587.94140625, + "y": 1708.66943359375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -547.03515625, + "y": 1709.76708984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -536.212890625, + "y": 1696.3515625, + "type": "path", + "move_mode": "walk", + "action": "elemental_skill" + }, + { + "id": 7, + "x": -535.59375, + "y": 1695.5556640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": -534.134765625, + "y": 1696.30224609375, + "type": "target", + "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..eee673eb 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..45dbe61d 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..fb48c3dd Binary files /dev/null and b/repo/pathing/赤念果/icon.ico differ diff --git a/repo/pathing/赤念果/赤念果.json b/repo/pathing/赤念果/赤念果.json new file mode 100644 index 00000000..cdb3fc63 --- /dev/null +++ b/repo/pathing/赤念果/赤念果.json @@ -0,0 +1,53 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "1.0", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3992.60400390625, + "y": -1989.955322265625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3975.477294921875, + "y": -2008.89208984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 3939.751708984375, + "y": -2028.358154296875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 3947.027587890625, + "y": -2071.035400390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 3975.003173828125, + "y": -2104.529296875, + "action": "nahida_collect", + "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..df8b6508 --- /dev/null +++ b/repo/pathing/赤念果/赤念果10.json @@ -0,0 +1,77 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4451.9453125, + "y": -2454.0302734375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4416.70751953125, + "y": -2483.56689453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4394.4501953125, + "y": -2462.05224609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4399.736572265625, + "y": -2460.50390625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 4422.27099609375, + "y": -2514.10693359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4436.108154296875, + "y": -2527.3759765625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": 4436.363525390625, + "y": -2527.580078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4439.1982421875, + "y": -2519.23291015625, + "action": "nahida_collect", + "move_mode": "walk", + "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..7e705def --- /dev/null +++ b/repo/pathing/赤念果/赤念果11.json @@ -0,0 +1,109 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4035.694091796875, + "y": -2465.2890625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4036.123046875, + "y": -2479.009765625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4023.68359375, + "y": -2526.22607421875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 4023.736083984375, + "y": -2526.328125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 4027.32275390625, + "y": -2526.87255859375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 4062.615234375, + "y": -2596.0400390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4064.741455078125, + "y": -2601.58154296875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 4035.75537109375, + "y": -2465.39501953125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 9, + "x": 3929.886962890625, + "y": -2500.1650390625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 4035.805908203125, + "y": -2465.373046875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 11, + "x": 3995.041015625, + "y": -2399.7626953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 3986.953369140625, + "y": -2359.53466796875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} diff --git a/repo/pathing/赤念果/赤念果12.json b/repo/pathing/赤念果/赤念果12.json new file mode 100644 index 00000000..c2393086 --- /dev/null +++ b/repo/pathing/赤念果/赤念果12.json @@ -0,0 +1,53 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4691.22314453125, + "y": -2345.83349609375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4698.91650390625, + "y": -2340.1708984375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 4727.025634765625, + "y": -2366.6044921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4763.3046875, + "y": -2433.978515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4767.284423828125, + "y": -2454.392578125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果13.json b/repo/pathing/赤念果/赤念果13.json new file mode 100644 index 00000000..91745868 --- /dev/null +++ b/repo/pathing/赤念果/赤念果13.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "author": "½", + "version": "", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4809.835205078125, + "y": -2733.8251953125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4803.98046875, + "y": -2764.64501953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4796.865966796875, + "y": -2800.109375, + "action": "up_down_grab_leaf", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4776.906982421875, + "y": -2822.39404296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4751.110107421875, + "y": -2854.16162109375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 4662.71435546875, + "y": -2825.8466796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4614.235839843749, + "y": -2788.8095703125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 8, + "x": 4598.78759765625, + "y": -2781.18603515625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果14.json b/repo/pathing/赤念果/赤念果14.json new file mode 100644 index 00000000..9d04f03d --- /dev/null +++ b/repo/pathing/赤念果/赤念果14.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "author": "½", + "version": "", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4077.29736328125, + "y": -2164.6552734375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4135.2099609375, + "y": -2214.5146484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4154.353515625, + "y": -2228.41259765625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 4205.636962890625, + "y": -2232.06640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4207.700439453125, + "y": -2239.29931640625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4232.74609375, + "y": -2259.1796875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 4230.9375, + "y": -2301.251953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 4221.429443359375, + "y": -2304.44140625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 9, + "x": 4214.169921875, + "y": -2307.8271484375, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 10, + "x": 4203.718994140625, + "y": -2302.1044921875, + "action": "", + "move_mode": "climb", + "type": "target" + }, + { + "id": 11, + "x": 4178.33837890625, + "y": -2320.11865234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 4130.542724609375, + "y": -2281.94482421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 4118.751708984375, + "y": -2270.2734375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 4169.214599609375, + "y": -2283.18896484375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果15.json b/repo/pathing/赤念果/赤念果15.json new file mode 100644 index 00000000..7c217b5f --- /dev/null +++ b/repo/pathing/赤念果/赤念果15.json @@ -0,0 +1,133 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4809.901611328125, + "y": -2733.8134765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4875.184814453125, + "y": -2705.98876953125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 4944.4521484375, + "y": -2731.44677734375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 4953.273681640625, + "y": -2738.70166015625, + "action": "stop_flying", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4950.273193359375, + "y": -2726.248046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 4968.152587890625, + "y": -2719.73583984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 4993.7666015625, + "y": -2779.52734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 5017.8486328125, + "y": -2850.30517578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 5076.646240234375, + "y": -2899.55224609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 5121.09423828125, + "y": -2923.70361328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 5152.812255859375, + "y": -2936.15380859375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 5155.123291015625, + "y": -2924.20263671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 5204.654541015625, + "y": -2929.75390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 5236.689697265625, + "y": -2941.20751953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 5280.367919921875, + "y": -2943.34765625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果16.json b/repo/pathing/赤念果/赤念果16.json new file mode 100644 index 00000000..f01a9d18 --- /dev/null +++ b/repo/pathing/赤念果/赤念果16.json @@ -0,0 +1,189 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4993.641357421875, + "y": -2162.185546875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5009.273681640625, + "y": -2163.810546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 5022.829345703125, + "y": -2161.884765625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 5055.8671875, + "y": -2141.54150390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 5065.012939453125, + "y": -2132.07080078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 5091.162841796875, + "y": -2117.638671875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 5076.425537109375, + "y": -2112.648193359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": 5008.103271484375, + "y": -2073.71923828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 4999.646484375, + "y": -2068.3671875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 10, + "x": 4990.285888671875, + "y": -2057.16943359375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 11, + "x": 4967.728759765625, + "y": -2066.52880859375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 4920.031005859375, + "y": -2097.732666015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 4873.939697265625, + "y": -2126.34521484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": 4862.07763671875, + "y": -2127.361328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 4852.968505859375, + "y": -2129.333740234375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 4833.665283203125, + "y": -2140.728515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 4820.499755859375, + "y": -2148.6845703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 18, + "x": 4777.534912109375, + "y": -2130.201171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": 4731.31640625, + "y": -2119.252685546875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 4716.463623046875, + "y": -2062.585693359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 4678.509521484375, + "y": -2000.857421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 22, + "x": 4677.547607421875, + "y": -2000.878173828125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果2.json b/repo/pathing/赤念果/赤念果2.json new file mode 100644 index 00000000..44887a1a --- /dev/null +++ b/repo/pathing/赤念果/赤念果2.json @@ -0,0 +1,61 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "1.0", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4077.267578125, + "y": -2164.65087890625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4135.3154296875, + "y": -2156.67138671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4169.653076171875, + "y": -2149.59716796875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 4209.74755859375, + "y": -2134.42333984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4230.405517578125, + "y": -2155.79541015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 4257.660888671875, + "y": -2126.041748046875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果3.json b/repo/pathing/赤念果/赤念果3.json new file mode 100644 index 00000000..c844a4ee --- /dev/null +++ b/repo/pathing/赤念果/赤念果3.json @@ -0,0 +1,45 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4451.095703125, + "y": -2455.6796875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4459.98583984375, + "y": -2488.10302734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4460.44091796875, + "y": -2499.23876953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 4476.977294921875, + "y": -2494.57763671875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果4.json b/repo/pathing/赤念果/赤念果4.json new file mode 100644 index 00000000..a1b3c734 --- /dev/null +++ b/repo/pathing/赤念果/赤念果4.json @@ -0,0 +1,53 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4451.095703125, + "y": -2455.6796875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4459.98583984375, + "y": -2488.10302734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4460.44091796875, + "y": -2499.23876953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 4476.86962890625, + "y": -2498.7861328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 4474.2529296875, + "y": -2491.08544921875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果5.json b/repo/pathing/赤念果/赤念果5.json new file mode 100644 index 00000000..fe39b79c --- /dev/null +++ b/repo/pathing/赤念果/赤念果5.json @@ -0,0 +1,37 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4790.374755859375, + "y": -3183.4140625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4827.69189453125, + "y": -3105.3359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4905.655517578125, + "y": -3061.77197265625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果6.json b/repo/pathing/赤念果/赤念果6.json new file mode 100644 index 00000000..ae692534 --- /dev/null +++ b/repo/pathing/赤念果/赤念果6.json @@ -0,0 +1,37 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4271.114990234375, + "y": -1667.16455078125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4331.81787109375, + "y": -1676.515625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 4373.380615234375, + "y": -1693.93505859375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果7.json b/repo/pathing/赤念果/赤念果7.json new file mode 100644 index 00000000..ac8eaa91 --- /dev/null +++ b/repo/pathing/赤念果/赤念果7.json @@ -0,0 +1,37 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 5655.267578125, + "y": -1822.481689453125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 5643.912353515625, + "y": -1812.25830078125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 5636.08544921875, + "y": -1850.376220703125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果8.json b/repo/pathing/赤念果/赤念果8.json new file mode 100644 index 00000000..cc10ea3d --- /dev/null +++ b/repo/pathing/赤念果/赤念果8.json @@ -0,0 +1,53 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 4795.1162109375, + "y": -2577.1611328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4781.791748046875, + "y": -2608.34033203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 4745.151123046875, + "y": -2635.87451171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 4733.790283203125, + "y": -2638.63232421875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 4737.95703125, + "y": -2658.9228515625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/赤念果/赤念果9.json b/repo/pathing/赤念果/赤念果9.json new file mode 100644 index 00000000..516d01fa --- /dev/null +++ b/repo/pathing/赤念果/赤念果9.json @@ -0,0 +1,37 @@ +{ + "info": { + "name": "赤念果", + "type": "collect", + "country": "须弥", + "author": "½", + "version": "", + "description": "需要纳西妲", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": 3992.63427734375, + "y": -1989.98681640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 4022.643310546875, + "y": -1980.672607421875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 4023.19384765625, + "y": -1973.26806640625, + "action": "nahida_collect", + "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..4c902f43 Binary files /dev/null and b/repo/pathing/金鱼草/icon.ico differ diff --git a/repo/pathing/金鱼草/金鱼草-南天门-1个.json b/repo/pathing/金鱼草/金鱼草-南天门-1个.json new file mode 100644 index 00000000..804074c9 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-南天门-1个.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "金鱼草-南天门-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1665.8984375, + "y": 386.57421875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1681.046875, + "y": 371.2919921875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-古茶树坡右侧-3个.json b/repo/pathing/金鱼草/金鱼草-古茶树坡右侧-3个.json new file mode 100644 index 00000000..9d821677 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-古茶树坡右侧-3个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "金鱼草-古茶树坡右侧-3个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1468.1142578125, + "y": 1997.98388671875, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 2, + "x": 1443.552734375, + "y": 1998.8251953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 1423.5478515625, + "y": 1974.90625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 1400.8701171875, + "y": 1949.5146484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 1377.2705078125, + "y": 1931.69970703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 1336.158203125, + "y": 1850.86376953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 7, + "x": 1299.9990234375, + "y": 1833.71337890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 1311.45703125, + "y": 1813.43505859375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-地中之盐-3个.json b/repo/pathing/金鱼草/金鱼草-地中之盐-3个.json new file mode 100644 index 00000000..e2a82676 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-地中之盐-3个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "金鱼草-地中之盐-3个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "完成钟离传说任务后可用", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -321.6376953125, + "y": 1473.275390625, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 2, + "x": -296.775390625, + "y": 1455.31298828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": -269.29296875, + "y": 1434.33984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -194.54296875, + "y": 1384.15625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": -216.8515625, + "y": 1392.35400390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -248.3291015625, + "y": 1379.7587890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -263.326171875, + "y": 1380.419921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -279.109375, + "y": 1363.05517578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": -295.3388671875, + "y": 1383.76025390625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-奔狼岭右上角-1个.json b/repo/pathing/金鱼草/金鱼草-奔狼岭右上角-1个.json new file mode 100644 index 00000000..4a5f600b --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-奔狼岭右上角-1个.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "金鱼草-奔狼岭右上角-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -521.5537109375, + "y": 2181.31640625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -524.25, + "y": 2235.31005859375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-奥藏山右上角-15个.json b/repo/pathing/金鱼草/金鱼草-奥藏山右上角-15个.json new file mode 100644 index 00000000..8d291dbf --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-奥藏山右上角-15个.json @@ -0,0 +1,164 @@ +{ + "info": { + "name": "金鱼草-奥藏山右上角-15个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1120.970703125, + "y": 1190.408203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1100.99609375, + "y": 1208.11328125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 1014.1533203125, + "y": 1323.560546875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 1006.6298828125, + "y": 1336.34228515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 997.794921875, + "y": 1354.16796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 961.5146484375, + "y": 1397.05126953125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 936.9931640625, + "y": 1396.607421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 929.662109375, + "y": 1378.17138671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 942.595703125, + "y": 1369.70458984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 947.69921875, + "y": 1369.4111328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 929.150390625, + "y": 1361.39599609375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 916.4677734375, + "y": 1340.24267578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 944.7744140625, + "y": 1331.4345703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": 933.6611328125, + "y": 1321.75927734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 919.541015625, + "y": 1299.64013671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": 973.3173828125, + "y": 1279.91943359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 986.4638671875, + "y": 1292.17578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": 999.3740234375, + "y": 1304.55419921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": 981.2158203125, + "y": 1341.46875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-奥藏山右下角-4个.json b/repo/pathing/金鱼草/金鱼草-奥藏山右下角-4个.json new file mode 100644 index 00000000..7b9e3445 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-奥藏山右下角-4个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "金鱼草-奥藏山右下角-4个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1451.5, + "y": 1028.58740234375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1459.7919921875, + "y": 1033.12841796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 3, + "x": 1409.3984375, + "y": 999.611328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 1348.69921875, + "y": 977.4921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 1360.900390625, + "y": 994.1533203125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-宝玦口左侧-2个.json b/repo/pathing/金鱼草/金鱼草-宝玦口左侧-2个.json new file mode 100644 index 00000000..4e4b6d36 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-宝玦口左侧-2个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "金鱼草-宝玦口左侧-2个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 2462.76904296875, + "y": 1801.634765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2470.84326171875, + "y": 1802.56494140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 2549.794921875, + "y": 1800.12890625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 2639, + "y": 1766, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 2640.63671875, + "y": 1779.26806640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 2673.94921875, + "y": 1791.03564453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 2705.04931640625, + "y": 1799.03857421875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-庆云顶右侧-5个.json b/repo/pathing/金鱼草/金鱼草-庆云顶右侧-5个.json new file mode 100644 index 00000000..2bb92167 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-庆云顶右侧-5个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "金鱼草-庆云顶右侧-5个02", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1474.595703125, + "y": 763.634765625, + "action": "", + "move_mode": "fly", + "type": "teleport" + }, + { + "id": 3, + "x": 1355.830078125, + "y": 827.45458984375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 1372.236328125, + "y": 801.16455078125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 1377.2783203125, + "y": 778.037109375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 6, + "x": 1342.2314453125, + "y": 794.19384765625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 1322.99609375, + "y": 810.927734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 1302.70703125, + "y": 759.232421875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 9, + "x": 1333.0576171875, + "y": 755.30224609375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 1330.419921875, + "y": 750.80859375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-归离原-1个.json b/repo/pathing/金鱼草/金鱼草-归离原-1个.json new file mode 100644 index 00000000..9b29ac92 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-归离原-1个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "金鱼草-归离原-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 173.884765625, + "y": 389.55322265625, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 2, + "x": 171.3759765625, + "y": 409.71630859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 169.283203125, + "y": 440.16357421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 171.9130859375, + "y": 462.12158203125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-归离原左侧-1个.json b/repo/pathing/金鱼草/金鱼草-归离原左侧-1个.json new file mode 100644 index 00000000..1b242e56 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-归离原左侧-1个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "金鱼草-归离原左侧-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 341.2978515625, + "y": 548.197265625, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 2, + "x": 351.564453125, + "y": 552.99560546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 374.9208984375, + "y": 563.2626953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 415.9716796875, + "y": 572.986328125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 451.3251953125, + "y": 579.2109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 488.48046875, + "y": 586.55078125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 554.05859375, + "y": 590.3642578125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-无妄坡-2个.json b/repo/pathing/金鱼草/金鱼草-无妄坡-2个.json new file mode 100644 index 00000000..06e6da74 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-无妄坡-2个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "金鱼草-无妄坡-2个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 489.7822265625, + "y": 1435.1552734375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 483.73046875, + "y": 1456.73193359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 490.966796875, + "y": 1504.47265625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 503.8408203125, + "y": 1546.90380859375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 512.2529296875, + "y": 1567.88037109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 512.29296875, + "y": 1583.81640625, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 7, + "x": 517.759765625, + "y": 1602.7822265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 521.7802734375, + "y": 1634.7373046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 513.654296875, + "y": 1642.841796875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-无妄坡左下角-9个.json b/repo/pathing/金鱼草/金鱼草-无妄坡左下角-9个.json new file mode 100644 index 00000000..eb20c4c8 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-无妄坡左下角-9个.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "金鱼草-无妄坡左下角-9个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 489.7802734375, + "y": 1435.10107421875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 538.150390625, + "y": 1314.52099609375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 3, + "x": 542.564453125, + "y": 1310.59033203125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": 546.716796875, + "y": 1315.44189453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 639.005859375, + "y": 1338.0869140625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 642.8271484375, + "y": 1332.53173828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 652.73046875, + "y": 1335.7490234375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 657.6279296875, + "y": 1337.6875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 676.1484375, + "y": 1358.55419921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 741.4091796875, + "y": 1350.6455078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": 750.7041015625, + "y": 1367.48486328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 746.7265625, + "y": 1352.373046875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-无妄坡左侧-1个.json b/repo/pathing/金鱼草/金鱼草-无妄坡左侧-1个.json new file mode 100644 index 00000000..88264fab --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-无妄坡左侧-1个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "金鱼草-无妄坡左侧-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 839.625, + "y": 1532.34033203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 848.1689453125, + "y": 1540.16064453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 852.4013671875, + "y": 1555.4970703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 854.3564453125, + "y": 1562.82470703125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-望风山地-6个.json b/repo/pathing/金鱼草/金鱼草-望风山地-6个.json new file mode 100644 index 00000000..bfa83649 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-望风山地-6个.json @@ -0,0 +1,124 @@ +{ + "info": { + "name": "金鱼草-望风山地-6个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1629.3935546875, + "y": 2834.34521484375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1572.9970703125, + "y": 2853.316650390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": -1522.92578125, + "y": 2821.169921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": -1501.55859375, + "y": 2787.54638671875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -1492.966796875, + "y": 2781.827880859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -1467.2275390625, + "y": 2786.94482421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -1459.4345703125, + "y": 2798.513916015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -1441.3125, + "y": 2793.272705078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -1418.6669921875, + "y": 2820.5986328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -1413.4296875, + "y": 2823.306640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -1359.611328125, + "y": 2813.8056640625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 12, + "x": -1338.2880859375, + "y": 2825.359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": -1333.65625, + "y": 2818.666748046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": -1312.9453125, + "y": 2798.22314453125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-清泉镇左上角-1个.json b/repo/pathing/金鱼草/金鱼草-清泉镇左上角-1个.json new file mode 100644 index 00000000..505ab6c6 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-清泉镇左上角-1个.json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "金鱼草-清泉镇左上角-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -867.529296875, + "y": 1992.21923828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -841.83203125, + "y": 2013.0673828125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": -820.576171875, + "y": 2021.646484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -788.216796875, + "y": 2022.61083984375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -733.26171875, + "y": 2073.78466796875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-渌华池-2个.json b/repo/pathing/金鱼草/金鱼草-渌华池-2个.json new file mode 100644 index 00000000..73ee2d2b --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-渌华池-2个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "谢谢01", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 489.4033203125, + "y": 222.20361328125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 498.826171875, + "y": 225.86279296875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 520.0380859375, + "y": 213.005859375, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 514.2041015625, + "y": 188.61474609375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-湖中垂柳右侧-1个.json b/repo/pathing/金鱼草/金鱼草-湖中垂柳右侧-1个.json new file mode 100644 index 00000000..d7f27c73 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-湖中垂柳右侧-1个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "金鱼草-湖中垂柳右侧-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "由于地下小地图不可用少1个", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3032.72119140625, + "y": 3732.343994140625, + "action": "", + "move_mode": "fly", + "type": "teleport" + }, + { + "id": 2, + "x": 3020.96484375, + "y": 3734.634765625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 2915.43798828125, + "y": 3816.352783203125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 2894.4013671875, + "y": 3834.058837890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 2854.22998046875, + "y": 3815.263671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 2840.9375, + "y": 3807.915283203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 2827.57421875, + "y": 3767.946044921875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-石门右上角-3个.json b/repo/pathing/金鱼草/金鱼草-石门右上角-3个.json new file mode 100644 index 00000000..79027ee1 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-石门右上角-3个.json @@ -0,0 +1,148 @@ +{ + "info": { + "name": "金鱼草-石门右上角-3个05", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 207.4482421875, + "y": 1573.00830078125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 189.19140625, + "y": 1598.12158203125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 172.4296875, + "y": 1623.26611328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": 146.115234375, + "y": 1680.57666015625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 137.4072265625, + "y": 1699.5703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 123.666015625, + "y": 1734.80126953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 113.1455078125, + "y": 1781.1962890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 102.6259765625, + "y": 1790.53466796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 105.5283203125, + "y": 1781.81591796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 60.7265625, + "y": 1763.87646484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 44, + "y": 1772, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": 40.8916015625, + "y": 1759.471679687499, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 13, + "x": 37.76171875, + "y": 1751.7060546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 36.0712890625, + "y": 1747.5185546875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 15, + "x": 34.1953125, + "y": 1743.69482421875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 16, + "x": 27.5537109375, + "y": 1725.91845703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 17, + "x": 15.9677734375, + "y": 1704.8193359375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-绝云间-4个.json b/repo/pathing/金鱼草/金鱼草-绝云间-4个.json new file mode 100644 index 00000000..d133f0a1 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-绝云间-4个.json @@ -0,0 +1,116 @@ +{ + "info": { + "name": "金鱼草-绝云间-4个02", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1182.73046875, + "y": 626.08935546875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 1189.107421875, + "y": 614.806640625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 1194.326171875, + "y": 605.26123046875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 1201.8623046875, + "y": 590.1123046875, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 5, + "x": 1203.634765625, + "y": 587.61669921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 1225.818359375, + "y": 628.517578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 1230.5732421875, + "y": 652.4677734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 1196.1796875, + "y": 667.57421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 1149.212890625, + "y": 663.1826171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 1137.123046875, + "y": 659.01123046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 1140.4775390625, + "y": 654.14453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 1128.220703125, + "y": 660.0537109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 1121.220703125, + "y": 668.0537109375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-药蝶谷右侧-4个.json b/repo/pathing/金鱼草/金鱼草-药蝶谷右侧-4个.json new file mode 100644 index 00000000..e952fc9b --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-药蝶谷右侧-4个.json @@ -0,0 +1,84 @@ +{ + "info": { + "name": "金鱼草-药蝶谷右侧-4个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 1271.1884765625, + "y": 1563.99853515625, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 2, + "x": 1228.62890625, + "y": 1567.9150390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 1184.109375, + "y": 1573.79443359375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 1136.9921875, + "y": 1581.2626953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 1109.4833984375, + "y": 1585.54052734375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 1090.44921875, + "y": 1602.17919921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": 1074.1708984375, + "y": 1594.4951171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 1034.9736328125, + "y": 1631.6396484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 1011.94921875, + "y": 1629.01123046875, + "action": "", + "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..ae71b49f --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-荻花洲-10个.json @@ -0,0 +1,180 @@ +{ + "info": { + "name": "金鱼草-荻花洲-10个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 328.9228515625, + "y": 873.62060546875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 318.8349609375, + "y": 884.32373046875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 165.6337890625, + "y": 931.7939453125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": 179.2470703125, + "y": 954.68896484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 140.47265625, + "y": 977.76806640625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": 117.515625, + "y": 1005.955078125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 101.82714843750001, + "y": 1051.669921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 69.1982421875, + "y": 1123.2841796875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 9, + "x": 117.4423828125, + "y": 1180.24365234375, + "action": "", + "move_mode": "swim", + "type": "path" + }, + { + "id": 10, + "x": 140.8134765625, + "y": 1206.58837890625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 11, + "x": 160.4912109375, + "y": 1220.0810546875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 12, + "x": 171.703125, + "y": 1268.8017578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 13, + "x": 155.27734375, + "y": 1316.05126953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 14, + "x": 141.189453125, + "y": 1335.2294921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 15, + "x": 253.1083984375, + "y": 1285.21630859375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 16, + "x": 319.091796875, + "y": 1299.451171875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": 325.6376953125, + "y": 1254.35888671875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 18, + "x": 330.7041015625, + "y": 1199.80126953125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 19, + "x": 350.0185546875, + "y": 1174.19287109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 20, + "x": 410.1416015625, + "y": 1160.31396484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": 455.830078125, + "y": 1166.607421875, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-荻花洲过河左侧-2个.json b/repo/pathing/金鱼草/金鱼草-荻花洲过河左侧-2个.json new file mode 100644 index 00000000..347814ec --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-荻花洲过河左侧-2个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "金鱼草-荻花洲过河左侧-2个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 730.724609375, + "y": 1062.86962890625, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 2, + "x": 702.7763671875, + "y": 1063.84375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 640.9892578125, + "y": 1004.21435546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 627.8251953125, + "y": 984.43212890625, + "action": "", + "move_mode": "run", + "type": "target" + }, + { + "id": 5, + "x": 629.4267578125, + "y": 970.71728515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 623.6025390625, + "y": 973.1611328125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-赤璋城桓01-1个.json b/repo/pathing/金鱼草/金鱼草-赤璋城桓01-1个.json new file mode 100644 index 00000000..150d1f3e --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-赤璋城桓01-1个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "金鱼草-赤璋城桓01-1个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "由于小地图无法识别少1个", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 2207.02294921875, + "y": 1253.18798828125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2225.306640625, + "y": 1317.6337890625, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 3, + "x": 2232.09765625, + "y": 1336.306640625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ 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..8f0c0e99 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-赤璋城桓02-2个.json @@ -0,0 +1,100 @@ +{ + "info": { + "name": "金鱼草-赤璋城桓02-2个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 2207.0341796875, + "y": 1253.1796875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 2227.68310546875, + "y": 1242.31201171875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 2250.109375, + "y": 1244.20263671875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 2255.728515625, + "y": 1255.54443359375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": 2269.76708984375, + "y": 1260.85205078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 2284.013671875, + "y": 1255.70849609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": 2303.84521484375, + "y": 1254.087890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": 2310.009765625, + "y": 1274.125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 2322.6083984375, + "y": 1289.259765625, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 12, + "x": 2342.4716796875, + "y": 1275.55517578125, + "action": "stop_flying", + "move_mode": "fly", + "type": "target" + }, + { + "id": 13, + "x": 2341.5380859375, + "y": 1277.08349609375, + "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..9d3defef --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-赤璋城桓03-3个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "金鱼草-赤璋城桓03-3个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "action中缺少T交互少1个", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 2257.029296875, + "y": 934.931640625, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 2, + "x": 2275.49609375, + "y": 964.8994140625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 3, + "x": 2296.6962890625, + "y": 993.92578125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": 2310.40283203125, + "y": 1016.4150390625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": 2347.01220703125, + "y": 976.94677734375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 2376.70166015625, + "y": 974.2685546875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 2417.62158203125, + "y": 965.41455078125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 2430.43359375, + "y": 965.1259765625, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-雪葬之都·近郊-2个.json b/repo/pathing/金鱼草/金鱼草-雪葬之都·近郊-2个.json new file mode 100644 index 00000000..940d1387 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-雪葬之都·近郊-2个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "金鱼草-雪葬之都·近郊-2个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -410.861328125, + "y": 1161.28662109375, + "action": "", + "move_mode": "run", + "type": "teleport" + }, + { + "id": 3, + "x": -385.4189453125, + "y": 1147.97607421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 4, + "x": -359.2275390625, + "y": 1133.634765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": -327.373046875, + "y": 1097.8979492187502, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": -305.8701171875, + "y": 1074.35791015625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -294.544921875, + "y": 1091.830078125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-风起地-14个.json b/repo/pathing/金鱼草/金鱼草-风起地-14个.json new file mode 100644 index 00000000..845c5fe7 --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-风起地-14个.json @@ -0,0 +1,212 @@ +{ + "info": { + "name": "金鱼草-风起地-14个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1266.1962890625, + "y": 1933.4716796875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -1244.6142578125, + "y": 1915.177734375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1230.8720703125, + "y": 1910.86572265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -1195.4521484375, + "y": 1906.52880859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 5, + "x": -1178.13671875, + "y": 1873.81103515625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -1181.6318359375, + "y": 1839.623046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 7, + "x": -1217.720703125, + "y": 1859.11328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -1224.0234375, + "y": 1876.7841796875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -1253.740234375, + "y": 1834.736328125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -1289.61328125, + "y": 1833.837890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": -1324.349609375, + "y": 1853.17626953125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 12, + "x": -1346.796875, + "y": 1858.19921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": -1398.087890625, + "y": 1851.54833984375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 14, + "x": -1425.6162109375, + "y": 1791.71484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -1440.4208984375, + "y": 1788.01220703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": -1443.7080078125, + "y": 1787.1220703125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 17, + "x": -1443.7294921875, + "y": 1789.73486328125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 18, + "x": -1491.0849609375, + "y": 1765.421875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 19, + "x": -1470.94921875, + "y": 1829.3193359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 20, + "x": -1459.6162109375, + "y": 1838.9287109375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 21, + "x": -1416.431640625, + "y": 1850.8017578125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 22, + "x": -1342.841796875, + "y": 1879.6015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 23, + "x": -1330.28515625, + "y": 1889.4697265625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 24, + "x": -1303.47265625, + "y": 1865.4873046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 25, + "x": -1301.28515625, + "y": 1866.98828125, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/金鱼草/金鱼草-风起地左上角-3个.json b/repo/pathing/金鱼草/金鱼草-风起地左上角-3个.json new file mode 100644 index 00000000..f481f9ee --- /dev/null +++ b/repo/pathing/金鱼草/金鱼草-风起地左上角-3个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "金鱼草-风起地左上角-3个", + "type": "collect", + "author": "曦", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": -1120.8916015625, + "y": 2190.578369140625, + "action": "", + "move_mode": "fly", + "type": "teleport" + }, + { + "id": 2, + "x": -1094.7646484375, + "y": 2224.949462890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -1088.400390625, + "y": 2235.656005859375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 4, + "x": -1088.1806640625, + "y": 2261.40576171875, + "action": "", + "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..70690fe2 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..177826e3 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..2c8c76ce 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..428dc81d 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..5c3a2ae3 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..02874ed1 Binary files /dev/null and b/repo/pathing/香辛果/icon.ico differ diff --git a/repo/pathing/香辛果/香辛果1.json b/repo/pathing/香辛果/香辛果1.json new file mode 100644 index 00000000..f026fb69 --- /dev/null +++ b/repo/pathing/香辛果/香辛果1.json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "香辛果1", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 2, + "x": 4693.970703125, + "y": -261.982421875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": 4706.97314453125, + "y": -262.287109375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 4717.8173828125, + "y": -256.5595703125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": 4719.08984375, + "y": -254.90576171875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": 4729.123046875, + "y": -237.65576171875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 4707.802734375, + "y": -234.171875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 8, + "x": 4689.7744140625, + "y": -240.42822265625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 9, + "x": 4691.40380859375, + "y": -242.70166015625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 10, + "x": 4675.53515625, + "y": -249.19775390625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 11, + "x": 4672.623046875, + "y": -250.16943359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 4649.4853515625, + "y": -264.5048828125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 13, + "x": 4643.69970703125, + "y": -268.28515625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果2.json b/repo/pathing/香辛果/香辛果2.json new file mode 100644 index 00000000..d8f78696 --- /dev/null +++ b/repo/pathing/香辛果/香辛果2.json @@ -0,0 +1,140 @@ +{ + "info": { + "name": "香辛果2", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 3021.14599609375, + "y": -94.978515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 3023.82373046875, + "y": -104.31103515625, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 3, + "x": 2482.8349609375, + "y": 6.08203125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 4, + "x": 2464.79150390625, + "y": -11.556640625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 5, + "x": 2462.505859375, + "y": -13.55078125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": 2470.47314453125, + "y": -21.86669921875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 7, + "x": 2477.47509765625, + "y": -28.6123046875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": 2454.35400390625, + "y": -88.97509765625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 2446.66650390625, + "y": -101.0791015625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + }, + { + "id": 10, + "x": 2342.3310546875, + "y": -4.7001953125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 2345.27783203125, + "y": -7.5751953125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 12, + "x": 2288.6728515625, + "y": -1197.65234375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": 2332.61572265625, + "y": -1221.57568359375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 14, + "x": 2343.76318359375, + "y": -1223.80419921875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 15, + "x": 2360.0966796875, + "y": -1233.7880859375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 16, + "x": 2363.9541015625, + "y": -1236.484375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/香辛果/香辛果3.json b/repo/pathing/香辛果/香辛果3.json new file mode 100644 index 00000000..6b4c0c03 --- /dev/null +++ b/repo/pathing/香辛果/香辛果3.json @@ -0,0 +1,188 @@ +{ + "info": { + "name": "香辛果3", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 3128.755859375, + "y": -1734.64697265625 + }, + { + "id": 2, + "x": 3124.89892578125, + "y": -1734.919921875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 3110.1591796875, + "y": -1736.8935546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": 3105.6357421875, + "y": -1739.42333984375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 3077.4443359375, + "y": -1754.62841796875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 3062.02587890625, + "y": -1762.7421875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 7, + "x": 3057.37255859375, + "y": -1764.697265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 3058.80859375, + "y": -1767.755859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 9, + "x": 3051.744140625, + "y": -1778.32275390625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 10, + "x": 3128.72314453125, + "y": -1734.58349609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 11, + "x": 3139.73779296875, + "y": -1743.185546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 12, + "x": 3166.6435546875, + "y": -1762.41357421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 13, + "x": 3166.98974609375, + "y": -1766.47509765625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 14, + "x": 3168.15966796875, + "y": -1775.99365234375, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 15, + "x": 3162.9208984375, + "y": -1776.08984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 16, + "x": 3466.8212890625, + "y": -1747.03759765625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": 3469.02734375, + "y": -1730.80908203125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 18, + "x": 3473.98974609375, + "y": -1717.7822265625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 19, + "x": 3475.93115234375, + "y": -1717.37548828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 21, + "x": 3473.2099609375, + "y": -1708.5947265625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 22, + "x": 2567.60107421875, + "y": -1424.056640625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 23, + "x": 2569.06689453125, + "y": -1420.23583984375, + "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..94f7bc25 Binary files /dev/null and b/repo/pathing/马尾/icon.ico differ diff --git a/repo/pathing/马尾/马尾1.json b/repo/pathing/马尾/马尾1.json new file mode 100644 index 00000000..750d510a --- /dev/null +++ b/repo/pathing/马尾/马尾1.json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "马尾1", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "x": 207.470703125, + "y": 1573.01171875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": 209.2578125, + "y": 1566.9365234375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": 216.025390625, + "y": 1547.08154296875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": 219.5556640625, + "y": 1537.3447265625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": 252.166015625, + "y": 1509.82275390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 6, + "x": 262.775390625, + "y": 1503.455078125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": 282.3623046875, + "y": 1493.6982421875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 8, + "x": 293.806640625, + "y": 1489.25048828125, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 9, + "x": 290.880859375, + "y": 1468.11474609375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 10, + "x": 290.2099609375, + "y": 1465.296875, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": 311.955078125, + "y": 1451.04150390625, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 12, + "x": 319.3984375, + "y": 1442.90380859375, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 13, + "x": 301.998046875, + "y": 1446.36474609375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 14, + "x": 297.12890625, + "y": 1396.162109375, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 15, + "x": 299.251953125, + "y": 1391.73486328125, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": 244.1484375, + "y": 1385.62451171875, + "action": "", + "move_mode": "run", + "type": "path" + }, + { + "id": 17, + "x": 229.9111328125, + "y": 1386.78515625, + "action": "", + "move_mode": "swim", + "type": "path" + }, + { + "id": 18, + "x": 216.9794921875, + "y": 1386.6640625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "path" + }, + { + "id": 20, + "x": 190.138671875, + "y": 1437.4521484375, + "action": "", + "move_mode": "swim", + "type": "path" + }, + { + "id": 21, + "x": 186.4453125, + "y": 1450.32568359375, + "action": "nahida_collect", + "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..c68978c4 --- /dev/null +++ b/repo/pathing/马尾/马尾2.json @@ -0,0 +1,132 @@ +{ + "info": { + "name": "马尾2", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 253.146484375, + "y": 1285.17138671875 + }, + { + "id": 2, + "x": 284.6474609375, + "y": 1299.103515625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 322.8681640625, + "y": 1313.54931640625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 335.2998046875, + "y": 1318.95068359375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 347.2744140625, + "y": 1322.142578125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 6, + "x": 351.6484375, + "y": 1324.57666015625, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 7, + "x": 253.1337890625, + "y": 1285.14599609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 8, + "x": 253.1572265625, + "y": 1282.1552734375, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": 242.9873046875, + "y": 1253.94384765625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": 271.35546875, + "y": 1226.8642578125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 11, + "x": 283.189453125, + "y": 1223.8408203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 12, + "x": 314.3251953125, + "y": 1241.18701171875, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 13, + "x": 306.9951171875, + "y": 1207.869140625, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + }, + { + "id": 14, + "x": 267.8583984375, + "y": 1190.08837890625, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 15, + "x": 249.2666015625, + "y": 1178.4599609375, + "type": "path", + "move_mode": "run", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/马尾/马尾3.json b/repo/pathing/马尾/马尾3.json new file mode 100644 index 00000000..b1a82934 --- /dev/null +++ b/repo/pathing/马尾/马尾3.json @@ -0,0 +1,92 @@ +{ + "info": { + "name": "马尾3", + "type": "collect", + "author": "玛卡巴卡", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.0" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 341.458984375, + "y": 547.76806640625 + }, + { + "id": 2, + "x": 333.751953125, + "y": 564.46240234375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 3, + "x": 331.7705078125, + "y": 595.13427734375, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 4, + "x": 318.779296875, + "y": 607.5986328125, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 5, + "x": 315.40625, + "y": 611.783203125, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 8, + "x": 316.8037109375, + "y": 616.2919921875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 7, + "x": 321.0791015625, + "y": 618.65576171875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": 315.8408203125, + "y": 634.58935546875, + "type": "path", + "move_mode": "run", + "action": "" + }, + { + "id": 10, + "x": 321.068359375, + "y": 633.9560546875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 10, + "x": 320.6796875, + "y": 633.74755859375, + "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..76a25076 Binary files /dev/null and b/repo/pathing/鬼兜虫/icon.ico differ diff --git a/repo/pathing/鬼兜虫/鬼兜虫01-九条阵屋-4个(纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫01-九条阵屋-4个(纳西妲).json new file mode 100644 index 00000000..4e2396f7 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫01-九条阵屋-4个(纳西妲).json @@ -0,0 +1,108 @@ +{ + "info": { + "name": "鬼兜虫01-九条阵屋-4个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.36.5" + }, + "positions": [ + { + "id": 1, + "x": -3436.6826171875, + "y": -3314.7060546875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3437.7080078125, + "y": -3275.916015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3448.6796875, + "y": -3251.3828125, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 4, + "x": -3450.2197265625, + "y": -3247.294921875, + "action": "", + "move_mode": "climb", + "type": "path" + }, + { + "id": 5, + "x": -3463.8232421875, + "y": -3227.341796875, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 6, + "x": -3457.306640625, + "y": -3204.771484375, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": -3451.8212890625, + "y": -3185.8359375, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": -3456.138671875, + "y": -3166.0009765625, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "id": 9, + "x": -3436.224609375, + "y": -3315.880859375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 10, + "x": -3405.0625, + "y": -3299.2568359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 11, + "x": -3381.8564453125, + "y": -3288.634765625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 12, + "x": -3379.818359375, + "y": -3289.2490234375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫02-踏鞴砂(东北侧)-1个(纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫02-踏鞴砂(东北侧)-1个(纳西妲).json new file mode 100644 index 00000000..24e12c09 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫02-踏鞴砂(东北侧)-1个(纳西妲).json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "鬼兜虫-踏鞴砂(东北侧)-1个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.36.5" + }, + "positions": [ + { + "id": 1, + "x": -3236.724609375, + "y": -3533.439453125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3233.3173828125, + "y": -3567.1025390625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3211.5625, + "y": -3596.8564453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -3199.2880859375, + "y": -3619.3291015625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 5, + "x": -3200.8671875, + "y": -3618.484375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫03-踏鞴砂(东北侧)-2个.json b/repo/pathing/鬼兜虫/鬼兜虫03-踏鞴砂(东北侧)-2个.json new file mode 100644 index 00000000..1b1ac8aa --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫03-踏鞴砂(东北侧)-2个.json @@ -0,0 +1,76 @@ +{ + "info": { + "name": "鬼兜虫-踏鞴砂-2个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3288.19140625, + "y": -3652.5673828125 + }, + { + "id": 2, + "x": -3271.439453125, + "y": -3656.470703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3255.6015625, + "y": -3661.7216796875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 4, + "x": -3252.2568359375, + "y": -3659.103515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -3288.162109375, + "y": -3652.4736328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -3288.904296875, + "y": -3626.9755859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 7, + "x": -3303.5517578125, + "y": -3627.6640625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 8, + "x": -3293.9775390625, + "y": -3626.5732421875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫05-踏鞴砂(西北侧)-7个(中途会引怪).json b/repo/pathing/鬼兜虫/鬼兜虫05-踏鞴砂(西北侧)-7个(中途会引怪).json new file mode 100644 index 00000000..64175673 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫05-踏鞴砂(西北侧)-7个(中途会引怪).json @@ -0,0 +1,172 @@ +{ + "info": { + "name": "鬼兜虫-踏鞴砂(西北侧)-7个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3233.2041015625, + "y": -3534.1513671875, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3233.7900390624995, + "y": -3570.6318359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3183.916015625, + "y": -3582.1728515625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -3151.3740234375, + "y": -3596.9267578125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 5, + "x": -3088.916015625, + "y": -3645.1337890625, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 6, + "x": -3086.7412109375005, + "y": -3641.0087890625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -3077.296875, + "y": -3650.5693359375, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 8, + "x": -3075.31640625, + "y": -3657.369140625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -3052.4326171875, + "y": -3668.857421875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 10, + "x": -3041.943359375, + "y": -3666.4189453125, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 11, + "x": -3033.96484375, + "y": -3670.1591796875, + "action": "", + "move_mode": "fly", + "type": "path" + }, + { + "id": 12, + "x": -3034.96484375, + "y": -3670.1591796875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 13, + "x": -3036.20703125, + "y": -3726.8388671875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -3029.03515625, + "y": -3736.220703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -3029.4716796875, + "y": -3727.044921875, + "action": "", + "move_mode": "walk", + "type": "target" + }, + { + "id": 16, + "x": -3018.3642578125, + "y": -3736.4765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 17, + "x": -2992.171875, + "y": -3719.0263671875, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 19, + "x": -2973.4248046875, + "y": -3702.830078125, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "id": 20, + "x": -2973.5634765625, + "y": -3701.75, + "type": "target", + "move_mode": "fly", + "action": "" + }, + { + "id": 21, + "x": -2973.2412109375, + "y": -3703.076171875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫06-踏鞴砂(北侧)-2个(会引怪).json b/repo/pathing/鬼兜虫/鬼兜虫06-踏鞴砂(北侧)-2个(会引怪).json new file mode 100644 index 00000000..f10b946e --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫06-踏鞴砂(北侧)-2个(会引怪).json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "鬼兜虫-踏鞴砂(北侧)-2个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": -3020.576171875, + "y": -3622.935546875 + }, + { + "id": 2, + "x": -3076.0439453125, + "y": -3613.40234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -3091.71875, + "y": -3592.8828125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -3095.26953125, + "y": -3581.94140625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫07-踏鞴砂(公义)-1个(需要纳西妲).json b/repo/pathing/鬼兜虫/鬼兜虫07-踏鞴砂(公义)-1个(需要纳西妲).json new file mode 100644 index 00000000..b21a2147 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫07-踏鞴砂(公义)-1个(需要纳西妲).json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "鬼兜虫-踏鞴砂-1个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3156.609375, + "y": -3886.103515625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3114.919921875, + "y": -3858.818359375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3097.74609375, + "y": -3845.6455078125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -3091.416015625, + "y": -3844.8818359375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": -3088.578125, + "y": -3845.1494140625, + "action": "nahida_collect", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫08-无想刀狭间(东侧)-1个.json b/repo/pathing/鬼兜虫/鬼兜虫08-无想刀狭间(东侧)-1个.json new file mode 100644 index 00000000..777f43c8 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫08-无想刀狭间(东侧)-1个.json @@ -0,0 +1,60 @@ +{ + "info": { + "name": "鬼兜虫-无想刀狭间-1个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2365.9638671875, + "y": -3769.5068359375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "id": 2, + "x": -2350.265625, + "y": -3730.380859375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 3, + "x": -2397.326171875, + "y": -3715.828125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 4, + "x": -2470.6357421875, + "y": -3779.3623046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 5, + "x": -2478.5361328125, + "y": -3773.5830078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "id": 6, + "x": -2481.4091796875, + "y": -3764.3828125, + "type": "target", + "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..17c2f5e9 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫09-八酝岛(东南侧)-2个.json @@ -0,0 +1,68 @@ +{ + "info": { + "name": "鬼兜虫-八酝岛(南侧)-6个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -2404.5908203125, + "y": -3921.5458984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -2412.1435546875, + "y": -3928.1396484375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -2412.5126953125, + "y": -3933.142578125, + "action": "", + "move_mode": "fly", + "type": "target" + }, + { + "id": 4, + "x": -2404.9462890625, + "y": -3921.8837890625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 5, + "x": -2448.892578125, + "y": -3915.6669921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -2526.12109375, + "y": -3947.1142578125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 7, + "x": -2517.3330078125, + "y": -3946.8115234375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫10-八酝岛(西南侧)-1个.json b/repo/pathing/鬼兜虫/鬼兜虫10-八酝岛(西南侧)-1个.json new file mode 100644 index 00000000..da275a97 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫10-八酝岛(西南侧)-1个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "鬼兜虫-八酝岛(南侧)-6个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 8, + "x": -2404.7587890625, + "y": -3922.8271484375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 9, + "x": -2347.369140625, + "y": -4032.2001953125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "id": 10, + "x": -2342.427734375, + "y": -4031.453125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫11-八酝岛(中部)-1个 .json b/repo/pathing/鬼兜虫/鬼兜虫11-八酝岛(中部)-1个 .json new file mode 100644 index 00000000..dbc418a2 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫11-八酝岛(中部)-1个 .json @@ -0,0 +1,52 @@ +{ + "info": { + "name": "鬼兜虫-八酝岛(南侧)-6个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 12, + "x": -2405.6279296875, + "y": -3922.0458984375, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 13, + "x": -2379.142578125, + "y": -3863.7099609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 14, + "x": -2354.9501953125, + "y": -3847.0703125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 15, + "x": -2350.1064453125, + "y": -3842.3974609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 16, + "x": -2353.2578125, + "y": -3844.6943359375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫12-八酝岛(西北侧龙骨南)-1个.json b/repo/pathing/鬼兜虫/鬼兜虫12-八酝岛(西北侧龙骨南)-1个.json new file mode 100644 index 00000000..61a3f642 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫12-八酝岛(西北侧龙骨南)-1个.json @@ -0,0 +1,44 @@ +{ + "info": { + "name": "鬼兜虫-八酝岛(南侧)-6个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 17, + "x": -2404.9443359375, + "y": -3922.59765625, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 18, + "x": -2388.4443359375, + "y": -3912.939453125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 19, + "x": -2291.7646484375, + "y": -3907.76953125, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 20, + "x": -2289.150390625, + "y": -3903.5146484375, + "action": "", + "move_mode": "walk", + "type": "target" + } + ] +} \ No newline at end of file diff --git a/repo/pathing/鬼兜虫/鬼兜虫13-八酝岛(西北侧龙骨北)-1个.json b/repo/pathing/鬼兜虫/鬼兜虫13-八酝岛(西北侧龙骨北)-1个.json new file mode 100644 index 00000000..23b93179 --- /dev/null +++ b/repo/pathing/鬼兜虫/鬼兜虫13-八酝岛(西北侧龙骨北)-1个.json @@ -0,0 +1,36 @@ +{ + "info": { + "name": "鬼兜虫-八酝岛(南侧)-6个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 21, + "x": -2404.8955078125, + "y": -3921.6767578125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 22, + "x": -2252.7265625, + "y": -3876.1474609375, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 23, + "x": -2257.76953125, + "y": -3885.982421875, + "action": "", + "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..a52f9e80 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..577f44a5 --- /dev/null +++ b/repo/pathing/鸟蛋/鸟蛋-纳塔-回声之子下方锚点-2个.json @@ -0,0 +1,28 @@ +{ + "info": { + "name": "鸟蛋-纳塔-回声之子下方锚点-2个", + "type": "collect", + "author": "起个名字好难", + "version": "1.0", + "description": "", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "action": "", + "move_mode": "walk", + "type": "teleport", + "x": 7633.8056640625, + "y": -1646.66796875 + }, + { + "id": 3, + "x": 7637.474609375, + "y": -1641.02490234375, + "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..0e540bc0 Binary files /dev/null and b/repo/pathing/鸣草/icon.ico differ diff --git a/repo/pathing/鸣草/鸣草_九条阵屋_3个.json b/repo/pathing/鸣草/鸣草_九条阵屋_3个.json index 875babc8..deadace1 100644 --- a/repo/pathing/鸣草/鸣草_九条阵屋_3个.json +++ b/repo/pathing/鸣草/鸣草_九条阵屋_3个.json @@ -1,72 +1,84 @@ { - "info":{ - "name":"鸣草_九条阵屋_3个", - "type":"collect", - "author":"花见木易" - }, - "positions":[ - { - "x":-3393.10546875, - "y":-3556.0205078125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-3397.94921875, - "y":-3541.416015625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-3400.5576171875, - "y":-3531.9169921875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-3403.34765625, - "y":-3521.6669921875, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-3417.841796875, - "y":-3468.1279296875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-3409.72265625, - "y":-3450.298828125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-3410.5, - "y":-3446.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-3405.9462890625, - "y":-3445.5849609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-3401.25, - "y":-3450.5, - "type":"path", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "鸣草_九条阵屋_3个", + "type": "collect", + "author": "花见木易", + "version": "1.1", + "description": "鸣草_九条阵屋_3个 的初始点类型修改为“传送”", + "bgiVersion": "0.35.1" + }, + "positions": [ + { + "id": 1, + "x": -3393.10546875, + "y": -3556.0205078125, + "action": "", + "move_mode": "walk", + "type": "teleport" + }, + { + "id": 2, + "x": -3397.94921875, + "y": -3541.416015625, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 3, + "x": -3400.5576171875, + "y": -3531.9169921875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 4, + "x": -3403.34765625, + "y": -3521.6669921875, + "action": "stop_flying", + "move_mode": "fly", + "type": "path" + }, + { + "id": 5, + "x": -3417.841796875, + "y": -3468.1279296875, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 6, + "x": -3409.72265625, + "y": -3450.298828125, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 7, + "x": -3410.5, + "y": -3446.5, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 8, + "x": -3405.9462890625, + "y": -3445.5849609375, + "action": "", + "move_mode": "walk", + "type": "path" + }, + { + "id": 9, + "x": -3401.25, + "y": -3450.5, + "action": "", + "move_mode": "walk", + "type": "path" + } + ] } \ No newline at end of file diff --git a/repo/tcg/皇女白术林尼.txt b/repo/tcg/皇女白术林尼.txt index f0a5225d..738a8a59 100644 --- a/repo/tcg/皇女白术林尼.txt +++ b/repo/tcg/皇女白术林尼.txt @@ -1,3 +1,5 @@ +// 作者:HZYgrandma + 角色定义: 角色1=皇女 角色2=白术 @@ -38,4 +40,4 @@ 白术 使用 技能1 白术 使用 技能2 -林尼 使用 技能3 \ No newline at end of file +林尼 使用 技能3 diff --git a/repo/tcg/迪希雅八重神子纯水精灵.txt b/repo/tcg/迪希雅八重神子纯水精灵.txt new file mode 100644 index 00000000..59c61fdd --- /dev/null +++ b/repo/tcg/迪希雅八重神子纯水精灵.txt @@ -0,0 +1,33 @@ +// 作者: johsang +// 描述: 对面出伤快、元素盾、耐耗王可用,多种召唤物稳定赚费补强生存,应对一些刁钻局有奇效 + + +角色定义: +角色1=迪希雅|火{技能3消耗=1火骰子+2任意,技能2消耗=3火骰子,技能1消耗=4火骰子} +角色2=八重神子|雷{技能3消耗=1雷骰子+2任意,技能2消耗=3雷骰子,技能1消耗=3雷骰子} +角色3=纯水精灵|水{技能4消耗=1水骰子+2任意,技能3消耗=3水骰子,技能2消耗=5水骰子,技能1消耗=3水骰子} + +--- +策略定义: +迪希雅 使用 技能2 +八重神子 使用 技能2 + +八重神子 使用 技能2 +纯水精灵 使用 技能3 + +纯水精灵 使用 技能3 +迪希雅 使用 技能2 + +迪希雅 使用 技能1 +八重神子 使用 技能1 + +纯水精灵 使用 技能3 +纯水精灵 使用 技能1 + +// 后续的内容不太可能执行到,只是为了一些特殊对局 + +纯水精灵 使用 技能3 +迪希雅 使用 技能2 + +八重神子 使用 技能2 +纯水精灵 使用 技能3 \ No newline at end of file