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

Add: Do ash beacon attack in os_clear_map

This commit is contained in:
LmeSzinc
2021-01-31 18:12:34 +08:00
parent c1bcfa60e7
commit 7b69aaf320
16 changed files with 149 additions and 7 deletions

View File

@@ -4,14 +4,16 @@ from module.logger import logger
from module.map.fleet import Fleet
from module.map.map_grids import SelectedGrids
from module.os.camera import OSCamera
from module.os_ash.ash import OSAsh
from module.os_combat.combat import Combat
class OSFleet(OSCamera, Combat, Fleet):
class OSFleet(OSCamera, Combat, Fleet, OSAsh):
def _goto(self, location, expected=''):
super()._goto(location, expected)
self.update_radar()
self.map.show()
self.handle_ash_beacon_attack()
def map_init(self, map_):
logger.hr('Map init')