1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 08:38:20 +08:00

Add: Tower of Transcendence Chapter AC

This commit is contained in:
LmeSzinc
2021-12-29 20:36:45 +08:00
parent ed55923fd5
commit 29d4e69fde
15 changed files with 536 additions and 5 deletions

View File

@@ -63,6 +63,7 @@ class GridInfo:
mechanism_wait = 2 # Seconds to wait the mechanism unlock animation
is_fortress = False # Machine fortress
is_flare = False
is_missile_attack = False
cost = 9999
cost_1 = 9999
cost_2 = 9999
@@ -247,6 +248,16 @@ class GridInfo:
return True
else:
return False
if info.is_missile_attack:
if self.may_siren:
self.is_siren = True
return True
elif self.may_enemy:
self.is_enemy = True
return True
# Allow wrong predictions
# else:
# return False
return True