AdiButtonAuras

AdiButtonAuras

404k Downloads

Maul

Kanoshiko opened this issue ยท 2 comments

commented

For druid tank, it can be cool to make a "Maul" enlightenment went rage ressource is greater than or equal 80.

commented

You could copy this and change the spell IDs to work for you. I wasn't a big fan of these type of rules originally but I think having them available is better than not having them at all. You can always disable them/not use them.

return Configure {
            "Shield Barrier",
            L['Suggest using Shield Barrier at 60 Rage or more. Flash at maximum Rage.'],
            112048, -- Shield Barrier
            "player",
            { "UNIT_POWER_FREQUENT", "UNIT_MAXPOWER" },
            function(_, model)
                local power = UnitPower("player")
                if power == UnitPowerMax("player") then
                    model.highlight = "flash"
                elseif power >= 60 then
                    model.hint = true
                end
            end,
        }
commented

This would be better suited as a user rule. I think Savage Defense could situationally be also considered for a rage dump.