| | |
| | | ("DWORD", "NPCID", 1),
|
| | | ("BYTE", "PrepareTime", 0),
|
| | | ("list", "LostHPPer", 0),
|
| | | ("BYTE", "CollectCount", 0),
|
| | | ("BYTE", "MaxCollectCount", 0),
|
| | | ("char", "CollectCountLimitNotify", 0),
|
| | | ("list", "CollectAward", 0),
|
| | | ),
|
| | |
| | | self.NPCID = 0
|
| | | self.PrepareTime = 0
|
| | | self.LostHPPer = []
|
| | | self.CollectCount = 0
|
| | | self.MaxCollectCount = 0
|
| | | self.CollectCountLimitNotify = ""
|
| | | self.CollectAward = [] |
| | | return |
| | |
| | | def GetNPCID(self): return self.NPCID # ID
|
| | | def GetPrepareTime(self): return self.PrepareTime # 采集耗时,秒
|
| | | def GetLostHPPer(self): return self.LostHPPer # 采集掉血,[每X秒,掉血百分比]
|
| | | def GetCollectCount(self): return self.CollectCount # 每日可采集次数,0限制
|
| | | def GetMaxCollectCount(self): return self.MaxCollectCount # 每日可采集次数,0限制
|
| | | def GetCollectCountLimitNotify(self): return self.CollectCountLimitNotify # 无采集次数采集提示
|
| | | def GetCollectAward(self): return self.CollectAward # 采集奖励物品, [物品ID,个数,是否绑定] |
| | | |