1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-17 01:45:25 +08:00

Add: Several Submarine supports and EnemyFilter; add EventB, EventD

This commit is contained in:
bookbug666
2022-07-22 02:55:03 +08:00
parent 31afee78a9
commit 2c5adc49ec
22 changed files with 1463 additions and 12 deletions

View File

@@ -229,10 +229,18 @@ class AzurLaneAutoScript:
from module.event.campaign_ab import CampaignAB
CampaignAB(config=self.config, device=self.device).run()
def event_b(self):
from module.event.campaign_b import CampaignB
CampaignB(config=self.config, device=self.device).run()
def event_cd(self):
from module.event.campaign_cd import CampaignCD
CampaignCD(config=self.config, device=self.device).run()
def event_d(self):
from module.event.campaign_d import CampaignD
CampaignD(config=self.config, device=self.device).run()
def event_sp(self):
from module.event.campaign_sp import CampaignSP
CampaignSP(config=self.config, device=self.device).run()