From b3d16628055d113d37021c1c55661f2cee035bdc Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 26 八月 2025 20:06:07 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(简化触发方式;优化额外触发技能;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py | 17 ++++++-----------
1 files changed, 6 insertions(+), 11 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ShareDefine.py
index 018f1c9..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---
--
Gitblit v1.8.0