From 90d51a731aaf6099281d332c03ef9119d696c023 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期日, 25 十一月 2018 13:56:55 +0800
Subject: [PATCH] 4762 助战NPC表增加副本保底战力字段配置;
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 3 +++
PySysDB/PySysDBPY.h | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/PySysDB/PySysDBPY.h b/PySysDB/PySysDBPY.h
index 0171baf..1dfae2a 100644
--- a/PySysDB/PySysDBPY.h
+++ b/PySysDB/PySysDBPY.h
@@ -553,6 +553,7 @@
{
DWORD _DataMapID; //数据地图ID
BYTE _LineID; //功能线路ID
+ DWORD FightPowerMin; //助战最低战力,也是副本保底战力
DWORD RobotFightPower; //助战NPC战力
WORD RobotLV; //助战NPC等级
DWORD RobotBaseHurt; //助战NPC保底伤害
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
index 89585e1..312d7e5 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
@@ -465,6 +465,7 @@
"FBHelpBattle":(
("DWORD", "DataMapID", 1),
("BYTE", "LineID", 1),
+ ("DWORD", "FightPowerMin", 0),
("DWORD", "RobotFightPower", 0),
("WORD", "RobotLV", 0),
("DWORD", "RobotBaseHurt", 0),
@@ -2028,6 +2029,7 @@
def __init__(self):
self.DataMapID = 0
self.LineID = 0
+ self.FightPowerMin = 0
self.RobotFightPower = 0
self.RobotLV = 0
self.RobotBaseHurt = 0
@@ -2037,6 +2039,7 @@
def GetDataMapID(self): return self.DataMapID # 数据地图ID
def GetLineID(self): return self.LineID # 功能线路ID
+ def GetFightPowerMin(self): return self.FightPowerMin # 助战最低战力,也是副本保底战力
def GetRobotFightPower(self): return self.RobotFightPower # 助战NPC战力
def GetRobotLV(self): return self.RobotLV # 助战NPC等级
def GetRobotBaseHurt(self): return self.RobotBaseHurt # 助战NPC保底伤害
--
Gitblit v1.8.0