Skip to content

Commit

Permalink
Tweak Reaping Flames essence and dmg boost aura.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hekili committed Mar 5, 2020
1 parent 9671d93 commit 9ae5a65
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions Classes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8246,11 +8246,24 @@ all:RegisterPowers( {
all:RegisterAbility( "reaping_flames", {
id = 310690,
cast = 0,
cooldown = function () return 45 - ( target.health_pct < ( essence.breath_of_the_dying.rank > 1 and 80 or 20 ) and 30 or 0 ) end,

cooldown = function ()
if target.health.pct < 20 then return 15 end
if essence.breath_of_the_dying.rank > 1 and target.health.pct > 80 then return 15 end
return 45
end,
startsCombat = true,
toggle = "essences",
essence = true,

handler = function ()
removeBuff( "reaping_flames" )
end,
} )

all:RegisterAura( "reaping_flames", {
id = 311202,
duration = 30,
max_stack = 1
} )


Expand Down

0 comments on commit 9ae5a65

Please sign in to comment.