@@ -780,6 +780,7 @@ local modNameList = {
780
780
["to ignore enemy physical damage reduction"] = "ChanceToIgnoreEnemyPhysicalDamageReduction",
781
781
["weapon swap speed"] = "WeaponSwapSpeed",
782
782
["to chain an additional time from terrain"] = "TerrainChainChance",
783
+ ["slow magnitude"] = "EnemySlowMagnitude",
783
784
-- Flask and Charm modifiers
784
785
["effect"] = "LocalEffect",
785
786
["effect of flasks"] = "FlaskEffect",
@@ -1213,6 +1214,7 @@ local preFlagList = {
1213
1214
["^hits against you "] = { applyToEnemy = true, flags = ModFlag.Hit },
1214
1215
["^hits against you [hd][ae][va][el] "] = { applyToEnemy = true, flags = ModFlag.Hit },
1215
1216
["^enemies near your totems deal "] = { applyToEnemy = true },
1217
+ ["^debuffs you inflict [hd][ae][va][el] "] = { },
1216
1218
-- Other
1217
1219
["^your flasks grant "] = { },
1218
1220
["^when hit, "] = { },
@@ -3582,12 +3584,6 @@ local specialModList = {
3582
3584
["adrenaline"] = { flag("Condition:Adrenaline") },
3583
3585
["arcane surge"] = { flag("Condition:ArcaneSurge") },
3584
3586
["your aura buffs do not affect allies"] = { flag("SelfAurasCannotAffectAllies") },
3585
- ["debuffs you inflict have (%d+)%% increased slow magnitude"] = function(num) return {
3586
- mod("EnemySlowMagnitude", "INC", num),
3587
- } end,
3588
- ["debuffs you inflict have (%d+)%% reduced slow magnitude"] = function(num) return {
3589
- mod("EnemySlowMagnitude", "INC", -num),
3590
- } end,
3591
3587
["your curses have (%d+)%% increased effect if (%d+)%% of curse duration expired"] = function(num, _, limit) return {
3592
3588
mod("CurseEffect", "INC", num, { type = "MultiplierThreshold", actor = "enemy", var = "CurseExpired", threshold = tonumber(limit) }, { type = "SkillType", skillType = SkillType.AppliesCurse })
3593
3589
} end,
0 commit comments