mirror of
https://github.com/sui-feng-cb/AzurLaneAutoScript1.git
synced 2026-08-15 11:43:08 +08:00
Merge branch 'master' of https://github.com/LmeSzinc/AzurLaneAutoScript
This commit is contained in:
28
alas.py
28
alas.py
@@ -436,6 +436,30 @@ class AzurLaneAutoScript:
|
||||
GemsFarming(config=self.config, device=self.device).run(
|
||||
name=self.config.Campaign_Name, folder=self.config.Campaign_Event, mode=self.config.Campaign_Mode)
|
||||
|
||||
def island_production(self):
|
||||
from module.island.production import IslandProduction
|
||||
IslandProduction(config=self.config, device=self.device).run()
|
||||
|
||||
def island_order(self):
|
||||
from module.island.order import IslandOrder
|
||||
IslandOrder(config=self.config, device=self.device).run()
|
||||
|
||||
def island_freebie(self):
|
||||
from module.island.freebie import IslandFreebie
|
||||
IslandFreebie(config=self.config, device=self.device).run()
|
||||
|
||||
def island_collect(self):
|
||||
from module.island.collect import IslandCollect
|
||||
IslandCollect(config=self.config, device=self.device).run()
|
||||
|
||||
def island_season_task(self):
|
||||
from module.island.season_task import IslandSeasonTask
|
||||
IslandSeasonTask(config=self.config, device=self.device).run()
|
||||
|
||||
def island_business(self):
|
||||
from module.island.business import IslandBusiness
|
||||
IslandBusiness(config=self.config, device=self.device).run()
|
||||
|
||||
def daemon(self):
|
||||
from module.daemon.daemon import AzurLaneDaemon
|
||||
AzurLaneDaemon(config=self.config, device=self.device, task="Daemon").run()
|
||||
@@ -452,6 +476,10 @@ class AzurLaneAutoScript:
|
||||
from module.storage.box_disassemble import StorageBox
|
||||
StorageBox(config=self.config, device=self.device, task="BoxDisassemble").run()
|
||||
|
||||
def island_production_planner(self):
|
||||
from module.island_handler.production_planner import IslandProductionPlanner
|
||||
IslandProductionPlanner(config=self.config, device=self.device, task="IslandProductionPlanner").run()
|
||||
|
||||
def azur_lane_uncensored(self):
|
||||
from module.daemon.uncensored import AzurLaneUncensored
|
||||
AzurLaneUncensored(config=self.config, device=self.device, task="AzurLaneUncensored").run()
|
||||
|
||||
Reference in New Issue
Block a user