You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Modules/ModParser.lua
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2877,6 +2877,7 @@ local specialModList = {
2877
2877
["damage from unblocked hits always bypasses energy shield"] = { flag("UnblockedDamageDoesBypassES", { type="Condition", var="EVBypass", neg=true }) },
2878
2878
["recover (%d+) life when you block"] =function(num) return { mod("LifeOnBlock", "BASE", num) } end,
2879
2879
["recover (%d+) energy shield when you block spell damage"] =function(num) return { mod("EnergyShieldOnSpellBlock", "BASE", num) } end,
2880
+
["recover (%d+) energy shield when you suppress spell damage"] =function(num) return { mod("EnergyShieldOnSuppress", "BASE", num) } end,
2880
2881
["recover (%d+)%% of life when you block"] =function(num) return { mod("LifeOnBlock", "BASE", 1, { type="PerStat", stat="Life", div=100/num }) } end,
2881
2882
["recover (%d+)%% of life when you block attack damage while wielding a staff"] =function(num) return { mod("LifeOnBlock", "BASE", 1, { type="PerStat", stat="Life", div=100/num }, { type="Condition", var="UsingStaff" }) } end,
2882
2883
["recover (%d+)%% of your maximum mana when you block"] =function(num) return { mod("ManaOnBlock", "BASE", 1, { type="PerStat", stat="Mana", div=100/num }) } end,
0 commit comments