diff --git a/build/build.js b/build/build.js new file mode 100644 index 00000000..507994de --- /dev/null +++ b/build/build.js @@ -0,0 +1,147 @@ +const fs = require('fs'); +const path = require('path'); +const crypto = require('crypto'); + +function calculateSHA1(filePath) { + const fileBuffer = fs.readFileSync(filePath); + const hashSum = crypto.createHash('sha1'); + hashSum.update(fileBuffer); + return hashSum.digest('hex'); +} + +function extractInfoFromCombatFile(filePath) { + const content = fs.readFileSync(filePath, 'utf8'); + const authorMatch = content.match(/\/\/\s*作者:(.*)/); + const descriptionMatch = content.match(/\/\/\s*描述:(.*)/); + const characterMatches = content.match(/^(?!\/\/).*?(\S+)(?=\s|$)/gm); + + const tags = [...new Set(characterMatches || [])] + .map(char => char.trim()) + .filter(char => char.length > 0 && !char.match(/^[,.]$/)); // 过滤掉单个逗号或句号 + + return { + author: authorMatch ? authorMatch[1].trim() : '', + description: descriptionMatch ? descriptionMatch[1].trim() : '', + tags: tags + }; +} + +function extractInfoFromJSFolder(folderPath) { + const manifestPath = path.join(folderPath, 'manifest.json'); + if (fs.existsSync(manifestPath)) { + try { + const manifestContent = fs.readFileSync(manifestPath, 'utf8'); + const manifest = JSON.parse(manifestContent); + return { + version: manifest.version || '', + description: manifest.description || '', + author: manifest.authors && manifest.authors.length > 0 ? manifest.authors[0].name : '', + tags: [] + }; + } catch (error) { + console.error(`解析 ${manifestPath} 时出错:`, error); + console.error('文件内容:', fs.readFileSync(manifestPath, 'utf8')); + return { version: '', description: '', author: '', tags: [] }; + } + } + return { version: '', description: '', author: '', tags: [] }; +} + +function extractInfoFromPathingFile(filePath, parentFolders) { + const content = JSON.parse(fs.readFileSync(filePath, 'utf8')); + return { + author: content.info && content.info.author ? content.info.author : '', + description: '', + tags: parentFolders.slice(2) // 从第三个元素开始,跳过 'pathing' 和下一级目录 + }; +} + +function extractInfoFromTCGFile(filePath, parentFolder) { + const content = fs.readFileSync(filePath, 'utf8'); + const authorMatch = content.match(/\/\/\s*作者:(.*)/); + const descriptionMatch = content.match(/\/\/\s*描述:(.*)/); + const characterMatches = content.match(/角色\d+=([^|\r\n{]+)/g); + + const tags = characterMatches + ? characterMatches.map(match => match.split('=')[1].trim()) + .filter(tag => tag && !tag.startsWith('角色')) + : []; + + if (parentFolder === '惊喜牌组') { + tags.push('惊喜牌组'); + } + + return { + author: authorMatch ? authorMatch[1].trim() : '', + description: descriptionMatch ? descriptionMatch[1].trim() : '', + tags: [...new Set(tags)] // 去重 + }; +} + +function generateDirectoryTree(dir, currentDepth = 0, parentFolders = []) { + const stats = fs.statSync(dir); + const info = { + name: path.basename(dir), + type: stats.isDirectory() ? 'directory' : 'file' + }; + + if (stats.isDirectory()) { + if (parentFolders[0] === 'js' && currentDepth === 1) { + // 对于 js 文件夹下的直接子文件夹,不再递归 + const manifestPath = path.join(dir, 'manifest.json'); + if (fs.existsSync(manifestPath)) { + const jsInfo = extractInfoFromJSFolder(dir); + info.hash = calculateSHA1(manifestPath); + info.version = jsInfo.version || info.hash.substring(0, 7); + info.author = jsInfo.author; + info.description = jsInfo.description; + 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]); + }); + } + } else { + const hash = calculateSHA1(dir); + info.hash = hash; + info.version = hash.substring(0, 7); + + const category = parentFolders[0]; + try { + switch (category) { + case 'combat': + Object.assign(info, extractInfoFromCombatFile(dir)); + break; + case 'pathing': + Object.assign(info, extractInfoFromPathingFile(dir, parentFolders)); + info.tags = info.tags.filter(tag => tag !== 'pathing'); + break; + case 'tcg': + Object.assign(info, extractInfoFromTCGFile(dir, parentFolders[1])); + break; + } + } catch (error) { + console.error(`处理文件 ${dir} 时出错:`, error); + info.error = error.message; + } + } + + return info; +} + +const repoPath = path.resolve(__dirname, '..', 'repo'); + +// 读取 repoPath 下的所有文件夹 +const topLevelFolders = fs.readdirSync(repoPath) + .filter(item => fs.statSync(path.join(repoPath, item)).isDirectory()); + +// 对每个顶级文件夹调用 generateDirectoryTree +const result = topLevelFolders.map(folder => { + const folderPath = path.join(repoPath, folder); + return generateDirectoryTree(folderPath, 0, [folder]); +}); + +fs.writeFileSync('tree.json', JSON.stringify(result, null, 2)); +console.log('树状结构已保存到 tree.json 文件中。'); \ No newline at end of file diff --git a/repo/items.json b/build/items.json similarity index 100% rename from repo/items.json rename to build/items.json diff --git a/build/tree.json b/build/tree.json new file mode 100644 index 00000000..c5b2b00e --- /dev/null +++ b/build/tree.json @@ -0,0 +1,3187 @@ +[ + { + "name": "combat", + "type": "directory", + "children": [ + { + "name": "1.四神挂机[推荐].txt", + "type": "file", + "hash": "0ca4e4d07272b43e27f84f094f30b1dc7fe7545e", + "version": "0ca4e4d", + "author": "辉鸭蛋", + "description": "四神指钟离、芙宁娜、雷电将军、纳西妲", + "tags": [ + "钟离", + "芙宁娜", + "雷电将军", + "纳西妲" + ] + }, + { + "name": "2.宵宫队[请看文件内说明].txt", + "type": "file", + "hash": "3ceb9838769c84a415f2897db80ad1b7d21ece1e", + "version": "3ceb983", + "author": "爱司基模人", + "description": "推荐配队\\n钟离 (夜/行/班/云/万)四选二 宵宫\\n不推荐云堇万叶一起上\\n钟离 芙宁娜 琴/早柚/班尼特 宵宫\\n风奶带风套最好(金珀小鹿?金珀砂糖?金珀散兵?),其他奶凑合用/n", + "tags": [ + "钟离", + "芙宁娜", + "行秋", + "夜兰", + "云堇", + "班尼特", + "早柚", + "枫原万叶", + "宵宫" + ] + }, + { + "name": "久岐忍超绽放.txt", + "type": "file", + "hash": "cf1e9e67e47c0106c7a86f72859406660b68d1e2", + "version": "cf1e9e6", + "author": "佚名", + "description": "", + "tags": [ + "钟离", + "纳西妲", + "芙宁娜", + "久岐忍" + ] + }, + { + "name": "仆人纯火.txt", + "type": "file", + "hash": "ed9ea9f3d86d1fac9ba11f4026e877df9e08471f", + "version": "ed9ea9f", + "author": "佚名", + "description": "", + "tags": [ + "仆人", + "钟离", + "班尼特", + "枫原万叶" + ] + }, + { + "name": "仆北夏托.txt", + "type": "file", + "hash": "481aae168a7a11f4f0f4ec0ee3f277ee9c31df4e", + "version": "481aae1", + "author": "佚名", + "description": "北斗托马需要堆充能,自动轴为了更稳降低了输出,后置护盾容易被打断,不适用于开局就多动症的敌人(比如谐律本)", + "tags": [ + "仆人", + "北斗", + "托马", + "夏沃蕾" + ] + }, + { + "name": "四神队(进阶版).txt", + "type": "file", + "hash": "aa2f70c2cff08b24d585deb17800fde1073f2f88", + "version": "aa2f70c", + "author": "佚名", + "description": "", + "tags": [ + "钟离", + "雷电将军", + "纳西妲", + "芙宁娜" + ] + }, + { + "name": "夜电芙琴.txt", + "type": "file", + "hash": "98b6feb2980fa4b619441c6c46d02671ccf6d200", + "version": "98b6feb", + "author": "爱司基模人", + "description": "", + "tags": [ + "雷电将军", + "芙宁娜", + "夜兰", + "琴" + ] + }, + { + "name": "妮绽放(无霸体).txt", + "type": "file", + "hash": "996131b41fae1fc6ba672fe4e684ab443952b1c9", + "version": "996131b", + "author": "爱司基模人", + "description": "", + "tags": [ + "白术", + "纳西妲", + "妮露", + "珊瑚宫心海" + ] + }, + { + "name": "岩娜维娅.txt", + "type": "file", + "hash": "a35395910caf82c16bb45bb3a7bc2050ce2652fc", + "version": "a353959", + "author": "爱司基模人", + "description": "", + "tags": [ + "钟离", + "芙芙", + "娜维娅", + "班尼特" + ] + }, + { + "name": "影夜白芙.txt", + "type": "file", + "hash": "42ef910159f5f248f82b618b4c05f9b1f93744d3", + "version": "42ef910", + "author": "佚名", + "description": "", + "tags": [ + "芙宁娜", + "夜兰", + "白术", + "雷电将军" + ] + }, + { + "name": "心海队.txt", + "type": "file", + "hash": "bf0bd098b1d789beb8c5332e7010f9c6e54afc7d", + "version": "bf0bd09", + "author": "佚名", + "description": "", + "tags": [ + "钟离", + "夜兰", + "芙宁娜", + "心海" + ] + }, + { + "name": "提八(空A重).txt", + "type": "file", + "hash": "5c2655eb4ebda63c5050af39d80c71f644ff540b", + "version": "5c2655e", + "author": "爱司基模人", + "description": "", + "tags": [ + "钟离", + "纳西妲", + "八重神子", + "提纳里" + ] + }, + { + "name": "提八.txt", + "type": "file", + "hash": "5cb069db04895695b6c828bed1f9b4bb51e8b8ad", + "version": "5cb069d", + "author": "爱司基模人", + "description": "", + "tags": [ + "钟离", + "纳西妲", + "八重神子", + "提纳里" + ] + }, + { + "name": "散兵[请看文件内说明].txt", + "type": "file", + "hash": "2edd6804f44f208c9b19390d13e22d0a2b238576", + "version": "2edd680", + "author": "佚名", + "description": "推荐配队:\\n1钟离 夜班行云四选二 散兵\\n2钟离 珐露珊 四琴 散兵 琴不识别,四琴用不了 可以试试加个q收尾\\n3钟离 芙宁娜 四琴 散兵 琴不识别,四琴用不了\\n4莱依拉北斗 行秋 云珐夜班 散兵", + "tags": [ + "钟离", + "行秋", + "夜兰", + "芙宁娜", + "珐露珊", + "云堇", + "班尼特", + "流浪者" + ] + }, + { + "name": "火胡桃非零命.txt", + "type": "file", + "hash": "01617f40128f681bf7a0e394752a0ecb13c313f3", + "version": "01617f4", + "author": "爱司基模人", + "description": "", + "tags": [ + "钟离", + "芙宁娜", + "行秋", + "夜兰", + "莫娜", + "胡桃" + ] + }, + { + "name": "神鹤万心(无法冲刺打物理).txt", + "type": "file", + "hash": "2a6cb9f20bfbef54bcb95d58529d9b3c9659e867", + "version": "2a6cb9f", + "author": "爱司基模人", + "description": "", + "tags": [ + "申鹤", + "枫原万叶", + "珊瑚宫心海", + "神里绫华" + ] + }, + { + "name": "胡桃(无法取消后摇迷之锁敌会掉沟).txt", + "type": "file", + "hash": "05181644d888763aad2b0cbdfc416e40e662cd2e", + "version": "0518164", + "author": "爱司基模人", + "description": "", + "tags": [ + "钟离", + "行秋", + "夜兰", + "胡桃" + ] + }, + { + "name": "草行久钟(草神瞎转点不了种子).txt", + "type": "file", + "hash": "b782a56f1eb1d1e372a4bc3bc3ee6090bd25615d", + "version": "b782a56", + "author": "爱司基模人", + "description": "草神瞎转点不了种子", + "tags": [ + "钟离", + "纳西妲", + "行秋", + "久岐忍" + ] + }, + { + "name": "钟仆夜坎.txt", + "type": "file", + "hash": "1e09e2202893ec9ace6539dd33b326a65a373e0f", + "version": "1e09e22", + "author": "佚名", + "description": "缺点为无聚怪手段,双水角色需要堆一定的充能效率,优点是不画地为牢", + "tags": [ + "仆人", + "钟离", + "夜兰", + "坎蒂丝" + ] + }, + { + "name": "钟仆娜云.txt", + "type": "file", + "hash": "1eaae27e5aa5d56de4792bfbf79cb193d29e1afa", + "version": "1eaae27", + "author": "佚名", + "description": "双c配置,三岩保障云堇有足够充能,缺点是伤害较低", + "tags": [ + "仆人", + "钟离", + "娜维娅", + "云堇" + ] + }, + { + "name": "钟离八重万叶白术.txt", + "type": "file", + "hash": "cbc0f2afeb11df83e9e9327cf2d771346de95bd5", + "version": "cbc0f2a", + "author": "佚名", + "description": "", + "tags": [ + "钟离", + "八重神子", + "枫原万叶", + "白术" + ] + }, + { + "name": "钟离纳西妲夜兰艾尔海森.txt", + "type": "file", + "hash": "faf6a0b66f1cc4bbefdd91a05f8c106eac0f1344", + "version": "faf6a0b", + "author": "拾荒者uihdve", + "description": "", + "tags": [ + "钟离", + "纳西妲", + "夜兰", + "艾尔海森" + ] + }, + { + "name": "钟芙琴那-开转.txt", + "type": "file", + "hash": "62e28dc4644089df2181e2e89bdb6ec4a1c9094d", + "version": "62e28dc", + "author": "Dawn", + "description": "", + "tags": [ + "钟离", + "芙宁娜", + "琴", + "那维莱特" + ] + }, + { + "name": "钟芙鹿莫.txt", + "type": "file", + "hash": "798dc20d9319aeba82be4098876b58b243a4ec1d", + "version": "798dc20", + "author": "上杉夏香", + "description": "", + "tags": [ + "钟离", + "芙宁娜", + "鹿野苑平藏", + "莫娜" + ] + }, + { + "name": "钟草芙克(标准6套AE).txt", + "type": "file", + "hash": "f7ca555e1e1108f20fea80208337de9b6e3200b7", + "version": "f7ca555", + "author": "佚名", + "description": "", + "tags": [ + "钟离", + "纳西妲", + "芙宁娜", + "克洛琳德" + ] + }, + { + "name": "钟那芙琴(非满命).txt", + "type": "file", + "hash": "ede15795fe79af0b9691db5704a5aea946ba84cd", + "version": "ede1579", + "author": "爱司基模人", + "description": "非满命", + "tags": [ + "钟离", + "那维莱特", + "芙宁娜", + "琴" + ] + }, + { + "name": "钟雷芙瑶.txt", + "type": "file", + "hash": "aa6d770fc10518f61416ce762c25e1a3a9286983", + "version": "aa6d770", + "author": "绘星痕", + "description": "", + "tags": [ + "钟离", + "芙宁娜", + "雷电将军", + "瑶瑶" + ] + }, + { + "name": "零命那维转圈圈.txt", + "type": "file", + "hash": "7a0d36e124fe7abae506f6f9c7a318213309da06", + "version": "7a0d36e", + "author": "爱司基模人", + "description": "", + "tags": [ + "钟离", + "那维莱特", + "枫原万叶", + "菲谢尔" + ] + }, + { + "name": "雷神国家队.txt", + "type": "file", + "hash": "4c28dd86d5dfa55600bf2336426c908d99d34ba1", + "version": "4c28dd8", + "author": "爱司基模人", + "description": "", + "tags": [ + "将军", + "芙芙", + "行秋", + "夜兰", + "班尼特", + "香菱" + ] + }, + { + "name": "风散兵.txt", + "type": "file", + "hash": "ffd6406e393748e8c693f45ad0cfcc7e39293683", + "version": "ffd6406", + "author": "爱司基模人", + "description": "", + "tags": [ + "钟离", + "行秋", + "夜兰", + "芙宁娜", + "珐露珊", + "云堇", + "班尼特", + "琴", + "流浪者" + ] + } + ] + }, + { + "name": "js", + "type": "directory", + "children": [ + { + "name": "AutoArtifacts", + "type": "directory", + "hash": "a51f01627936b578adfb8396831b91b86f54b150", + "version": "1.5", + "author": "HZYgrandma", + "description": "自动调查离传送点较近的狗粮。请使用琳妮特前台,双风共鸣。并保证所有传送点都已经激活!", + "tags": [] + }, + { + "name": "AutoCrystalfly", + "type": "directory", + "hash": "22e477c14c3af73d45728ec3c5ad77cf826cc640", + "version": "1.1", + "author": "huiyadanli", + "description": "BetterGI自带脚本,自动采集离传送点较近的晶蝶。请在队伍中务必携带早柚/瑶瑶,使用成男/成女角色。并保证所有传送点都已经激活!", + "tags": [] + }, + { + "name": "AutoDomain", + "type": "directory", + "hash": "e7ee69c66151b7be8dc20654ac4b461200429796", + "version": "1.0", + "author": "huiyadanli", + "description": "BetterGI自带脚本,用于传送后并执行自动秘境", + "tags": [] + }, + { + "name": "JustTp", + "type": "directory", + "hash": "72391915b574bf39e892f61f2880bf7cd4f49611", + "version": "1.0", + "author": "huiyadanli", + "description": "BetterGI自带脚本,只用于传送。方便在调度器配合键鼠脚本使用", + "tags": [] + } + ] + }, + { + "name": "onekey", + "type": "directory", + "children": [] + }, + { + "name": "pathing", + "type": "directory", + "children": [ + { + "name": "嘟嘟莲", + "type": "directory", + "children": [ + { + "name": "嘟嘟莲1-清泉镇-11个.json", + "type": "file", + "hash": "78fcac2fc8b6e4ec09d7d5228395ae055608e8f7", + "version": "78fcac2", + "author": "yulalaa", + "description": "", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "嘟嘟莲2-达达乌帕谷-7个.json", + "type": "file", + "hash": "dfabff068dfec235d01303ac74366ab73151af69", + "version": "dfabff0", + "author": "yulalaa", + "description": "", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "嘟嘟莲3-晨曦酒庄-3个.json", + "type": "file", + "hash": "6b95f01235088acf055894e829027a413ae8941b", + "version": "6b95f01", + "author": "yulalaa", + "description": "", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "嘟嘟莲4-奔狼领-4个.json", + "type": "file", + "hash": "ee5682b39c0d5338eac9346a949d461b7890d076", + "version": "ee5682b", + "author": "yulalaa", + "description": "", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "嘟嘟莲5-千风神殿-3个.json", + "type": "file", + "hash": "53a50024e0610c48978eb53cfcbeff0e9bd7b969", + "version": "53a5002", + "author": "yulalaa", + "description": "", + "tags": [ + "嘟嘟莲" + ] + }, + { + "name": "嘟嘟莲6-星落湖-2个.json", + "type": "file", + "hash": "311c6b5de63b20d345082304ed635c07bb558b89", + "version": "311c6b5", + "author": "yulalaa", + "description": "", + "tags": [ + "嘟嘟莲" + ] + } + ] + }, + { + "name": "圣遗物", + "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": "小灯草", + "type": "directory", + "children": [ + { + "name": "小灯草-仲夏庭院-蒙德2个.json", + "type": "file", + "hash": "8333c656131aeeb6c08babd8c27cee6556b43bf1", + "version": "8333c65", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-低语森林-蒙德17个.json", + "type": "file", + "hash": "375f198853833dd02bafc73518ed762f696f5059", + "version": "375f198", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-千风神殿-蒙德5个.json", + "type": "file", + "hash": "9893ed0190fb4c11977a73783bdcc6ba72e3a75d", + "version": "9893ed0", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-塞西莉亚苗圃-蒙德4个.json", + "type": "file", + "hash": "47ab61834567ce59d1ee85615d8ad5c16ed565f6", + "version": "47ab618", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-奔狼岭(一)-蒙德3个.json", + "type": "file", + "hash": "4bbf9afc122627a5478a8b5d98e8755fdeccca66", + "version": "4bbf9af", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-奔狼岭(二)-蒙德4个.json", + "type": "file", + "hash": "4d7fd9d53ed1aa9119180da6c9ae1f21ea8d4748", + "version": "4d7fd9d", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-晨曦酒庄-蒙德4个.json", + "type": "file", + "hash": "d9da599543ee9753e69985877432968d0f05d992", + "version": "d9da599", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + }, + { + "name": "小灯草-风起地-蒙德6个.json", + "type": "file", + "hash": "382044a4a973ac79acdc58b68dc96466b86460f7", + "version": "382044a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "小灯草" + ] + } + ] + }, + { + "name": "幽光星星", + "type": "directory", + "children": [ + { + "name": "幽光星星4.json", + "type": "file", + "hash": "c60bd5e36c893a00761879c5936b502fb3a30911", + "version": "c60bd5e", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星5--.json", + "type": "file", + "hash": "d30275ba2734afbadf3aa38555146755b50fe352", + "version": "d30275b", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星5-.json", + "type": "file", + "hash": "d7e30fa180404d7850f5c7b7badfc5d4a81ff5bc", + "version": "d7e30fa", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星5.json", + "type": "file", + "hash": "16c22741f88ab173f37623182029a03895c36476", + "version": "16c2274", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "幽光星星" + ] + }, + { + "name": "幽光星星6.json", + "type": "file", + "hash": "7fc8c1999ac223f9387cf44026591bfc34c7b951", + "version": "7fc8c19", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "幽光星星" + ] + } + ] + }, + { + "name": "幽灯蕈", + "type": "directory", + "children": [ + { + "name": "幽灯蕈1-鹤观大门-8个.json", + "type": "file", + "hash": "f6a95d98a0b81309d884e745d67b05307fc242a1", + "version": "f6a95d9", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈2-茂之祭场-6个.json", + "type": "file", + "hash": "3cc500bf8a361139cb1335cf9ae1448deaaf8744", + "version": "3cc500b", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈3-鹤观下-12个.json", + "type": "file", + "hash": "93b11dc8789526a35863ff19d23fd57219ae023e", + "version": "93b11dc", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈4-笈名海滨-11个.json", + "type": "file", + "hash": "390c2c3cf02a70617b58761e79d7adcbee596c69", + "version": "390c2c3", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈5-知比山外-9个.json", + "type": "file", + "hash": "89bf6dafd38190f19606cf0524c8c7179a39ca8f", + "version": "89bf6da", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + }, + { + "name": "幽灯蕈6-知比山内-4个.json", + "type": "file", + "hash": "ab79c75d6962204279b080b45d1b535e353b1566", + "version": "ab79c75", + "author": "黎歌", + "description": "", + "tags": [ + "幽灯蕈" + ] + } + ] + }, + { + "name": "星螺", + "type": "directory", + "children": [ + { + "name": "星螺12.json", + "type": "file", + "hash": "6494e744aa57da9f9fd58d8c80628db500502acc", + "version": "6494e74", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + }, + { + "name": "星螺14.json", + "type": "file", + "hash": "c84d4cc54f65a2cb4d267b5301f8e1d40e3adcb6", + "version": "c84d4cc", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + }, + { + "name": "星螺17.json", + "type": "file", + "hash": "f1055a18d145eb4349326919432ca9a53f5ebc25", + "version": "f1055a1", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + }, + { + "name": "星螺4.json", + "type": "file", + "hash": "2e3a338deeb95c753c37154e21e73787253c3f20", + "version": "2e3a338", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + }, + { + "name": "星螺9.json", + "type": "file", + "hash": "f1a5d11344009e4ae4a06ca93c6ab4cfd27d9558", + "version": "f1a5d11", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "星螺" + ] + } + ] + }, + { + "name": "月莲", + "type": "directory", + "children": [ + { + "name": "月莲_卡扎莱宫_须弥_5个.json", + "type": "file", + "hash": "ca10fd7a7ded29f9ee2dd90786253d4ae72c2373", + "version": "ca10fd7", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_禅那园_须弥_4个.json", + "type": "file", + "hash": "0341155e99995e2a52c49f683ce14473c4ecf34c", + "version": "0341155", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_茸蕈窟_须弥_4个.json", + "type": "file", + "hash": "c6b8f40601881befa82342354d141e45e16240fd", + "version": "c6b8f40", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_觉王之殿右上_须弥_2个.json", + "type": "file", + "hash": "378b72a9ee01151feec63076a6be3483a4014960", + "version": "378b72a", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_护世森下_7个.json", + "type": "file", + "hash": "f52a223b0772e31e02c1cefcab2338385e6e7042", + "version": "f52a223", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_护世森左_4个.json", + "type": "file", + "hash": "9e1f037b2217170d795564d3315907137bc15ec4", + "version": "9e1f037", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_维摩庄_6个.json", + "type": "file", + "hash": "302bc3c14a03e6a3b8ef9cbbf95d543113357376", + "version": "302bc3c", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_维摩庄右_2个.json", + "type": "file", + "hash": "a6497ac5d15eb19186e0fa3ba20c68ccb620f3c6", + "version": "a6497ac", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_降魔山下_7个.json", + "type": "file", + "hash": "850eaaa180d7fc1c7091a3892dc2ee9ce8287bc1", + "version": "850eaaa", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + }, + { + "name": "月莲_须弥_降魔山左下_6个.json", + "type": "file", + "hash": "14dc63413957109f0fc29321cbf58814a0d7c9ed", + "version": "14dc634", + "author": "tignioj", + "description": "", + "tags": [ + "月莲" + ] + } + ] + }, + { + "name": "柔灯铃", + "type": "directory", + "children": [ + { + "name": "柔灯铃——1——12个.json", + "type": "file", + "hash": "5a56b79c732035daa5f5e00038e3d3084020021f", + "version": "5a56b79", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——2——9个.json", + "type": "file", + "hash": "35934126399c2d140250966fd02ed3d95c3104f5", + "version": "3593412", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——3——3个.json", + "type": "file", + "hash": "67040da62b88dd2c7fbd000f06b6de942f3a7957", + "version": "67040da", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——4——9个.json", + "type": "file", + "hash": "cd6057211b0d8f5af0580946c06df67d0a94eb06", + "version": "cd60572", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——5——6个.json", + "type": "file", + "hash": "251aa302033c0a56a35e635c37f6359b3e868a19", + "version": "251aa30", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——6——27个.json", + "type": "file", + "hash": "fb3c5409712595b061ae3b97f8718abb32bc5302", + "version": "fb3c540", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——7——6个.json", + "type": "file", + "hash": "d996f83ddb26bd4dbbb9d4a875ddbfe3fdb55b42", + "version": "d996f83", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——8——9个.json", + "type": "file", + "hash": "7d326ff85edceae0099631c07551d94b5891dc2e", + "version": "7d326ff", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + }, + { + "name": "柔灯铃——9——6个.json", + "type": "file", + "hash": "ef0200d998eaaf71c646d16d27cfa17a828c0d72", + "version": "ef0200d", + "author": "透明人", + "description": "", + "tags": [ + "柔灯铃" + ] + } + ] + }, + { + "name": "沉玉仙茗", + "type": "directory", + "children": [ + { + "name": "沉玉仙茗-灵濛山(一)-璃月1个.json", + "type": "file", + "hash": "fb67804389921e58c0e37f2be521d8ad0c5cfb45", + "version": "fb67804", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-灵濛山(二)-璃月1个.json", + "type": "file", + "hash": "a6f7c9bbe95fad9f674ebef2369f3af50bd8fa76", + "version": "a6f7c9b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-翘英庄-璃月9个.json", + "type": "file", + "hash": "4311b792beb12afdd05c00fb94644a4d38daa25a", + "version": "4311b79", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-翘英庄-璃月X个.json", + "type": "file", + "hash": "d77e5446206edf98ba1abbedd352e527e625710a", + "version": "d77e544", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-药蝶谷-璃月2个.json", + "type": "file", + "hash": "15a7c15116c5175fbde6a8334b88fcbcb46c6d5c", + "version": "15a7c15", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-遗珑埠(上)-璃月3个.json", + "type": "file", + "hash": "37454a2a5d4b093c00aae966dcff59b87069600f", + "version": "37454a2", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + }, + { + "name": "沉玉仙茗-遗珑埠(下)-璃月6个.json", + "type": "file", + "hash": "4e52aba63f01cb195ccfce6c200301c765193d51", + "version": "4e52aba", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "沉玉仙茗" + ] + } + ] + }, + { + "name": "浪沫羽鳃", + "type": "directory", + "children": [ + { + "name": "浪沫羽鳃1-流泉之众上-11个.json", + "type": "file", + "hash": "34e69cbe2a3c3180d44a6a2bd069141d3d81d735", + "version": "34e69cb", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + }, + { + "name": "浪沫羽鳃2-溶水域七天神像下-8个.json", + "type": "file", + "hash": "17134559b174055b434f7fa24c374a9b438f10a3", + "version": "1713455", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + }, + { + "name": "浪沫羽鳃3-溶水域七天神像左-14个.json", + "type": "file", + "hash": "f468c281d3295e51aa93215a6c80e62e19ffbe57", + "version": "f468c28", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + }, + { + "name": "浪沫羽鳃4-溶水域七天神像右-12个.json", + "type": "file", + "hash": "4dc06575058ba4c97320fdbe9935f911a8553f9a", + "version": "4dc0657", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + }, + { + "name": "浪沫羽鳃5-溶水域右上-9个.json", + "type": "file", + "hash": "bcc7304bd3ecf0478e7870e4b85af6c8cf3e1e9c", + "version": "bcc7304", + "author": "黎歌", + "description": "", + "tags": [ + "浪沫羽鳃" + ] + } + ] + }, + { + "name": "海灵芝", + "type": "directory", + "children": [ + { + "name": "海灵芝_九条阵屋下_稻妻_7个.json", + "type": "file", + "hash": "9eb679340b59f6cb4a405a8106ba3e565c942d8a", + "version": "9eb6793", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_九条阵屋右_稻妻_7个.json", + "type": "file", + "hash": "b0bcd6b3a1fe52f0a1e0f8ef036211edb3234ec6", + "version": "b0bcd6b", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_九条阵屋左_稻妻_2个.json", + "type": "file", + "hash": "39b8e589d52ea62e563f9931a73afdceef3076e9", + "version": "39b8e58", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_天云峠北方_稻妻_3个.json", + "type": "file", + "hash": "d3bde41b316abe9768f7931af46a511ebdde7c9d", + "version": "d3bde41", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_天云峠右上2_稻妻_3个.json", + "type": "file", + "hash": "db15e0cbb318f7205728f373c36bdb4daa510771", + "version": "db15e0c", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_天云峠右上_稻妻_4个.json", + "type": "file", + "hash": "239459115f5ee621736618e91f8fcb6dbbbd9eca", + "version": "2394591", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_天云峠右下_稻妻_10个.json", + "type": "file", + "hash": "d149a71273057b835255197963c067b22959c79f", + "version": "d149a71", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_曚云神社西_稻妻_6个.json", + "type": "file", + "hash": "002801a3fef6007cc0c1815df99e0ae952e4f0ca", + "version": "002801a", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_望泷村东_稻妻_3个.json", + "type": "file", + "hash": "66263792f88d8f89918e009263daef3417be9ad1", + "version": "6626379", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_望泷村西南_稻妻_3个.json", + "type": "file", + "hash": "a4bb07706f898055110e2a2889cc453f7991aa74", + "version": "a4bb077", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_水月池东南远处离岛_稻妻_2个.json", + "type": "file", + "hash": "2c7acf16a4050f0cb7fb10a2ff0ed22252da76b4", + "version": "2c7acf1", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_浅濑神社_稻妻_4个.json", + "type": "file", + "hash": "ab427b2b13a8b826c859c27ede914bf6e821e5d4", + "version": "ab427b2", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_清籁丸西北_稻妻_4个.json", + "type": "file", + "hash": "54f38cee1321c89ba27d82eaebf86a1b3a169825", + "version": "54f38ce", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_珊瑚宫西北_稻妻_5个.json", + "type": "file", + "hash": "2d4215e06221f5ef6fa405b47b82aad5dd4b4cfd", + "version": "2d4215e", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_神里屋敷右小角小岛_稻妻_5个.json", + "type": "file", + "hash": "9b2f6b6804581d4e111f3b005f125f1110015487", + "version": "9b2f6b6", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_绀田村左上角_稻妻_5个.json", + "type": "file", + "hash": "a9dbdcdc8f127c4dc34586f87385a1fa26fe6a5a", + "version": "a9dbdcd", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_荒海右边_稻妻_4个.json", + "type": "file", + "hash": "23cf5e1d15c02845bd80433a52f291747a3babaa", + "version": "23cf5e1", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_蛇神之首右_稻妻_5个.json", + "type": "file", + "hash": "c97094f77b0d8e6d9f1d5f962ad304fc4f94a5e6", + "version": "c97094f", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_越石村东北_稻妻_8个.json", + "type": "file", + "hash": "0853bd7089ecbfaf6bdbdc295c74488f4a0118a4", + "version": "0853bd7", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_踏鞴沙右下_稻妻_6个.json", + "type": "file", + "hash": "77c44bf0c6ce2bd587be3531e358f9c55c523fb3", + "version": "77c44bf", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + }, + { + "name": "海灵芝_踏鞴沙左上_稻妻_9个.json", + "type": "file", + "hash": "757b08b004d02248bfc83994649b19d2629cc0e2", + "version": "757b08b", + "author": "tignioj", + "description": "", + "tags": [ + "海灵芝" + ] + } + ] + }, + { + "name": "灼灼彩菊", + "type": "directory", + "children": [ + { + "name": "灼灼彩菊1-帕克斯神庙左-7个.json", + "type": "file", + "hash": "0a6145741aa7d2d1ff60f252e8426e52bdc13e55", + "version": "0a61457", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊2-帕克斯神庙右-11个.json", + "type": "file", + "hash": "58bd301bd53e86625f080fb0781f1c366b6b0f45", + "version": "58bd301", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊3-圣火竞技场下-11个.json", + "type": "file", + "hash": "948b31e21aa88d1911c41562150ea5b2f7983de9", + "version": "948b31e", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊4-圣火竞技场上-12个.json", + "type": "file", + "hash": "77eee68720345631f7a53208a186b3dc54868559", + "version": "77eee68", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊41朵.json", + "type": "file", + "hash": "aec435153f4ad05b089fb0b37f328576469aadea", + "version": "aec4351", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊5-万火之瓯上-9个.json", + "type": "file", + "hash": "785bcbf519ca96789eecd8041528a5d8887476f2", + "version": "785bcbf", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊6-柴薪之丘下-5个.json", + "type": "file", + "hash": "a448305f28766e42135ef07bb5b2da916cfcc2b0", + "version": "a448305", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊7-柴薪之丘右-4个.json", + "type": "file", + "hash": "f44fb2f0ad996bfde5d19e18ef54039109f379e4", + "version": "f44fb2f", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + }, + { + "name": "灼灼彩菊8-柴薪之丘上-13个.json", + "type": "file", + "hash": "4713e20a87932be4e670a6b0f025fbf72603c94b", + "version": "4713e20", + "author": "黎歌", + "description": "", + "tags": [ + "灼灼彩菊" + ] + } + ] + }, + { + "name": "珊瑚珍珠", + "type": "directory", + "children": [ + { + "name": "珊瑚珍珠1-望泷村右上-9个.json", + "type": "file", + "hash": "65e5b1dbb7cc0ed12c08c081440ec8bb255c0e1b", + "version": "65e5b1d", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚珍珠" + ] + }, + { + "name": "珊瑚珍珠2-珊瑚宫下-7个.json", + "type": "file", + "hash": "b723f30598d78f3fe1fd747ac3ef74ebb7f4226f", + "version": "b723f30", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚珍珠" + ] + }, + { + "name": "珊瑚珍珠3-珊瑚宫右-3个.json", + "type": "file", + "hash": "92b6129deece6bab596bdadfcf9772936249a014", + "version": "92b6129", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚珍珠" + ] + }, + { + "name": "珊瑚珍珠4-珊瑚宫上-12个.json", + "type": "file", + "hash": "999d957918b05b6dc13c9d68b6340f72f29b8e35", + "version": "999d957", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚珍珠" + ] + }, + { + "name": "珊瑚珍珠5-水月池-5个.json", + "type": "file", + "hash": "9c84f0b6bef75a580ce1127d1ac87bc8e3996de2", + "version": "9c84f0b", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚珍珠" + ] + }, + { + "name": "珊瑚珍珠6-水月池下-6个.json", + "type": "file", + "hash": "2e7ebd884934f5a2b351e7b4edfcd273dcd9ee7c", + "version": "2e7ebd8", + "author": "黎歌", + "description": "", + "tags": [ + "珊瑚珍珠" + ] + } + ] + }, + { + "name": "琉璃百合", + "type": "directory", + "children": [ + { + "name": "琉璃百合1-璃月港右-3个.json", + "type": "file", + "hash": "019ab6fe304a05fe09821e63737452faac30b8b2", + "version": "019ab6f", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合2-璃月港左-7个+霓裳花4x2个.json", + "type": "file", + "hash": "e3038c5d51de3c4a712b30ca927de41303d26f1c", + "version": "e3038c5", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合3-璃月港左-11个+霓裳花3x2个.json", + "type": "file", + "hash": "7aadbe311be509151da6403f905f3b2210c2b819", + "version": "7aadbe3", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合4-轻策庄下-2个+绝云椒椒2x3个.json", + "type": "file", + "hash": "b3bce444691bb241ef3eb8ca96a8e27f44d5e44a", + "version": "b3bce44", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合5-轻策庄右-1个+绝云椒椒1x3个.json", + "type": "file", + "hash": "c07af023cc59fd19e0a96bed3c8d6692f4fbc201", + "version": "c07af02", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合6-轻策庄下-1个+绝云椒椒1x3个.json", + "type": "file", + "hash": "91d2021828c42cdfd0a49809c9c91bfb19f4de73", + "version": "91d2021", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合7-轻策庄左-5个+绝云椒椒1x3个.json", + "type": "file", + "hash": "8115cc8cbb573bb434fa90f912d81174cdbbaaa5", + "version": "8115cc8", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + }, + { + "name": "琉璃百合8-轻策庄上-11个+绝云椒椒1x3个.json", + "type": "file", + "hash": "8a51f5537c3fc2029569dee8e7897c9da30c83c4", + "version": "8a51f55", + "author": "黎歌", + "description": "", + "tags": [ + "琉璃百合" + ] + } + ] + }, + { + "name": "甜甜花", + "type": "directory", + "children": [ + { + "name": "甜甜花-中央实验室遗址-枫丹7个.json", + "type": "file", + "hash": "7c964a8f27fb9c6e01eec38332ee45597b63ffd0", + "version": "7c964a8", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花-天遒谷(1)-璃月13个.json", + "type": "file", + "hash": "e486fb24d120ca5a8df878995452acf624f69531", + "version": "e486fb2", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花-天遒谷(2)-璃月12个.json", + "type": "file", + "hash": "0adde3f804dfacca76e4b3c4f1311a2cd6b6a202", + "version": "0adde3f", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花-天遒谷(3)-璃月11个.json", + "type": "file", + "hash": "6b36cabb982d42ee9bdd16712f772ed5293a9a3e", + "version": "6b36cab", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花-宗室本(上)-璃月15个.json", + "type": "file", + "hash": "6b4649fa2dc0ac4d6ccf433de98aaee09026db77", + "version": "6b4649f", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花-桓那兰那-须弥14个.json", + "type": "file", + "hash": "a24deea318891d8aba6640ba0a4c3585db3b1482", + "version": "a24deea", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花-清泉镇-蒙德11个(回血).json", + "type": "file", + "hash": "03c28451b234e37c17960fb111ab0e6340bf2135", + "version": "03c2845", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花-苍白本-蒙德20个.json", + "type": "file", + "hash": "fc20158ad4ec50ba54b59084adf53dc546f41eb2", + "version": "fc20158", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花_中央实验室遗址_枫丹_7个.json", + "type": "file", + "hash": "6bfd92b0d0d5c3c5138f00007409b0ab7fb4f8ae", + "version": "6bfd92b", + "author": "tignioj", + "description": "", + "tags": [ + "甜甜花" + ] + }, + { + "name": "甜甜花_清泉镇_蒙德_11个.json", + "type": "file", + "hash": "59fd9f0b0561745ae4248bb2a7eb7ce6a6f20a67", + "version": "59fd9f0", + "author": "tignioj", + "description": "", + "tags": [ + "甜甜花" + ] + } + ] + }, + { + "name": "石珀", + "type": "directory", + "children": [ + { + "name": "石珀1-虎牢山1-4个.json", + "type": "file", + "hash": "08aeeea5a5a516fdce8f988cbebe52239d90f438", + "version": "08aeeea", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀10-无妄坡1-2个.json", + "type": "file", + "hash": "67af8793393eff53ba1b5d2983ddc862a7888f23", + "version": "67af879", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀11-孤云阁1-1个.json", + "type": "file", + "hash": "e69e3096ed0436c38578e660977744ac1ecd4cc7", + "version": "e69e309", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀2-虎牢山2-2个.json", + "type": "file", + "hash": "145326b0ae962ecb83d54e5924d87efdd0edf85b", + "version": "145326b", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀3-虎牢山2-4个.json", + "type": "file", + "hash": "b831946d52408a7bd5c6fb1b13198d99d7f8db32", + "version": "b831946", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀4-层岩巨渊1-2个.json", + "type": "file", + "hash": "123f20d5e199f612d1aad4f1e53f190e4d798e1f", + "version": "123f20d", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀5-清策庄1-2个.json", + "type": "file", + "hash": "2803cf49862a21ef7a69e1bb7c00cafd2bd0480b", + "version": "2803cf4", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀6-清策庄2-2个.json", + "type": "file", + "hash": "a276a18c5aabdda654d62dbcf69a6dc064b36a39", + "version": "a276a18", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀7-清策庄3-1个.json", + "type": "file", + "hash": "0cc08bf072993675c528513b5d2bc22bd8a0fe8d", + "version": "0cc08bf", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀8-清策庄4-2个.json", + "type": "file", + "hash": "84d9ba79b5a6d0e32ea4c1197dfb998636f5d66c", + "version": "84d9ba7", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + }, + { + "name": "石珀9-奥藏山1-2个.json", + "type": "file", + "hash": "465ae5bf8049c393221d1d828c8bb7e4c047961e", + "version": "465ae5b", + "author": "yulalaa", + "description": "", + "tags": [ + "石珀" + ] + } + ] + }, + { + "name": "竹笋", + "type": "directory", + "children": [ + { + "name": "竹笋(容易爬树).json", + "type": "file", + "hash": "4ee60bae91b24809ffa81f5f2756666ad85bc485", + "version": "4ee60ba", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "竹笋" + ] + } + ] + }, + { + "name": "绝云椒椒", + "type": "directory", + "children": [ + { + "name": "绝云椒椒-奥藏山(一)-璃月1×3个.json", + "type": "file", + "hash": "c1ba4a6b96964ecb08a19556011db4d6073770fc", + "version": "c1ba4a6", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-奥藏山(二)-璃月6×3个.json", + "type": "file", + "hash": "5e50bee3df069d929a690a00197f0db101e9f332", + "version": "5e50bee", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-宗室本-璃月4×3个.json", + "type": "file", + "hash": "6121853f58efbfd2da2b460f4d837be7cb6232b2", + "version": "6121853", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-苍白本-璃月7×3个.json", + "type": "file", + "hash": "42fd102f24ab486920f40b7116b49054d973a0f7", + "version": "42fd102", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-轻策庄(一)-璃月1×3个.json", + "type": "file", + "hash": "6ffb99454fb1f65f19aa4e966a1f2635fdbafc72", + "version": "6ffb994", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-轻策庄(三)-璃月1×3个.json", + "type": "file", + "hash": "910d7711ff91a31e20297c8b0baca05b221b2232", + "version": "910d771", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + }, + { + "name": "绝云椒椒-轻策庄(二)-璃月7×3个.json", + "type": "file", + "hash": "15598e7a2e3fe300a3340a86dc88ce5c1800e151", + "version": "15598e7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "绝云椒椒" + ] + } + ] + }, + { + "name": "肉龙掌", + "type": "directory", + "children": [ + { + "name": "肉龙掌1-坚岩隘谷上-2个.json", + "type": "file", + "hash": "229492d23cddaea6e6bc254f9768c7b7dae562f2", + "version": "229492d", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌2-坚岩隘谷上-18个.json", + "type": "file", + "hash": "94f3f024eb9e0d96dcad1489600e28859c5851d4", + "version": "94f3f02", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌3-坚岩隘谷右-14个.json", + "type": "file", + "hash": "cafc3189fc69301fb2bbdd0e03591d32ea35a63a", + "version": "cafc318", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌4-硫晶支脉左-2个.json", + "type": "file", + "hash": "56f3559b550c9136dc57ac240bded33eeec46faa", + "version": "56f3559", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌5-硫晶支脉左-5个.json", + "type": "file", + "hash": "63d0cd7c9f40f97c82c14577a64d1fd4b87f0925", + "version": "63d0cd7", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌6-回血.json", + "type": "file", + "hash": "7eadfd0ced6802c764365381af98a0a2e53f02d0", + "version": "7eadfd0", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + }, + { + "name": "肉龙掌7-隆崛坡-13个.json", + "type": "file", + "hash": "659b84615b0f040620a9579de71289cde2cc982b", + "version": "659b846", + "author": "黎歌", + "description": "", + "tags": [ + "肉龙掌" + ] + } + ] + }, + { + "name": "胡萝卜", + "type": "directory", + "children": [ + { + "name": "胡萝卜-奔狼岭(上)-蒙德8个.json", + "type": "file", + "hash": "5fbf44ae58569da003a1f54cead26cd8bc9c48d0", + "version": "5fbf44a", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-奔狼岭(右)-蒙德4个.json", + "type": "file", + "hash": "905beaa647dbd4a1f7bd404929c257a553f858bf", + "version": "905beaa", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-归离原-璃月4个.json", + "type": "file", + "hash": "37572836ec1951be4611b5abfdb752d57dee549e", + "version": "3757283", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-无相火-稻妻2个.json", + "type": "file", + "hash": "19a6d6b2e68791a2c7ec8c779b3caa3203f355bc", + "version": "19a6d6b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-明冠峡-蒙德4个.json", + "type": "file", + "hash": "8c981ad0f9fb3aa179cc6975330ffc7874c31c5b", + "version": "8c981ad", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-晨曦酒庄-蒙德12个.json", + "type": "file", + "hash": "e56a79c418a8234aa1ce7efa5411efa5edb960a9", + "version": "e56a79c", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-望泷村-稻妻5个.json", + "type": "file", + "hash": "917055525fcc56766fb030d99e2043b80c4d4894", + "version": "9170555", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-望风山地-蒙德-4个.json", + "type": "file", + "hash": "58cd0c8cc06e156e7b155fe17f998a21c7e2a47c", + "version": "58cd0c8", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-枫丹廷(上)-枫丹3个.json", + "type": "file", + "hash": "d831be365c2b133a3dd7b1fbd62fc828a673e53a", + "version": "d831be3", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-清泉镇-蒙德-8个.json", + "type": "file", + "hash": "d3ee0e9784ebd6f7655043f837b47e0283b7b386", + "version": "d3ee0e9", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-绯木村-稻妻3个.json", + "type": "file", + "hash": "2ca4d6713f74361f31bb9241b1ab01139465eaad", + "version": "2ca4d67", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-蛇骨矿洞-稻妻3个.json", + "type": "file", + "hash": "4aa50fea0ef05f1ae44eb4060d12dfaad5cb55af", + "version": "4aa50fe", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-越石村-稻妻4个.json", + "type": "file", + "hash": "4be5c377ed82397b5402554028c763f1b231b498", + "version": "4be5c37", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-风龙废墟(上)-蒙德-7个.json", + "type": "file", + "hash": "c0c5f377d8165f66cc075e30138426aa7bbffc13", + "version": "c0c5f37", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + }, + { + "name": "胡萝卜-风龙废墟(下)-蒙德-4个.json", + "type": "file", + "hash": "012bb96eb4f2e907391ac40c15ad0c7db4e758e4", + "version": "012bb96", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "胡萝卜" + ] + } + ] + }, + { + "name": "苦种", + "type": "directory", + "children": [ + { + "name": "苦种-回声之子-纳塔10个.json", + "type": "file", + "hash": "89b14478dd30e35cf0d3caadd46d5b1bb8dae548", + "version": "89b1447", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种-硫晶支脉(一)-纳塔2个.json", + "type": "file", + "hash": "f340e28bd1f51805e9905ba4f1be9f2f81b2689e", + "version": "f340e28", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种-硫晶支脉(三)-纳塔8个.json", + "type": "file", + "hash": "798267eeec69c26bd4b9e4c477837db3751eed88", + "version": "798267e", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种-硫晶支脉(二)-纳塔5个.json", + "type": "file", + "hash": "9c12775b4b0ada0414aa55d01639459aeebbca85", + "version": "9c12775", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + }, + { + "name": "苦种-隆崛坡-纳塔3个.json", + "type": "file", + "hash": "6ac9341c578417199e769664a29e12f456053033", + "version": "6ac9341", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "苦种" + ] + } + ] + }, + { + "name": "落落梅", + "type": "directory", + "children": [ + { + "name": "望风山地1x24.json", + "type": "file", + "hash": "98b6a556f1a9e1d81d10dd603f76e9a626a39c5d", + "version": "98b6a55", + "author": "yulalaa", + "description": "", + "tags": [ + "落落梅" + ] + }, + { + "name": "望风山地2x28.json", + "type": "file", + "hash": "e2c3fd8eb169de45b059b0758a3131e3efdd42a3", + "version": "e2c3fd8", + "author": "yulalaa", + "description": "", + "tags": [ + "落落梅" + ] + }, + { + "name": "望风山地3x16.json", + "type": "file", + "hash": "455834f003aac51340796de051d88dbe6acb473a", + "version": "455834f", + "author": "yulalaa", + "description": "", + "tags": [ + "落落梅" + ] + } + ] + }, + { + "name": "血斛", + "type": "directory", + "children": [ + { + "name": "血斛-名椎滩.json", + "type": "file", + "hash": "9896227925ca0d5444d0f608754798b89f251ab7", + "version": "9896227", + "author": "透明人", + "description": "", + "tags": [ + "血斛" + ] + }, + { + "name": "血斛-名椎滩2.json", + "type": "file", + "hash": "f16bc97a3de2cd566bf013e097bd0cd07cbbdd25", + "version": "f16bc97", + "author": "透明人", + "description": "", + "tags": [ + "血斛" + ] + }, + { + "name": "血斛-名椎滩3.json", + "type": "file", + "hash": "67afcbbfc640ee761f333f4cc041322901c35870", + "version": "67afcbb", + "author": "透明人", + "description": "", + "tags": [ + "血斛" + ] + } + ] + }, + { + "name": "钩钩果", + "type": "directory", + "children": [ + { + "name": "钩钩果-30个(有几率卡树洞里).json", + "type": "file", + "hash": "b7c74a9406f446a530ea7537bd578659ff9abc73", + "version": "b7c74a9", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "钩钩果" + ] + }, + { + "name": "钩钩果-奔狼岭-蒙德30个-需纳西妲.json", + "type": "file", + "hash": "b3b7d6fe9620b5617bf0ef64375c3a38d21f24fe", + "version": "b3b7d6f", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "钩钩果" + ] + } + ] + }, + { + "name": "霓裳花", + "type": "directory", + "children": [ + { + "name": "霓裳花_望舒客栈_璃月_7个.json", + "type": "file", + "hash": "581b46d47e0df1d595396867d751420a0f03b84e", + "version": "581b46d", + "author": "tignioj", + "description": "", + "tags": [ + "霓裳花" + ] + } + ] + }, + { + "name": "青蜜莓", + "type": "directory", + "children": [ + { + "name": "青蜜莓1-踞石山上-4x3个.json", + "type": "file", + "hash": "ca1846da4e4769b839bf09cf58de330b977fea22", + "version": "ca1846d", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓2-彩石顶右-2x3个.json", + "type": "file", + "hash": "7c48795352c50e4b6e2cd588ca45571c5a9becb2", + "version": "7c48795", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓3-彩石顶中-3x3个.json", + "type": "file", + "hash": "de0c8bc84c5154aca9f1c77051309abe77f7eab3", + "version": "de0c8bc", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓4-彩石顶中-1x3个.json", + "type": "file", + "hash": "e140237a806d7e3374dbe9743eb6aeadc5d99d74", + "version": "e140237", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓5-彩石顶上-4x3个.json", + "type": "file", + "hash": "7724aff2029331243a050c7c2256d661dc301dc3", + "version": "7724aff", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓6-悬木人-5x3个.json", + "type": "file", + "hash": "f60a66ccbd5afa69b8f6d794cee8fc3ddc883e8d", + "version": "f60a66c", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + }, + { + "name": "青蜜莓7-坚岩隘谷-5x3个.json", + "type": "file", + "hash": "dc7800f3b535f985d73693a919ef9a5eaa699933", + "version": "dc7800f", + "author": "黎歌", + "description": "", + "tags": [ + "青蜜莓" + ] + } + ] + }, + { + "name": "须弥蔷薇", + "type": "directory", + "children": [ + { + "name": "须弥蔷薇1-降诸魔山-须弥5个.json", + "type": "file", + "hash": "49045b7664ad3a65846d14bf8ad9d4e7c2057e37", + "version": "49045b7", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇" + ] + }, + { + "name": "须弥蔷薇2-化城郭(一)-须弥8个.json", + "type": "file", + "hash": "d8e10ed8f3828658e38c1baff35d7456741c1c39", + "version": "d8e10ed", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇" + ] + }, + { + "name": "须弥蔷薇3-化城郭(二)-须弥8个.json", + "type": "file", + "hash": "861c72899e297fc30326ebdc48cd127dee067232", + "version": "861c728", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇" + ] + }, + { + "name": "须弥蔷薇4-天臂池-须弥9个.json", + "type": "file", + "hash": "a8a1c99fc30c79a02af98e2c09c1fb164362eca2", + "version": "a8a1c99", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇" + ] + }, + { + "name": "须弥蔷薇5-觉王之殿-须弥6个.json", + "type": "file", + "hash": "9121d4b61393983373adeaa3e5bb83059b668bf8", + "version": "9121d4b", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇" + ] + }, + { + "name": "须弥蔷薇6-谒颂幽境-须弥8个.json", + "type": "file", + "hash": "85a18b0eb95b173d1d4628ae5bbc5f80fb5ebc5e", + "version": "85a18b0", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇" + ] + }, + { + "name": "须弥蔷薇7-奥摩斯港-须弥9个.json", + "type": "file", + "hash": "87882ea7b2ffc6142eca0a4437e9d45e74df8a6e", + "version": "87882ea", + "author": "不瘦五十斤不改名", + "description": "", + "tags": [ + "须弥蔷薇" + ] + } + ] + }, + { + "name": "风车", + "type": "directory", + "children": [ + { + "name": "风车11.json", + "type": "file", + "hash": "9831ce0f415bad20a7e3d780c5af6fec41d28d63", + "version": "9831ce0", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车2.json", + "type": "file", + "hash": "21e0328e814a01495714773d87ee186c36e65001", + "version": "21e0328", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车3.json", + "type": "file", + "hash": "01423ea23e2c5c77dee3aeb5808e670c9913a775", + "version": "01423ea", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车4 (2).json", + "type": "file", + "hash": "fb4806129905ebe73e10d6302c014e96b5e5088b", + "version": "fb48061", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车4.json", + "type": "file", + "hash": "8426a5bc6ca0463d1eff9cf6a1f66e77f01e081b", + "version": "8426a5b", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车5.json", + "type": "file", + "hash": "83610b826c7c73eb7fc169bdbf9e6b73fa6cf834", + "version": "83610b8", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车6.json", + "type": "file", + "hash": "93bd0b8d98c4ad16e96da90d93befa0be75312d4", + "version": "93bd0b8", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车8.json", + "type": "file", + "hash": "33c769547dae21f74749c0fd65ef00b7ea31bbac", + "version": "33c7695", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车9 (2).json", + "type": "file", + "hash": "a4782b29184074b1ebe35a6b1c0f17f92c948ce6", + "version": "a4782b2", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + }, + { + "name": "风车9.json", + "type": "file", + "hash": "12697fd14d839bed087f41db478fe0c3ccd3c332", + "version": "12697fd", + "author": "柠檬茶叶", + "description": "", + "tags": [ + "风车" + ] + } + ] + }, + { + "name": "风车菊", + "type": "directory", + "children": [ + { + "name": "风车菊_蒙德_8个.json", + "type": "file", + "hash": "bc9c55a55bbbc923798d68f80de603311ad0346e", + "version": "bc9c55a", + "author": "tignioj", + "description": "", + "tags": [ + "风车菊" + ] + } + ] + }, + { + "name": "鸣草", + "type": "directory", + "children": [ + { + "name": "鸣草_九条阵屋_3个.json", + "type": "file", + "hash": "3e6c4e0b55a6fa4545e41d7f04a3987b3435ee3e", + "version": "3e6c4e0", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + }, + { + "name": "鸣草_越石村1号线_7个.json", + "type": "file", + "hash": "9ce203c68d76da2fb473c2d92d4ace475366e2cd", + "version": "9ce203c", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + }, + { + "name": "鸣草_越石村2号线_6个.json", + "type": "file", + "hash": "eddb84a7a088684ee1c50eb9034ff68d83b1a8fe", + "version": "eddb84a", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + }, + { + "name": "鸣草_踏鞴砂1号线_15个.json", + "type": "file", + "hash": "53d8f871e9f0d26378517faf988cad3a1056cea9", + "version": "53d8f87", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + }, + { + "name": "鸣草_踏鞴砂2号线_6个.json", + "type": "file", + "hash": "ff010d6299cc7e5fa98892c4cad795ac891b1481", + "version": "ff010d6", + "author": "花见木易", + "description": "", + "tags": [ + "鸣草" + ] + } + ] + } + ] + }, + { + "name": "tcg", + "type": "directory", + "children": [ + { + "name": "刻晴雷神甘雨.txt", + "type": "file", + "hash": "ef298f68e21dee52f55d39f2b9a405ffaa236542", + "version": "ef298f6", + "author": "huiyadanli", + "description": "", + "tags": [ + "刻晴", + "雷电将军", + "甘雨" + ] + }, + { + "name": "惊喜牌组", + "type": "directory", + "children": [ + { + "name": "[惊喜牌组][枫丹]赫茉莎.txt", + "type": "file", + "hash": "84b447ddf295c675d9dea9f2cc58f07a4c099b44", + "version": "84b447d", + "author": "Womsxd", + "description": "", + "tags": [ + "林尼", + "琳妮特", + "珊瑚宫心海" + ] + }, + { + "name": "[惊喜牌组][璃月]东东.txt", + "type": "file", + "hash": "10b50e397f642fae4efa058c89b91fe2e488f6e5", + "version": "10b50e3", + "author": "Womsxd", + "description": "", + "tags": [ + "雷电将军", + "香菱", + "柯莱" + ] + }, + { + "name": "[惊喜牌组][璃月]黄衫.txt", + "type": "file", + "hash": "d9bdbad6c51897ce0455dcf439d9c763f67c3fb8", + "version": "d9bdbad", + "author": "Womsxd", + "description": "", + "tags": [ + "钟离", + "胡桃", + "行秋" + ] + }, + { + "name": "[惊喜牌组][须弥]巴哈拉克.txt", + "type": "file", + "hash": "e8a7be2303b40bb7dc1475d2c41b1ccf046e2d21", + "version": "e8a7be2", + "author": "Womsxd", + "description": "", + "tags": [ + "温迪", + "菲谢尔", + "莫娜" + ] + }, + { + "name": "[惊喜牌组][须弥]马鲁夫.txt", + "type": "file", + "hash": "208bb4f7989015dde7a18b1c53ca325c5df627e5", + "version": "208bb4f", + "author": "Womsxd", + "description": "", + "tags": [ + "纳西妲", + "九条裟罗", + "莫娜" + ] + }, + { + "name": "[惊喜牌组][龙脊雪山]史蒂文斯.txt", + "type": "file", + "hash": "b13c01ede19c5ef4a30fe44b02572e0bc8455478", + "version": "b13c01e", + "author": "Womsxd", + "description": "", + "tags": [ + "特瓦林", + "凯亚", + "无相之雷" + ] + }, + { + "name": "[惊喜牌组][龙脊雪山]玉霞.txt", + "type": "file", + "hash": "a7f81492654c30fd2ab6c7507d708ce847597b09", + "version": "a7f8149", + "author": "Womsxd", + "description": "", + "tags": [ + "若陀龙王", + "菲谢尔", + "纯水精灵" + ] + } + ] + }, + { + "name": "皇女科莱莫娜.txt", + "type": "file", + "hash": "52fbc1d5172da3b97dcc5f6d0b43f8a318aedd15", + "version": "52fbc1d", + "author": "我欲乘风", + "description": "", + "tags": [ + "皇女", + "科莱", + "莫娜" + ] + }, + { + "name": "芙芙卡维鲸鱼.txt", + "type": "file", + "hash": "2daf3c12a1f618db05fd2091dd204bafce7c1103", + "version": "2daf3c1", + "author": "繁星入梦", + "description": "卡组内塞满3费卡即可", + "tags": [ + "芙宁娜", + "卡维", + "吞星之鲸" + ] + }, + { + "name": "莫娜白术皇女.txt", + "type": "file", + "hash": "cad1618800224a0547bc9e65c9f86559d446955d", + "version": "cad1618", + "author": "我欲乘风", + "description": "", + "tags": [ + "莫娜", + "白术", + "皇女" + ] + }, + { + "name": "莫娜砂糖琴.txt", + "type": "file", + "hash": "b1a86ea6f64d7768b5788352bb9f4ad1a7fb7899", + "version": "b1a86ea", + "author": "huiyadanli", + "description": "", + "tags": [ + "莫娜", + "砂糖", + "琴" + ] + }, + { + "name": "迪希雅白术皇女.txt", + "type": "file", + "hash": "8c21d1aa46ea31707a8151e1e83aac79079ca1b1", + "version": "8c21d1a", + "author": "我欲乘风", + "description": "", + "tags": [ + "迪希雅", + "白术", + "皇女" + ] + }, + { + "name": "重云雷神申鹤.txt", + "type": "file", + "hash": "c492d36aec63daa2e43a8bcce58753610190d500", + "version": "c492d36", + "author": "繁星入梦", + "description": "", + "tags": [ + "重云", + "雷神", + "申鹤" + ] + }, + { + "name": "雷神柯莱刻晴[推荐].txt", + "type": "file", + "hash": "edac40f7bff00552c3a58f230e7a0838ad66a4aa", + "version": "edac40f", + "author": "我欲乘风", + "description": "", + "tags": [ + "雷神", + "柯莱", + "刻晴" + ] + }, + { + "name": "雷神阿贝多丘丘王.txt", + "type": "file", + "hash": "a5137107cbaef8ac9e4c848ea73556d8b08a399f", + "version": "a513710", + "author": "繁星入梦", + "description": "", + "tags": [ + "雷神", + "阿贝多", + "丘丘王" + ] + } + ] + } +] \ No newline at end of file diff --git a/repo/fight/1.四神挂机[推荐].txt b/repo/combat/1.四神挂机[推荐].txt similarity index 100% rename from repo/fight/1.四神挂机[推荐].txt rename to repo/combat/1.四神挂机[推荐].txt diff --git a/repo/combat/2.宵宫队[请看文件内说明].txt b/repo/combat/2.宵宫队[请看文件内说明].txt new file mode 100644 index 00000000..469fa77d --- /dev/null +++ b/repo/combat/2.宵宫队[请看文件内说明].txt @@ -0,0 +1,14 @@ +// 作者:爱司基模人 +// 描述:推荐配队\n钟离 (夜/行/班/云/万)四选二 宵宫\n不推荐云堇万叶一起上\n钟离 芙宁娜 琴/早柚/班尼特 宵宫\n风奶带风套最好(金珀小鹿?金珀砂糖?金珀散兵?),其他奶凑合用/n + + +钟离 s(0.1),e(hold),wait(0.3),w(0.1) +芙宁娜 e,q +行秋 e,q,e +夜兰 e,e,wait(0.2),e,e,q +云堇 e,q +班尼特 e,q +//琴 e,q 不识别 +早柚 e,e,q +枫原万叶 e,attack(0.1),q +宵宫 e,attack(5.5) diff --git a/repo/fight/久岐忍超绽放.txt b/repo/combat/久岐忍超绽放.txt similarity index 82% rename from repo/fight/久岐忍超绽放.txt rename to repo/combat/久岐忍超绽放.txt index aac0ac43..52bae89b 100644 --- a/repo/fight/久岐忍超绽放.txt +++ b/repo/combat/久岐忍超绽放.txt @@ -1,3 +1,6 @@ +// 作者:佚名 +// 描述: + 钟离 s(0.2),e(hold),wait(0.3),w(0.2),q 纳西妲 e(hold),wait(0.3) 芙宁娜 e,wait(0.3),q diff --git a/repo/fight/仆人纯火.txt b/repo/combat/仆人纯火.txt similarity index 81% rename from repo/fight/仆人纯火.txt rename to repo/combat/仆人纯火.txt index 291ce459..bb142c07 100644 --- a/repo/fight/仆人纯火.txt +++ b/repo/combat/仆人纯火.txt @@ -1,3 +1,6 @@ +// 作者:佚名 +// 描述: + 仆人 e 钟离 s(0.1),e(hold) 班尼特 e,q diff --git a/repo/fight/仆北夏托.txt b/repo/combat/仆北夏托.txt similarity index 54% rename from repo/fight/仆北夏托.txt rename to repo/combat/仆北夏托.txt index 13961d11..e5c6c59b 100644 --- a/repo/fight/仆北夏托.txt +++ b/repo/combat/仆北夏托.txt @@ -1,3 +1,7 @@ +// 作者:佚名 +// 描述:北斗托马需要堆充能,自动轴为了更稳降低了输出,后置护盾容易被打断,不适用于开局就多动症的敌人(比如谐律本) + + 仆人 e 北斗 e 托马 e,q @@ -10,4 +14,3 @@ 北斗 e,q 仆人 charge(0.52),attack(2),dash,attack(2),dash,attack(2),e -//缺点:北斗托马需要堆充能,自动轴为了更稳降低了输出,后置护盾容易被打断,不适用于开局就多动症的敌人(比如谐律本) diff --git a/repo/fight/四神队(进阶版).txt b/repo/combat/四神队(进阶版).txt similarity index 95% rename from repo/fight/四神队(进阶版).txt rename to repo/combat/四神队(进阶版).txt index 7dbfd108..8c73cfa8 100644 --- a/repo/fight/四神队(进阶版).txt +++ b/repo/combat/四神队(进阶版).txt @@ -1,3 +1,7 @@ +// 作者:佚名 +// 描述: + + 钟离 q,s(0.2),e(hold),wait(0.1),w(0.2),wait(0.2) 雷电将军 e,wait(0.5), 纳西妲 e(hold),wait(0.3),q,attack(0.5) diff --git a/repo/fight/夜电芙琴.txt b/repo/combat/夜电芙琴.txt similarity index 73% rename from repo/fight/夜电芙琴.txt rename to repo/combat/夜电芙琴.txt index bc2af744..41775652 100644 --- a/repo/fight/夜电芙琴.txt +++ b/repo/combat/夜电芙琴.txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 雷电将军 e 芙宁娜 e,wait(0.2),q 夜兰 e,e,wait(0.8),e,e,wait(1.5),q diff --git a/repo/fight/妮绽放(无霸体).txt b/repo/combat/妮绽放(无霸体).txt similarity index 77% rename from repo/fight/妮绽放(无霸体).txt rename to repo/combat/妮绽放(无霸体).txt index e50285e6..a63a79aa 100644 --- a/repo/fight/妮绽放(无霸体).txt +++ b/repo/combat/妮绽放(无霸体).txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 白术 e,q 纳西妲 e(hold),wait(0.3),q 妮露 e,e,e,e,e,e,e,e diff --git a/repo/fight/岩娜维娅.txt b/repo/combat/岩娜维娅.txt similarity index 91% rename from repo/fight/岩娜维娅.txt rename to repo/combat/岩娜维娅.txt index 0ccc8657..92eaf618 100644 --- a/repo/fight/岩娜维娅.txt +++ b/repo/combat/岩娜维娅.txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 钟离 q,s(0.1),e(hold),wait(0.3),w(0.1),attack(0.05),dash 芙芙 e,q,attack(0.05),dash 娜维娅 q,attack(0.05),dash,click(middle),wait(0.3),keydown(e),wait(0.2),keyup(e),click diff --git a/repo/fight/影夜白芙.txt b/repo/combat/影夜白芙.txt similarity index 92% rename from repo/fight/影夜白芙.txt rename to repo/combat/影夜白芙.txt index 2dee3e19..7199df6e 100644 --- a/repo/fight/影夜白芙.txt +++ b/repo/combat/影夜白芙.txt @@ -1,3 +1,6 @@ +// 作者:佚名 +// 描述: + 芙宁娜 e,wait(0.2),q,wait(0.1) 夜兰 e,wait(0.1),q,attack(0.5) 白术 e,wait(0.1),q,attack(0.5) diff --git a/repo/fight/心海队.txt b/repo/combat/心海队.txt similarity index 77% rename from repo/fight/心海队.txt rename to repo/combat/心海队.txt index 94730980..bd368b21 100644 --- a/repo/fight/心海队.txt +++ b/repo/combat/心海队.txt @@ -1,3 +1,7 @@ +// 作者:佚名 +// 描述: + + 钟离 e(hold) 夜兰 e,e,wait(0.2),q 芙宁娜 e,wait(0.3),q diff --git a/repo/fight/提八(空A重).txt b/repo/combat/提八(空A重).txt similarity index 91% rename from repo/fight/提八(空A重).txt rename to repo/combat/提八(空A重).txt index 70a969a6..a066b115 100644 --- a/repo/fight/提八(空A重).txt +++ b/repo/combat/提八(空A重).txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 钟离 s(0.2),e(hold),wait(0.3),w(0.2) 纳西妲 e(hold),wait(0.3),d(0.2),q 八重神子 q,s(0.2),e,wait(0.5),e,wait(0.6),w(0.2),e diff --git a/repo/fight/提八.txt b/repo/combat/提八.txt similarity index 92% rename from repo/fight/提八.txt rename to repo/combat/提八.txt index 35b662a5..afa7a481 100644 --- a/repo/fight/提八.txt +++ b/repo/combat/提八.txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 钟离 s(0.1),e(hold) 纳西妲 e(hold) 八重神子 s(0.1),e,wait(0.45),e,wait(0.55),w(0.2),e diff --git a/repo/fight/散兵[请看文件内说明].txt b/repo/combat/散兵[请看文件内说明].txt similarity index 57% rename from repo/fight/散兵[请看文件内说明].txt rename to repo/combat/散兵[请看文件内说明].txt index 2296f4b9..71b4fce4 100644 --- a/repo/fight/散兵[请看文件内说明].txt +++ b/repo/combat/散兵[请看文件内说明].txt @@ -1,3 +1,6 @@ +// 作者:佚名 +// 描述:推荐配队:\n1钟离 夜班行云四选二 散兵\n2钟离 珐露珊 四琴 散兵 琴不识别,四琴用不了 可以试试加个q收尾\n3钟离 芙宁娜 四琴 散兵 琴不识别,四琴用不了\n4莱依拉北斗 行秋 云珐夜班 散兵 + 钟离 s(0.1),e(hold),wait(0.3),w(0.1) 行秋 e,q,e 夜兰 e,e,wait(0.2),e,e,q @@ -11,9 +14,3 @@ //流浪者 e,attack(1.2),charge,attack(1),charge,attack(1),charge,e //散兵只重击 //流浪者 e,charge,charge,charge,charge,charge,charge,charge,charge,charge,e -// -//推荐配队 -//钟离 夜班行云四选二 散兵 -//钟离 珐露珊 四琴 散兵 琴不识别,四琴用不了 可以试试加个q收尾 -//钟离 芙宁娜 四琴 散兵 琴不识别,四琴用不了 -//莱依拉北斗 行秋 云珐夜班 散兵 \ No newline at end of file diff --git a/repo/fight/火胡桃非零命.txt b/repo/combat/火胡桃非零命.txt similarity index 96% rename from repo/fight/火胡桃非零命.txt rename to repo/combat/火胡桃非零命.txt index ce42217b..b11613c3 100644 --- a/repo/fight/火胡桃非零命.txt +++ b/repo/combat/火胡桃非零命.txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 钟离 s(0.1),e(hold),wait(0.3),w(0.1) 芙宁娜 e,q 行秋 attack(0.1),dash,e,q,e diff --git a/repo/fight/神鹤万心(无法冲刺打物理).txt b/repo/combat/神鹤万心(无法冲刺打物理).txt similarity index 87% rename from repo/fight/神鹤万心(无法冲刺打物理).txt rename to repo/combat/神鹤万心(无法冲刺打物理).txt index ac4ad846..bba8396c 100644 --- a/repo/fight/神鹤万心(无法冲刺打物理).txt +++ b/repo/combat/神鹤万心(无法冲刺打物理).txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 申鹤 e,q 枫原万叶 e,attack(0.1) 珊瑚宫心海 e diff --git a/repo/fight/胡桃(无法取消后摇迷之锁敌会掉沟).txt b/repo/combat/胡桃(无法取消后摇迷之锁敌会掉沟).txt similarity index 86% rename from repo/fight/胡桃(无法取消后摇迷之锁敌会掉沟).txt rename to repo/combat/胡桃(无法取消后摇迷之锁敌会掉沟).txt index a0d7e070..2f01a24e 100644 --- a/repo/fight/胡桃(无法取消后摇迷之锁敌会掉沟).txt +++ b/repo/combat/胡桃(无法取消后摇迷之锁敌会掉沟).txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 钟离 s(0.2),e(hold),wait(0.3),w(0.2) 行秋 e,q,e,wait(0.3) 夜兰 e,e,wait(0.5),e,e,wait(1),q diff --git a/repo/fight/草行久钟(草神瞎转点不了种子).txt b/repo/combat/草行久钟(草神瞎转点不了种子).txt similarity index 64% rename from repo/fight/草行久钟(草神瞎转点不了种子).txt rename to repo/combat/草行久钟(草神瞎转点不了种子).txt index 17a8f2fd..937f9dcb 100644 --- a/repo/fight/草行久钟(草神瞎转点不了种子).txt +++ b/repo/combat/草行久钟(草神瞎转点不了种子).txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述:草神瞎转点不了种子 + 钟离 q,w(1),s(0),e(hold),wait(0.3),w(0.1) 纳西妲 e(hold),wait(0.3),q 行秋 e,q,e diff --git a/repo/fight/钟仆夜坎.txt b/repo/combat/钟仆夜坎.txt similarity index 55% rename from repo/fight/钟仆夜坎.txt rename to repo/combat/钟仆夜坎.txt index 85562e87..c77078c3 100644 --- a/repo/fight/钟仆夜坎.txt +++ b/repo/combat/钟仆夜坎.txt @@ -1,7 +1,9 @@ +// 作者:佚名 +// 描述:缺点为无聚怪手段,双水角色需要堆一定的充能效率,优点是不画地为牢 + + 仆人 e 钟离 s(0.2),e(hold),wait(0.1),w(0.2),wait(0.2) 夜兰 e,attack(0.5),q 坎蒂丝 e,q 仆人 charge(0.52),attack(2),dash,attack(2),dash,attack(2),e - -//缺点为无聚怪手段,双水角色需要堆一定的充能效率,优点是不画地为牢 diff --git a/repo/fight/钟仆娜云.txt b/repo/combat/钟仆娜云.txt similarity index 59% rename from repo/fight/钟仆娜云.txt rename to repo/combat/钟仆娜云.txt index ccb41c22..26a2edf9 100644 --- a/repo/fight/钟仆娜云.txt +++ b/repo/combat/钟仆娜云.txt @@ -1,7 +1,9 @@ +// 作者:佚名 +// 描述:双c配置,三岩保障云堇有足够充能,缺点是伤害较低 + 仆人 e 钟离 s(0.2),e(hold),wait(0.1),w(0.2),wait(0.2) 娜维娅 e,q,e 云堇 q,e 仆人 charge(0.52),attack(2),dash,attack(2),dash,attack(2),e -//双c配置,三岩保障云堇有足够充能,缺点是伤害较低 diff --git a/repo/fight/钟离八重万叶白术.txt b/repo/combat/钟离八重万叶白术.txt similarity index 86% rename from repo/fight/钟离八重万叶白术.txt rename to repo/combat/钟离八重万叶白术.txt index b3294f67..0c8e088b 100644 --- a/repo/fight/钟离八重万叶白术.txt +++ b/repo/combat/钟离八重万叶白术.txt @@ -1,3 +1,6 @@ +// 作者:佚名 +// 描述: + 钟离 s(0.2),e(hold) 八重神子 e,wait(0.5),s(0.6),wait(0.2),e,wait(0.5),s(0.6),wait(0.2),w(0.2),wait(0.2),e 枫原万叶 w(0.3),wait(0.1),e(hold),attack,q,e,attack diff --git a/repo/fight/钟离纳西妲夜兰艾尔海森.txt b/repo/combat/钟离纳西妲夜兰艾尔海森.txt similarity index 94% rename from repo/fight/钟离纳西妲夜兰艾尔海森.txt rename to repo/combat/钟离纳西妲夜兰艾尔海森.txt index 62f0812e..ff33194c 100644 --- a/repo/fight/钟离纳西妲夜兰艾尔海森.txt +++ b/repo/combat/钟离纳西妲夜兰艾尔海森.txt @@ -1,3 +1,6 @@ +// 作者:拾荒者uihdve +// 描述: + 钟离 s(0.2),e(hold),wait(0.3),w(0.2),q 纳西妲 e(hold),q 夜兰 e,e,wait(0.2),e,e,q diff --git a/repo/fight/钟芙琴那-开转.txt b/repo/combat/钟芙琴那-开转.txt similarity index 76% rename from repo/fight/钟芙琴那-开转.txt rename to repo/combat/钟芙琴那-开转.txt index 0788129b..110fffa1 100644 --- a/repo/fight/钟芙琴那-开转.txt +++ b/repo/combat/钟芙琴那-开转.txt @@ -1,3 +1,6 @@ +// 作者:Dawn +// 描述: + 钟离 s(0.2),e(hold),wait(0.3),w(0.2),q 芙宁娜 e,q 琴 e,q diff --git a/repo/fight/钟芙鹿莫.txt b/repo/combat/钟芙鹿莫.txt similarity index 66% rename from repo/fight/钟芙鹿莫.txt rename to repo/combat/钟芙鹿莫.txt index 359eb6bc..b84ade3e 100644 --- a/repo/fight/钟芙鹿莫.txt +++ b/repo/combat/钟芙鹿莫.txt @@ -1,3 +1,6 @@ +// 作者:上杉夏香 +// 描述: + 钟离 s(0.2),e(hold),q 芙宁娜 e,q 鹿野苑平藏 e,q diff --git a/repo/fight/钟草芙克(标准6套AE).txt b/repo/combat/钟草芙克(标准6套AE).txt similarity index 86% rename from repo/fight/钟草芙克(标准6套AE).txt rename to repo/combat/钟草芙克(标准6套AE).txt index 84c0e416..83bdc0e0 100644 --- a/repo/fight/钟草芙克(标准6套AE).txt +++ b/repo/combat/钟草芙克(标准6套AE).txt @@ -1,3 +1,6 @@ +// 作者:佚名 +// 描述: + 钟离 s(0.2),e(hold),wait(0.3),w(0.2),q 纳西妲 e(hold),q 芙宁娜 e,wait(0.3),q diff --git a/repo/fight/钟那芙琴(非满命).txt b/repo/combat/钟那芙琴(非满命).txt similarity index 78% rename from repo/fight/钟那芙琴(非满命).txt rename to repo/combat/钟那芙琴(非满命).txt index cad53ff1..5ff6acc3 100644 --- a/repo/fight/钟那芙琴(非满命).txt +++ b/repo/combat/钟那芙琴(非满命).txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述:非满命 + 钟离 s(0.2),e(hold),wait(0.3),w(0.2),q 那维莱特 e 芙宁娜 e,q diff --git a/repo/fight/钟雷芙瑶.txt b/repo/combat/钟雷芙瑶.txt similarity index 82% rename from repo/fight/钟雷芙瑶.txt rename to repo/combat/钟雷芙瑶.txt index 72d54e40..14601ef0 100644 --- a/repo/fight/钟雷芙瑶.txt +++ b/repo/combat/钟雷芙瑶.txt @@ -1,3 +1,6 @@ +// 作者:绘星痕 +// 描述: + 钟离 s(0.2),e(hold),wait(0.3),w(0.2) 芙宁娜 e,wait(0.3),q 雷电将军 e diff --git a/repo/fight/零命那维转圈圈.txt b/repo/combat/零命那维转圈圈.txt similarity index 85% rename from repo/fight/零命那维转圈圈.txt rename to repo/combat/零命那维转圈圈.txt index de388428..81e3364e 100644 --- a/repo/fight/零命那维转圈圈.txt +++ b/repo/combat/零命那维转圈圈.txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 钟离 s(0.2),e(hold),wait(0.3),w(0.2),q 那维莱特 e 枫原万叶 e,attack(0.1) diff --git a/repo/fight/雷神国家队.txt b/repo/combat/雷神国家队.txt similarity index 88% rename from repo/fight/雷神国家队.txt rename to repo/combat/雷神国家队.txt index e8297834..9d06f113 100644 --- a/repo/fight/雷神国家队.txt +++ b/repo/combat/雷神国家队.txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 将军 e,attack(0.1),dash 芙芙 e,q 行秋 e,q,e diff --git a/repo/fight/风散兵.txt b/repo/combat/风散兵.txt similarity index 95% rename from repo/fight/风散兵.txt rename to repo/combat/风散兵.txt index 0275693a..bb998a0f 100644 --- a/repo/fight/风散兵.txt +++ b/repo/combat/风散兵.txt @@ -1,3 +1,6 @@ +// 作者:爱司基模人 +// 描述: + 钟离 s(0.1),e(hold),wait(0.3),w(0.1),q,attack(0.05),dash 行秋 e,q,e,attack(0.05),dash 夜兰 e,e,wait(0.2),e,e,q diff --git a/repo/fight/2.宵宫队[请看文件内说明].txt b/repo/fight/2.宵宫队[请看文件内说明].txt deleted file mode 100644 index a2c91014..00000000 --- a/repo/fight/2.宵宫队[请看文件内说明].txt +++ /dev/null @@ -1,14 +0,0 @@ -钟离 s(0.1),e(hold),wait(0.3),w(0.1) -芙宁娜 e,q -行秋 e,q,e -夜兰 e,e,wait(0.2),e,e,q -云堇 e,q -班尼特 e,q -//琴 e,q 不识别 -早柚 e,e,q -枫原万叶 e,attack(0.1),q -宵宫 e,attack(5.5) -// -//推荐配队 -//钟离 (夜/行/班/云/万)四选二 宵宫 不推荐云堇万叶一起上 -//钟离 芙宁娜 琴/早柚/班尼特 宵宫 风奶带风套最好(金珀小鹿?金珀砂糖?金珀散兵?),其他奶凑合用 \ No newline at end of file diff --git a/repo/js/AutoArtifacts/manifest.json b/repo/js/AutoArtifacts/manifest.json index 4aac7446..c6b1a120 100644 --- a/repo/js/AutoArtifacts/manifest.json +++ b/repo/js/AutoArtifacts/manifest.json @@ -5,7 +5,7 @@ "description": "自动调查离传送点较近的狗粮。请使用琳妮特前台,双风共鸣。并保证所有传送点都已经激活!", "authors": [ { - "name": "HZYgrandma", + "name": "HZYgrandma" } ], "main": "main.js" diff --git a/repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合1-璃月港右-3个.json b/repo/pathing/琉璃百合/琉璃百合1-璃月港右-3个.json similarity index 100% rename from repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合1-璃月港右-3个.json rename to repo/pathing/琉璃百合/琉璃百合1-璃月港右-3个.json diff --git a/repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合2-璃月港左-7个+霓裳花4x2个.json b/repo/pathing/琉璃百合/琉璃百合2-璃月港左-7个+霓裳花4x2个.json similarity index 100% rename from repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合2-璃月港左-7个+霓裳花4x2个.json rename to repo/pathing/琉璃百合/琉璃百合2-璃月港左-7个+霓裳花4x2个.json diff --git a/repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合3-璃月港左-11个+霓裳花3x2个.json b/repo/pathing/琉璃百合/琉璃百合3-璃月港左-11个+霓裳花3x2个.json similarity index 100% rename from repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合3-璃月港左-11个+霓裳花3x2个.json rename to repo/pathing/琉璃百合/琉璃百合3-璃月港左-11个+霓裳花3x2个.json diff --git a/repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合4-轻策庄下-2个+绝云椒椒2x3个.json b/repo/pathing/琉璃百合/琉璃百合4-轻策庄下-2个+绝云椒椒2x3个.json similarity index 100% rename from repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合4-轻策庄下-2个+绝云椒椒2x3个.json rename to repo/pathing/琉璃百合/琉璃百合4-轻策庄下-2个+绝云椒椒2x3个.json diff --git a/repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合5-轻策庄右-1个+绝云椒椒1x3个.json b/repo/pathing/琉璃百合/琉璃百合5-轻策庄右-1个+绝云椒椒1x3个.json similarity index 100% rename from repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合5-轻策庄右-1个+绝云椒椒1x3个.json rename to repo/pathing/琉璃百合/琉璃百合5-轻策庄右-1个+绝云椒椒1x3个.json diff --git a/repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合6-轻策庄下-1个+绝云椒椒1x3个.json b/repo/pathing/琉璃百合/琉璃百合6-轻策庄下-1个+绝云椒椒1x3个.json similarity index 100% rename from repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合6-轻策庄下-1个+绝云椒椒1x3个.json rename to repo/pathing/琉璃百合/琉璃百合6-轻策庄下-1个+绝云椒椒1x3个.json diff --git a/repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合7-轻策庄左-5个+绝云椒椒1x3个.json b/repo/pathing/琉璃百合/琉璃百合7-轻策庄左-5个+绝云椒椒1x3个.json similarity index 100% rename from repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合7-轻策庄左-5个+绝云椒椒1x3个.json rename to repo/pathing/琉璃百合/琉璃百合7-轻策庄左-5个+绝云椒椒1x3个.json diff --git a/repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合8-轻策庄上-11个+绝云椒椒1x3个.json b/repo/pathing/琉璃百合/琉璃百合8-轻策庄上-11个+绝云椒椒1x3个.json similarity index 100% rename from repo/pathing/琉璃百合,霓裳花,绝云椒椒/琉璃百合8-轻策庄上-11个+绝云椒椒1x3个.json rename to repo/pathing/琉璃百合/琉璃百合8-轻策庄上-11个+绝云椒椒1x3个.json