1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-31 00:44:10 +08:00

Opt: Fleet 2 push forward in Stars of the Shimmering Fjord

This commit is contained in:
LmeSzinc
2020-09-05 02:20:43 +08:00
parent 04ce78e5e1
commit b8635301b3
4 changed files with 12 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ JP support, Thanks **[@ferina8-14](https://github.com/ferina8-14)**, some featur
> >
> [CN] 支持活动「复刻: 铁血音符誓言」. > [CN] 支持活动「复刻: 铁血音符誓言」.
> >
> [EN] Support event "Scherzo of Iron and Blood Rerun". > [EN] Support event "Stars of the Shimmering Fjord".
> >
> [JP] Support event 「黒鉄の楽章_誓いの海復刻」. > [JP] Support event 「黒鉄の楽章_誓いの海復刻」.

View File

@@ -43,6 +43,7 @@ A7, B7, C7, D7, E7, F7, G7, H7, I7, J7, K7, \
road_main = RoadGrids([K3]) road_main = RoadGrids([K3])
class Config: class Config:
MAP_SIREN_TEMPLATE = ['Z18'] MAP_SIREN_TEMPLATE = ['Z18']
MOVABLE_ENEMY_TURN = (3,) MOVABLE_ENEMY_TURN = (3,)

View File

@@ -59,10 +59,14 @@ class Campaign(CampaignBase):
MAP = MAP MAP = MAP
def battle_0(self): def battle_0(self):
if not self.config.MAP_HAS_MOVABLE_ENEMY:
self.fleet_2_push_forward()
if self.clear_siren(): if self.clear_siren():
return True return True
self.fleet_2_push_forward() if self.config.MAP_HAS_MOVABLE_ENEMY:
self.fleet_2_push_forward()
if self.clear_roadblocks([road_main]): if self.clear_roadblocks([road_main]):
return True return True

View File

@@ -59,10 +59,14 @@ class Campaign(CampaignBase):
MAP = MAP MAP = MAP
def battle_0(self): def battle_0(self):
if not self.config.MAP_HAS_MOVABLE_ENEMY:
self.fleet_2_push_forward()
if self.clear_siren(): if self.clear_siren():
return True return True
self.fleet_2_push_forward() if self.config.MAP_HAS_MOVABLE_ENEMY:
self.fleet_2_push_forward()
if self.clear_roadblocks([road_main]): if self.clear_roadblocks([road_main]):
return True return True