From ed47f1d7382a0073c62954435e3a82b390c613b6 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期日, 25 十一月 2018 13:34:18 +0800 Subject: [PATCH] 4762 助战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 f527ae4..c34e9aa 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -467,6 +467,7 @@ ("BYTE", "LineID", 1), ("DWORD", "RobotFightPower", 0), ("WORD", "RobotLV", 0), + ("DWORD", "RobotBaseHurt", 0), ("dict", "RobotSkillsDict", 0), ), @@ -2028,6 +2029,7 @@ self.LineID = 0 self.RobotFightPower = 0 self.RobotLV = 0 + self.RobotBaseHurt = 0 self.RobotSkillsDict = {} return @@ -2035,6 +2037,7 @@ 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技能, {"职业":[技能列表], ...} # 副本刷怪标识点表 -- Gitblit v1.8.0