| | |
| | |
|
| | | "ChestsAward":(
|
| | | ("DWORD", "ChestsItemID", 1),
|
| | | ("WORD", "RealmLV", 0),
|
| | | ("WORD", "AwardLV", 0),
|
| | | ("dict", "SelectItemDict", 0),
|
| | | ("dict", "FixedItemDict", 0),
|
| | |
| | | |
| | | def __init__(self): |
| | | self.ChestsItemID = 0
|
| | | self.RealmLV = 0
|
| | | self.AwardLV = 0
|
| | | self.SelectItemDict = {}
|
| | | self.FixedItemDict = {}
|
| | |
| | | return |
| | | |
| | | def GetChestsItemID(self): return self.ChestsItemID # 宝箱物品ID
|
| | | def GetRealmLV(self): return self.RealmLV # 境界等级
|
| | | def GetAwardLV(self): return self.AwardLV # 宝箱奖励等级
|
| | | def GetSelectItemDict(self): return self.SelectItemDict # 选择物品ID对应个数字典,规定只能选一个
|
| | | def GetFixedItemDict(self): return self.FixedItemDict # 固定产出物品ID对应个数字典
|