Update ArknightsAttendanceStruct

This commit is contained in:
ishkong 2024-12-09 15:04:49 +08:00 committed by GitHub
parent 50e065354d
commit e3933288f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,11 @@ class ArknightsAttendanceAwardResource(Struct):
type_: str = field(name="type") type_: str = field(name="type")
name: str name: str
rarity: int rarity: int
sortId: int
othersource: List[str]
classifyType: str
stageDropList: List[ArknightsAttendanceStageDropListItem]
buildingProductList: List[ArknightsAttendanceBuildingProductListItem]
class ArknightsAttendanceRecord(Struct): class ArknightsAttendanceRecord(Struct):
@ -35,6 +40,16 @@ class ArknightsAttendanceCalendarModel(Struct):
resourceInfoMap: Dict[str, ArknightsAttendanceAwardResource] resourceInfoMap: Dict[str, ArknightsAttendanceAwardResource]
class ArknightsAttendanceStageDropListItem(Struct):
stageId: str
occPer: int
class ArknightsAttendanceBuildingProductListItem(Struct):
formulaId: str
roomType: str
################ ################
# ArknightsAttendance Start # ArknightsAttendance Start
################ ################
@ -47,6 +62,7 @@ class ArknightsAttendanceAward(Struct):
class ArknightsAttendanceModel(Struct): class ArknightsAttendanceModel(Struct):
ts: str ts: str
awards: List[ArknightsAttendanceAward] awards: List[ArknightsAttendanceAward]
resourceInfoMap: dict
################ ################