From 6eb8ce81a683bf5a3024877fdcd4d8c95a8c87b5 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 29 六月 2023 17:15:43 +0800 Subject: [PATCH] 9818 【BT10】新增古宝特效效果 --- 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 4ca2ee5..082c2a2 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py @@ -1702,6 +1702,7 @@ "Coat":( ("DWORD", "CoatID", 1), + ("BYTE", "CostQuality", 0), ("list", "EquipItemID", 0), ("DWORD", "UnlockItemID", 0), ("DWORD", "MaxLV", 0), @@ -5602,6 +5603,7 @@ def __init__(self): self.CoatID = 0 + self.CostQuality = 0 self.EquipItemID = [] self.UnlockItemID = 0 self.MaxLV = 0 @@ -5610,6 +5612,7 @@ return def GetCoatID(self): return self.CoatID # 时装编号 + def GetCostQuality(self): return self.CostQuality # 时装品质 0-普通;1-稀有;2-传说 def GetEquipItemID(self): return self.EquipItemID # 装备物品ID(按职业顺序) def GetUnlockItemID(self): return self.UnlockItemID # 材料物品ID def GetMaxLV(self): return self.MaxLV # 最大星级 -- Gitblit v1.8.0