1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-19 23:33:33 +08:00

Add: [EN] added Counterattack Within the Fjord event to EN server

- added stop triggered if get a new ship
This commit is contained in:
whoamikyo
2020-10-02 12:56:22 -03:00
parent eed273bc07
commit 20955d5ac8
11 changed files with 27 additions and 1 deletions

View File

@@ -130,7 +130,8 @@ class AzurLaneConfig:
STOP_IF_TIME_REACH = 0
STOP_IF_TRIGGER_EMOTION_LIMIT = False
STOP_IF_DOCK_FULL = False
STOP_IF_MAP_REACH = 'no' # no, map_100, map_3_star, map_green_without_3_star, map_green
STOP_IF_MAP_REACH = 'no'
STOP_IF_GET_SHIP = False
MAP_CLEAR_ALL_THIS_TIME = False
# From chapter_template.lua
@@ -287,6 +288,7 @@ class AzurLaneConfig:
ENHANCE_FAVOURITE = False
ENHANCE_ORDER_STRING = ''
DOCK_FULL_TRIGGERED = False
GET_SHIP_TRIGGERED = False
RETIRE_AMOUNT = 'all' # all, 10
RETIRE_N = True
RETIRE_R = False
@@ -532,6 +534,7 @@ class AzurLaneConfig:
self.STOP_IF_TRIGGER_EMOTION_LIMIT = to_bool(option['if_trigger_emotion_control'])
self.STOP_IF_DOCK_FULL = to_bool(option['if_dock_full'])
self.STOP_IF_MAP_REACH = option['if_map_reach']
self.STOP_IF_GET_SHIP = to_bool(option['if_get_ship'])
# Fleet
self.ENABLE_FLEET_CONTROL = to_bool(option['enable_fleet_control'])
self.ENABLE_MAP_FLEET_LOCK = to_bool(option['enable_map_fleet_lock'])