Skip to content

Commit f0a1ce2

Browse files
authored
Add support for +1 Infernal/Battlemage Cry exerted attacks Helm Enchant (#8572)
1 parent d0699da commit f0a1ce2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Modules/ModParser.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4638,6 +4638,8 @@ local specialModList = {
46384638
["cannot recover energy shield to above armour"] = { flag("ArmourESRecoveryCap") },
46394639
["cannot recover energy shield to above evasion rating"] = { flag("EvasionESRecoveryCap") },
46404640
["warcries exert (%d+) additional attacks?"] = function(num) return { mod("ExtraExertedAttacks", "BASE", num) } end,
4641+
["battlemage's cry exerts (%d+) additional attack"] = function(num) return { mod("BattlemageExertedAttacks", "BASE", num) } end,
4642+
["rallying cry exerts (%d+) additional attack"] = function(num) return { mod("RallyingExertedAttacks", "BASE", num) } end,
46414643
["warcries have (%d+)%% chance to exert (%d+) additional attacks?"] = function(num, _, var) return { mod("ExtraExertedAttacks", "BASE", (num*var/100)) } end,
46424644
["skills deal (%d+)%% more damage for each warcry exerting them"] = function(num) return { mod("EchoesExertAverageIncrease", "MORE", num, nil) } end,
46434645
["iron will"] = { flag("IronWill") },

0 commit comments

Comments
 (0)