From e4eccd8e4b2ee4758faf94eb88edbe5b5325fa1d Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 31 十月 2025 11:59:59 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(词条技能1011 1012 1013:增加属性ID19-怒气恢复加成;增加技能伤害计算类型7-按最后受到攻击的技能伤害;5001效果支持永久buff不扣除回合数;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
index d13e74f..9650f1d 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -114,7 +114,7 @@
AttrID_AtkPer, # 攻击加成 16
AttrID_DefPer, # 防御加成 17
AttrID_MaxHPPer, # 生命加成 18
-AttrID_19,
+AttrID_XPRecoverPer, # 怒气恢复 19
AttrID_20,
AttrID_StunRate, # 击晕 21
AttrID_StunRateDef, # 抗击晕 22
@@ -180,7 +180,7 @@
AttrID_WeiFinalDamPer, AttrID_WeiFinalDamPerDef, AttrID_ShuFinalDamPer, AttrID_ShuFinalDamPerDef,
AttrID_WuFinalDamPer, AttrID_WuFinalDamPerDef, AttrID_QunFinalDamPer, AttrID_QunFinalDamPerDef,
AttrID_SkillPer, AttrID_SkillPerDef, AttrID_PursueDamPer, AttrID_PursueDamPerDef,
- AttrID_ComboDamPer, AttrID_ComboDamPerDef,
+ AttrID_ComboDamPer, AttrID_ComboDamPerDef, AttrID_XPRecoverPer,
]
# 基础三维属性ID列表
@@ -230,7 +230,7 @@
##-----------------------------------------------------------------------------------------------
Def_Calc_AllAttrType_MAX = 192
-#基本属性BUFF计算,顺序与 ObjProperty_AttrByIndex 对应,同时也为buff效果ID同步通知策划
+#基本属性BUFF计算,顺序与 ObjProperty_AttrByIndex 对应,同时也为buff效果ID同步通知策划【废弃】
TYPE_Calc_AttrList = (
TYPE_Calc_Metal, # 金 1
TYPE_Calc_Wood, # 木 2
@@ -1332,7 +1332,8 @@
Def_Calc_ByBuffValue, # 触发buff的buff值 4
Def_Calc_TagLostHP, # 目标已损失生命 5
Def_Calc_HarmSelfHP, # 按本次自残耗血值 6
-) = range(7)
+Def_Calc_AtkedSkillHurtHP, # 按最后受到攻击的技能伤害 7
+) = range(8)
#治疗类型(影响公式参数)
Def_CureTypeList = (
--
Gitblit v1.8.0