Created
July 12, 2013 06:40
-
-
Save benphelps/5982402 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- SPEC ID 103 | |
ProbablyEngine.rotation.register(103, { | |
{ "Faerie Fire", "!target.debuff(Faerie Fire)" }, | |
{ "Savage Roar", { | |
"!player.buff(Savage Roar)", | |
"player.combopoints = 0" | |
}}, | |
{ "Savage Roar", { | |
"player.buff(Savage Roar).duration < 3", | |
"player.combopoints = 5" | |
}}, | |
{ "Rip", { | |
"target.debuff(Rip).duration < 3", | |
"player.combopoints = 5" | |
}}, | |
{ "Mangle", "target.debuff(Infected Wounds).duration < 2" }, | |
{ "Tiger's Fury", "player.energy < 35"}, | |
{ "Ferocious Bite", { | |
"target.health <= 25", | |
"player.combopoints = 5" | |
}}, | |
{ "Rake", "target.debuff(Rake).duration < 3" }, | |
{ "Thrash", { | |
"player.buff(Omen of Clarity)", | |
"target.debuff(Thrash).duration < 3" | |
}}, | |
{ "Ferocious Bite", { | |
"player.combopoints = 5", | |
"target.debuff(Rip).duration < 6", | |
"player.buff(Savage Road).duration < 6", | |
}}, | |
{ "Shred", "player.combopoints < 5" } | |
} | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- SPEC ID 70 | |
ProbablyEngine.rotation.register(70, { | |
{ "Blessing of Kings", "!player.buff(Blessing of Kings)" }, | |
{ "Avenging Wrath", "cooldowns" }, | |
{ "Inquisition", { | |
"!player.buff(Inquisition)", | |
"player.holypower = 3" | |
}}, | |
{ "Hammer of Wrath" }, | |
{ "Hammer of the Righteous", "multitarget" }, | |
{ "Templar's Verdict", "player.holypower = 5" }, | |
{ "Hammer of Wrath ", "target.health <= 20" }, | |
{ "Hammer of Wrath ", "player.buff(Avenging Wrath)" }, | |
{ "Exorcism" }, | |
{ "Crusader Strike" }, | |
{ "Judgment" }, | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment