mirror of
https://github.com/W1NDes/M-AzurLaneAutoScript.git
synced 2026-05-15 17:50:33 +08:00
38 lines
1.9 KiB
Python
38 lines
1.9 KiB
Python
OS_SHOP = {
|
|
# line:
|
|
# 1: Logger, PurpleCoins and T4 items
|
|
# 2: T3 items
|
|
# 3: ActionPoint
|
|
# 4: META material
|
|
# 5-end: Rubbish
|
|
|
|
'max_benefit': """
|
|
Logger > PurpleCoins > GearDesignPlanT3 > GearPartSpecialized > OrdnanceTestingReportT3 >
|
|
GearDesignPlanT2 > DevelopmentMaterialT3 > PlateRandomT4 > GearPartPrototype > OrdnanceTestingReportT2 >
|
|
ActionPoint >
|
|
GearDesignPlan > OrdnanceTestingReport > DevelopmentMaterialT2
|
|
""",
|
|
'max_benefit_meta': """
|
|
Logger > PurpleCoins > GearDesignPlanT3 > GearPartSpecialized > OrdnanceTestingReportT3 >
|
|
GearDesignPlanT2 > DevelopmentMaterialT3 > PlateRandomT4 > GearPartPrototype > OrdnanceTestingReportT2 >
|
|
ActionPoint >
|
|
METARedBook > CrystallizedHeatResistantSteel > NanoceramicAlloy > NeuroplasticProstheticArm > SupercavitationGenerator >
|
|
GearDesignPlan > OrdnanceTestingReport > DevelopmentMaterialT2
|
|
""",
|
|
'no_meta':"""
|
|
Logger > PurpleCoins > GearDesignPlanT3 > GearPartSpecialized > OrdnanceTestingReportT3 >
|
|
GearDesignPlanT2 > DevelopmentMaterialT3 > PlateRandomT4 > GearPartPrototype > OrdnanceTestingReportT2 >
|
|
ActionPoint >
|
|
GearDesignPlan > OrdnanceTestingReport > DevelopmentMaterialT2 >
|
|
DevelopmentMaterial > Turing > TuringSample > EnergyStorageDevice > RepairPack
|
|
""",
|
|
'all': """
|
|
Logger > PurpleCoins > GearDesignPlanT3 > GearPartSpecialized > OrdnanceTestingReportT3 >
|
|
GearDesignPlanT2 > DevelopmentMaterialT3 > PlateRandomT4 > GearPartPrototype > OrdnanceTestingReportT2 >
|
|
ActionPoint >
|
|
METARedBook > CrystallizedHeatResistantSteel > NanoceramicAlloy > NeuroplasticProstheticArm > SupercavitationGenerator >
|
|
GearDesignPlan > OrdnanceTestingReport >DevelopmentMaterialT2 >
|
|
DevelopmentMaterial > Turing > TuringSample > EnergyStorageDevice > RepairPack
|
|
"""
|
|
}
|