Compare commits

..

3 Commits

Author SHA1 Message Date
MisakaAldrich
409083bf74 update repo.json
Some checks failed
Build repo.json / build (18.x) (push) Has been cancelled
Build repo.json / upload (push) Has been cancelled
2025-07-23 03:13:06 +00:00
this-Fish
77d3bfdc16 JS : 历练点双倍好感 新增功能 (#1387)
* JS : 历练点双倍好感 新增功能

支持进入好友尘歌壶后,让指定位置角色离队

* format

---------

Co-authored-by: 起个名字好难的喵 <25520958+MisakaAldrich@users.noreply.github.com>
2025-07-23 11:12:46 +08:00
this-Fish
d8ee8ba9c4 地圖追蹤 : 冷鲜肉[迪希雅] (#1389)
* 地圖追蹤 : 冷鲜肉[迪希雅]

* 自动修复 JSON 格式和版本号 [ci skip]

---------

Co-authored-by: GitHub Actions Bot <actions@github.com>
2025-07-23 11:02:08 +08:00
10 changed files with 936 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
{
"time": "20250723024511",
"time": "20250723111305",
"url": "https://github.com/babalae/bettergi-scripts-list/archive/refs/heads/main.zip",
"file": "repo.json",
"indexes": [
@@ -70893,8 +70893,8 @@
{
"name": "DoubleFriendshipEncounterPoints",
"type": "directory",
"hash": "ceaeb5fb7daf9f3b51cb908fd51b64f15db2581e",
"version": "2.1.1",
"hash": "866c4cac14deab2fe719c11fb29d22cd9ccfe097",
"version": "2.1.2",
"author": "起个名字好难的喵",
"authors": [
{
@@ -70902,11 +70902,11 @@
"link": "https://github.com/MisakaAldrich"
}
],
"description": "历练点双倍好感~|~进入好友尘歌壶,用历练点领取双倍好感\n目前支持游戏语言简体、繁体中文、英文\n!!!此版本基于图像识别&OCRBuild日期早于2025年4月2日的BetterGI无法使用",
"description": "历练点双倍好感~|~进入好友尘歌壶,用历练点领取双倍好感\n目前支持游戏语言简体、繁体中文、英文\n支持进入好友尘歌壶后,让指定位置角色离队",
"tags": [
"bgi≥0.44.1"
],
"lastUpdated": "2025-05-11 17:05:54"
"lastUpdated": "2025-07-23 11:12:46"
},
{
"name": "EscofierKitchenContraption",

View File

@@ -22,11 +22,16 @@ const MiddleSliderBottomRo = RecognitionObject.TemplateMatch(file.ReadImageMatSy
const RightSliderTopRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/Slider Top.png"), 1750, 100, 100, 100);
const RightSliderBottomRo = RecognitionObject.TemplateMatch(file.ReadImageMatSync("Assets/RecognitionObject/Slider Bottom.png"), 1750, 100, 100, 900);
// 取得需要离队角色資訊
const removedCharacters1 = typeof (settings.removedCharacters1) === 'undefined' ? false : settings.removedCharacters1;
const removedCharacters2 = typeof (settings.removedCharacters2) === 'undefined' ? false : settings.removedCharacters2;
const removedCharacters3 = typeof (settings.removedCharacters3) === 'undefined' ? false : settings.removedCharacters3;
const removedCharacters4 = typeof (settings.removedCharacters4) === 'undefined' ? false : settings.removedCharacters4;
/**
* @returns {Promise<void>}
*/
(async function() {
(async function () {
// 切换队伍
if (!settings.disableNotice) {
for (let n = 0; n < 10; n++) {
@@ -193,7 +198,7 @@ const RightSliderBottomRo = RecognitionObject.TemplateMatch(file.ReadImageMatSyn
if (res.text.includes(settings.appointFriendName)) {
log.info("指定好友名字位置:({x},{y},{w},{h}), 识别内容:{text}", res.x, res.y, res.Width, res.Height, res.text);
click(res.x - 100, res.y + 50);
await sleep(500);
await sleep(1000);
// 申请造访尘歌壶
let captureRegion = captureGameRegion();
@@ -207,6 +212,7 @@ const RightSliderBottomRo = RecognitionObject.TemplateMatch(file.ReadImageMatSyn
}
}
}
await sleep(1000);
// 翻页继续尝试&模板匹配的方式等待加载
let SliderBottom = captureGameRegion().find(RightSliderBottomRo);
if (SliderBottom.isExist()) {
@@ -284,7 +290,7 @@ const RightSliderBottomRo = RecognitionObject.TemplateMatch(file.ReadImageMatSyn
if (i % 2 === 0) {
// 偶数索引,递增 y_avatar
y_avatar += avatar_increment;
log.info(`正在申请造访第 ${i/2+1} 位好友尘歌壶`);
log.info(`正在申请造访第 ${i / 2 + 1} 位好友尘歌壶`);
click(x_avatar, y_avatar);
await sleep(250);
click(x_avatar, y_avatar);
@@ -325,6 +331,10 @@ const RightSliderBottomRo = RecognitionObject.TemplateMatch(file.ReadImageMatSyn
// 模板匹配领取历练点奖励
async function claimEncounterPointsRewards() {
await sleep(2000);
log.info("正在让指定位置角色离队");
await removeSpecifiedRole();
await sleep(2000);
log.info("正在打开冒险之证领取历练点奖励");
await sleep(2000);
keyPress("VK_ESCAPE");
@@ -397,6 +407,69 @@ const RightSliderBottomRo = RecognitionObject.TemplateMatch(file.ReadImageMatSyn
}
}
// 让指定位置角色离队
async function removeSpecifiedRole() {
try {
if (removedCharacters1 || removedCharacters2 || removedCharacters3 || removedCharacters4) {
// 打開配隊介面
keyPress("l");
await sleep(3500);
// 让4号位角色离队
if (removedCharacters4) {
// 第4名角色位置
click(1460, 600);
await sleep(750);
click(430, 1020);
await sleep(750);
log.info("4号位角色已离队");
}
// 让3号位角色离队
if (removedCharacters3) {
// 第3名角色位置
click(1130, 600);
await sleep(750);
click(430, 1020);
await sleep(750);
log.info("3号位角色已离队");
}
// 让2号位角色离队
if (removedCharacters2) {
// 第2名角色位置
click(790, 600);
await sleep(750);
click(430, 1020);
await sleep(750);
log.info("2号位角色已离队");
}
// 让1号位角色离队
if (removedCharacters1) {
if (removedCharacters4 && removedCharacters3 && removedCharacters2) {
log.warn("2,3,4号位已离队1号位角色不能离队");
} else {
// 第1名角色位置
click(480, 600);
await sleep(750);
click(430, 1020);
await sleep(750);
log.info("1号位角色已离队");
}
}
// 返回主界面
await genshin.returnMainUi();
} else {
log.info("无需让角色离队");
}
} catch (error) {
log.error("出错: {0}", error);
}
}
// 向下一页
async function pageDown(SliderBottomRo) {
let SliderBottom = captureGameRegion().find(SliderBottomRo);

View File

@@ -1,9 +1,9 @@
{
"manifest_version": 1,
"name": "历练点双倍好感",
"version": "2.1.1",
"version": "2.1.2",
"bgi_version": "0.44.1",
"description": "进入好友尘歌壶,用历练点领取双倍好感\n目前支持游戏语言简体、繁体中文、英文\n!!!此版本基于图像识别&OCRBuild日期早于2025年4月2日的BetterGI无法使用",
"description": "进入好友尘歌壶,用历练点领取双倍好感\n目前支持游戏语言简体、繁体中文、英文\n支持进入好友尘歌壶后,让指定位置角色离队",
"authors": [
{
"name": "起个名字好难的喵",

View File

@@ -13,6 +13,25 @@
"name": "request_times",
"type": "input-text",
"label": "(选填)申请好友数需小于等于7不支持翻页"
},{
"name": "removedCharacters4",
"type": "checkbox",
"label": "让4号位角色离队"
},
{
"name": "removedCharacters3",
"type": "checkbox",
"label": "让3号位角色离队"
},
{
"name": "removedCharacters2",
"type": "checkbox",
"label": "让2号位角色离队"
},
{
"name": "removedCharacters1",
"type": "checkbox",
"label": "让1号位角色离队"
},
{
"name": "disableGoStatue",

View File

@@ -0,0 +1,143 @@
{
"info": {
"name": "01-冷鲜肉-龙脊雪山-4x2-8个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "必需使用 60級(突破后) 迪希雅 作為行走位",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [
"迪希雅"
],
"last_modified_time": 1753170814385
},
"positions": [
{
"id": 1,
"x": -1334.5,
"y": 825.63,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -1285.35,
"y": 809.26,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 3,
"x": -1275.6,
"y": 806.35,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": -1244.05,
"y": 836.73,
"action": "combat_script",
"move_mode": "walk",
"action_params": "迪希雅 wait(0.2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 5,
"x": -1241.54,
"y": 837.92,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 6,
"x": -1242.36,
"y": 837.51,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 7,
"x": -1241.96,
"y": 879.49,
"action": "combat_script",
"move_mode": "dash",
"action_params": "迪希雅 wait(2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 8,
"x": -1241.64,
"y": 881.27,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 9,
"x": -1250.58,
"y": 901.02,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 10,
"x": -1250.03,
"y": 901.5,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.2),keypress(f),wait(0.5)",
"type": "target"
},
{
"id": 11,
"x": -1241.28,
"y": 929.35,
"action": "combat_script",
"move_mode": "dash",
"action_params": "wait(1.5)",
"type": "target"
},
{
"id": 12,
"x": -1248.67,
"y": 939.5,
"action": "combat_script",
"move_mode": "walk",
"action_params": "迪希雅 wait(0.2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 13,
"x": -1246.29,
"y": 941.21,
"type": "target",
"move_mode": "dash",
"action": "pick_around",
"action_params": ""
},
{
"id": 14,
"x": -1252.67,
"y": 938.66,
"type": "target",
"move_mode": "dash",
"action": "pick_around",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,152 @@
{
"info": {
"name": "02-冷鲜肉-龙脊雪山-3x2-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "必需使用 60級(突破后) 迪希雅 作為行走位",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [
"迪希雅"
],
"last_modified_time": 1753170986994
},
"positions": [
{
"id": 1,
"x": -1334.68,
"y": 825.72,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -1318.84,
"y": 832.56,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": -1294.46,
"y": 812.58,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": -1283.16,
"y": 765.54,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": -1242.04,
"y": 752.06,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": -1208.11,
"y": 763.76,
"action": "combat_script",
"move_mode": "dash",
"action_params": "迪希雅 wait(0.2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 7,
"x": -1206.5,
"y": 763.82,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 8,
"x": -1180.75,
"y": 767.24,
"action": "combat_script",
"move_mode": "dash",
"action_params": "keypress(f),wait(1.5)",
"type": "target"
},
{
"id": 9,
"x": -1139.36,
"y": 762.29,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 10,
"x": -1146.29,
"y": 741.84,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 11,
"x": -1176.53,
"y": 720.13,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 12,
"x": -1168.13,
"y": 693.9,
"action": "combat_script",
"move_mode": "dash",
"action_params": "迪希雅 wait(0.2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 13,
"x": -1170.28,
"y": 694.79,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 14,
"x": -1167.9,
"y": 690.18,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 15,
"x": -1164.54,
"y": 692.31,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
}
]
}

View File

@@ -0,0 +1,107 @@
{
"info": {
"name": "03-冷鲜肉-龙脊雪山-2x2-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "必需使用 60級(突破后) 迪希雅 作為行走位",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [
"迪希雅"
],
"last_modified_time": 1753171233794
},
"positions": [
{
"id": 1,
"x": -1006.9,
"y": 859.46,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -1017.17,
"y": 842.26,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": -1046.73,
"y": 760.87,
"action": "combat_script",
"move_mode": "fly",
"action_params": "wait(0.2),j,wait(2),j,attack(0.2)",
"type": "path"
},
{
"id": 4,
"x": -1046.73,
"y": 760.87,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": -1034.66,
"y": 753.58,
"action": "combat_script",
"move_mode": "walk",
"action_params": "迪希雅 wait(0.2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 6,
"x": -1032.66,
"y": 753.75,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 7,
"x": -1017.88,
"y": 728.11,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": -1008.54,
"y": 686.33,
"action": "combat_script",
"move_mode": "dash",
"action_params": "迪希雅 wait(0.2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 9,
"x": -1006.63,
"y": 686.34,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 10,
"x": -1002.24,
"y": 684.74,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,208 @@
{
"info": {
"name": "04-冷鲜肉-龙脊雪山-大雪猪王(触发)-4x2-8个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "必需使用 60級(突破后) 迪希雅 作為行走位",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [
"迪希雅"
],
"last_modified_time": 1753171812759
},
"positions": [
{
"id": 1,
"x": -1013.41,
"y": 1028.43,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -1038.84,
"y": 1038.18,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": -1061.63,
"y": 1075.41,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": -1071.21,
"y": 1077.19,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.2),keypress(f),wait(0.5)",
"type": "target"
},
{
"id": 5,
"x": -1082.73,
"y": 1077.26,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": -1138.49,
"y": 1079.61,
"action": "combat_script",
"move_mode": "fly",
"action_params": "wait(0.2),j,wait(1),j,attack(0.2)",
"type": "path"
},
{
"id": 7,
"x": -1138.49,
"y": 1079.61,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": -1130.56,
"y": 1074.76,
"action": "combat_script",
"move_mode": "walk",
"action_params": "迪希雅 wait(0.2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target",
"locked": false
},
{
"id": 9,
"x": -1131.81,
"y": 1072.91,
"action": "pick_around",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 10,
"x": -1131.96,
"y": 1071.44,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 11,
"x": -1142.62,
"y": 1066.33,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.2),keypress(f),wait(1.5)",
"type": "path"
},
{
"id": 12,
"x": -1128.41,
"y": 1064.74,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 13,
"x": -1131.89,
"y": 1046.59,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 14,
"x": -1127.84,
"y": 1040.73,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 15,
"x": -1126.35,
"y": 1024.68,
"action": "combat_script",
"move_mode": "dash",
"action_params": "迪希雅 wait(0.2),keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 16,
"x": -1130.33,
"y": 1028.17,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": "",
"locked": false
},
{
"id": 17,
"x": -1123.05,
"y": 1020.37,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 18,
"x": -1139.25,
"y": 991.89,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 19,
"x": -1133.58,
"y": 1006.35,
"action": "combat_script",
"move_mode": "walk",
"action_params": "迪希雅 keypress(VK_E),wait(1.8),keypress(VK_E),wait(0.2)",
"type": "target"
},
{
"id": 20,
"x": -1132.5,
"y": 1007.97,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 21,
"x": -1013.41,
"y": 1028.43,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
}
]
}

View File

@@ -0,0 +1,216 @@
{
"info": {
"name": "05-冷鲜肉-龙脊雪山-大雪猪王(战斗,高危)-6~10个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [
"战斗",
"高危"
],
"last_modified_time": 1753172580683
},
"positions": [
{
"id": 1,
"x": -1013.41,
"y": 1028.43,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -1038.84,
"y": 1038.18,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": -1061.63,
"y": 1075.41,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": -1071.21,
"y": 1077.19,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.2),keypress(f),wait(0.5)",
"type": "target"
},
{
"id": 5,
"x": -1082.73,
"y": 1077.26,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": -1142.62,
"y": 1066.33,
"action": "combat_script",
"move_mode": "fly",
"action_params": "wait(0.2),j,wait(1),j,attack(0.2)",
"type": "path"
},
{
"id": 7,
"x": -1142.62,
"y": 1066.33,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": -1133.81,
"y": 1072.68,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 9,
"x": -1128.41,
"y": 1064.74,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 10,
"x": -1131.89,
"y": 1046.59,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 11,
"x": -1127.84,
"y": 1040.73,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 12,
"x": -1126.35,
"y": 1024.68,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 13,
"x": -1126.35,
"y": 1024.68,
"action": "combat_script",
"move_mode": "walk",
"action_params": "茜特菈莉 wait(0.2),e,wait(0.1) ; 钟离 wait(0.2),s(0.2),e(hold),wait(0.2),w(0.2) ; 绮良良 wait(0.2),e,wait(0.1);",
"type": "target"
},
{
"id": 14,
"x": -1130.43,
"y": 1006.55,
"action": "combat_script",
"move_mode": "dash",
"action_params": "wait(4.8)",
"type": "path"
},
{
"id": 15,
"x": -1133.02,
"y": 995.62,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 16,
"x": -1111.68,
"y": 995.44,
"action": "fight",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 17,
"x": -1113.91,
"y": 995.22,
"action": "pick_around",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 18,
"x": -1118.75,
"y": 995.65,
"action": "pick_around",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 19,
"x": -1120.21,
"y": 994.47,
"action": "pick_around",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 20,
"x": -1115.29,
"y": 1002.92,
"action": "pick_around",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 21,
"x": -1109.42,
"y": 994.06,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
},
{
"id": 22,
"x": -1023.31,
"y": 1174.48,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
}
]
}

View File

@@ -0,0 +1,8 @@
- 必需 使用 迪希雅 作為行走位
- 迪希雅 必需 60級(突破后) 解鎖固有天赋 崇诚之真
- 建議不要開啟生存位技能
- 04只是 触发 大雪猪王
- 04-05之間請自己設置換戰鬥隊伍
- 05才是 去打 大雪猪王
- - 推荐戰鬥隊中 帶上 茜特菈莉、钟离、绮良良
- - 05中腳本中會自帶 茜特菈莉、钟离、绮良良開盾,防止被大雪猪王衝撞得無法開啟戰鬥