From 912176de9ed5b45e5fe0edbb15b8796f54c56ba2 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 25 八月 2025 19:26:52 +0800
Subject: [PATCH] 121 【武将】武将系统-服务端(武将表、NPC表 增加性别)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py |   22 +++++++++-------------
 1 files changed, 9 insertions(+), 13 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py
index a413601..317b8c4 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py
@@ -198,8 +198,6 @@
 Def_Notify_WorldKey_VSFamilyInfo = "VSFamilyInfo"  # 仙盟联赛对战仙盟信息
 Def_Notify_WorldKey_ChampionFamilyID = "ChampionFamilyID"  # 仙盟联赛上次冠军仙盟ID
 
-Def_Notify_WorldKey_FamilyPartyInfo = "FamilyPartyInfo"  # 仙盟宴会数据
-Def_Notify_WorldKey_FamilyPartyAddFamilyActivity = "FamilyPartyAddFamilyActivity"  # 仙盟宴会地图成员增加仙盟活跃令
 Def_Notify_WorldKey_FamilyZhenfaInfo = "FamilyZhenfaInfo"  # 仙盟阵法数据
 
 Def_Notify_WorldKey_AddFamilyAuctionItem = "AddFamilyAuctionItem"  # 添加仙盟拍品
@@ -218,9 +216,6 @@
 Def_Notify_WorldKey_CrossChampionshipStateError = "CrossChampionshipStateError"  # 跨服排位赛状态是否已经异常
 
 Def_Notify_WorldKey_LuckyCloudBuyInfo = "LuckyCloudBuyInfo"  # 本服幸运云购最新一期信息
-
-Def_Notify_WorldKey_CrossBattlefieldCallTeamInfo = "CrossBattlefieldCallTeamInfo" # 跨服战场召集队伍信息
-Def_Notify_WorldKey_CrossBattlefieldSysCallBuyInfo = "CrossBattlefieldSysCallBuyInfo" # 跨服战场系统场次购买召集信息
 
 Def_Notify_WorldKey_FuncTeamMemIDInfo = "FuncTeamMemIDInfo" # 功能队伍成员ID信息
 
@@ -278,7 +273,6 @@
 
 Def_Notify_WorldKey_RedPacketOutput = 'RedPacketOutput'  # 红包产出信息
 Def_Notify_WorldKey_HurtLog = 'HurtLog'  # 战斗伤害日志
-Def_Notify_WorldKey_FairyDomainLimit = "FairyDomainLimit"  # 缥缈仙域限制事件
 
 Def_Notify_WorldKey_AssistBoss = "AssistBoss"  # 协助boss
 
@@ -451,27 +445,28 @@
     Def_mitLVUpStar,          # 升星
     Def_mitKeySell,           # 一键出售
     Def_mitUseFuDai,          # 开福袋回应
-    Def_mitProduceResult,     # 生产采集结果回应
+    Def_mitProduceResult,     # 生产采集结果回应 5
     Def_mitPetEquipMerge,     # 宠物装备合成回应
     Def_mitEquipInherit,      # 装备继承
     Def_mitEquipStarUp,       # 装备升星
     Def_mitEquipMayaPlus,     # 装备玛雅加强
-    Def_mitEquipAddAttr,      # 装备追加
+    Def_mitEquipAddAttr,      # 装备追加 10
     Def_mitEquipSlotting,     # 装备打孔
     Def_mitMakeScroll,        # 卷轴制作
     Def_mitItemCompound,      # 物品合成
     Def_mitMaterialCompound,  # 材料合成
-    Def_mitEquipEvolve,       # 装备进阶
+    Def_mitEquipEvolve,       # 装备进阶 15
     Def_mitSuiteCompound,     # 套装合成
     Def_mitEquipDecompose,    # 装备分解
     Def_mitRefine,            # 炼丹
     Def_mitMWUpLevel,         # 法宝进阶
-    Def_mitRecycleAttrFruit,  # 回收魂石
+    Def_mitRecycleAttrFruit,  # 回收魂石 20
     Def_mitDogzEquipPlus,     # 神兽装备强化
     Def_mitRuneCompound,      # 符印合成
     Def_mitGatherSoulCompound,# 聚魂合成
     Def_mitGatherSoulDecompose,# 聚魂分解
-) = range(1, 25)
+    Def_mitMainDropItemOP,# 主线装备操作 25
+) = range(1, 1 + 25)
 
 #---写死的技能ID---
 
@@ -1461,8 +1456,9 @@
 # 阵容定义
 LineupList = (
 Lineup_Main, # 主阵容
-Lineup_Arena, # 竞技场防守阵容
-) = range(1, 1 + 2)
+Lineup_Arena, # 竞技场进攻阵容
+Lineup_ArenaDef, # 竞技场防守阵容
+) = range(1, 1 + 3)
 
 # 宠物物品数据状态
 Def_PetStateList = (

--
Gitblit v1.8.0