mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-11 23:18:22 +08:00
Fix: Update daily indexes
This commit is contained in:
@@ -94,32 +94,32 @@ class Daily(Combat, DailyEquipment):
|
|||||||
else:
|
else:
|
||||||
# Meaning of daily_current
|
# Meaning of daily_current
|
||||||
# 1 Tactical Training 战术研修
|
# 1 Tactical Training 战术研修
|
||||||
# 2 Fierce Assault 斩首行动
|
# 2 Supply Line Disruption 破交作战
|
||||||
# 3 Supply Line Disruption 破交作战
|
# 3 Module Development 兵装训练
|
||||||
# 4 Module Development 兵装训练
|
# 4 (not open)
|
||||||
# 5 (not open)
|
# 5 Escort Mission 商船护送
|
||||||
# 6 Escort Mission 商船护送
|
# 6 Advance Mission 海域突进
|
||||||
# 7 Advance Mission 海域突进
|
# 7 Fierce Assault 斩首行动
|
||||||
fleets = [
|
fleets = [
|
||||||
0,
|
0,
|
||||||
self.config.Daily_TacticalTrainingFleet,
|
self.config.Daily_TacticalTrainingFleet,
|
||||||
self.config.Daily_FierceAssaultFleet,
|
|
||||||
0, # Supply Line Disruption, which needs to be done manually or to be done by daily skip
|
0, # Supply Line Disruption, which needs to be done manually or to be done by daily skip
|
||||||
self.config.Daily_ModuleDevelopmentFleet,
|
self.config.Daily_ModuleDevelopmentFleet,
|
||||||
0, # Empty
|
0, # Empty
|
||||||
self.config.Daily_EscortMissionFleet,
|
self.config.Daily_EscortMissionFleet,
|
||||||
self.config.Daily_AdvanceMissionFleet,
|
self.config.Daily_AdvanceMissionFleet,
|
||||||
|
self.config.Daily_FierceAssaultFleet,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
stages = [
|
stages = [
|
||||||
0,
|
0,
|
||||||
self.config.Daily_TacticalTraining,
|
self.config.Daily_TacticalTraining,
|
||||||
self.config.Daily_FierceAssault,
|
|
||||||
self.config.Daily_SupplyLineDisruption,
|
self.config.Daily_SupplyLineDisruption,
|
||||||
self.config.Daily_ModuleDevelopment,
|
self.config.Daily_ModuleDevelopment,
|
||||||
0, # Empty
|
0, # Empty
|
||||||
self.config.Daily_EscortMission,
|
self.config.Daily_EscortMission,
|
||||||
self.config.Daily_AdvanceMission,
|
self.config.Daily_AdvanceMission,
|
||||||
|
self.config.Daily_FierceAssault,
|
||||||
0
|
0
|
||||||
]
|
]
|
||||||
dic = {
|
dic = {
|
||||||
@@ -141,14 +141,14 @@ class Daily(Combat, DailyEquipment):
|
|||||||
if self.emergency_module_development:
|
if self.emergency_module_development:
|
||||||
return 2
|
return 2
|
||||||
else:
|
else:
|
||||||
return 3
|
return 2
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def empty_index(self):
|
def empty_index(self):
|
||||||
if self.emergency_module_development:
|
if self.emergency_module_development:
|
||||||
return 4
|
return 4
|
||||||
else:
|
else:
|
||||||
return 5
|
return 4
|
||||||
|
|
||||||
def daily_execute(self, remain=3, stage=1, fleet=1):
|
def daily_execute(self, remain=3, stage=1, fleet=1):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user