@@ -782,6 +782,7 @@ local modNameList = {
782
782
["to ignore enemy physical damage reduction"] = "ChanceToIgnoreEnemyPhysicalDamageReduction",
783
783
["weapon swap speed"] = "WeaponSwapSpeed",
784
784
["to chain an additional time from terrain"] = "TerrainChainChance",
785
+ ["slow magnitude"] = "EnemySlowMagnitude",
785
786
-- Flask and Charm modifiers
786
787
["effect"] = "LocalEffect",
787
788
["effect of flasks"] = "FlaskEffect",
@@ -1216,6 +1217,7 @@ local preFlagList = {
1216
1217
["^hits against you "] = { applyToEnemy = true, flags = ModFlag.Hit },
1217
1218
["^hits against you [hd][ae][va][el] "] = { applyToEnemy = true, flags = ModFlag.Hit },
1218
1219
["^enemies near your totems deal "] = { applyToEnemy = true },
1220
+ ["^debuffs you inflict [hd][ae][va][el] "] = { },
1219
1221
-- Other
1220
1222
["^your flasks grant "] = { },
1221
1223
["^when hit, "] = { },
@@ -3597,12 +3599,6 @@ local specialModList = {
3597
3599
["adrenaline"] = { flag("Condition:Adrenaline") },
3598
3600
["arcane surge"] = { flag("Condition:ArcaneSurge") },
3599
3601
["your aura buffs do not affect allies"] = { flag("SelfAurasCannotAffectAllies") },
3600
- ["debuffs you inflict have (%d+)%% increased slow magnitude"] = function(num) return {
3601
- mod("EnemySlowMagnitude", "INC", num),
3602
- } end,
3603
- ["debuffs you inflict have (%d+)%% reduced slow magnitude"] = function(num) return {
3604
- mod("EnemySlowMagnitude", "INC", -num),
3605
- } end,
3606
3602
["your curses have (%d+)%% increased effect if (%d+)%% of curse duration expired"] = function(num, _, limit) return {
3607
3603
mod("CurseEffect", "INC", num, { type = "MultiplierThreshold", actor = "enemy", var = "CurseExpired", threshold = tonumber(limit) }, { type = "SkillType", skillType = SkillType.AppliesCurse })
3608
3604
} end,
0 commit comments