feat.新增支持风雪过境部分关卡选关

This commit is contained in:
MistEO
2021-12-21 23:03:17 +08:00
parent c797097b3a
commit 431f62844a
6 changed files with 124 additions and 0 deletions

View File

@@ -56,6 +56,128 @@
80
]
},
"BI-8": {
"algorithm": "justreturn",
"action": "doNothing",
"next": [
"StageBreakIceToBI8",
"StageBIToBI8",
"StageBI8"
]
},
"StageBreakIceToBI8": {
"template": "StageBreakIce.png",
"roi": [
0,
500,
500,
150
],
"maskRange": [
1,
255
],
"action": "clickSelf",
"next": [
"StageBIToBI8"
]
},
"StageBIToBI8": {
"template": "StageBI.png",
"action": "clickSelf",
"roi": [
1000,
250,
280,
150
],
"cache": false,
"next": [
"SwipeToStageBI8"
]
},
"SwipeToStageBI8": {
"algorithm": "justReturn",
"action": "swipeToTheRight",
"maxTimes": 3,
"exceededNext": [
"StageBI8"
],
"next": [
"StageBI8",
"SwipeToStageBI8"
]
},
"StageBI8": {
"action": "clickSelf",
"roi": [
200,
350,
200,
80
]
},
"BI-7": {
"algorithm": "justreturn",
"action": "doNothing",
"next": [
"StageBreakIceToBI7",
"StageBIToBI7",
"StageBI7"
]
},
"StageBreakIceToBI7": {
"template": "StageBreakIce.png",
"roi": [
0,
500,
500,
150
],
"maskRange": [
1,
255
],
"action": "clickSelf",
"next": [
"StageBIToBI7"
]
},
"StageBIToBI7": {
"template": "StageBI.png",
"action": "clickSelf",
"roi": [
1000,
250,
280,
150
],
"cache": false,
"next": [
"SwipeToStageBI7"
]
},
"SwipeToStageBI7": {
"algorithm": "justReturn",
"action": "swipeToTheRight",
"maxTimes": 3,
"exceededNext": [
"StageBI7"
],
"next": [
"StageBI7",
"SwipeToStageBI7"
]
},
"StageBI7": {
"action": "clickSelf",
"roi": [
50,
250,
200,
80
]
},
"CA-5": {
"algorithm": "justreturn",
"action": "doNothing",

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -67,6 +67,8 @@ namespace MeoAsstGui
StageList.Add(new CombData { Display = "红票-5", Value = "AP-5" });
StageList.Add(new CombData { Display = "经验-5", Value = "LS-5" });
StageList.Add(new CombData { Display = "技能-5", Value = "CA-5" });
StageList.Add(new CombData { Display = "BI-7", Value = "BI-7" });
StageList.Add(new CombData { Display = "BI-8", Value = "BI-8" });
}
public void AddLog(string content, string color = "Gray", string weight = "Regular")