Skip to content

Commit

Permalink
prot warrior changes/fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pcmd git committed Nov 3, 2013
1 parent 3b5c509 commit ab6fe04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Rotations/warrior_prot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jps.registerRotation("WARRIOR","PROTECTION",function()
{ "Last Stand" , jps.hp() < 0.40 and jps.UseCDs, "player" },
{ "Impending Victory" ,jps.hp() < 0.70 and jps.UseCDs, "player" },
{ "Lifeblood" , jps.hp() < 0.70 and jps.UseCDs, "player" },
--{ "Shield Block" , jps.hp() < 0.80 , "player" },
{ "Shield Block" , jps.hp() < 0.80 , "player" },
{ "Shield Barrier" , jps.hp() < 0.80 , "player" },
--{ "Enraged Regeneration" , jps.buff("Berserker Rage","player") and jps.hp() < 0.80 , "player" },
{ "Enraged Regeneration" , (jps.buff("Berserker Rage","player") or jps.buff("enraged","player")) and jps.hp() < 0.80 , "player" },

-- interrupts
{ "Pummel" , jps.shouldKick("target") , "target" },
Expand All @@ -35,7 +35,7 @@ jps.registerRotation("WARRIOR","PROTECTION",function()
{ "Revenge" , },
{ "Heroic Strike" , jps.buff("player", "Ultimatum") and not jps.MultiTarget , "target" },
{ "Devastate" , jps.debuffStacks("Sunder Armor") < 3 , "target" },
{ "Thunder Clap" , not jps.debuff("Weakend Blows", "target") },
{ "Thunder Clap" , IsSpellInRange("Thunder Clap","target") == 1 and not jps.debuff("Weakend Blows", "target") },
{ "Heroic Throw" , },
{ "Battle Shout", jps.rage() < 100, "player" },
{ "Heroic Strike" , jps.rage()>90 and not jps.MultiTarget, "target" },
Expand Down

0 comments on commit ab6fe04

Please sign in to comment.