Update PlayerManufactureFormulaInfo

This commit is contained in:
ishkong 2024-12-09 16:17:48 +08:00 committed by GitHub
parent 6d472b9ff9
commit 83e5e21bc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -166,6 +166,11 @@ class ArknightsUserMeModel(Struct, omit_defaults=True):
# ArknightsPlayerInfoModel Start # ArknightsPlayerInfoModel Start
################ ################
class PlayerManufactureFormulaCostsInfo(Struct):
id_: str = field(name="id")
count: int
type_: str = field(name="type")
class PlayerManufactureFormulaInfo(Struct): class PlayerManufactureFormulaInfo(Struct):
id_: str = field(name="id") id_: str = field(name="id")
@ -173,7 +178,7 @@ class PlayerManufactureFormulaInfo(Struct):
count: int count: int
weight: int weight: int
costPoint: int costPoint: int
costs: Union[List[str], None] = None costs: Union[List[PlayerManufactureFormulaCostsInfo], None] = None
class PlayerEquipmentInfo(Struct): class PlayerEquipmentInfo(Struct):