hxp
2025-10-20 d2350a9a6ec29bdd9fc2cb63cdc9e27b57bc9574
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
@@ -2421,6 +2421,15 @@
                        ("list", "EquipColorRateList2", 0),
                        ),
                "LLMJ":(
                        ("BYTE", "MJLV", 1),
                        ("DWORD", "CostWarhammer", 0),
                        ("BYTE", "ExpAddPer", 0),
                        ("DWORD", "ExpExUpper", 0),
                        ("BYTE", "DecomposeAddPer", 0),
                        ("DWORD", "DecomposeExUpper", 0),
                        ),
                "GoldRushCamp":(
                        ("BYTE", "CampID", 1),
                        ("WORD", "PanningUnlock", 0),
@@ -6046,6 +6055,20 @@
    def GetEquipColorRateList1(self): return self.attrTuple[4] # 精英产出装备品质概率列表,[0品质万分率, 1品质万分率, ...] list
    def GetEquipColorRateList2(self): return self.attrTuple[5] # boss产出装备品质概率列表,[0品质万分率, 1品质万分率, ...] list
# 历练秘笈
class IPY_LLMJ():
    def __init__(self):
        self.attrTuple = None
        return
    def GetMJLV(self): return self.attrTuple[0] # 秘笈等级 BYTE
    def GetCostWarhammer(self): return self.attrTuple[1] # 消耗战锤 DWORD
    def GetExpAddPer(self): return self.attrTuple[2] # 经验加成比例,百分比 BYTE
    def GetExpExUpper(self): return self.attrTuple[3] # 经验加成每日上限 DWORD
    def GetDecomposeAddPer(self): return self.attrTuple[4] # 分解加成比例,百分比 BYTE
    def GetDecomposeExUpper(self): return self.attrTuple[5] # 结晶加成每日上限 DWORD
# 淘金营地表
class IPY_GoldRushCamp():
    
@@ -6390,6 +6413,7 @@
        self.__LoadFileData("Xiangong", onlyCheck)
        self.__LoadFileData("TiandaoTree", onlyCheck)
        self.__LoadFileData("TreeLV", onlyCheck)
        self.__LoadFileData("LLMJ", onlyCheck)
        self.__LoadFileData("GoldRushCamp", onlyCheck)
        self.__LoadFileData("GoldRushWorker", onlyCheck)
        self.__LoadFileData("GoldRushItem", onlyCheck)
@@ -8306,6 +8330,13 @@
        self.CheckLoadData("TreeLV")
        return self.ipyTreeLVCache[index]
    def GetLLMJCount(self):
        self.CheckLoadData("LLMJ")
        return self.ipyLLMJLen
    def GetLLMJByIndex(self, index):
        self.CheckLoadData("LLMJ")
        return self.ipyLLMJCache[index]
    def GetGoldRushCampCount(self):
        self.CheckLoadData("GoldRushCamp")
        return self.ipyGoldRushCampLen