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

Add: 收菜模块, 收食堂小卖部和任务

- 独立出处理物品掉落和舰娘掉落的方法
This commit is contained in:
LmeSzinc
2020-03-30 14:00:39 +08:00
committed by LmeSzinc
parent 8366d7a258
commit 1921142369
19 changed files with 149 additions and 8 deletions

View File

@@ -53,6 +53,11 @@ class AzurLaneAutoScript:
az = CampaignRun(self.config)
az.run(self.config.CAMPAIGN_EVENT)
def reward(self):
from module.reward.reward import Reward
az = Reward(self.config)
az.run()
def event_daily_ab(self):
from module.event.campaign_ab import CampaignAB
az = CampaignAB(self.config)
@@ -79,5 +84,5 @@ class AzurLaneAutoScript:
az.retire_ships(amount=2000)
# alas = AzurLaneAutoScript()
# alas.retire()
alas = AzurLaneAutoScript()
alas.reward()