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/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/repo/pathing/狗粮调度器@Yang-z/readme.txt b/bak/狗粮调度器@Yang-z/readme.txt similarity index 100% rename from repo/pathing/狗粮调度器@Yang-z/readme.txt rename to bak/狗粮调度器@Yang-z/readme.txt diff --git a/repo/pathing/狗粮调度器@Yang-z/狗粮A线@Yang-z.json b/bak/狗粮调度器@Yang-z/狗粮A线@Yang-z.json similarity index 100% rename from repo/pathing/狗粮调度器@Yang-z/狗粮A线@Yang-z.json rename to bak/狗粮调度器@Yang-z/狗粮A线@Yang-z.json diff --git a/repo/pathing/狗粮调度器@Yang-z/狗粮B线@Yang-z.json b/bak/狗粮调度器@Yang-z/狗粮B线@Yang-z.json similarity index 100% rename from repo/pathing/狗粮调度器@Yang-z/狗粮B线@Yang-z.json rename to bak/狗粮调度器@Yang-z/狗粮B线@Yang-z.json diff --git a/build/build.js b/build/build.js index 09727981..ecc5f84b 100644 --- a/build/build.js +++ b/build/build.js @@ -132,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/repo.json b/repo.json index 846f42b4..bf39e98e 100644 --- a/repo.json +++ b/repo.json @@ -1,5 +1,5 @@ { - "time": "20241108154151", + "time": "20241109110235", "url": "https://github.com/babalae/bettergi-scripts-list/archive/refs/heads/main.zip", "file": "repo.json", "indexes": [ @@ -340,465 +340,1640 @@ "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": "【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json", + "type": "file", + "hash": "aac4d3cf7fbdff86d3b287f7ac83f4123520bf27", + "version": "aac4d3c", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "备选", + "type": "directory", + "children": [ + { + "name": "(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json", + "type": "file", + "hash": "4236db2dd129e15061b8007c425e6569d2c977d8", + "version": "4236db2", + "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": "狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json", + "type": "file", + "hash": "06cd71801a43d548af2a5178e4e18021fbcacd94", + "version": "06cd718", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-沉玉谷上谷-遗珑埠东-4个(第5个有干扰).json", + "type": "file", + "hash": "9edd17a44ef2481a360246b6e98d6829004045d9", + "version": "9edd17a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-珉林-华光林-2个(飞偏).json", + "type": "file", + "hash": "75f903a121bb4fda5368e749ce19c202153e24b5", + "version": "75f903a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-璃月-碧水源-石门-1个(飞偏).json", + "type": "file", + "hash": "ef8fb13902fa32d2bf2e7a7e590bd56633f44cda", + "version": "ef8fb13", + "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": "狗粮-纳塔-涌流地-副本周边-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": "狗粮-纳塔-踞石山-东-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": "狗粮-须弥-下风蚀地-阿如村-西北-2个.json", + "type": "file", + "hash": "281ebfee0531b33e57018457bc42fc9669541a62", + "version": "281ebfe", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json", + "type": "file", + "hash": "3030768283c75aaf99f57e3f5553e03e6ccda109", + "version": "3030768", + "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": "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": "狗粮-须弥-须弥城西-4个(重兵把守).json", + "type": "file", + "hash": "74c0123e6e0da39bfeb665c9a9c4b2f883c20f90", + "version": "74c0123", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + } + ] + }, + { + "name": "狗粮-璃月-沉玉谷上谷-东-2个.json", + "type": "file", + "hash": "ee0471691a3df893a10fc9b760ae33407bb27765", + "version": "ee04716", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-沉玉谷南陵-3个(另一个太远).json", + "type": "file", + "hash": "1743fc31cd3876204d8d178ff6d566215c571bba", + "version": "1743fc3", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-珉林-东北-9个.json", + "type": "file", + "hash": "38b57768b337286682e770e0a524016ff21a3173", + "version": "38b5776", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-珉林-北-5个.json", + "type": "file", + "hash": "d0d3cb3cf15257cbb91cb506c224d3ab5d7bcd62", + "version": "d0d3cb3", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-珉林-天道谷-3个.json", + "type": "file", + "hash": "1ba22ed772a8a7b9c8cdd531f77788f7632b7f3e", + "version": "1ba22ed", + "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": "1c512b7887915582539ae17d1f064c6f05b37e25", + "version": "1c512b7", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-琼玑野-绿华池-3个.json", + "type": "file", + "hash": "8b18ff3e1f535892c0c65cdf4fd98f011c522e6d", + "version": "8b18ff3", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-碧水源-望舒客栈-1个.json", + "type": "file", + "hash": "37a4ad936e6321f8f682abc8d4c0ed110a0c1586", + "version": "37a4ad9", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-碧水源-盐中之地-3个.json", + "type": "file", + "hash": "15de694dd7bfdd9a758a4a3ae997af36b9d6c4f3", + "version": "15de694", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-璃月-碧水源-轻策庄-3个.json", + "type": "file", + "hash": "f8061a22784ab9e5a5941e2a5c0a0a86654a4b3b", + "version": "f8061a2", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-万火之瓯-竞技场东-4个.json", + "type": "file", + "hash": "71c010b989beb47e8f7aa742bc5fa1693fbdfcdf", + "version": "71c010b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-坚岩隘谷-回声之子南-7个.json", + "type": "file", + "hash": "19a93e87e04ae04cb49c45180c9c6d145e5994df", + "version": "19a93e8", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-纳塔-涌流地-流泉之众-4个.json", + "type": "file", + "hash": "19841e468eb1bcd4a05157ee45dcd0b50bc677a5", + "version": "19841e4", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-上风蚀地-东北营地-2个.json", + "type": "file", + "hash": "0fa3477235db9ace38cd6c78f3e77842a85b36c6", + "version": "0fa3477", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-下风蚀地-阿如村-4个.json", + "type": "file", + "hash": "b1829e6164aca732cfe4b981e5c6db628cbeab87", + "version": "b1829e6", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-下风蚀地-阿如村-北-1个.json", + "type": "file", + "hash": "32a918db5b0dc2448ca0ccb429190d5ecef3efd0", + "version": "32a918d", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json", + "type": "file", + "hash": "f83ab3f4afd85c12b0bfa3e69a6b046e6b45de8f", + "version": "f83ab3f", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-二净甸-觉王之殿南-6个.json", + "type": "file", + "hash": "d50d8eed5dce161e93b3fed81d8e79b4fe6812c3", + "version": "d50d8ee", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-圣显厅西-3个.json", + "type": "file", + "hash": "8a6e754db557e506ae1137d4e90cc85afc046baf", + "version": "8a6e754", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-塔尼特露营地-3个.json", + "type": "file", + "hash": "f3e6cb2567cbb56041b28e511581dcaf3bd2e0cd", + "version": "f3e6cb2", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json", + "type": "file", + "hash": "740b127109c67704600acac1e176c81511481ddf", + "version": "740b127", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-失落的苗圃-南-8个.json", + "type": "file", + "hash": "6516cbb80729ade828ecf14c79ff0c87ab4f4ba5", + "version": "6516cbb", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-护世森-卡萨扎莱宫南-2个.json", + "type": "file", + "hash": "37e17b738fc158d6c31e1c4eaf7f07359aeb049d", + "version": "37e17b7", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-浮罗囿-甘露花海北-4个.json", + "type": "file", + "hash": "a6bb8bf7dfd893aa6c7dc1672d38f54be5b1cea0", + "version": "a6bb8bf", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-道成林-化城郭-西-3个.json", + "type": "file", + "hash": "b90902861f006d31d50fa91d9af2b041edfe3a98", + "version": "b909028", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json", + "type": "file", + "hash": "ecf36019b7d262677bd9128b9d11d71cc49848da", + "version": "ecf3601", + "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": "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": "4c21def660c0ea14e36af93a8b5269adb7803cc3", + "version": "4c21def", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-须弥-千壑沙地.json", + "type": "file", + "hash": "947eecedb2cac74a444413575a959fe96fc13dc8", + "version": "947eece", + "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": "167289cf304bf7b2e32278b5ab884d99504ff4b6", + "version": "167289c", + "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": "狗粮-枫丹-研究院区-中央实验室遗址-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": "狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json", + "type": "file", + "hash": "c31e5df69fce2db78d50f06c384e086b359f713d", + "version": "c31e5df", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-稻妻-鹤观-东北-2个(无法就近传送).json", + "type": "file", + "hash": "19ce5fb06ef46c977d67d7a12a1bf35469b071bb", + "version": "19ce5fb", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + }, + { + "name": "狗粮-稻妻-鹤观-南-2个(远).json", + "type": "file", + "hash": "e104930953feb646ad40fc92a76faa367f5f7eb5", + "version": "e104930", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物", + "备选" + ] + } + ] + }, + { + "name": "狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json", + "type": "file", + "hash": "c38c54b2523ac3fab1d00fceca9c2257d5a0b769", + "version": "c38c54b", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-白露区-秋分山东侧-2个.json", + "type": "file", + "hash": "22d1b3cde6eaa1fcc1adb52fd7f3b211e637a17d", + "version": "22d1b3c", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-白露区-秋分山西侧-北-2个.json", + "type": "file", + "hash": "c990f25a3ef40b0d35a8b09f4e689a0d3358dcd9", + "version": "c990f25", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-东-3个.json", + "type": "file", + "hash": "ffe0f1de2ea565dfec71e74ec56442097cedff01", + "version": "ffe0f1d", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json", + "type": "file", + "hash": "a8eb7316b9ee72abf8bf9562645ab33368783485", + "version": "a8eb731", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json", + "type": "file", + "hash": "8af5076302e3f170e968eafe759b2e56c2f52ba6", + "version": "8af5076", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json", + "type": "file", + "hash": "95fe73fbff83a5f9050dfa6ff94a12259cea42e6", + "version": "95fe73f", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json", + "type": "file", + "hash": "89d0af8e24fbca90a6409e77d979457843963cbb", + "version": "89d0af8", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-西南偏南-6个.json", + "type": "file", + "hash": "d177d907c6dcfb4bc470f8ae42cfe53b6cb69314", + "version": "d177d90", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-研究院区-西南偏西-4个.json", + "type": "file", + "hash": "f0c829a42fc7b63799428c60ec1ba530e392cc41", + "version": "f0c829a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-枫丹-莫尔泰区-七天神像-1个.json", + "type": "file", + "hash": "50fea6fed2f13834e1a2dbf826767e18c0c8617b", + "version": "50fea6f", + "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": "cdf9d8df4f57621ae6a264c26c51d3aa98221d0e", + "version": "cdf9d8d", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-海祇岛-东方小岛-2个.json", + "type": "file", + "hash": "6a5c97906d56e8d647a35e783e2973d2465f8ede", + "version": "6a5c979", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-海祇岛-望泷村西南-4个.json", + "type": "file", + "hash": "208eb1dbadf3e432f47f3fcc9ec51708708cc8cc", + "version": "208eb1d", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json", + "type": "file", + "hash": "f8e56a946d6badc3799105500dfdfd6a0f719ea5", + "version": "f8e56a9", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-清籁岛-平海砦西-8个.json", + "type": "file", + "hash": "df2cb4ab6b34efdaaa7b84ad9430e6891ce37477", + "version": "df2cb4a", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-清籁岛-浅濑神社-3个.json", + "type": "file", + "hash": "281b6880d2602cf857d03028f025900c19a6afe1", + "version": "281b688", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-清籁岛-越石村-8个.json", + "type": "file", + "hash": "d753b7790af8abdbf0abd0a60d479a71025d0e66", + "version": "d753b77", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json", + "type": "file", + "hash": "678e5b066ab953cd08d388b17ce0a38fce5c446c", + "version": "678e5b0", + "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": "cbd3b02eb66f96d07278462159ea58725a30dd85", + "version": "cbd3b02", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json", + "type": "file", + "hash": "6c821fd97025425e206c7dc063eea71edebafa68", + "version": "6c821fd", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "狗粮-稻妻-鹤观-东-3个.json", + "type": "file", + "hash": "aa6ad66b047555ffb92c4d56d083a0e0f768279d", + "version": "aa6ad66", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-枫丹-研究院区.json", + "type": "file", + "hash": "807363019ebb5e22cc76e0b5d85629cc72b0eac9", + "version": "8073630", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-枫丹-莫尔泰区.json", + "type": "file", + "hash": "12faa459e729b637c4547cdda7a0920435d54d5a", + "version": "12faa45", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-枫丹-黎翡区.json", + "type": "file", + "hash": "9dc54443523bfd6e7269fb7f83ee74b29cbd2da4", + "version": "9dc5444", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-稻妻-神无冢.json", + "type": "file", + "hash": "b98d943bd3f84b6e6afe25d2355011f711f62e72", + "version": "b98d943", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "(恢复)狗粮-稻妻-鹤观.json", + "type": "file", + "hash": "3741d68e434ec2158255dc14e1c40a5711b09e06", + "version": "3741d68", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + } ] }, { - "name": "特尔柯西01 4.json", - "type": "file", - "hash": "02121dbda4dd4c559580e289504f535085e8d969", - "version": "02121db", - "author": "lwh9346", - "description": "", - "tags": [ - "圣遗物" - ] - }, - { - "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 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": "狗粮额外@Yang-z", + "type": "directory", + "children": [ + { + "name": "【额外】狗粮-枫丹-研究院区-新枫丹科学院南+1个.json", + "type": "file", + "hash": "6a510f10cc1b7463e0fb408d54e6dc7bbda6e999", + "version": "6a510f1", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "【额外】狗粮-纳塔+7个.json", + "type": "file", + "hash": "907f928c25585a2a8101481acc59d7333df345e9", + "version": "907f928", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + }, + { + "name": "【额外】狗粮-须弥-水天丛林+7个.json", + "type": "file", + "hash": "01d11ebe21e8136037c0d0e912690ce3bb279632", + "version": "01d11eb", + "author": "Yang-z", + "description": "", + "tags": [ + "圣遗物" + ] + } ] } ] @@ -865,8 +2040,8 @@ { "name": "圣金虫_荼诃落谷西_3.json", "type": "file", - "hash": "139b794f081d5db9bf33f672bc2e6d2dee5c4463", - "version": "139b794", + "hash": "c044a3c4b3c4122f0028247a3dfb65cc55d718ae", + "version": "c044a3c", "author": "Tim", "description": "少一个点要用四叶印", "tags": [ @@ -2445,8 +3620,8 @@ { "name": "松茸5.json", "type": "file", - "hash": "44b54c9ed2d48f3dca12af9784ea62991a3d1717", - "version": "44b54c9", + "hash": "cd974373390b0901595b445940c5f601ee3e2bce", + "version": "cd97437", "author": "", "description": "", "tags": [ @@ -3799,7 +4974,7 @@ ] }, { - "name": "珊瑚珍珠", + "name": "珊瑚真珠", "type": "directory", "children": [ { @@ -3810,7 +4985,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -3821,7 +4996,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -3832,7 +5007,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -3843,7 +5018,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -3854,7 +5029,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] }, { @@ -3865,7 +5040,7 @@ "author": "黎歌", "description": "", "tags": [ - "珊瑚珍珠" + "珊瑚真珠" ] } ] @@ -4194,6 +5369,11 @@ } ] }, + { + "name": "石珀", + "type": "directory", + "children": [] + }, { "name": "竹笋", "type": "directory", @@ -7141,6 +8321,19 @@ "枫原万叶" ] }, + { + "name": "凝光钟离五郎.txt", + "type": "file", + "hash": "7bfd284fe39083e3c3284ad774be85c524881401", + "version": "7bfd284", + "author": "johsang", + "description": "五郎钟离推荐带西风武器保证充能,高防短轴全程护盾多无敌帧,四号位自由可放好感", + "tags": [ + "五郎", + "钟离", + "凝光" + ] + }, { "name": "四神队(进阶版).txt", "type": "file", @@ -7804,6 +8997,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..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/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/嘟嘟莲/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/圣遗物/狗粮_枫丹_新枫科院宿舍_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/圣遗物/狗粮_枫丹_新枫科院西北_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/圣遗物/狗粮_枫丹_新枫科院西南_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/圣遗物/狗粮_枫丹_欧庇克莱歌剧院东南_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/圣遗物/狗粮_璃月_地中之盐_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/圣遗物/狗粮_璃月_老窖_6.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_老窖_6.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_璃月_老窖_6.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_璃月_老窖_6.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/圣遗物/狗粮_璃月_轻策庄_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/圣遗物/狗粮_稻妻_望泷村西南_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/圣遗物/狗粮_稻妻_浅籁神社_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/圣遗物/狗粮_稻妻_越石村_5.json b/repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_越石村_5.json similarity index 100% rename from repo/pathing/圣遗物/狗粮_稻妻_越石村_5.json rename to repo/pathing/圣遗物/狗粮@Tim/狗粮_稻妻_越石村_5.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/圣遗物/狗粮_纳塔_流泉之众_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/圣遗物/狗粮_须弥_无郁绸林_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/圣遗物/狗粮_须弥_水天丛林水泡点_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/圣遗物/狗粮_须弥_维摩庄_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/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json index e9475b19..cd2b1164 100644 --- a/repo/pathing/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/【收尾】狗粮-稻妻-神无冢-踏鞴砂-21个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json index 2ef696e4..cbe45533 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不可用-地图失效)狗粮-须弥-列柱沙原-西北-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json index 7bdd7290..10aa747a 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-南-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json index 8977a288..92351e14 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-龙脊雪山-西-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json index 84ba4b0d..e9e45421 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-层岩巨渊-采樵谷-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json index 500463de..3be30693 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷-上谷-翘英庄西-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json index 762867cc..b4bced7a 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠-3个(镜头摇晃).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个(第5个有干扰).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个(第5个有干扰).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个(第5个有干扰).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个(第5个有干扰).json index aec04996..900e03d0 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个(第5个有干扰).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-沉玉谷上谷-遗珑埠东-4个(第5个有干扰).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json index 75f30bbd..b381e80b 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-珉林-华光林-2个(飞偏).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json index 58038960..03709558 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-璃月-碧水源-石门-1个(飞偏).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json index 7b4024be..4053278c 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-中部湖泊-2个(干扰点很近).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json index d4b312bd..d9a2813c 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-万火之瓯-柴薪之丘-传送点旁-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json index ddaab077..1b6a3197 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-副本周边-2个(左边一个重兵把守,不取).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json index ab9cf4cd..ca0a2074 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-涌流地-北部山洞-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json index 4f2caaa8..a875f3cd 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-东-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json index 8ca2056d..008dfda9 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-纳塔-踞石山-悬木人-2个(镜头不稳).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json index 0f4e9867..462b7ec5 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-下风蚀地-阿如村-西北-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json index 47869ad8..45057d9b 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-啁哳之沙-5个(远+交互干扰).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json index 67f2ab11..3ee04c8b 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-千壑沙地-镔铁沙丘-北-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json index 81b64cdd..3989aa22 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-失落的苗圃-往昔的桓那兰那-4个(远).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json index f952680e..4f15bc40 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-护世森-无郁稠林南-2个(重兵把守+交互干扰,只拿前两个).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json index 9de69216..e7a5da7b 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-浮罗囿-聚香海岸东-3个(远).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json index 94d746c1..f8cf8bca 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-阿陀河谷-维摩庄-3个(阻挡太多).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json index 2d4b9950..206ea6f1 100644 --- a/repo/pathing/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/备选/狗粮-须弥-须弥城西-4个(重兵把守).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-沉玉谷上谷-东-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-沉玉谷上谷-东-2个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-沉玉谷上谷-东-2个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-沉玉谷上谷-东-2个.json index dce942c2..d6bcda82 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-沉玉谷上谷-东-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-沉玉谷上谷-东-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json index bf28353a..b7e4fe43 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-沉玉谷南陵-3个(另一个太远).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json index ed934fcc..fb0608a5 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-东北-9个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json index 1e7c5512..20b30b90 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-北-5个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-天道谷-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-天道谷-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-天道谷-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-天道谷-3个.json index 19b1af73..24b38dfb 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-天道谷-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-天道谷-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-3个.json index fc8bb7f9..204fe315 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-奥藏山南-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个.json index fc958afe..a7c0af20 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-珉林-绝云间-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json index 510751a9..cf770c0f 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-琼玑野-绿华池-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-望舒客栈-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-望舒客栈-1个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-望舒客栈-1个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-望舒客栈-1个.json index b79fe450..703f171a 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-望舒客栈-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-望舒客栈-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json index 47a34b29..74fc56ee 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-盐中之地-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-轻策庄-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-轻策庄-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-轻策庄-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-轻策庄-3个.json index 4c004851..049e9fb9 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-璃月-碧水源-轻策庄-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-璃月-碧水源-轻策庄-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json index abe9cd68..efe16a9b 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-万火之瓯-竞技场东-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json index 656d994c..2b05cbd6 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-坚岩隘谷-回声之子南-7个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json index f50a454a..dc7fd561 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-纳塔-涌流地-流泉之众-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json index 5a8e00e2..e3260d87 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-上风蚀地-东北营地-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json index 6c11e320..e31a020f 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-北-1个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-北-1个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-北-1个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-北-1个.json index c58ec5cc..a6dd1fb1 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-北-1个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-下风蚀地-阿如村-北-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json index e193845f..0fafcf06 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-七天神像-4个(重兵把守,其余不拿).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json index 9090d377..bcc1b075 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-二净甸-觉王之殿南-6个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-圣显厅西-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-圣显厅西-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-圣显厅西-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-圣显厅西-3个.json index ffad3532..9f56e934 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-圣显厅西-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-圣显厅西-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json index 872527d3..4b3f83df 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-塔尼特露营地-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json index 845d68bd..88574d6f 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-千壑沙地-神的棋盘-1个(只拿前一个).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json index a1219f55..c09950ea 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-失落的苗圃-南-8个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json index 389045e1..7cb96700 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-护世森-卡萨扎莱宫南-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json index f6beac62..eef6f523 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-浮罗囿-甘露花海北-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json index 22f7e0a2..e667b18f 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-道成林-化城郭-西-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json index 2b341ed4..57bad3df 100644 --- a/repo/pathing/狗粮A线@Yang-z/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/狗粮-须弥-须弥城-3个(有一个剧烈摇晃,不拿).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-沉玉谷南陵.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-沉玉谷南陵.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-沉玉谷南陵.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-沉玉谷南陵.json index 7e3ff737..9b233150 100644 --- a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-沉玉谷南陵.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-沉玉谷南陵.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-珉林.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-珉林.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-珉林.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-珉林.json index 5ffcb63a..d11924f7 100644 --- a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-珉林.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-珉林.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json index ff4265e6..dd3b5101 100644 --- a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-璃月-琼玑野.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json index ef20ad11..5eb7eb3c 100644 --- a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json index 0e2122d1..640c18aa 100644 --- a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-二净甸.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-须弥-千壑沙地.json b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-千壑沙地.json similarity index 99% rename from repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-须弥-千壑沙地.json rename to repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-千壑沙地.json index f8dedee0..b9cfaee7 100644 --- a/repo/pathing/狗粮A线@Yang-z/(恢复)狗粮-须弥-千壑沙地.json +++ b/repo/pathing/圣遗物/狗粮A线@Yang-z/(恢复)狗粮-须弥-千壑沙地.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json index 754a8451..6b794e45 100644 --- a/repo/pathing/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/【收尾】狗粮-稻妻-清籁岛-清籁丸-20个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json index 684d6a5f..3b75a362 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/(不稳定-剧烈摇晃)狗粮-枫丹-枫丹庭区-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json index 60dea705..7bb91a90 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-幽林雾道北-5个(重兵把守).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json index 91216119..5bf211a8 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-伊黎耶林区-茉洁站西-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json index 527cfa80..93be52be 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-枫丹庭区-西北恩肖家-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json index c776c845..73387697 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-白露区-秋分山西侧-南-3个(重兵把守).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json index ebae8d0c..b028248f 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中央实验室遗址-2个(路线复杂).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json index e6963885..10a425ec 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-研究院区-中部塔内-9个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json index 7b6e20bf..c4c52334 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-枫丹-黎翡区-芒索斯山东-塔内-4个(远+飞入).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东北-2个(无法就近传送).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东北-2个(无法就近传送).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东北-2个(无法就近传送).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东北-2个(无法就近传送).json index f2f72cec..e8b4440c 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东北-2个(无法就近传送).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-东北-2个(无法就近传送).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-南-2个(远).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-南-2个(远).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-南-2个(远).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-南-2个(远).json index be28f5ce..7269fff0 100644 --- a/repo/pathing/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-南-2个(远).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/备选/狗粮-稻妻-鹤观-南-2个(远).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json index 10b7464f..44f6fb64 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-伊黎耶林区-欧庇克莱歌剧院东南-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json index 32b2f228..e91f7dda 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山东侧-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json index f22748e0..73d3119a 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-白露区-秋分山西侧-北-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-东-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-东-3个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-东-3个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-东-3个.json index 628b6b24..04bef86f 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-东-3个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-东-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json index 396bc2a5..cf84052d 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-中央实验室遗址-北侧屋内-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json index 66707947..f512e4da 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-学术会堂-1个(另一个太远).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json index 8d590f72..42b12f93 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-新枫丹科学院-东南侧-8个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json index 73004568..2a49d696 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西北-6个(有一个不拿,有干扰).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json index 0d37ba76..621c7ece 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏南-6个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json index 53ece8e5..3e33cc49 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-研究院区-西南偏西-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-莫尔泰区-七天神像-1个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-莫尔泰区-七天神像-1个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-莫尔泰区-七天神像-1个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-莫尔泰区-七天神像-1个.json index 9410673e..b2ae36e4 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-莫尔泰区-七天神像-1个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-莫尔泰区-七天神像-1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json index d91ebb08..2a811c88 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-七天神像-5个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json index 41a24390..29a7ed47 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-枫丹-黎翡区-芒索斯山东-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json index 76e8771a..5d9cfe36 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-东方小岛-2个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json index 70be6080..e37585b7 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-望泷村西南-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json index 34ef8b82..1ad5de1f 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-海祇岛-珊瑚宫东北-6个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json index f32163ad..f527274a 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-平海砦西-8个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json index 49e6f7e4..89ca748e 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-浅濑神社-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json index 57b5d003..9eea378d 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-清籁岛-越石村-8个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json index 968fb29f..a08efd60 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-东-5个(最后一个不拿,重兵把守).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json index a2792d5f..113b0335 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-九条阵屋-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json index c15d6b83..809237d6 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-堇色之庭-4个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json index 6b878318..62229160 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-神无冢-无相之火-4个(第5个有干扰,不拿).json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json index 75e10ebb..e4e6a22c 100644 --- a/repo/pathing/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/狗粮-稻妻-鹤观-东-3个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json index 13237688..a89f83f9 100644 --- a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-研究院区.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-莫尔泰区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-莫尔泰区.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-莫尔泰区.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-莫尔泰区.json index edf186bc..85107510 100644 --- a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-莫尔泰区.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-莫尔泰区.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json index 77c6fbbb..139587c9 100644 --- a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-枫丹-黎翡区.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json index 770f7644..5076200d 100644 --- a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-神无冢.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-稻妻-鹤观.json b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-鹤观.json similarity index 99% rename from repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-稻妻-鹤观.json rename to repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-鹤观.json index 2e5eb74f..d0667f18 100644 --- a/repo/pathing/狗粮B线@Yang-z/(恢复)狗粮-稻妻-鹤观.json +++ b/repo/pathing/圣遗物/狗粮B线@Yang-z/(恢复)狗粮-稻妻-鹤观.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院南+1个.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院南+1个.json similarity index 99% rename from repo/pathing/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院南+1个.json rename to repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院南+1个.json index c2e6affd..81cfd64e 100644 --- a/repo/pathing/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院南+1个.json +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-枫丹-研究院区-新枫丹科学院南+1个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json similarity index 99% rename from repo/pathing/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json rename to repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json index 33770093..2023a840 100644 --- a/repo/pathing/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-纳塔+7个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json similarity index 99% rename from repo/pathing/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json rename to repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json index bc7fe447..5c4caed6 100644 --- a/repo/pathing/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json +++ b/repo/pathing/圣遗物/狗粮额外@Yang-z/【额外】狗粮-须弥-水天丛林+7个.json @@ -1,4 +1,4 @@ -{ +{ "info": { "name": "", "type": "collect", diff --git a/repo/pathing/圣金虫/desktop.ini b/repo/pathing/圣金虫/desktop.ini new file mode 100644 index 00000000..e20f8ab7 --- /dev/null +++ b/repo/pathing/圣金虫/desktop.ini @@ -0,0 +1,2 @@ +[.ShellClassInfo] +IconResource=icon.ico \ No newline at end of file diff --git a/repo/pathing/圣金虫/icon.ico b/repo/pathing/圣金虫/icon.ico new file mode 100644 index 00000000..5b01d6e3 Binary files /dev/null and b/repo/pathing/圣金虫/icon.ico differ diff --git a/repo/pathing/圣金虫/圣金虫_荼诃落谷西_3.json b/repo/pathing/圣金虫/圣金虫_荼诃落谷西_3.json index 9e2333d7..3cd2eb91 100644 --- a/repo/pathing/圣金虫/圣金虫_荼诃落谷西_3.json +++ b/repo/pathing/圣金虫/圣金虫_荼诃落谷西_3.json @@ -12,7 +12,7 @@ "id": 1, "x": 4790.89892578125, "y": -3182.685546875, - "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..03eecfca 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..d9d53d64 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..736943c5 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..f0f4a6ff 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..b813fd36 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..577bf412 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..e3cb7c04 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..75a473c9 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..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/星螺/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..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/松茸/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/松茸/松茸5.json b/repo/pathing/松茸/松茸5.json index 0c02830f..7c734d42 100644 --- a/repo/pathing/松茸/松茸5.json +++ b/repo/pathing/松茸/松茸5.json @@ -14,7 +14,7 @@ "y": 5091.79931640625, "action": "", "move_mode": "walk", - "type": "path" + "type": "teleport" }, { "id": 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..1d5fc630 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..2c7922d5 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/沉玉仙茗/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/海灵芝/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/海草/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/湖光铃兰/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/甜甜花/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/竹笋/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/绝云椒椒/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/肉龙掌/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/胡萝卜/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/莲蓬/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/落落莓/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/虹彩蔷薇/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/金鱼草/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/钩钩果/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/马尾/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/鸟蛋/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/鸣草/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/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