| | |
| | | ("DWORD", "RobotFightPower", 0),
|
| | | ("WORD", "RobotLV", 0),
|
| | | ("DWORD", "RobotBaseHurt", 0),
|
| | | ("WORD", "RobotHPCoefficient", 0),
|
| | | ("dict", "RobotSkillsDict", 0),
|
| | | ),
|
| | |
|
| | |
| | | self.RobotFightPower = 0
|
| | | self.RobotLV = 0
|
| | | self.RobotBaseHurt = 0
|
| | | self.RobotHPCoefficient = 0
|
| | | self.RobotSkillsDict = {} |
| | | return |
| | | |
| | |
| | | def GetRobotFightPower(self): return self.RobotFightPower # 助战NPC战力
|
| | | def GetRobotLV(self): return self.RobotLV # 助战NPC等级
|
| | | def GetRobotBaseHurt(self): return self.RobotBaseHurt # 助战NPC保底伤害
|
| | | def GetRobotHPCoefficient(self): return self.RobotHPCoefficient # 助战NPC生命系数
|
| | | def GetRobotSkillsDict(self): return self.RobotSkillsDict # 助战NPC技能, {"职业":[技能列表], ...} |
| | | |
| | | # 副本刷怪标识点表 |