| | |
| | | BYTE _LineID; //功能线路ID
|
| | | DWORD RobotFightPower; //助战NPC战力
|
| | | WORD RobotLV; //助战NPC等级
|
| | | DWORD RobotBaseHurt; //助战NPC保底伤害
|
| | | dict RobotSkillsDict; //助战NPC技能, {"职业":[技能列表], ...}
|
| | | };
|
| | |
|
| | |
| | | ("BYTE", "LineID", 1),
|
| | | ("DWORD", "RobotFightPower", 0),
|
| | | ("WORD", "RobotLV", 0),
|
| | | ("DWORD", "RobotBaseHurt", 0),
|
| | | ("dict", "RobotSkillsDict", 0),
|
| | | ),
|
| | |
|
| | |
| | | self.LineID = 0
|
| | | self.RobotFightPower = 0
|
| | | self.RobotLV = 0
|
| | | self.RobotBaseHurt = 0
|
| | | self.RobotSkillsDict = {} |
| | | return |
| | | |
| | |
| | | def GetLineID(self): return self.LineID # 功能线路ID
|
| | | def GetRobotFightPower(self): return self.RobotFightPower # 助战NPC战力
|
| | | def GetRobotLV(self): return self.RobotLV # 助战NPC等级
|
| | | def GetRobotBaseHurt(self): return self.RobotBaseHurt # 助战NPC保底伤害
|
| | | def GetRobotSkillsDict(self): return self.RobotSkillsDict # 助战NPC技能, {"职业":[技能列表], ...} |
| | | |
| | | # 副本刷怪标识点表 |