Skip to content

Commit bdb874a

Browse files
committed
Add: submarine support for GemsFarming
1 parent 7847b15 commit bdb874a

4 files changed

Lines changed: 54 additions & 0 deletions

File tree

config/template.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,12 @@
348348
"Fleet2Step": 2,
349349
"FleetOrder": "fleet1_all_fleet2_standby"
350350
},
351+
"Submarine": {
352+
"Fleet": 0,
353+
"Mode": "do_not_use",
354+
"AutoSearchMode": "sub_standby",
355+
"DistanceToBoss": "use_open_ocean_support"
356+
},
351357
"Storage": {
352358
"Storage": {}
353359
}

module/config/argument/args.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1850,6 +1850,46 @@
18501850
"display": "display"
18511851
}
18521852
},
1853+
"Submarine": {
1854+
"Fleet": {
1855+
"type": "select",
1856+
"value": 0,
1857+
"option": [
1858+
0,
1859+
1,
1860+
2
1861+
]
1862+
},
1863+
"Mode": {
1864+
"type": "select",
1865+
"value": "do_not_use",
1866+
"option": [
1867+
"do_not_use",
1868+
"hunt_only"
1869+
],
1870+
"display": "display"
1871+
},
1872+
"AutoSearchMode": {
1873+
"type": "select",
1874+
"value": "sub_standby",
1875+
"option": [
1876+
"sub_standby",
1877+
"sub_auto_call"
1878+
],
1879+
"display": "hide"
1880+
},
1881+
"DistanceToBoss": {
1882+
"type": "select",
1883+
"value": "use_open_ocean_support",
1884+
"option": [
1885+
"to_boss_position",
1886+
"1_grid_to_boss",
1887+
"2_grid_to_boss",
1888+
"use_open_ocean_support"
1889+
],
1890+
"display": "hide"
1891+
}
1892+
},
18531893
"Storage": {
18541894
"Storage": {
18551895
"type": "storage",

module/config/argument/override.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ GemsFarming:
4646
display: display
4747
value: fleet1_all_fleet2_standby
4848
option: [ fleet1_all_fleet2_standby, fleet1_standby_fleet2_all ]
49+
Submarine:
50+
Mode:
51+
display: display
52+
value: do_not_use
53+
option: [ do_not_use, hunt_only ]
54+
AutoSearchMode: sub_standby
55+
DistanceToBoss: use_open_ocean_support
4956

5057
# ==================== Event ====================
5158

module/config/argument/task.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Farm:
6262
- Campaign
6363
- StopCondition
6464
- Fleet
65+
- Submarine
6566

6667
# ==================== Event ====================
6768

0 commit comments

Comments
 (0)