add(好感js):雷萤术士
This commit is contained in:
33
repo/js/AutoFriendshipFight/assets/AutoPath/雷萤术士-准备.json
Normal file
33
repo/js/AutoFriendshipFight/assets/AutoPath/雷萤术士-准备.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "雷萤术士-准备",
|
||||
"type": "collect",
|
||||
"author": "秋云",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"map_name": "Teyvat",
|
||||
"bgi_version": "0.45.0",
|
||||
"tags": [],
|
||||
"last_modified_time": 1749868010891
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 878.9990234375,
|
||||
"y": 632.51123046875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 883.4580078125,
|
||||
"y": 616.2119140625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
}
|
||||
]
|
||||
}
|
||||
33
repo/js/AutoFriendshipFight/assets/AutoPath/雷萤术士-战斗点.json
Normal file
33
repo/js/AutoFriendshipFight/assets/AutoPath/雷萤术士-战斗点.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "雷萤术士-战斗点",
|
||||
"type": "collect",
|
||||
"author": "秋云",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"map_name": "Teyvat",
|
||||
"bgi_version": "0.45.0",
|
||||
"tags": [],
|
||||
"last_modified_time": 1749867939723
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 878.9990234375,
|
||||
"y": 632.51123046875,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": 883.91015625,
|
||||
"y": 656.63720703125,
|
||||
"action_params": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
33
repo/js/AutoFriendshipFight/assets/AutoPath/雷萤术士-触发点.json
Normal file
33
repo/js/AutoFriendshipFight/assets/AutoPath/雷萤术士-触发点.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "雷萤术士-触发点",
|
||||
"type": "collect",
|
||||
"author": "秋云",
|
||||
"version": "1.0",
|
||||
"description": "",
|
||||
"map_name": "Teyvat",
|
||||
"bgi_version": "0.45.0",
|
||||
"tags": [],
|
||||
"last_modified_time": 1749867969700
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": 878.9990234375,
|
||||
"y": 632.51123046875,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": 881.9287109375,
|
||||
"y": 616.85400390625,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -34,6 +34,10 @@ const DEFAULT_FIGHT_TIMEOUT_SECONDS = 120;
|
||||
log.info(`导航到蕈兽触发点...`);
|
||||
await AutoPath('蕈兽-准备');
|
||||
}
|
||||
if (enemyType === "雷萤术士") {
|
||||
log.info(`导航到雷萤术士触发点...`);
|
||||
await AutoPath('雷萤术士-准备');
|
||||
}
|
||||
// 验证超时设置
|
||||
const ocrTimeout = validateTimeoutSetting(settings.ocrTimeout, DEFAULT_OCR_TIMEOUT_SECONDS, "OCR");
|
||||
const fightTimeout = validateTimeoutSetting(settings.fightTimeout, DEFAULT_FIGHT_TIMEOUT_SECONDS, "战斗");
|
||||
@@ -370,6 +374,9 @@ function getOcrKeywords(enemyType) {
|
||||
else if (enemyType === "蕈兽") {
|
||||
return ["实验家", "变成", "实验品", "击败", "所有", "魔物"];
|
||||
}
|
||||
else if (enemyType === "雷萤术士") {
|
||||
return ["雷萤", "术士","圆滚滚", "不可食用", "威撼", "攀岩", "消灭", "准备", "打倒", "所有", "魔物","盗宝团","击败","成员","盗亦无道"];
|
||||
}
|
||||
else
|
||||
{
|
||||
return ["突发", "任务", "打倒", "消灭", "敌人", "所有"]; // 兜底关键词
|
||||
@@ -388,6 +395,8 @@ function getTargetCoordinates(enemyType) {
|
||||
return { x: 3578.08, y: -500.75 };
|
||||
} else if (enemyType === "蕈兽") {
|
||||
return { x: 3794.55, y: -350.60 };
|
||||
} else if (enemyType === "雷萤术士") {
|
||||
return {x: 883.91, y:656.63};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -402,6 +411,8 @@ function getTriggerPoint(enemyType) {
|
||||
return { x: 3614.63, y: -521.60 }; // 鳄鱼触发点坐标
|
||||
} else if (enemyType === "蕈兽") {
|
||||
return { x: 3749.38, y: -391.91 }; // 蕈兽触发点坐标
|
||||
} else if (enemyType === "雷萤术士") {
|
||||
return {x:881.92, y: 616.85}; // 雷萤术士触发点坐标
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,8 @@
|
||||
"盗宝团",
|
||||
"愚人众",
|
||||
"鳄鱼",
|
||||
"蕈兽"
|
||||
"蕈兽",
|
||||
"雷萤术士"
|
||||
],
|
||||
"default": "盗宝团"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user