From 49ff30c38b97398b69f3d0310a9484aa483e6b4c Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期日, 25 十一月 2018 13:49:56 +0800 Subject: [PATCH] 4762 助战NPC表增加助战NPC生命系数字段配置; --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py index c34e9aa..89585e1 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -468,6 +468,7 @@ ("DWORD", "RobotFightPower", 0), ("WORD", "RobotLV", 0), ("DWORD", "RobotBaseHurt", 0), + ("WORD", "RobotHPCoefficient", 0), ("dict", "RobotSkillsDict", 0), ), @@ -2030,6 +2031,7 @@ self.RobotFightPower = 0 self.RobotLV = 0 self.RobotBaseHurt = 0 + self.RobotHPCoefficient = 0 self.RobotSkillsDict = {} return @@ -2038,6 +2040,7 @@ 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技能, {"职业":[技能列表], ...} # 副本刷怪标识点表 -- Gitblit v1.8.0