mirror of
https://github.com/baiqwerdvd/ArknightsUID.git
synced 2025-05-05 03:23:45 +08:00
29 lines
586 B
Python
29 lines
586 B
Python
from typing import Dict, List
|
|
|
|
from ..common import BaseStruct
|
|
|
|
from msgspec import field
|
|
|
|
|
|
class ItemBundle(BaseStruct):
|
|
id_: str = field(name="id")
|
|
count: int
|
|
type_: str = field(name="type")
|
|
|
|
|
|
class SpCharMissionData(BaseStruct):
|
|
charId: str
|
|
missionId: str
|
|
sortId: int
|
|
condType: str
|
|
param: List[str]
|
|
rewards: List[ItemBundle]
|
|
|
|
|
|
class CharMetaTable(BaseStruct):
|
|
__version__ = "24-02-02-10-18-07-831ad8"
|
|
|
|
spCharGroups: Dict[str, List[str]]
|
|
spCharMissions: Dict[str, Dict[str, SpCharMissionData]]
|
|
spCharVoucherSkinTime: Dict[str, int]
|