@@ -2854,6 +2854,10 @@ local specialModList = {
2854
2854
["skills have (%d+)%% chance to not consume a cooldown when used"] = function(num) return {
2855
2855
mod("CooldownChanceNotConsume", "BASE", num / 100, { type = "SkillType", skillType = SkillType.Cooldown })
2856
2856
} end,
2857
+ ["enemies in your presence are slowed by (%d+)%%"] = function(num) return {
2858
+ mod("EnemyModifier", "LIST", { mod = flag("Condition:Slowed") }),
2859
+ mod("EnemyModifier", "LIST", { mod = mod("ApexOfMomentSlow", "INC", -num, { type = "GlobalEffect", effectType = "AuraDebuff" }, { type = "Condition", var = "Slowed" }) }),
2860
+ } end,
2857
2861
-- Item local modifiers
2858
2862
["has no sockets"] = { flag("NoSockets") },
2859
2863
["reflects your other ring"] = {
@@ -3554,6 +3558,12 @@ local specialModList = {
3554
3558
["adrenaline"] = { flag("Condition:Adrenaline") },
3555
3559
["arcane surge"] = { flag("Condition:ArcaneSurge") },
3556
3560
["your aura buffs do not affect allies"] = { flag("SelfAurasCannotAffectAllies") },
3561
+ ["debuffs you inflict have (%d+)%% increased slow magnitude"] = function(num) return {
3562
+ mod("EnemySlowMagnitude", "INC", num),
3563
+ } end,
3564
+ ["debuffs you inflict have (%d+)%% reduced slow magnitude"] = function(num) return {
3565
+ mod("EnemySlowMagnitude", "INC", -num),
3566
+ } end,
3557
3567
["your curses have (%d+)%% increased effect if (%d+)%% of curse duration expired"] = function(num, _, limit) return {
3558
3568
mod("CurseEffect", "INC", num, { type = "MultiplierThreshold", actor = "enemy", var = "CurseExpired", threshold = tonumber(limit) }, { type = "SkillType", skillType = SkillType.AppliesCurse })
3559
3569
} end,
0 commit comments