js boss相关路线更新 (#1523)

This commit is contained in:
Tool_tingsu
2025-08-09 15:40:31 +08:00
committed by GitHub
parent 9a729b5c80
commit d3fa48dda7
87 changed files with 2454 additions and 806 deletions

View File

@@ -8,9 +8,9 @@
log.info("已返回主界面");
// 3. 切换队伍
const partyName = settings.partyName || "默认队伍";
await genshin.switchParty(partyName);
log.info(`已切换至队伍:${partyName}`);
if (settings.switchPartyName) {
await genshin.switchParty(settings.switchPartyName);
}
// 4. 刷取循环
const maxAttempts = settings.loopTimes || 15;

View File

@@ -1,7 +1,7 @@
{
"manifest_version": 1,
"name": "纪行周常-15次秘境一条龙",
"version": "1.0",
"version": "1.1",
"description": "",
"authors": [
{

View File

@@ -2,12 +2,12 @@
{
"name": "partyName",
"type": "input-text",
"label": "队伍名称"
"label": "队伍名称(默认不切换)"
},
{
"name": "loopTimes",
"type": "input-text",
"label": "刷取次数",
"label": "刷取次数默认15次",
"default": "15"
}
]