From 1fd45bd7cd5810bdc42bd76473294289ae3f49d6 Mon Sep 17 00:00:00 2001 From: liutao <821580467@qq.com> Date: Tue, 10 Sep 2024 18:51:19 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=8A=80=E8=83=BD=E3=80=91=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E8=A7=92=E8=89=B2=2085=20=E6=8A=80=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Code/Scripts/Gameplay/Buff/BuffFactory.cs | 3 + .../Gameplay/Buff/Impl/BuffBulletDamage13.cs | 43 + .../Buff/Impl/BuffBulletDamage13.cs.meta | 3 + .../Luban/DataTable/BuffCfg/EBuffType.cs | 98 +- .../Config/Data/buffcfg_buffconfig.json | 1003 +++++++++-------- .../Config/Data/bulletcfg_bulletconfig.json | 22 + .../Config/Data/skillcfg_skillconfig.json | 27 + .../Skills/LogicAssets/logic_10085.json | 1 + .../Skills/LogicAssets/logic_10085.json.meta | 7 + 9 files changed, 671 insertions(+), 536 deletions(-) create mode 100644 ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/Impl/BuffBulletDamage13.cs create mode 100644 ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/Impl/BuffBulletDamage13.cs.meta create mode 100644 ProjectNLD/Assets/Config/Skills/LogicAssets/logic_10085.json create mode 100644 ProjectNLD/Assets/Config/Skills/LogicAssets/logic_10085.json.meta diff --git a/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/BuffFactory.cs b/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/BuffFactory.cs index 464d2aa99b5..7a8dd9b8a61 100644 --- a/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/BuffFactory.cs +++ b/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/BuffFactory.cs @@ -157,6 +157,9 @@ namespace Gameplay.Buff case EBuffType.BulletDamage12: buff = ObjPoolManager.instance.Get(); break; + case EBuffType.BulletDamage13: + buff = ObjPoolManager.instance.Get(); + break; case EBuffType.SetContinueNormalAttack: buff = ObjPoolManager.instance.Get(); break; diff --git a/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/Impl/BuffBulletDamage13.cs b/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/Impl/BuffBulletDamage13.cs new file mode 100644 index 00000000000..22f40a22fec --- /dev/null +++ b/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/Impl/BuffBulletDamage13.cs @@ -0,0 +1,43 @@ +using UnityEngine; +namespace Gameplay.Buff +{ + public class BuffBulletDamage13 : BaseBuff + { + + protected override void _OnTrigger() + { + base._OnTrigger(); + + // 【固定数值,攻击力系数,低血量百分比,低血量增伤百分比,如果敌方血量高于自己最终伤害缩放】 + var sender = creator; + var senderAttack = sender.fightData.attack; + + var fixedValue = _TryGetFloatParam(0); + var attackValue = _TryGetFloatParam(1); + + var lowHpPercent = _TryGetFloatParam(2); + var lowHpScale = _TryGetFloatParam(3); + + var highHpScale = _TryGetFloatParam(4); + + var damage = fixedValue + senderAttack * attackValue; + + // 低血量增伤 + var hpPercent = owner.aliveData.currentHp / owner.aliveData.maxHp; + if (hpPercent < lowHpPercent) + { + damage *= (1 + lowHpScale); + } + + // 高血量增伤 + var isHighHp = owner.aliveData.currentHp > sender.aliveData.currentHp; + if (isHighHp) + { + damage *= highHpScale; + } + + owner.TakeNormalDamage(Mathf.CeilToInt(damage), sender, false); + } + + } +} diff --git a/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/Impl/BuffBulletDamage13.cs.meta b/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/Impl/BuffBulletDamage13.cs.meta new file mode 100644 index 00000000000..99223a57465 --- /dev/null +++ b/ProjectNLD/Assets/Code/Scripts/Gameplay/Buff/Impl/BuffBulletDamage13.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: fdf87c92bfb94bb288932fdf460b4db5 +timeCreated: 1725965097 \ No newline at end of file diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/BuffCfg/EBuffType.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/BuffCfg/EBuffType.cs index 1f3eab6681f..46f2d48c8dc 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/BuffCfg/EBuffType.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/BuffCfg/EBuffType.cs @@ -88,193 +88,197 @@ namespace cfg.BuffCfg /// BulletDamage12 = 18, /// + /// 子弹伤害13 + /// + BulletDamage13 = 19, + /// /// 外部设置流血伤害 /// - DelayDamage = 19, + DelayDamage = 20, /// /// 固定伤害 /// - FixDamage = 20, + FixDamage = 21, /// /// 增加士气 /// - AddMorale = 21, + AddMorale = 22, /// /// 特殊增加士气1 /// - SpecialAddMorale1 = 22, + SpecialAddMorale1 = 23, /// /// 增加士气-技能 /// - AddMoreleFromSkill = 23, + AddMoreleFromSkill = 24, /// /// 创建特效 /// - ShowEffect = 24, + ShowEffect = 25, /// /// 创建特效 /// - ChangeProp = 25, + ChangeProp = 26, /// /// 每X秒回复Y点士气 /// - LoopRecoverMorale = 26, + LoopRecoverMorale = 27, /// /// 混乱 /// - Chaos = 27, + Chaos = 28, /// /// 眩晕 /// - Stun = 28, + Stun = 29, /// /// 禁止移动 /// - LockPos = 29, + LockPos = 30, /// /// 逃跑 /// - Retreat = 30, + Retreat = 31, /// /// 禁止逃跑 /// - NoRetreat = 31, + NoRetreat = 32, /// /// 补充弹药 /// - FillBullet = 32, + FillBullet = 33, /// /// 清除增益buff /// - ClearPBuff = 33, + ClearPBuff = 34, /// /// 清除减益buff /// - ClearDBuff = 34, + ClearDBuff = 35, /// /// 清除指定buff /// - ClearSBuff = 35, + ClearSBuff = 36, /// /// 隔多少秒不动触发某个buff /// - StandTriggerBuff = 36, + StandTriggerBuff = 37, /// /// 每X秒回复Y点护甲值 /// - LoopRecoverShiled = 37, + LoopRecoverShiled = 38, /// /// 添加己方全局buff /// - AddSelfSideBuff = 38, + AddSelfSideBuff = 39, /// /// 移除己方全局buff /// - RemoveSelfSideBuff = 39, + RemoveSelfSideBuff = 40, /// /// 压力衰减特定 /// - SpecialYaLiShuaiJian = 40, + SpecialYaLiShuaiJian = 41, /// /// 在自身周边上阵 /// - ReadyAreaModify = 41, + ReadyAreaModify = 42, /// /// 普通攻击额外附带属性相关压制力 /// - NormalAttackExtMoraleDamage = 42, + NormalAttackExtMoraleDamage = 43, /// /// 技能造成士气伤害 /// - BulletMoraleDamage = 43, + BulletMoraleDamage = 44, /// /// 向自己所在格子发射一枚子弹 /// - EmitBulletToSelfCell = 44, + EmitBulletToSelfCell = 45, /// /// 修改移动级别 /// - ChangeMoveLevel = 45, + ChangeMoveLevel = 46, /// /// 恢复血量 /// - RecoverHp = 46, + RecoverHp = 47, /// /// 伪装 /// - Pretent = 47, + Pretent = 48, /// /// 普通攻击不消耗子弹 /// - NoCostBullet = 48, + NoCostBullet = 49, /// /// 死撑 /// - DeadRetreat = 49, + DeadRetreat = 50, /// /// 改变普通攻击逻辑 /// - ChangeAttackLogic = 50, + ChangeAttackLogic = 51, /// /// 设置特殊攻击距离 /// - SetAttackDistance = 51, + SetAttackDistance = 52, /// /// 普通攻击额外伤害 /// - AddDamageOnNormalAttack = 52, + AddDamageOnNormalAttack = 53, /// /// 设置普攻连击参数 /// - SetContinueNormalAttack = 53, + SetContinueNormalAttack = 54, /// /// 禁止恢复士气 /// - DisableRecoverMorale = 54, + DisableRecoverMorale = 55, /// /// 扛旗 /// - HoldFlag = 55, + HoldFlag = 56, /// /// 禁止攻击 /// - DisableAttack = 56, + DisableAttack = 57, /// /// 概率添加 /// - RandomAddBuff = 57, + RandomAddBuff = 58, /// /// 一次性照亮 /// - LightUpOnce = 58, + LightUpOnce = 59, /// /// 持续照亮 /// - LightUpContinue = 59, + LightUpContinue = 60, /// /// 一次性减少技能CD /// - ReduceSkillCD = 60, + ReduceSkillCD = 61, /// /// 一次性减少技能CD百分比 /// - ReduceSkillCDPercent = 61, + ReduceSkillCDPercent = 62, /// /// 附近友军进入逃跑时添加buff /// - AddOnFriendRetreat = 62, + AddOnFriendRetreat = 63, /// /// 每有一个Debuff降低受到伤害 /// - DownScaleOnDebuff = 63, + DownScaleOnDebuff = 64, /// /// 免疫指定buff /// - AvoidBuffs = 64, + AvoidBuffs = 65, /// /// 向锁定敌人发射一枚子弹 /// - EmitBulletToTargetEnemy = 65, + EmitBulletToTargetEnemy = 66, } } diff --git a/ProjectNLD/Assets/Config/Data/buffcfg_buffconfig.json b/ProjectNLD/Assets/Config/Data/buffcfg_buffconfig.json index 553cc24a1be..46c7a990370 100644 --- a/ProjectNLD/Assets/Config/Data/buffcfg_buffconfig.json +++ b/ProjectNLD/Assets/Config/Data/buffcfg_buffconfig.json @@ -64,7 +64,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -93,7 +93,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -118,7 +118,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 30, + "BuffType": 31, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -137,7 +137,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 55, + "BuffType": 56, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -156,7 +156,7 @@ "BuffEffectType": 1, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 19, + "BuffType": 20, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -175,7 +175,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -196,7 +196,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -217,7 +217,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -238,7 +238,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -259,7 +259,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -280,7 +280,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -301,7 +301,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -324,7 +324,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -347,7 +347,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -370,7 +370,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -393,7 +393,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -416,7 +416,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -439,7 +439,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -462,7 +462,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -485,7 +485,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -508,7 +508,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -531,7 +531,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -554,7 +554,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -577,7 +577,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -600,7 +600,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -623,7 +623,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -646,7 +646,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -669,7 +669,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -692,7 +692,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -715,7 +715,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -738,7 +738,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -761,7 +761,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -784,7 +784,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -807,7 +807,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -830,7 +830,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -853,7 +853,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -876,7 +876,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -897,7 +897,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -918,7 +918,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -939,7 +939,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -960,7 +960,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -981,7 +981,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1004,7 +1004,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1027,7 +1027,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1050,7 +1050,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1073,7 +1073,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1096,7 +1096,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1119,7 +1119,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1142,7 +1142,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1165,7 +1165,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1188,7 +1188,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1211,7 +1211,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1234,7 +1234,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1257,7 +1257,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1280,7 +1280,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1303,7 +1303,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1326,7 +1326,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1349,7 +1349,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1372,7 +1372,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1395,7 +1395,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1418,7 +1418,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1441,7 +1441,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1464,7 +1464,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1487,7 +1487,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1510,7 +1510,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1533,7 +1533,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1556,7 +1556,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1579,7 +1579,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1602,7 +1602,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1625,7 +1625,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1648,7 +1648,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1671,7 +1671,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1694,7 +1694,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1717,7 +1717,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1740,7 +1740,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1763,7 +1763,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1786,7 +1786,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 45, + "BuffType": 46, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1807,7 +1807,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 47, + "BuffType": 48, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1826,7 +1826,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 57, + "BuffType": 58, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -1849,7 +1849,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -1870,7 +1870,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 64, + "BuffType": 65, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1891,7 +1891,7 @@ "BuffEffectType": 1, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1916,7 +1916,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 56, + "BuffType": 57, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1935,7 +1935,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 49, + "BuffType": 50, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1956,7 +1956,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -1981,7 +1981,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 57, + "BuffType": 58, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2004,7 +2004,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2025,7 +2025,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 64, + "BuffType": 65, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -2046,7 +2046,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 57, + "BuffType": 58, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2069,7 +2069,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2090,7 +2090,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 64, + "BuffType": 65, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -2111,7 +2111,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2134,7 +2134,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 57, + "BuffType": 58, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2157,7 +2157,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2178,7 +2178,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 64, + "BuffType": 65, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -2199,7 +2199,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2220,7 +2220,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2241,7 +2241,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2262,7 +2262,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2283,7 +2283,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2304,7 +2304,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2325,7 +2325,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2346,7 +2346,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2367,7 +2367,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2388,7 +2388,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -2409,7 +2409,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2430,7 +2430,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2451,7 +2451,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2472,7 +2472,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2493,7 +2493,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -2629,7 +2629,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 2, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2652,7 +2652,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 2, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2675,7 +2675,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 2, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2698,7 +2698,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 2, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2721,7 +2721,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 2, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2744,7 +2744,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2767,7 +2767,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2790,7 +2790,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2813,7 +2813,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2836,7 +2836,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2859,7 +2859,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2882,7 +2882,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2905,7 +2905,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2928,7 +2928,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2951,7 +2951,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2974,7 +2974,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -2997,7 +2997,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -3020,7 +3020,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -3043,7 +3043,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -3066,7 +3066,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -3089,7 +3089,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -3152,7 +3152,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 26, + "BuffType": 27, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -3173,7 +3173,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3196,7 +3196,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 31, + "BuffType": 32, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3238,7 +3238,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3261,7 +3261,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3284,7 +3284,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 34, + "BuffType": 35, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -3305,7 +3305,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3328,7 +3328,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3351,7 +3351,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3374,7 +3374,7 @@ "BuffEffectType": 1, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 27, + "BuffType": 28, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3393,7 +3393,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3416,7 +3416,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 33, + "BuffType": 34, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -3437,7 +3437,7 @@ "BuffEffectType": 1, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3460,7 +3460,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3483,7 +3483,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3506,7 +3506,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3529,7 +3529,7 @@ "BuffEffectType": 1, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3552,7 +3552,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3575,7 +3575,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 32, + "BuffType": 33, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -3594,7 +3594,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 42, + "BuffType": 43, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -3616,7 +3616,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -3660,7 +3660,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 34, + "BuffType": 35, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -3731,7 +3731,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 43, + "BuffType": 44, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -3752,7 +3752,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 32, + "BuffType": 33, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -3821,7 +3821,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3844,7 +3844,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 45, + "BuffType": 46, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3865,7 +3865,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3890,7 +3890,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 46, + "BuffType": 47, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -3911,7 +3911,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -3958,7 +3958,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -3981,7 +3981,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -4002,7 +4002,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4025,7 +4025,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 47, + "BuffType": 48, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4140,7 +4140,7 @@ "BuffEffectType": 1, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4188,7 +4188,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 48, + "BuffType": 49, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4232,7 +4232,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 49, + "BuffType": 50, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -4303,7 +4303,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 8, @@ -4324,7 +4324,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4347,7 +4347,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4393,7 +4393,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 50, + "BuffType": 51, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4414,7 +4414,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 51, + "BuffType": 52, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4435,7 +4435,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 52, + "BuffType": 53, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4481,7 +4481,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 53, + "BuffType": 54, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -4504,7 +4504,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 43, + "BuffType": 44, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -4525,7 +4525,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -4547,7 +4547,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 54, + "BuffType": 55, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4566,7 +4566,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 10, @@ -4587,7 +4587,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 10, @@ -4609,7 +4609,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4632,7 +4632,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4657,7 +4657,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -4680,7 +4680,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 3, "TriggerType": 3, @@ -4727,7 +4727,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 28, + "BuffType": 29, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4795,7 +4795,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 62, + "BuffType": 63, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -4817,7 +4817,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4863,7 +4863,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 34, + "BuffType": 35, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -4884,7 +4884,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4907,7 +4907,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 63, + "BuffType": 64, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -4954,7 +4954,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -4976,7 +4976,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -4999,7 +4999,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 22, + "BuffType": 23, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5091,7 +5091,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 43, + "BuffType": 44, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5112,7 +5112,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5159,7 +5159,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5207,7 +5207,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -5222,6 +5222,31 @@ 0.5 ] }, + { + "ID": 10096, + "Name": "处决射击-伤害", + "GroupId": 0, + "Level": 1, + "BuffEffectType": 2, + "CanTriggerOnDead": false, + "RepeatType": 0, + "BuffType": 19, + "ExistType": 0, + "ExExitType": 0, + "TriggerType": 0, + "MaxExistTime": 0, + "ExistEffectId": 0, + "BuffDisplayIcon": "", + "TiggerUnitTime": 0, + "PorpParams": [], + "FloatParams": [ + 100, + 0.5, + 0.3, + 0.5, + 1.3 + ] + }, { "ID": 20001, "Name": "特效buff", @@ -5230,7 +5255,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5251,7 +5276,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5272,7 +5297,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5293,7 +5318,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5314,7 +5339,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5335,7 +5360,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5356,7 +5381,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5377,7 +5402,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5398,7 +5423,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5419,7 +5444,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5440,7 +5465,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5461,7 +5486,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5482,7 +5507,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5503,7 +5528,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5524,7 +5549,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5545,7 +5570,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5566,7 +5591,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5587,7 +5612,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5608,7 +5633,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5629,7 +5654,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5650,7 +5675,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5671,7 +5696,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5692,7 +5717,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 24, + "BuffType": 25, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -5713,7 +5738,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5736,7 +5761,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5759,7 +5784,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5782,7 +5807,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5805,7 +5830,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5828,7 +5853,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 57, + "BuffType": 58, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -5850,7 +5875,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 36, + "BuffType": 37, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5872,7 +5897,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 57, + "BuffType": 58, "ExistType": 1, "ExExitType": 0, "TriggerType": 7, @@ -5894,7 +5919,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 57, + "BuffType": 58, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -5916,7 +5941,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 1, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5939,7 +5964,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5964,7 +5989,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -5989,7 +6014,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6014,7 +6039,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6037,7 +6062,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6060,7 +6085,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6083,7 +6108,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6106,7 +6131,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6129,7 +6154,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6152,7 +6177,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6175,7 +6200,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6198,7 +6223,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6221,7 +6246,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6244,7 +6269,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6267,7 +6292,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6290,7 +6315,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6313,7 +6338,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6336,7 +6361,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6359,7 +6384,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6382,7 +6407,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6405,7 +6430,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6428,7 +6453,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6451,7 +6476,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6474,7 +6499,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6497,7 +6522,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6520,7 +6545,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6543,7 +6568,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6566,7 +6591,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6589,7 +6614,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6612,7 +6637,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6635,7 +6660,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6658,7 +6683,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6681,7 +6706,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6704,7 +6729,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6727,7 +6752,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6750,7 +6775,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6773,7 +6798,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6796,7 +6821,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6819,7 +6844,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6842,7 +6867,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6865,7 +6890,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6888,7 +6913,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6911,7 +6936,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 30, + "BuffType": 31, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -6930,7 +6955,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 20, + "BuffType": 21, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -6951,7 +6976,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -6995,7 +7020,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 41, + "BuffType": 42, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -7016,7 +7041,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -7039,7 +7064,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -7062,7 +7087,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -7085,7 +7110,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -7106,7 +7131,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -7127,7 +7152,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -7148,7 +7173,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -7169,7 +7194,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -7190,7 +7215,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -7211,7 +7236,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -7232,7 +7257,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -7253,7 +7278,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9304,7 +9329,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9325,7 +9350,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9346,7 +9371,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9367,7 +9392,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9388,7 +9413,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9409,7 +9434,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9430,7 +9455,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9451,7 +9476,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9472,7 +9497,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9493,7 +9518,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9514,7 +9539,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9535,7 +9560,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9556,7 +9581,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9577,7 +9602,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -9598,7 +9623,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9619,7 +9644,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9640,7 +9665,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9661,7 +9686,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -9807,7 +9832,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 38, + "BuffType": 39, "ExistType": 1, "ExExitType": 0, "TriggerType": 0, @@ -9828,7 +9853,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 39, + "BuffType": 40, "ExistType": 1, "ExExitType": 0, "TriggerType": 6, @@ -9849,7 +9874,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -9872,7 +9897,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 38, + "BuffType": 39, "ExistType": 1, "ExExitType": 0, "TriggerType": 0, @@ -9893,7 +9918,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 39, + "BuffType": 40, "ExistType": 1, "ExExitType": 0, "TriggerType": 6, @@ -9914,7 +9939,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -9937,7 +9962,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 38, + "BuffType": 39, "ExistType": 1, "ExExitType": 0, "TriggerType": 0, @@ -9958,7 +9983,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 39, + "BuffType": 40, "ExistType": 1, "ExExitType": 0, "TriggerType": 6, @@ -9979,7 +10004,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10002,7 +10027,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 38, + "BuffType": 39, "ExistType": 1, "ExExitType": 0, "TriggerType": 0, @@ -10023,7 +10048,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 39, + "BuffType": 40, "ExistType": 1, "ExExitType": 0, "TriggerType": 6, @@ -10044,7 +10069,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10389,7 +10414,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10412,7 +10437,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10435,7 +10460,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10458,7 +10483,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10481,7 +10506,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10504,7 +10529,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10527,7 +10552,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10550,7 +10575,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10688,7 +10713,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10711,7 +10736,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10734,7 +10759,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10757,7 +10782,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10780,7 +10805,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 52, + "BuffType": 53, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10802,7 +10827,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 52, + "BuffType": 53, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10824,7 +10849,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 52, + "BuffType": 53, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10846,7 +10871,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 52, + "BuffType": 53, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10868,7 +10893,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 52, + "BuffType": 53, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10890,7 +10915,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10913,7 +10938,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10936,7 +10961,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10959,7 +10984,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -10982,7 +11007,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11003,7 +11028,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11024,7 +11049,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11045,7 +11070,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11066,7 +11091,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11087,7 +11112,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -11108,7 +11133,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -11129,7 +11154,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -11150,7 +11175,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -11171,7 +11196,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11192,7 +11217,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11213,7 +11238,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11234,7 +11259,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11255,7 +11280,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -11276,7 +11301,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -11297,7 +11322,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -11318,7 +11343,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -11339,7 +11364,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -11960,7 +11985,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 28, + "BuffType": 29, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12004,7 +12029,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 28, + "BuffType": 29, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12048,7 +12073,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 28, + "BuffType": 29, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12092,7 +12117,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 28, + "BuffType": 29, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12136,7 +12161,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 28, + "BuffType": 29, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12300,7 +12325,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 53, + "BuffType": 54, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -12323,7 +12348,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 53, + "BuffType": 54, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -12346,7 +12371,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 53, + "BuffType": 54, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -12369,7 +12394,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 53, + "BuffType": 54, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -12392,7 +12417,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12415,7 +12440,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12438,7 +12463,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12461,7 +12486,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12484,7 +12509,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -12505,7 +12530,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -12526,7 +12551,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -12547,7 +12572,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -12568,7 +12593,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -12589,7 +12614,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -12610,7 +12635,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -12631,7 +12656,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -12652,7 +12677,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -12798,7 +12823,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12821,7 +12846,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12844,7 +12869,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -12867,7 +12892,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -13115,7 +13140,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 42, + "BuffType": 43, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -13137,7 +13162,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13158,7 +13183,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 42, + "BuffType": 43, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -13180,7 +13205,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13201,7 +13226,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 42, + "BuffType": 43, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -13223,7 +13248,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13244,7 +13269,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 42, + "BuffType": 43, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -13266,7 +13291,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13287,7 +13312,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 42, + "BuffType": 43, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -13309,7 +13334,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13330,7 +13355,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 7, @@ -13351,7 +13376,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13372,7 +13397,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 7, @@ -13393,7 +13418,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13414,7 +13439,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 7, @@ -13435,7 +13460,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13456,7 +13481,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 7, @@ -13477,7 +13502,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 35, + "BuffType": 36, "ExistType": 0, "ExExitType": 0, "TriggerType": 4, @@ -13598,7 +13623,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -13619,7 +13644,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -13640,7 +13665,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -13661,7 +13686,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -13682,7 +13707,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -13703,7 +13728,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -13724,7 +13749,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -13745,7 +13770,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -13766,7 +13791,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -14487,7 +14512,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 49, + "BuffType": 50, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -14508,7 +14533,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 49, + "BuffType": 50, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -14529,7 +14554,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 49, + "BuffType": 50, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -14550,7 +14575,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 49, + "BuffType": 50, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -14686,7 +14711,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -14709,7 +14734,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -14732,7 +14757,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -14755,7 +14780,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -14985,7 +15010,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15006,7 +15031,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15027,7 +15052,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15048,7 +15073,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15069,7 +15094,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15090,7 +15115,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -15111,7 +15136,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -15132,7 +15157,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -15153,7 +15178,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -15174,7 +15199,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15195,7 +15220,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15216,7 +15241,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15237,7 +15262,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15258,7 +15283,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -15279,7 +15304,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -15300,7 +15325,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -15321,7 +15346,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -15342,7 +15367,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -15478,7 +15503,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -15501,7 +15526,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -15524,7 +15549,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -15547,7 +15572,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16120,7 +16145,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -16143,7 +16168,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -16166,7 +16191,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -16189,7 +16214,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -16337,7 +16362,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 8, @@ -16358,7 +16383,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 8, @@ -16379,7 +16404,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 8, @@ -16400,7 +16425,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 8, @@ -16421,7 +16446,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16444,7 +16469,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16467,7 +16492,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16490,7 +16515,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16513,7 +16538,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16536,7 +16561,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16559,7 +16584,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16582,7 +16607,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16605,7 +16630,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -16628,7 +16653,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 63, + "BuffType": 64, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -16650,7 +16675,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 63, + "BuffType": 64, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -16672,7 +16697,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 63, + "BuffType": 64, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -16694,7 +16719,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 63, + "BuffType": 64, "ExistType": 1, "ExExitType": 0, "TriggerType": 3, @@ -16841,7 +16866,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 43, + "BuffType": 44, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -16862,7 +16887,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 43, + "BuffType": 44, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -16883,7 +16908,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 43, + "BuffType": 44, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -16904,7 +16929,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 43, + "BuffType": 44, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -16925,7 +16950,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 43, + "BuffType": 44, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -17042,7 +17067,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -17063,7 +17088,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -17084,7 +17109,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -17105,7 +17130,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -17126,7 +17151,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -17147,7 +17172,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -17168,7 +17193,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -17189,7 +17214,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -17210,7 +17235,7 @@ "BuffEffectType": 0, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 1, "ExExitType": 0, "TriggerType": 2, @@ -17831,7 +17856,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -17852,7 +17877,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 32, + "BuffType": 33, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -17871,7 +17896,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -17892,7 +17917,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 32, + "BuffType": 33, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -17911,7 +17936,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -17932,7 +17957,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 32, + "BuffType": 33, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -18101,7 +18126,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -18123,7 +18148,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -18145,7 +18170,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 21, + "BuffType": 22, "ExistType": 0, "ExExitType": 0, "TriggerType": 0, @@ -18242,7 +18267,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -18263,7 +18288,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -18286,7 +18311,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -18307,7 +18332,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, @@ -18330,7 +18355,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 44, + "BuffType": 45, "ExistType": 2, "ExExitType": 0, "TriggerType": 2, @@ -18351,7 +18376,7 @@ "BuffEffectType": 2, "CanTriggerOnDead": false, "RepeatType": 0, - "BuffType": 25, + "BuffType": 26, "ExistType": 2, "ExExitType": 0, "TriggerType": 3, diff --git a/ProjectNLD/Assets/Config/Data/bulletcfg_bulletconfig.json b/ProjectNLD/Assets/Config/Data/bulletcfg_bulletconfig.json index 25bc3b1f5ca..3bc70c2680c 100644 --- a/ProjectNLD/Assets/Config/Data/bulletcfg_bulletconfig.json +++ b/ProjectNLD/Assets/Config/Data/bulletcfg_bulletconfig.json @@ -1747,6 +1747,28 @@ 20001 ] }, + { + "ID": 530045, + "Name": "处决射击-对敌人子弹", + "BulletType": 1, + "PrefabPath": "", + "HitAudioId": "", + "DestroyEffectId": 0, + "FlySpeed": 100, + "FilterType": 3, + "JobFilters": [], + "FractionFilter": [], + "MoraleFilter": [], + "ExistBuffGroupIdFilter": [], + "OnlyCharacter": false, + "CanUseOnPretent": true, + "AreaId": 1, + "LightDuring": 0, + "BuffList": [ + 10096, + 20001 + ] + }, { "ID": 1001, "Name": "指挥官技能-强制友军撤退", diff --git a/ProjectNLD/Assets/Config/Data/skillcfg_skillconfig.json b/ProjectNLD/Assets/Config/Data/skillcfg_skillconfig.json index 16639ea007b..e1a57897efd 100644 --- a/ProjectNLD/Assets/Config/Data/skillcfg_skillconfig.json +++ b/ProjectNLD/Assets/Config/Data/skillcfg_skillconfig.json @@ -1067,6 +1067,33 @@ ], "IconPath": "UI_Cultivate_SkillLogo.png" }, + { + "ID": 10085, + "NameRead": "处决射击", + "AIControllId": 0, + "SkillActionId": 1, + "TargetType": 3, + "ReleaseCheckType": 1, + "EnemySelectDisplay": false, + "ReleaseArea": 10, + "IgnoreBlock": false, + "SelectCount": -1, + "TargetPrefer": 0, + "InfluenceAreaId": 1, + "ShowAreaId": 1, + "ShowEffectId": -1, + "IsEmitToFloor": false, + "PassiveBuffIds": [], + "IntParams": [], + "FloatParams": [], + "CDTime": 20, + "LogicId": 10085, + "ShowInSkillEditor": true, + "ReferIds": [ + 530045 + ], + "IconPath": "UI_Cultivate_SkillLogo.png" + }, { "ID": 10086, "NameRead": "公平交易", diff --git a/ProjectNLD/Assets/Config/Skills/LogicAssets/logic_10085.json b/ProjectNLD/Assets/Config/Skills/LogicAssets/logic_10085.json new file mode 100644 index 00000000000..bc31ec02c1e --- /dev/null +++ b/ProjectNLD/Assets/Config/Skills/LogicAssets/logic_10085.json @@ -0,0 +1 @@ +{"skillId":10085,"actionList":[{"id":0,"subId":0,"floatParam1":0.0,"floatParam2":0.0,"floatParam3":0.0,"floatParam4":0.0,"intParam1":0,"intParam2":0,"intParam3":0,"intParam4":0,"stringParam1":"","triggerTime":1.9166667461395264,"actionType":4},{"id":0,"subId":0,"floatParam1":0.0,"floatParam2":0.0,"floatParam3":0.0,"floatParam4":0.0,"intParam1":0,"intParam2":0,"intParam3":0,"intParam4":0,"stringParam1":"","triggerTime":1.9166667461395264,"actionType":5},{"id":0,"subId":0,"floatParam1":0.0,"floatParam2":0.0,"floatParam3":0.0,"floatParam4":0.0,"intParam1":0,"intParam2":0,"intParam3":0,"intParam4":0,"stringParam1":"","triggerTime":0.5,"actionType":1}]} \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Skills/LogicAssets/logic_10085.json.meta b/ProjectNLD/Assets/Config/Skills/LogicAssets/logic_10085.json.meta new file mode 100644 index 00000000000..2837045babb --- /dev/null +++ b/ProjectNLD/Assets/Config/Skills/LogicAssets/logic_10085.json.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1b4bbd14e9fe87240bb78aee94459ebf +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: