From 3fa43daecc099f2701baec224a791ca09766cdf4 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 21 十一月 2019 14:58:00 +0800 Subject: [PATCH] 8341 【恺英】【后端】强化进化系统优化(强化支持消耗材料) --- 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 b3c32e8..562f2ec 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -125,6 +125,7 @@ ("list", "AttrType", 0), ("list", "AttrValue", 0), ("DWORD", "CostCount", 0), + ("list", "CostItemInfo", 0), ("DWORD", "AddExp", 0), ("DWORD", "TotalExp", 0), ), @@ -1736,6 +1737,7 @@ self.AttrType = [] self.AttrValue = [] self.CostCount = 0 + self.CostItemInfo = [] self.AddExp = 0 self.TotalExp = 0 return @@ -1745,6 +1747,7 @@ def GetAttrType(self): return self.AttrType # 属性类型 def GetAttrValue(self): return self.AttrValue # 属性值 def GetCostCount(self): return self.CostCount # 消耗铜钱 + def GetCostItemInfo(self): return self.CostItemInfo # 消耗物品材料及个数 [itemID, itemCount] def GetAddExp(self): return self.AddExp # 提升熟练度值 def GetTotalExp(self): return self.TotalExp # 升级所需熟练度总值 -- Gitblit v1.8.0