From 21ae2926c8e72736bd1082f518d8b778596b9dca Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 21 六月 2019 13:56:32 +0800
Subject: [PATCH] 7394 【2.0】【后端】雷罚BOSS(删除诛仙装备相关配置表)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 72 ------------------------------------
PySysDB/PySysDBPY.h | 29 --------------
2 files changed, 0 insertions(+), 101 deletions(-)
diff --git a/PySysDB/PySysDBPY.h b/PySysDB/PySysDBPY.h
index ef0b180..609306f 100644
--- a/PySysDB/PySysDBPY.h
+++ b/PySysDB/PySysDBPY.h
@@ -1661,16 +1661,6 @@
char Reward; //奖励物品
};
-//诛仙装备套装属性表
-
-struct tagZhuXianSuitAttr
-{
- BYTE _SuitType; //套装类型
- BYTE _SuitLV; //套装等级
- list SuitAttrIDList; //属性ID列表
- list SuitAttrValueList; //属性值列表
-};
-
//诛仙BOSS表
struct tagZhuXianBoss
@@ -1679,15 +1669,6 @@
BYTE _LineID;
WORD RealmLV; //需要境界
DWORD ZhuXianScore; //需要诛仙总评分
-};
-
-
-//诛仙装备分解表
-
-struct tagZhuXianEquipDecompose
-{
- BYTE _ClassLV; //阶级
- dict DecomposeInfo; //{(产出物品ID,..):饼图,..}
};
//节日巡礼活动时间表
@@ -1734,16 +1715,6 @@
DWORD _Index; //索引
DWORD NeedPoint; //需要点数
dict Award; //奖励 {"职业":[[物品ID,个数,是否绑定],...], ...}
-};
-
-//诛仙宝石共鸣属性表
-
-struct tagZhuXianStoneAttr
-{
- BYTE _SuitType; //套装类型
- BYTE _ShareSoneLV; //共鸣等级
- list AttrIDList; //属性ID列表
- list AttrValueList; //属性值列表
};
//幸运鉴宝活动时间表
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
index b957a66..8c85ed8 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
@@ -1293,23 +1293,11 @@
("char", "Reward", 0),
),
- "ZhuXianSuitAttr":(
- ("BYTE", "SuitType", 1),
- ("BYTE", "SuitLV", 1),
- ("list", "SuitAttrIDList", 0),
- ("list", "SuitAttrValueList", 0),
- ),
-
"ZhuXianBoss":(
("DWORD", "NPCID", 0),
("BYTE", "LineID", 1),
("WORD", "RealmLV", 0),
("DWORD", "ZhuXianScore", 0),
- ),
-
- "ZhuXianEquipDecompose":(
- ("BYTE", "ClassLV", 1),
- ("dict", "DecomposeInfo", 0),
),
"ActFeastWeekParty":(
@@ -1344,13 +1332,6 @@
("DWORD", "Index", 1),
("DWORD", "NeedPoint", 0),
("dict", "Award", 0),
- ),
-
- "ZhuXianStoneAttr":(
- ("BYTE", "SuitType", 1),
- ("BYTE", "ShareSoneLV", 1),
- ("list", "AttrIDList", 0),
- ("list", "AttrValueList", 0),
),
"ActLuckyTreasure":(
@@ -4130,21 +4111,6 @@
def GetSingleTimes(self): return self.SingleTimes # 单次领奖需要的次数
def GetReward(self): return self.Reward # 奖励物品
-# 诛仙装备套装属性表
-class IPY_ZhuXianSuitAttr():
-
- def __init__(self):
- self.SuitType = 0
- self.SuitLV = 0
- self.SuitAttrIDList = []
- self.SuitAttrValueList = []
- return
-
- def GetSuitType(self): return self.SuitType # 套装类型
- def GetSuitLV(self): return self.SuitLV # 套装等级
- def GetSuitAttrIDList(self): return self.SuitAttrIDList # 属性ID列表
- def GetSuitAttrValueList(self): return self.SuitAttrValueList # 属性值列表
-
# 诛仙BOSS表
class IPY_ZhuXianBoss():
@@ -4159,17 +4125,6 @@
def GetLineID(self): return self.LineID
def GetRealmLV(self): return self.RealmLV # 需要境界
def GetZhuXianScore(self): return self.ZhuXianScore # 需要诛仙总评分
-
-# 诛仙装备分解表
-class IPY_ZhuXianEquipDecompose():
-
- def __init__(self):
- self.ClassLV = 0
- self.DecomposeInfo = {}
- return
-
- def GetClassLV(self): return self.ClassLV # 阶级
- def GetDecomposeInfo(self): return self.DecomposeInfo # {(产出物品ID,..):饼图,..}
# 节日巡礼活动时间表
class IPY_ActFeastWeekParty():
@@ -4242,21 +4197,6 @@
def GetIndex(self): return self.Index # 索引
def GetNeedPoint(self): return self.NeedPoint # 需要点数
def GetAward(self): return self.Award # 奖励 {"职业":[[物品ID,个数,是否绑定],...], ...}
-
-# 诛仙宝石共鸣属性表
-class IPY_ZhuXianStoneAttr():
-
- def __init__(self):
- self.SuitType = 0
- self.ShareSoneLV = 0
- self.AttrIDList = []
- self.AttrValueList = []
- return
-
- def GetSuitType(self): return self.SuitType # 套装类型
- def GetShareSoneLV(self): return self.ShareSoneLV # 共鸣等级
- def GetAttrIDList(self): return self.AttrIDList # 属性ID列表
- def GetAttrValueList(self): return self.AttrValueList # 属性值列表
# 幸运鉴宝活动时间表
class IPY_ActLuckyTreasure():
@@ -4803,12 +4743,8 @@
self.ipyActLoginAwardLen = len(self.ipyActLoginAwardCache)
self.ipyLoginAwardCache = self.__LoadFileData("LoginAward", IPY_LoginAward)
self.ipyLoginAwardLen = len(self.ipyLoginAwardCache)
- self.ipyZhuXianSuitAttrCache = self.__LoadFileData("ZhuXianSuitAttr", IPY_ZhuXianSuitAttr)
- self.ipyZhuXianSuitAttrLen = len(self.ipyZhuXianSuitAttrCache)
self.ipyZhuXianBossCache = self.__LoadFileData("ZhuXianBoss", IPY_ZhuXianBoss)
self.ipyZhuXianBossLen = len(self.ipyZhuXianBossCache)
- self.ipyZhuXianEquipDecomposeCache = self.__LoadFileData("ZhuXianEquipDecompose", IPY_ZhuXianEquipDecompose)
- self.ipyZhuXianEquipDecomposeLen = len(self.ipyZhuXianEquipDecomposeCache)
self.ipyActFeastWeekPartyCache = self.__LoadFileData("ActFeastWeekParty", IPY_ActFeastWeekParty)
self.ipyActFeastWeekPartyLen = len(self.ipyActFeastWeekPartyCache)
self.ipyFeastWeekPartyCache = self.__LoadFileData("FeastWeekParty", IPY_FeastWeekParty)
@@ -4817,8 +4753,6 @@
self.ipyNewAllPeoplePartyLen = len(self.ipyNewAllPeoplePartyCache)
self.ipyNewAllPeoplePartyAwardCache = self.__LoadFileData("NewAllPeoplePartyAward", IPY_NewAllPeoplePartyAward)
self.ipyNewAllPeoplePartyAwardLen = len(self.ipyNewAllPeoplePartyAwardCache)
- self.ipyZhuXianStoneAttrCache = self.__LoadFileData("ZhuXianStoneAttr", IPY_ZhuXianStoneAttr)
- self.ipyZhuXianStoneAttrLen = len(self.ipyZhuXianStoneAttrCache)
self.ipyActLuckyTreasureCache = self.__LoadFileData("ActLuckyTreasure", IPY_ActLuckyTreasure)
self.ipyActLuckyTreasureLen = len(self.ipyActLuckyTreasureCache)
self.ipyLuckyTreasureTemplateCache = self.__LoadFileData("LuckyTreasureTemplate", IPY_LuckyTreasureTemplate)
@@ -5269,12 +5203,8 @@
def GetActLoginAwardByIndex(self, index): return self.ipyActLoginAwardCache[index]
def GetLoginAwardCount(self): return self.ipyLoginAwardLen
def GetLoginAwardByIndex(self, index): return self.ipyLoginAwardCache[index]
- def GetZhuXianSuitAttrCount(self): return self.ipyZhuXianSuitAttrLen
- def GetZhuXianSuitAttrByIndex(self, index): return self.ipyZhuXianSuitAttrCache[index]
def GetZhuXianBossCount(self): return self.ipyZhuXianBossLen
def GetZhuXianBossByIndex(self, index): return self.ipyZhuXianBossCache[index]
- def GetZhuXianEquipDecomposeCount(self): return self.ipyZhuXianEquipDecomposeLen
- def GetZhuXianEquipDecomposeByIndex(self, index): return self.ipyZhuXianEquipDecomposeCache[index]
def GetActFeastWeekPartyCount(self): return self.ipyActFeastWeekPartyLen
def GetActFeastWeekPartyByIndex(self, index): return self.ipyActFeastWeekPartyCache[index]
def GetFeastWeekPartyCount(self): return self.ipyFeastWeekPartyLen
@@ -5283,8 +5213,6 @@
def GetNewAllPeoplePartyByIndex(self, index): return self.ipyNewAllPeoplePartyCache[index]
def GetNewAllPeoplePartyAwardCount(self): return self.ipyNewAllPeoplePartyAwardLen
def GetNewAllPeoplePartyAwardByIndex(self, index): return self.ipyNewAllPeoplePartyAwardCache[index]
- def GetZhuXianStoneAttrCount(self): return self.ipyZhuXianStoneAttrLen
- def GetZhuXianStoneAttrByIndex(self, index): return self.ipyZhuXianStoneAttrCache[index]
def GetActLuckyTreasureCount(self): return self.ipyActLuckyTreasureLen
def GetActLuckyTreasureByIndex(self, index): return self.ipyActLuckyTreasureCache[index]
def GetLuckyTreasureTemplateCount(self): return self.ipyLuckyTreasureTemplateLen
--
Gitblit v1.8.0