From 4551dd1308ab484688ca96be2be8b811fd3a23e6 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 12 二月 2019 21:02:45 +0800
Subject: [PATCH] 6196 【后端】【1.6】跨服匹配添加机器人
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py | 9 ++-------
1 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py
index 5013870..8f90924 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Skill/GameBuffs/BuffProcess_1089.py
@@ -2,7 +2,7 @@
# -*- coding: GBK -*-
##@package BuffProcess_1089
-# 按最大血量百分比减血
+# 按被攻击者的最大血量百分比减血
#
# @author Alee
# @date 2011-03-18 16:45
@@ -10,11 +10,6 @@
#
# 修改时间 修改人 修改内容
#
-# 模块详细说明 按最大血量百分比减血
-# @change: "2013-03-20 18:00" Alee 添加释放者相关的属性刷新逻辑,压入值计算
-# @change: "2013-10-31 14:45" Alee 武器的技能增强效果
-#---------------------------------------------------------------------
-"""Version = 2013-10-31 14:45"""
#导入
import SkillCommon
@@ -83,5 +78,5 @@
#技能附加
skillEnhance = curEffect.GetEffectValue(1)
- return [int(GameObj.GetMaxHP(attacker) * skillPer + skillEnhance)]
+ return [int(GameObj.GetMaxHP(defender) * skillPer + skillEnhance)]
--
Gitblit v1.8.0