Skip to content

Commit

Permalink
Revise Alacrity
Browse files Browse the repository at this point in the history
  • Loading branch information
Hekili committed Nov 1, 2024
1 parent 910c66d commit 3104e27
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
6 changes: 2 additions & 4 deletions TheWarWithin/RogueAssassination.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2288,7 +2288,7 @@ spec:RegisterAbilities( {

handler = function ()
applyDebuff( "target", "kidney_shot", 1 + combo_points.current )
if talent.alacrity.enabled and combo_points.current > 4 then addStack( "alacrity" ) end
if talent.alacrity.rank > 1 and effective_combo_points > 9 then addStack( "alacrity" ) end
if talent.internal_bleeding.enabled then
applyDebuff( "target", "internal_bleeding" )
debuff.internal_bleeding.pmultiplier = persistent_multiplier
Expand Down Expand Up @@ -2631,9 +2631,7 @@ spec:RegisterAbilities( {

handler = function ()
removeStack( "goremaws_bite" )
if talent.alacrity.enabled and combo_points.current > 4 then
addStack( "alacrity" )
end
if talent.alacrity.rank > 1 and effective_combo_points > 9 then addStack( "alacrity" ) end
applyBuff( "slice_and_dice" )
spend( combo_points.current, "combo_points" )

Expand Down
9 changes: 3 additions & 6 deletions TheWarWithin/RogueOutlaw.lua
Original file line number Diff line number Diff line change
Expand Up @@ -952,9 +952,7 @@ spec:RegisterAbilities( {
end,

handler = function ()
if talent.alacrity.enabled and effective_combo_points > 4 then
addStack( "alacrity" )
end
if talent.alacrity.rank > 1 and effective_combo_points > 9 then addStack( "alacrity" ) end

applyBuff( "between_the_eyes" )

Expand Down Expand Up @@ -1081,9 +1079,8 @@ spec:RegisterAbilities( {
handler = function ()
removeBuff( "brutal_opportunist" )

if talent.alacrity.enabled and combo_points.current > 4 then
addStack( "alacrity" )
end
if talent.alacrity.rank > 1 and effective_combo_points > 9 then addStack( "alacrity" ) end

if talent.summarily_dispatched.enabled and combo_points.current > 5 then
addStack( "summarily_dispatched", ( buff.summarily_dispatched.up and buff.summarily_dispatched.remains or nil ), 1 )
end
Expand Down
2 changes: 1 addition & 1 deletion TheWarWithin/RogueSubtlety.lua
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ spec:RegisterHook( "spend", function( amt, resource )
applyBuff( "deathstalkers_mark_buff" )
end

if talent.alacrity.enabled and ( 5 * talent.alacrity.rank ) + ( 20 * effective_combo_points ) >= 100 then addStack( "alacrity" ) end
if talent.alacrity.rank > 1 and effective_combo_points > 9 then addStack( "alacrity" ) end
if talent.secret_technique.enabled then reduceCooldown( "secret_technique", amt ) end
if talent.deepening_shadows.enabled then reduceCooldown( "shadow_dance", amt * effective_combo_points ) end
if talent.supercharger.enabled and buff.supercharged_combo_points.up then removeStack( "supercharged_combo_points" ) end
Expand Down

0 comments on commit 3104e27

Please sign in to comment.