From e6062b42c1191e9ab95e000a38276634eff0e1f1 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 27 九月 2023 02:57:09 +0800
Subject: [PATCH] 9949 【BT0.1】【主干】天星塔修改(全服奖励修改)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
index cc1ecb7..cf71868 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
@@ -2051,8 +2051,8 @@
 
                 "SkyTowerServerChallenge":(
                         ("DWORD", "FloorID", 1),
-                        ("BYTE", "RewardRecordIndex", 0),
-                        ("dict", "Reward", 0),
+                        ("dict", "PassRankRewardInfo", 0),
+                        ("dict", "ServerRewardInfo", 0),
                         ),
 
                 "LingGenEffect":(
@@ -6372,13 +6372,13 @@
     
     def __init__(self):
         self.FloorID = 0
-        self.RewardRecordIndex = 0
-        self.Reward = {}
+        self.PassRankRewardInfo = {}
+        self.ServerRewardInfo = {}
         return
         
     def GetFloorID(self): return self.FloorID # 层
-    def GetRewardRecordIndex(self): return self.RewardRecordIndex # 奖励记录位索引
-    def GetReward(self): return self.Reward # 奖励
+    def GetPassRankRewardInfo(self): return self.PassRankRewardInfo # 通关排名奖励 {"名次":[[物品ID,个数,是否拍品],...], ...}
+    def GetServerRewardInfo(self): return self.ServerRewardInfo # 通关排名奖励 {"所需过关人数":[[物品ID,个数,是否拍品],...], ...}
 
 # 灵根特效表
 class IPY_LingGenEffect():

--
Gitblit v1.8.0