From d1aa37504456311fe9d7ddc2f23f537c2408b90c Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 09 一月 2024 11:06:44 +0800 Subject: [PATCH] 10019 【砍树】回合战斗(灵宠通用;技能通用;玩家镜像支持) 1. 灵宠修改为通用模式,玩家及NPC均可召唤灵宠,NPC对应召唤的灵宠NPC与玩家的灵宠NPCID区分; 2. 技能全部为通用技能,玩家、玩家镜像、NPC均通用;支持玩家镜像赋予玩家技能进行攻击; 3. 技能释放方式8(单体恢复:增加方式6-按目标攻击力恢复血量) 4. 修改玩家技能缓存格式 5. 修复玩家灵宠技能升级bug --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 5 +++-- 1 files changed, 3 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 1ecceb5..86897ae 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -1195,7 +1195,8 @@ Def_Cure_PHY, # 敏捷 3 Def_Cure_HurtValue, # 伤害值 4 Def_Cure_TagMaxHP, # 目标最大生命值 5 -) = range(6) +Def_Cure_TagAtk, # 目标攻击力 6 +) = range(7) #回魔类型(影响公式参数) Def_RestoreTypeList = ( @@ -3093,7 +3094,7 @@ Def_NPC_Dict_SummonMapNPCPlayerID = 'SummonMapNPCPlayerID' Def_NPC_Dict_SummonRefreshID = 'SummonRefreshID' Def_NPC_Dict_PriWoodPilePlayerID = 'PriWoodPilePlayerID' -Def_NPC_Dict_PVPPlayerID = 'PVPPlayerID' +Def_NPC_Dict_MirrorPlayerID = 'MirrorPlayerID' # 镜像玩家ID #NPC技能已使用次数 Def_NPC_Dict_SkillUseCnt = 'NPCSkillUseCnt_%s' # 参数skillTypeID #不死的boss -- Gitblit v1.8.0