From 84a28f8a28096a5e80c307e2d3160bc2204dc6d5 Mon Sep 17 00:00:00 2001 From: wangzhenxing Date: Tue, 17 Nov 2020 18:44:31 +0900 Subject: [PATCH] =?UTF-8?q?[=E6=88=98=E6=96=97]=20196=20=E8=A2=AB=E5=8A=A8?= =?UTF-8?q?=20=20=E6=B7=BB=E5=8A=A0=E7=B1=BB=E5=9E=8B=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/Battle/Logic/Base/Passivity.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Assets/ManagedResources/~Lua/Modules/Battle/Logic/Base/Passivity.lua b/Assets/ManagedResources/~Lua/Modules/Battle/Logic/Base/Passivity.lua index e26ad1d353..7b7161e8e0 100644 --- a/Assets/ManagedResources/~Lua/Modules/Battle/Logic/Base/Passivity.lua +++ b/Assets/ManagedResources/~Lua/Modules/Battle/Logic/Base/Passivity.lua @@ -3837,8 +3837,17 @@ local passivityList = { -- a[float] [196] = function(role, args) local f1 = args[1] + local type = args[2] local onDamageBeShare = function(func,skill) --处理伏虎觉醒十星附加的额外技能,额外技能不触发这个特性 2020/11/17 wangzhenxing + --普攻不会被降低分摊 2020/11/17 wangzhenxing lihaiyang + if type==1 and skill and skill.type~=BattleSkillType.Normal then + return + end + if type==2 and skill and skill.type~=BattleSkillType.Special and skill.type~=BattleSkillType.Extra then + return + end + if skill and skill.type== BattleSkillType.Extra and skill.owner.roleId==10015 then return end