From b7b26c834c51a76e419faacde84efcf5d6525f86 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 01 二月 2024 15:09:36 +0800 Subject: [PATCH] 10019 【砍树】回合战斗(增加灵兽协同攻击支持;增加灵兽释放技能触发被动;增加精怪复活方式;被动触发的技能造成伤害改为不吸血;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 78845c7..b39a7c6 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -5097,7 +5097,8 @@ TriggerType_Combo, # 连击触发 93 TriggerType_AtkBackBef, # 反击前触发 94 TriggerType_AtkBackAft, # 反击后触发 95 -) = range(1, 96) +TriggerType_SkillSuccessPet, # 灵宠技能释放成功都可触发 96 +) = range(1, 97) #不可以佩戴翅膀的地图 @@ -5735,7 +5736,8 @@ Def_SkillFuncType_EquipPassiveSkill, #18 装备被动技能 Def_SkillFuncType_LianTiSkill, #19 炼体技能 Def_SkillFuncType_ShentongSkill, #20 神通技能 -) = range(21) +Def_SkillFuncType_ElfSkill, #21 精怪技能 +) = range(22) # 受技能效果完全影响的怪, 对应 Def_BattleRelationType_CommNoBoss Def_SkillAttack_NPCIsBoss = [ Def_NPCType_Ogre_Normal , #平凡小怪 0 # c++ 定义为普通NPC视野刷新 -- Gitblit v1.8.0