Skip to content

Commit

Permalink
Merge pull request #3 from Ritesmith/main
Browse files Browse the repository at this point in the history
增加了分解装备功能,更新了博物研学功能
  • Loading branch information
mmwuyou authored Jul 23, 2024
2 parents 6acb175 + 15dfdb6 commit 83ca798
Show file tree
Hide file tree
Showing 9 changed files with 149 additions and 1 deletion.
37 changes: 36 additions & 1 deletion assets/interface.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@
"选择哪个",
"初始buff"
]
},
{
"name":"分解装备",
"entry":"dissect_weapon",
"option":[
"分解的装备的最大品质"
]
}
],
"option": {
Expand Down Expand Up @@ -518,7 +525,35 @@
}
}
]
},
"分解的装备的最大品质":{
"cases":[
{
"name":"炽级",
"param":{
"select_tier":{
"next":"red"
}
}
},
{
"name":"耀级",
"param":{
"select_tier":{
"next":"yellow"
}
}
},
{
"name":"凌级",
"param":{
"select_tier":{
"next":"blue"
}
}
}
]
}
},
"version": "v0.0.1"
}
}
Binary file added assets/resource/base/image/dissect/blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/resource/base/image/dissect/confirm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/resource/base/image/dissect/dissect.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/resource/base/image/dissect/red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/resource/base/image/dissect/yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
113 changes: 113 additions & 0 deletions assets/resource/base/pipeline/11dissect_weapon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
{
"dissect_weapon": {
"action": "Click",
"post_delay": 2000,
"target": [
1002,
647,
107,
50
],
"next": [
"dissect_button"
]
},
"dissect_button": {
"action": "Click",
"post_delay": 2000,
"target": [
1139,
61,
117,
42
],
"next": [
"select_tier"
]
},
"select_tier": {
"next": [
"blue",
"red",
"yellow"
]
},
"red": {
"action": "Click",
"post_delay": 2000,
"target": [
585,
659,
128,
51
],
"next": [
"yellow"
]
},
"yellow": {
"action": "Click",
"post_delay": 2000,
"target": [
464,
664,
118,
39
],
"next": [
"blue"
]
},
"blue": {
"action": "Click",
"post_delay": 2000,
"target": [
339,
663,
124,
41
],
"next": [
"confirm"
]
},
"confirm": {
"target": [
1082,
654,
128,
48
],
"post_delay": 2000,
"action": "Click",
"next": [
"center_confirm"
]
},
"center_confirm": {
"target": [
693,
440,
159,
54
],
"post_delay": 2000,
"action": "Click",
"next": [
"exit01"
]
},
"exit01": {
"recognition": "TemplateMatch",
"template": "receive_reward/01.png",
"action": "Click",
"next": [
"exit02"
]
},
"exit02": {
"recognition": "TemplateMatch",
"template": "receive_reward/02.png",
"action": "Click"
}
}

0 comments on commit 83ca798

Please sign in to comment.