From c648b3a6ae7f8727033cd6d08c620790457b37ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BA=81=E5=8A=A8=E7=9A=84=E6=B0=A8=E6=B0=94?= <131591012+zaodonganqi@users.noreply.github.com> Date: Sun, 5 Oct 2025 23:11:52 +0800 Subject: [PATCH] =?UTF-8?q?build.js=E6=B7=BB=E5=8A=A0=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E4=BD=9C=E8=80=85=E9=93=BE=E6=8E=A5=E6=98=A0?= =?UTF-8?q?=E5=B0=84=20(#2082)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 补充构建repo.json时的作者链接 * Update build.yml * update repo.json * Update build.yml --- .github/workflows/build.yml | 2 +- build/build.js | 58 ++- repo.json | 727 +++++++++++++++++++++++------------- 3 files changed, 531 insertions(+), 256 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index acb501290..86887079e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -79,4 +79,4 @@ jobs: r2-secret-access-key: ${{ secrets.R2_SECRET_ACCESS_KEY }} r2-bucket: ${{ secrets.R2_BUCKET }} source-dir: my_files/ - destination-dir: github_mirror/ \ No newline at end of file + destination-dir: github_mirror/ diff --git a/build/build.js b/build/build.js index 8a3489538..565c5e255 100644 --- a/build/build.js +++ b/build/build.js @@ -11,6 +11,18 @@ const enableGzip = args.includes('--gzip') || args.includes('-g'); // 在文件开头添加全局变量 const pathingDirsWithoutIcon = new Set(); +// 加载作者配置 +let authorConfig = null; +try { + const authorConfigPath = path.resolve(__dirname, 'author_config.json'); + if (fs.existsSync(authorConfigPath)) { + authorConfig = JSON.parse(fs.readFileSync(authorConfigPath, 'utf8')); + console.log('已加载作者配置文件'); + } +} catch (e) { + console.warn('加载作者配置文件失败:', e); +} + // 检查是否存在现有的repo.json文件 const repoJsonPath = path.resolve(__dirname, '..', 'repo.json'); let existingRepoJson = null; @@ -171,23 +183,52 @@ function processAuthorInfo(authorInfo) { function processDetailedAuthorInfo(authorInfo) { if (!authorInfo) return null; + // 获取作者重命名和链接配置 + const authorRename = authorConfig?.rename || {}; + const authorLinks = authorConfig?.links || {}; + // 如果是字符串,转换为对象格式 if (typeof authorInfo === 'string') { - return [{ name: authorInfo.trim() }]; + const authorName = authorInfo.trim(); + const finalName = authorRename[authorName] || authorName; + const authorObj = { name: finalName }; + + // 添加链接 + if (authorLinks[finalName]) { + authorObj.link = authorLinks[finalName]; + } + + return [authorObj]; } // 如果是数组,处理多个作者 if (Array.isArray(authorInfo)) { const authors = authorInfo.map(author => { if (typeof author === 'string') { - return { name: author.trim() }; + const authorName = author.trim(); + const finalName = authorRename[authorName] || authorName; + const authorObj = { name: finalName }; + + // 添加链接 + if (authorLinks[finalName]) { + authorObj.link = authorLinks[finalName]; + } + + return authorObj; } else if (typeof author === 'object' && author.name) { - const authorObj = { name: author.name.trim() }; + const authorName = author.name.trim(); + const finalName = authorRename[authorName] || authorName; + const authorObj = { name: finalName }; + + // 优先使用已有的链接,其次使用配置中的链接 if (author.link) { authorObj.link = author.link; } else if (author.links) { authorObj.link = author.links; + } else if (authorLinks[finalName]) { + authorObj.link = authorLinks[finalName]; } + return authorObj; } return null; @@ -198,12 +239,19 @@ function processDetailedAuthorInfo(authorInfo) { // 如果是对象 if (typeof authorInfo === 'object' && authorInfo.name) { - const authorObj = { name: authorInfo.name.trim() }; + const authorName = authorInfo.name.trim(); + const finalName = authorRename[authorName] || authorName; + const authorObj = { name: finalName }; + + // 优先使用已有的链接,其次使用配置中的链接 if (authorInfo.link) { authorObj.link = authorInfo.link; } else if (authorInfo.links) { authorObj.link = authorInfo.links; + } else if (authorLinks[finalName]) { + authorObj.link = authorLinks[finalName]; } + return [authorObj]; } @@ -372,6 +420,7 @@ function extractInfoFromPathingFile(filePath, parentFolders) { if (actions.includes('hydro_collect')) tags.push('水元素力收集'); if (actions.includes('anemo_collect')) tags.push('风元素力收集'); if (actions.includes('electro_collect')) tags.push('雷元素力收集'); + if (actions.includes('pyro_collect')) tags.push('火元素力收集'); if (actions.includes('up_down_grab_leaf')) tags.push('四叶印'); if (actions.includes('mining')) tags.push('挖矿'); if (actions.includes('fight')) tags.push('战斗'); @@ -379,6 +428,7 @@ function extractInfoFromPathingFile(filePath, parentFolders) { if (actions.includes('pick_around')) tags.push('转圈拾取'); if (actions.includes('fishing')) tags.push('钓鱼'); if (actions.includes('set_time')) tags.push('时间调整'); + if (actions.includes('use_gadget')) tags.push('小道具'); const move_modes = contentObj.positions.map(pos => pos.move_mode); if (move_modes.includes('climb')) tags.push("有攀爬"); diff --git a/repo.json b/repo.json index 962018178..f5c0da9f7 100644 --- a/repo.json +++ b/repo.json @@ -1,5 +1,5 @@ { - "time": "20251005213131", + "time": "20251005230144", "url": "https://github.com/babalae/bettergi-scripts-list/archive/refs/heads/main.zip", "file": "repo.json", "indexes": [ @@ -10885,7 +10885,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -10946,7 +10947,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "时间:2分40秒; 对角色没有任何要求,带双风更好", @@ -10966,7 +10968,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "无角色要求,如果带双风配队飞起来会更平稳", @@ -10986,7 +10989,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "无角色要求,如果带双风配队飞起来会更平稳", @@ -11025,7 +11029,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "无角色要求,如果带双风配队+安柏或者柯莱飞起来会更平稳", @@ -11044,7 +11049,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "1分28秒; 无角色要求,如果带双风配队+安柏或者柯莱飞起来会更平稳", @@ -11124,7 +11130,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时: 1分58秒; 无角色要求,如果带双风配队+安柏或者柯莱飞起来会更平稳", @@ -11143,7 +11150,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:3分06秒; 无角色要求,如果带双风配队+安柏或者柯莱飞起来会更平稳", @@ -11162,7 +11170,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:2分04秒; 无角色要求,如果带双风配队+安柏或者柯莱飞起来会更平稳", @@ -48666,7 +48675,8 @@ "挪德卡莱", "桤木", "王树瑞佑", - "伐木" + "伐木", + "小道具" ], "lastUpdated": "2025-09-30 20:52:41" }, @@ -48689,6 +48699,7 @@ "榛木", "王树瑞佑", "伐木", + "小道具", "有攀爬" ], "lastUpdated": "2025-09-30 20:52:41" @@ -48711,7 +48722,8 @@ "挪德卡莱", "银冷衫木", "王树瑞佑", - "伐木" + "伐木", + "小道具" ], "lastUpdated": "2025-09-30 20:52:41" }, @@ -48722,7 +48734,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48741,7 +48753,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48760,7 +48772,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48779,7 +48791,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48799,7 +48811,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48818,7 +48830,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48837,7 +48849,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48856,7 +48868,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48875,7 +48887,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48894,7 +48906,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48913,7 +48925,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48932,7 +48944,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48951,7 +48963,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48971,7 +48983,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -48991,7 +49003,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49011,7 +49023,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49030,7 +49042,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49049,7 +49061,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49069,7 +49081,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49088,7 +49100,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49107,7 +49119,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49126,7 +49138,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49145,7 +49157,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49164,7 +49176,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49183,7 +49195,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -49202,7 +49214,7 @@ "author": "Patrick-Ze (AyakaMain)", "authors": [ { - "name": "Patrick-Ze (AyakaMain)", + "name": "Ayaka-Main", "link": "https://github.com/Patrick-Ze" } ], @@ -53845,7 +53857,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -53863,7 +53876,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -53881,7 +53895,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集日落果", @@ -53900,7 +53915,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -53918,7 +53934,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -53936,7 +53953,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "日落果05-坠星山谷-6颗-万叶纯享-白白喵", @@ -53955,7 +53973,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘日落果", @@ -53973,7 +53992,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -53991,7 +54011,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘果子", @@ -54009,7 +54030,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "日落果09-誓言岬-21-万叶纯享-白白喵", @@ -54027,7 +54049,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54045,7 +54068,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "队伍要带上万叶", @@ -54063,7 +54087,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54081,7 +54106,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54099,7 +54125,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54117,7 +54144,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54135,7 +54163,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54153,7 +54182,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54171,7 +54201,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54189,7 +54220,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54207,7 +54239,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -54225,7 +54258,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "队伍需要带上万叶", @@ -54243,7 +54277,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54261,7 +54296,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54279,7 +54315,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54297,7 +54334,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶采集", @@ -54315,7 +54353,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "日落果17个", @@ -54333,7 +54372,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "摘5棵日落果树,从绝云间到翠玦坡左到翠玦坡左下。", @@ -54351,7 +54391,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "日落果:从遁玉陵右下到天衡山左,到灵矩关右到青墟浦右,7棵21个日落果", @@ -57114,7 +57155,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:2分23秒; 推荐双风配队琴团长跑图.", @@ -57132,7 +57174,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分03秒; 推荐双风配队琴团长跑图.", @@ -57150,7 +57193,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:2分38秒; 推荐双风配队琴团长跑图.", @@ -57168,7 +57212,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分26秒; 推荐双风配队琴团长跑图.", @@ -57186,7 +57231,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分21秒; 推荐双风配队琴团长跑图.", @@ -57204,7 +57250,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:2分3秒; 推荐双风配队琴团长跑图.", @@ -57222,7 +57269,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分53秒; 推荐双风配队琴团长跑图.", @@ -57240,7 +57288,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:2分2秒; 推荐双风配队琴团长跑图.", @@ -57258,7 +57307,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分47秒; 推荐双风配队琴团长跑图.", @@ -57276,7 +57326,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分5秒; 推荐双风配队琴团长跑图.", @@ -57294,7 +57345,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分5秒; 推荐双风配队琴团长跑图.", @@ -57312,7 +57364,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:3分59秒; 推荐双风配队琴团长跑图.", @@ -57330,7 +57383,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分21秒; 推荐双风配队琴团长跑图.", @@ -57348,7 +57402,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:0分45秒; 推荐双风配队琴团长跑图.", @@ -57366,7 +57421,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:0分57秒; 推荐双风配队琴团长跑图.", @@ -57384,7 +57440,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分5秒; 推荐双风配队琴团长跑图.", @@ -57402,7 +57459,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分31秒; 推荐双风配队琴团长跑图.", @@ -57420,7 +57478,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:0分46秒; 推荐双风配队琴团长跑图.", @@ -57438,7 +57497,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:0分38秒; 推荐双风配队琴团长跑图.", @@ -57456,7 +57516,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:0分32秒; 推荐双风配队琴团长跑图.", @@ -57474,7 +57535,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分24秒; 推荐双风配队琴团长跑图.", @@ -57492,7 +57554,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:0分17秒; 推荐双风配队琴团长跑图.", @@ -57510,7 +57573,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "历时:1分22秒; 推荐双风配队琴团长跑图.", @@ -59616,7 +59680,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶泡泡桔", @@ -59634,7 +59699,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶泡泡桔", @@ -59652,7 +59718,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶泡泡桔", @@ -59670,7 +59737,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59688,7 +59756,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶泡泡桔", @@ -59706,7 +59775,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶摘泡泡桔,需要带万叶", @@ -59724,7 +59794,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶摘泡泡桔,需要带万叶", @@ -59742,7 +59813,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶摘泡泡桔,需要带万叶", @@ -59760,7 +59832,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶摘泡泡桔,需要带万叶", @@ -59778,7 +59851,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59796,7 +59870,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "万叶摘泡泡桔,需要带万叶", @@ -59814,7 +59889,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59832,7 +59908,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59850,7 +59927,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59868,7 +59946,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59886,7 +59965,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59904,7 +59984,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59922,7 +60003,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59940,7 +60022,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59958,7 +60041,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59976,7 +60060,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -59994,7 +60079,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "带万叶摘泡泡桔", @@ -60615,7 +60701,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "生存行走位用长腿角色,带纳西妲", @@ -60634,7 +60721,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "长腿角色行走位,带纳西妲收集", @@ -60653,7 +60741,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "生存行走位用长腿角色,带纳西妲", @@ -60692,7 +60781,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "生存行走位用长腿角色,带纳西妲", @@ -60711,7 +60801,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "生存行走位用长腿角色,带纳西妲", @@ -60730,7 +60821,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "生存行走位用长腿角色,带纳西妲", @@ -60749,7 +60841,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "长腿角色行走位,带纳西妲收集", @@ -60768,7 +60861,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "长腿角色行走位,带纳西妲收集", @@ -60787,7 +60881,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "长腿角色行走位,带纳西妲收集", @@ -61926,7 +62021,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -61944,7 +62040,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -61962,7 +62059,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -61980,7 +62078,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -61998,7 +62097,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62016,7 +62116,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62034,7 +62135,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62052,7 +62154,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "4分钟-16朵甜甜花", @@ -62070,7 +62173,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "2分钟,甜甜花2,小灯草11,嘟嘟莲2,金鱼草3,树莓6", @@ -62088,7 +62192,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62106,7 +62211,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62124,7 +62230,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "2分28秒,除甜甜花外,收集酒庄周围所有胡萝卜、白萝卜", @@ -62142,7 +62249,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62160,7 +62268,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62178,7 +62287,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "挂甜甜花头,卖胡萝卜肉,6朵甜甜花", @@ -62196,7 +62306,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62214,7 +62325,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62232,7 +62344,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62250,7 +62363,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62268,7 +62382,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62286,7 +62401,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62304,7 +62420,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62322,7 +62439,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62340,7 +62458,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62358,7 +62477,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62376,7 +62496,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62394,7 +62515,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62412,7 +62534,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62430,7 +62553,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62448,7 +62572,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62466,7 +62591,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62484,7 +62610,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62502,7 +62629,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -62520,7 +62648,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73192,7 +73321,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73210,7 +73340,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73228,7 +73359,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73246,7 +73378,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73264,7 +73397,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73301,7 +73435,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73338,7 +73473,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73770,7 +73906,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "此脚本只带你飞去无人岛,不抓螃蟹!!抓螃蟹需要手动!!耗时:3分钟;双风配队,带安柏或者柯莱飞,飞去无人岛不需要吃药;没有安柏也没有双风要吃药。飞行过程中千万不要转视角。", @@ -73788,7 +73925,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73806,7 +73944,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73824,7 +73963,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73842,7 +73982,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73860,7 +74001,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73878,7 +74020,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "摘取螃蟹要带早柚/瑶瑶", @@ -73896,7 +74039,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "摘取螃蟹要带早柚/瑶瑶", @@ -73914,7 +74058,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73932,7 +74077,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "摘取螃蟹要带早柚/瑶瑶", @@ -73950,7 +74096,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73968,7 +74115,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -73986,7 +74134,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74004,7 +74153,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "摘取螃蟹要带早柚/瑶瑶", @@ -74022,7 +74172,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74040,7 +74191,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74058,7 +74210,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74076,7 +74229,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74094,7 +74248,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74439,7 +74594,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74457,7 +74613,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74475,7 +74632,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74493,7 +74651,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74511,7 +74670,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74529,7 +74689,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74547,7 +74708,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74565,7 +74727,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74583,7 +74746,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74601,7 +74765,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74619,7 +74784,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -74637,7 +74803,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -75821,7 +75988,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "芙芙生存行走位", @@ -75839,7 +76007,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "芙芙生存行走位", @@ -75857,7 +76026,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "芙芙生存行走位", @@ -75875,7 +76045,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "芙宁娜占据生存,行走位,生存技能可以是10秒或者20秒", @@ -75893,7 +76064,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "芙宁娜设置生存行走位,生存技10秒或者20秒", @@ -75911,7 +76083,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "芙芙生存行走位", @@ -75929,7 +76102,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "芙芙生存行走位", @@ -80306,7 +80480,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -80324,7 +80499,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -80342,7 +80518,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -80360,7 +80537,8 @@ "author": "白白喵", "authors": [ { - "name": "白白喵" + "name": "白白喵", + "link": "https://github.com/taotao568685" } ], "description": "", @@ -81044,7 +81222,8 @@ "author": "Tool_tingsu", "authors": [ { - "name": "Tool_tingsu" + "name": "Tool_tingsu", + "link": "https://github.com/Tooltingsu" } ], "description": "配对界面切换角色~|~在配对界面切换指定位置的指定角色", @@ -81363,10 +81542,12 @@ "author": "mno", "authors": [ { - "name": "mno" + "name": "mno", + "link": "https://github.com/Bedrockx" }, { - "name": "Tool_tingsu" + "name": "Tool_tingsu", + "link": "https://github.com/Tooltingsu" } ], "description": "锄地路线测试~|~用于测试锄地路线的怪物信息,运行时间,并根据运行记录修改description字段,以适配js锄地一条龙", @@ -82341,7 +82522,8 @@ "author": "吉吉喵", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "link": "https://github.com/JJMdzh" } ], "description": "背包统计采集系统~|~模板匹配材料,OCR识别数量;\n支持背包材料的数量统计+路径CD管理,自动优选路径;\n具体支持看材料CD文件,可自行增减材料CD。", @@ -82525,7 +82707,8 @@ "author": "吉吉喵", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "link": "https://github.com/JJMdzh" } ], "description": "选择加工 食材~|~食材加工 识图 复选框。适配黑麦粉、酸奶油", @@ -82539,7 +82722,8 @@ "author": "呱呱z", "authors": [ { - "name": "呱呱z" + "name": "呱呱z", + "link": "https://github.com/jidingcai" } ], "description": "食材加工(模拟点击)~|~根据选择加工物,自动加工食材。加工时会直接拉满加工数量。\n \n使用前请阅读“readme”文件以获取更多详细信息。", @@ -82668,7 +82852,8 @@ "author": "mno", "authors": [ { - "name": "mno" + "name": "mno", + "link": "https://github.com/Bedrockx" } ], "description": "更丝滑版本", @@ -82813,7 +82998,8 @@ "author": "HZYgrandma", "authors": [ { - "name": "HZYgrandma" + "name": "HZYgrandma", + "link": "https://github.com/HZYgrandma" } ], "description": "用于自动好感度脚本,另外两个位置带需要刷好感度的角色", @@ -82948,7 +83134,8 @@ "author": "baixi", "authors": [ { - "name": "baixi" + "name": "baixi", + "link": "https://github.com/baixi232310" } ], "description": "除纳西妲外均不使用大招,减少时间浪费,相较于通用策略衔接更加紧凑", @@ -83024,7 +83211,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "万能战斗策略(新手推荐)。需要在,调度器→配置组→设置→战斗配置(开启)→自动检测战斗结束(开启)→更快检查结束战斗(开启)→旋转寻找敌人位置(开启)→检查战斗结束的延时(0.1)→按键触发后检查延时(0.35)→盾奶角色优先释放技能(开启,设置你的盾位)→战斗结束后使用万叶长E收集掉落物(开启)", @@ -83069,7 +83257,8 @@ "author": "HZYgrandma", "authors": [ { - "name": "HZYgrandma" + "name": "HZYgrandma", + "link": "https://github.com/HZYgrandma" } ], "description": "", @@ -83104,7 +83293,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "锄地(精英)、秘境综合策略", @@ -83148,7 +83338,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "skk锄地、秘境综合策略。塔利雅需要4命才能无缝护盾(最好带祭礼剑),skk无命座刚需", @@ -83167,7 +83358,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "副本测试版,高充能需求, 3拐1", @@ -83384,7 +83576,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "副本(推荐)(已优化仆人输出轴,加强蓝砚护盾覆盖率)", @@ -83424,7 +83617,8 @@ "author": "呱呱z", "authors": [ { - "name": "呱呱z" + "name": "呱呱z", + "link": "https://github.com/jidingcai" } ], "description": "大世界锄地。因为涉及角色切换,请按照伊涅芙,芙宁娜,白术,万叶的顺序站位。站位不同请替换末尾的数字。由于延迟等各方面因素,如果发现角色的Q经常未能释放,请将keypress(Q)前面wait(数字)中的数值适当增大。", @@ -83540,7 +83734,8 @@ "author": "johsang", "authors": [ { - "name": "johsang" + "name": "johsang", + "link": "https://github.com/johsang" } ], "description": "五郎钟离推荐带西风武器保证充能,高防短轴全程护盾多无敌帧,四号位自由可放好感", @@ -83558,7 +83753,8 @@ "author": "baixi", "authors": [ { - "name": "baixi" + "name": "baixi", + "link": "https://github.com/baixi232310" } ], "description": "钟离+千织+(芙宁娜+草神+雷神+菲谢尔+八重) 五选二(不推荐双雷,会导致丢失一轮千织e)", @@ -83998,7 +84194,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "锄地 (次数盾特攻)", @@ -84074,7 +84271,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "锄地、秘境综合策略,四号位放芙芙", @@ -84093,7 +84291,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "锄地(小怪), 小怪锄地最速(?)传说!", @@ -84128,7 +84327,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "芙宁娜必须放2号位", @@ -84208,7 +84408,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "经典闲芙组合,火神当驾驶员。蓝砚可被替换为钟离、茜特菈莉等盾辅(娱乐玩法)", @@ -84249,7 +84450,8 @@ "author": "HZYgrandma", "authors": [ { - "name": "HZYgrandma" + "name": "HZYgrandma", + "link": "https://github.com/HZYgrandma" } ], "description": "", @@ -84283,7 +84485,8 @@ "author": "HZYgrandma", "authors": [ { - "name": "HZYgrandma" + "name": "HZYgrandma", + "link": "https://github.com/HZYgrandma" } ], "description": "", @@ -84302,7 +84505,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "0命!(推荐:秘境)牛牛超载队, 多轮次eaaq循环,如果不需要这么多次,可以删减点。", @@ -84323,7 +84527,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "2命!(推荐:秘境)牛牛超载队, 6次eaaq循环,如果不需要这么多次,可以删减点。", @@ -84397,7 +84602,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "秘境队伍,0命牛牛超载队", @@ -84460,7 +84666,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "大世界锄地(推荐)", @@ -84479,7 +84686,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "锄地、秘境综合策略", @@ -84513,7 +84721,8 @@ "author": "鸿羽er", "authors": [ { - "name": "鸿羽er" + "name": "鸿羽er", + "link": "https://github.com/evildoer12138" } ], "description": "火神锄地解决方案;白术带队,1号位跑图;请确保您的玛薇卡q技能小程序伤害在11w或二命以上,否则在面对大灵显化身等怪物时无法得到好的游戏体验!", @@ -84739,7 +84948,8 @@ "author": "johsang", "authors": [ { - "name": "johsang" + "name": "johsang", + "link": "https://github.com/johsang" } ], "description": "定制万叶长战技和小风穴吸材料,想全捡的朋友可以来试试", @@ -84758,7 +84968,8 @@ "author": "johsang", "authors": [ { - "name": "johsang" + "name": "johsang", + "link": "https://github.com/johsang" } ], "description": "详见锄地专版,如果还打不完可无限复制粘贴", @@ -84777,7 +84988,8 @@ "author": "johsang", "authors": [ { - "name": "johsang" + "name": "johsang", + "link": "https://github.com/johsang" } ], "description": "详见锄地专版,只推荐高配艾玩,视情况复制粘贴循环即可加长,目前attack持续时间和联机死亡复活还有一些bug,测试用", @@ -84813,7 +85025,8 @@ "author": "johsang", "authors": [ { - "name": "johsang" + "name": "johsang", + "link": "https://github.com/johsang" } ], "description": "定制万叶长战技和小风穴吸材料,想全捡的朋友可以来试试", @@ -84832,7 +85045,8 @@ "author": "johsang", "authors": [ { - "name": "johsang" + "name": "johsang", + "link": "https://github.com/johsang" } ], "description": "详见锄地专版,可以通过修改[钟离 e(hold) 万叶 e(hold),attack]数量控制时间,更长时间视情况补[芙宁娜 q,e]", @@ -84851,7 +85065,8 @@ "author": "johsang", "authors": [ { - "name": "johsang" + "name": "johsang", + "link": "https://github.com/johsang" } ], "description": "详见锄地专版,只适合满命芙玩,视情况复制粘贴循环即可加长,目前attack持续时间和联机死亡复活还有一些bug,测试用", @@ -84887,7 +85102,8 @@ "author": "鸿羽er", "authors": [ { - "name": "鸿羽er" + "name": "鸿羽er", + "link": "https://github.com/evildoer12138" } ], "description": "盾薄慎选!使用建议:芙芙最好二命及以上;芭芭拉武器首选遗祀玉珑,备选讨龙,由于老芭奶量溢出,充能优先堆190-220左右为宜。", @@ -84940,7 +85156,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "大世界(推荐)奶奶钟离二选一。奶奶盾太薄的话,草神换金铂;加入奶奶大跳浮空", @@ -85190,7 +85407,8 @@ "author": "½", "authors": [ { - "name": "½" + "name": "½", + "link": "https://github.com/Traveler07" } ], "description": "", @@ -85475,7 +85693,8 @@ "author": "下流山汉", "authors": [ { - "name": "下流山汉" + "name": "下流山汉", + "link": "https://github.com/vulgar-rustic" } ], "description": "盾(钟离)、自动攻击(芙宁娜)、增伤吸材料(万叶)、奶位(白术)", @@ -85748,7 +85967,8 @@ "author": "火山", "authors": [ { - "name": "火山" + "name": "火山", + "link": "https://github.com/RRRR623" } ], "description": "大世界锄地", @@ -85787,7 +86007,8 @@ "author": "小鹰划船不用桨", "authors": [ { - "name": "小鹰划船不用桨" + "name": "小鹰划船不用桨", + "link": "https://github.com/Kotagan" } ], "description": "龙芙爱茜", @@ -85813,7 +86034,8 @@ "author": "huiyadanli", "authors": [ { - "name": "huiyadanli" + "name": "huiyadanli", + "link": "https://github.com/huiyadanli" } ], "description": "", @@ -85970,7 +86192,8 @@ "author": "HZYgrandma", "authors": [ { - "name": "HZYgrandma" + "name": "HZYgrandma", + "link": "https://github.com/HZYgrandma" } ], "description": "", @@ -86042,7 +86265,8 @@ "author": "huiyadanli", "authors": [ { - "name": "huiyadanli" + "name": "huiyadanli", + "link": "https://github.com/huiyadanli" } ], "description": "", @@ -86060,7 +86284,8 @@ "author": "johsang", "authors": [ { - "name": "johsang" + "name": "johsang", + "link": "https://github.com/johsang" } ], "description": "对面出伤快、元素盾、耐耗王可用,多种召唤物稳定赚费补强生存,应对一些刁钻局有奇效",