1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-29 01:15:30 +08:00

Add: freebies module / task encompasses running BattlePass, DataKey, Mail, and SupplyPack together

Upd: BattlePass, DataKey, and SupplyPack modified to run as sub-tasks under Freebies
This commit is contained in:
nEEtdo0d
2022-10-16 02:11:21 -04:00
parent 50e831fa3a
commit d14f0018fa
19 changed files with 268 additions and 338 deletions

14
alas.py
View File

@@ -219,17 +219,9 @@ class AzurLaneAutoScript:
from module.gacha.gacha_reward import RewardGacha
RewardGacha(config=self.config, device=self.device).run()
def data_key(self):
from module.data_key.data_key import RewardDataKey
RewardDataKey(config=self.config, device=self.device).run()
def supply_pack(self):
from module.supply_pack.supply_pack import SupplyPack
SupplyPack(config=self.config, device=self.device).run()
def battle_pass(self):
from module.battle_pass.battle_pass import BattlePass
BattlePass(config=self.config, device=self.device).run()
def freebies(self):
from module.freebies.freebies import Freebies
Freebies(config=self.config, device=self.device).run()
def meta_reward(self):
from module.meta_reward.meta_reward import MetaReward