From 229d066301a40c3e20a1167571c42185a4e6029b Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期五, 20 三月 2026 11:03:56 +0800 Subject: [PATCH] 129 【战斗】战斗系统-服务端(主线关卡每个房间开始战斗时补通知当前进度;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 17cf530..d1f14b7 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -1361,7 +1361,8 @@ SkillTagAffect_DamShield, # 承伤盾目标优先 8 SkillTagAffect_Bleeding, # 仅流血目标 9 SkillTagAffect_HPPerLowest, # 血量百分比最低 10 -) = range(11) +SkillTagAffect_IncontrolledPriority, # 受控目标优先 11 +) = range(12) #技能施法目标 Def_UseSkillAim_Type = 3 @@ -3306,6 +3307,7 @@ Def_PDict_ShareGameAwardState = "ShareGameAwardState" # 每日分享游戏领奖记录 Def_PDict_GoodGameAwardState = "GoodGameAwardState" # 游戏好评领奖记录 Def_PDict_LikeGameAwardState = "LikeGameAwardState" # 游戏点赞领奖记录 +Def_PDict_DeleteTestRebate = "DeleteTestRebate" # 删档测试返利状态,0-该角色未触发,1-该角色已处理,仅做处理标记,只会发给该平台账号第一个请求的角色 Def_PDict_RechargeDayAward = "RechargeDayAward" # 累充每日奖励 Def_PDict_ADCnt = "ADCnt_%s" # 今日已领取广告奖励次数,参数(广告ID) Def_PDict_EquipViewCacheState = "EquipViewCacheState" # 本次上线是否同步过装备缓存 @@ -3968,7 +3970,7 @@ SkillEff_UseSkillHarmSelf = 7008 # 释放技能时自残(先扣血) SkillEff_SkillUseCntLimit = 7009 # 限制技能最多触发次数 SkillEff_UseSkillStealBuff = 7010 # 释放技能前偷取buff -SkillEff_ReviveNoUse = 7011 # 没有复活目标时释放其他技能 +SkillEff_NoTagUse = 7011 # 没有技能设定的目标时释放其他技能 SkillEff_LearnSkillEx = 7012 # 额外学习技能(用于拆分完全独立的技能,视为已学习) ( @@ -4931,4 +4933,5 @@ ItemSrcSign_GubaoEff, # 古宝效果额外产出 1 ItemSrcSign_BeautyEff, # 红颜效果额外产出 2 ItemSrcSign_TitleEff, # 称号效果额外产出 3 -) = range(1 + 3) +ItemSrcSign_HeroSkinChange, # 武将时装转化 4 +) = range(1 + 4) -- Gitblit v1.8.0