From b18f4c3d01b89c7f5c539e28f7780884da952cee Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期四, 06 十二月 2018 13:50:18 +0800 Subject: [PATCH] 5257 【后端】【1.3】【1.3.100】符印解锁判断优化 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py index 87f794c..1f76954 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -151,6 +151,7 @@ "Rune":( ("DWORD", "ID", 1), ("list", "AttrType", 0), + ("DWORD", "TowerID", 0), ), "EquipWash":( @@ -1379,11 +1380,13 @@ def __init__(self): self.ID = 0 - self.AttrType = [] + self.AttrType = [] + self.TowerID = 0 return def GetID(self): return self.ID # 编号ID - def GetAttrType(self): return self.AttrType # 全身强化激活属性类型 + def GetAttrType(self): return self.AttrType # 属性类型 + def GetTowerID(self): return self.TowerID # 解锁符印塔编号 # 洗练表 class IPY_EquipWash(): -- Gitblit v1.8.0