Skip to content

Instantly share code, notes, and snippets.

@benphelps
Created July 12, 2013 06:40
Show Gist options
  • Save benphelps/5982402 to your computer and use it in GitHub Desktop.
Save benphelps/5982402 to your computer and use it in GitHub Desktop.
-- 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" }
}
)
-- 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