From a4e9d95f1afee7c045a78e1bed3ede1867eb3a87 Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期五, 08 三月 2019 16:33:40 +0800 Subject: [PATCH] 6291 【后端】【2.0】限时仙盟boss --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 23 +++++++++++++++++++++++ 1 files changed, 23 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 313bc13..2746289 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -1411,6 +1411,12 @@ ("dict", "CostItem", 0), ("dict", "Attr", 0), ), + + "FamilyBossAward":( + ("list", "WorldLV", 0), + ("list", "Rank", 0), + ("list", "Award", 0), + ), } @@ -4313,6 +4319,19 @@ def GetNeedPlusLV(self): return self.NeedPlusLV # 需要强化等级 def GetCostItem(self): return self.CostItem # 消耗材料 def GetAttr(self): return self.Attr # 属性 + +# 仙盟Boss奖励表 +class IPY_FamilyBossAward(): + + def __init__(self): + self.WorldLV = [] + self.Rank = [] + self.Award = [] + return + + def GetWorldLV(self): return self.WorldLV # 世界等级 + def GetRank(self): return self.Rank # 排名 + def GetAward(self): return self.Award # 奖励 [[独立概率万分率,[物品ID,数量,拍品分组]],..] def Log(msg, playerID=0, par=0): @@ -4618,6 +4637,8 @@ self.ipyEquipStarUpLen = len(self.ipyEquipStarUpCache) self.ipyEquipPlusEvolveCache = self.__LoadFileData("EquipPlusEvolve", IPY_EquipPlusEvolve) self.ipyEquipPlusEvolveLen = len(self.ipyEquipPlusEvolveCache) + self.ipyFamilyBossAwardCache = self.__LoadFileData("FamilyBossAward", IPY_FamilyBossAward) + self.ipyFamilyBossAwardLen = len(self.ipyFamilyBossAwardCache) Log("IPY_FuncConfig count=%s" % len(self.ipyFuncConfigDict)) Log("IPY_DataMgr InitOK!") return @@ -5064,6 +5085,8 @@ def GetEquipStarUpByIndex(self, index): return self.ipyEquipStarUpCache[index] def GetEquipPlusEvolveCount(self): return self.ipyEquipPlusEvolveLen def GetEquipPlusEvolveByIndex(self, index): return self.ipyEquipPlusEvolveCache[index] + def GetFamilyBossAwardCount(self): return self.ipyFamilyBossAwardLen + def GetFamilyBossAwardByIndex(self, index): return self.ipyFamilyBossAwardCache[index] IPYData = IPY_DataMgr() def IPY_Data(): return IPYData -- Gitblit v1.8.0