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

Merge pull request #555 from nEEtdo0d/shop_and_shipyard_dev

Add: shop module missing components and shipyard module support for daily discounted research prints
This commit is contained in:
nEEtdo0d
2021-08-07 12:52:49 -04:00
committed by GitHub
109 changed files with 663 additions and 33 deletions

View File

@@ -14,13 +14,14 @@ from module.reward.data_key import RewardDataKey
from module.reward.dorm import RewardDorm
from module.reward.meowfficer import RewardMeowfficer
from module.reward.tactical_class import RewardTacticalClass
from module.shipyard.shipyard_reward import RewardShipyard
from module.shop.shop_reward import RewardShop
from module.ui.page import *
from module.update import Update
class Reward(RewardCommission, RewardTacticalClass, RewardResearch, RewardDorm, RewardMeowfficer, RewardDataKey,
RewardGuild, RewardShop, LoginHandler, Update):
RewardGuild, RewardShop, RewardShipyard, LoginHandler, Update):
@cached_property
def reward_interval(self):
"""
@@ -76,6 +77,7 @@ class Reward(RewardCommission, RewardTacticalClass, RewardResearch, RewardDorm,
self.handle_data_key()
self.handle_guild()
self.handle_shop()
self.handle_shipyard()
self._reward_mission()
self.config.REWARD_LAST_TIME = datetime.now()