You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1121 lines
26 KiB
1121 lines
26 KiB
-- Dragonflight/Items.lua
|
|
-- December 2022
|
|
|
|
local addon, ns = ...
|
|
local Hekili = _G[ addon ]
|
|
|
|
local class, state = Hekili.Class, Hekili.State
|
|
local all = Hekili.Class.specs[ 0 ]
|
|
|
|
local FindPlayerAuraByID = ns.FindPlayerAuraByID
|
|
local RegisterEvent = ns.RegisterEvent
|
|
|
|
local GetSpellCooldown = _G.GetSpellCooldown
|
|
|
|
|
|
-- 10.0
|
|
all:RegisterAbilities( {
|
|
algethar_puzzle_box = {
|
|
cast = function() return 2 * haste end,
|
|
cooldown = 180,
|
|
gcd = "spell",
|
|
|
|
item = 193701,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "algethar_puzzle" )
|
|
if class.auras.stealth and buff.stealth.up then removeBuff( "stealth" ) end
|
|
end,
|
|
|
|
proc = "mastery",
|
|
|
|
auras = {
|
|
algethar_puzzle = {
|
|
id = 383781,
|
|
duration = 20,
|
|
max_stack = 1,
|
|
},
|
|
},
|
|
|
|
copy = 383781
|
|
},
|
|
bag_of_biscuits = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 197960,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "biscuit_giver" )
|
|
end,
|
|
|
|
proc = "mastery",
|
|
|
|
auras = {
|
|
biscuit_giver = {
|
|
id = 381902,
|
|
duration = 15,
|
|
max_stack = 1,
|
|
},
|
|
}
|
|
},
|
|
blazebinders_hoof = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 193762,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "bound_by_fire_and_blaze" )
|
|
end,
|
|
|
|
proc = "strength",
|
|
|
|
auras = {
|
|
bound_by_fire_and_blaze = {
|
|
id = 383926,
|
|
duration = 20,
|
|
max_stack = 6,
|
|
},
|
|
}
|
|
},
|
|
bottomless_reliquary_satchel = {
|
|
cast = 0,
|
|
cooldown = 60,
|
|
gcd = "off",
|
|
|
|
item = 198695,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "algethar_puzzle" )
|
|
end,
|
|
|
|
proc = "damage", -- don't really know.
|
|
|
|
auras = {
|
|
bottomless_reliquary_satchel = {
|
|
duration = 0.01,
|
|
max_stack = 1,
|
|
},
|
|
}
|
|
},
|
|
broodkeepers_promise = {
|
|
cast = 1,
|
|
cooldown = 5,
|
|
gcd = "off",
|
|
|
|
item = 194307,
|
|
toggle = "cooldowns",
|
|
nobuff = "broodkeepers_promise",
|
|
|
|
usable = function() return group, "requires allies" end,
|
|
handler = function()
|
|
applyBuff( "broodkeepers_promise" )
|
|
end,
|
|
|
|
proc = "versatility",
|
|
|
|
auras = {
|
|
broodkeepers_promise = {
|
|
id = 394457,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
}
|
|
},
|
|
burgeoning_seed = {
|
|
cast = 0,
|
|
cooldown = 30,
|
|
gcd = "off",
|
|
|
|
item = 193634,
|
|
toggle = "cooldowns",
|
|
buff = "brimming_lifepod",
|
|
|
|
handler = function()
|
|
removeBuff( "brimming_lifepod" )
|
|
applyBuff( "supernatural" )
|
|
end,
|
|
|
|
proc = "versatility",
|
|
|
|
auras = {
|
|
brimming_lifepod = {
|
|
id = 384646,
|
|
duration = 360,
|
|
max_stack = 5,
|
|
},
|
|
supernatural = {
|
|
id = 384658,
|
|
duration = 12,
|
|
max_stack = 1,
|
|
}
|
|
}
|
|
},
|
|
caregivers_charm = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 198081,
|
|
toggle = "cooldowns",
|
|
|
|
usable = function() return group and active_dot.caregivers_watch == 0, "requires an ally" end,
|
|
|
|
handler = function()
|
|
applyBuff( "caregivers_watch" )
|
|
end,
|
|
|
|
proc = "healing",
|
|
|
|
auras = {
|
|
caregivers_watch = {
|
|
id = 382161,
|
|
duration = 30,
|
|
max_stack = 1,
|
|
dot = "buff"
|
|
}
|
|
}
|
|
},
|
|
choker_of_shielding = {
|
|
cast = 0,
|
|
cooldown = 180,
|
|
gcd = "off",
|
|
|
|
item = 193002,
|
|
toggle = "defensives",
|
|
|
|
handler = function()
|
|
applyBuff( "choker_of_shielding" )
|
|
end,
|
|
|
|
proc = "absorb",
|
|
|
|
auras = {
|
|
choker_of_shielding = {
|
|
id = 384646,
|
|
duration = 10,
|
|
max_stack = 1,
|
|
},
|
|
}
|
|
},
|
|
conjured_chillglobe = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 194300,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
if mana.percent < 65 then gain( 11736, "mana" ) end
|
|
end,
|
|
|
|
proc = "mana",
|
|
},
|
|
darkmoon_deck_box_dance = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 198478,
|
|
toggle = "cooldowns",
|
|
|
|
proc = "damage",
|
|
},
|
|
darkmoon_deck_box_inferno = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 194872,
|
|
toggle = "cooldowns",
|
|
|
|
proc = "damage",
|
|
},
|
|
darkmoon_deck_box_rime = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 198477,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyDebuff( "target", "awakening_rime" )
|
|
end,
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
awakening_rime = { -- TODO: Check actual aura ID.
|
|
id = 384623,
|
|
duration = 12,
|
|
max_stack = 1,
|
|
}
|
|
}
|
|
},
|
|
darkmoon_deck_box_watcher = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 198481,
|
|
toggle = "defensives",
|
|
|
|
handler = function()
|
|
applyBuff( "watchers_blessing" )
|
|
end,
|
|
|
|
proc = "versatility",
|
|
|
|
auras = {
|
|
watchers_blessing = {
|
|
id = 384532,
|
|
duration = 10,
|
|
max_stack = 1
|
|
},
|
|
watchers_blessing_vers = {
|
|
id = 384560,
|
|
duration = 10,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
darkmoon_deck_dance = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 198088,
|
|
toggle = "cooldowns",
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
ace_of_air = {
|
|
id = 382860,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
two_of_air = {
|
|
id = 382861,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
three_of_air = {
|
|
id = 382862,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
four_of_air = {
|
|
id = 382863,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
five_of_air = {
|
|
id = 382864,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
six_of_air = {
|
|
id = 382865,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
seven_of_air = {
|
|
id = 382866,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
eight_of_air = {
|
|
id = 382867,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
}
|
|
},
|
|
darkmoon_deck_inferno = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 198086,
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
ace_of_fire = {
|
|
id = 382835,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
two_of_fire = {
|
|
id = 382836,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
three_of_fire = {
|
|
id = 382837,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
four_of_fire = {
|
|
id = 382838,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
five_of_fire = {
|
|
id = 382839,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
six_of_fire = {
|
|
id = 382840,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
seven_of_fire = {
|
|
id = 382841,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
eight_of_fire = {
|
|
id = 382842,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
darkmoon_deck_rime = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 198087,
|
|
handler = function()
|
|
applyDebuff( "target", "awakening_rime" )
|
|
end,
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
ace_of_frost = {
|
|
id = 382844,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
two_of_frost = {
|
|
id = 382845,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
three_of_frost = {
|
|
id = 382846,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
four_of_frost = {
|
|
id = 382847,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
five_of_frost = {
|
|
id = 382848,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
six_of_frost = {
|
|
id = 382849,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
seven_of_frost = {
|
|
id = 382850,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
eight_of_frost = {
|
|
id = 382851,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
}
|
|
},
|
|
darkmoon_deck_watcher = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 198089,
|
|
toggle = "defensives",
|
|
|
|
handler = function()
|
|
applyBuff( "watchers_blessing" )
|
|
end,
|
|
|
|
proc = "versatility",
|
|
|
|
auras = {
|
|
ace_of_earth = {
|
|
id = 382852,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
two_of_earth = {
|
|
id = 382853,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
three_of_earth = {
|
|
id = 382854,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
four_of_earth = {
|
|
id = 382855,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
five_of_earth = {
|
|
id = 382856,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
six_of_earth = {
|
|
id = 382857,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
seven_of_earth = {
|
|
id = 382858,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
eight_of_earth = {
|
|
id = 382859,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
}
|
|
},
|
|
decoration_of_flame = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 194299,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "decoration_of_flame" )
|
|
end,
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
decoration_of_flame = {
|
|
id = 382058,
|
|
duration = 30,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
desperate_invokers_codex = {
|
|
cast = 0,
|
|
cooldown = function() return 240 - buff.hatred.stack end,
|
|
gcd = "off",
|
|
|
|
item = 194310,
|
|
toggle = "cooldowns",
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
hatred = {
|
|
id = 382419,
|
|
duration = 3600,
|
|
max_stack = 180
|
|
}
|
|
}
|
|
},
|
|
dragon_games_equipment = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 193719,
|
|
toggle = "cooldowns",
|
|
|
|
proc = "damage",
|
|
},
|
|
emerald_coachs_whistle = {
|
|
cast = 0,
|
|
cooldown = 1,
|
|
gcd = "off",
|
|
|
|
item = 193718,
|
|
usable = function() return group and active_dot.coached == 0, "requires an ally" end,
|
|
|
|
handler = function()
|
|
active_dot.coached = 1
|
|
end,
|
|
|
|
proc = "mastery",
|
|
|
|
auras = {
|
|
coached = {
|
|
id = 386578,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
dot = "buff"
|
|
},
|
|
time_to_shine = {
|
|
id = 383799,
|
|
duration = 10,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
erupting_spear_fragment = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 193769,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "erupting_spear_fragment", nil, min( 5, active_enemies ) )
|
|
end,
|
|
|
|
proc = "crit",
|
|
|
|
auras = {
|
|
erupting_spear_fragment = {
|
|
id = 381484,
|
|
duration = 10,
|
|
max_stack = 5
|
|
}
|
|
}
|
|
},
|
|
essence_of_somnikuss_shade = {
|
|
cast = 0,
|
|
cooldown = 300,
|
|
gcd = "off",
|
|
|
|
item = 200679,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyDebuff( "target", "ancient_poison_cloud" )
|
|
end,
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
ancient_poison_cloud = {
|
|
id = 391621,
|
|
duration = 45,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
globe_of_jagged_ice = {
|
|
cast = 0,
|
|
cooldown = 30,
|
|
gcd = "off",
|
|
|
|
item = 193732,
|
|
|
|
|
|
usable = function() return active_dot.skewering_cold > 0, "requires skewering_cold stacks" end,
|
|
handler = function()
|
|
if debuff.skewering_cold.up then
|
|
removeDebuff( "target", "skewering_cold" )
|
|
applyDebuff( "target", "breaking_the_ice" )
|
|
end
|
|
|
|
active_dot.skewering_cold = 0
|
|
end,
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
skewering_cold = {
|
|
id = 388929,
|
|
duration = 60,
|
|
max_stack = 4
|
|
},
|
|
breaking_the_ice = {
|
|
id = 388948,
|
|
duration = 10,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
homeland_raid_horn = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 193815,
|
|
toggle = "cooldowns",
|
|
|
|
proc = "damage",
|
|
},
|
|
iceblood_deathsnare = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 194304,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyDebuff( "target", "crystalline_web" )
|
|
end,
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
crystalline_web = {
|
|
id = 382130,
|
|
duration = 15,
|
|
max_stack = 5
|
|
}
|
|
}
|
|
},
|
|
integrated_primal_fire = {
|
|
cast = 0,
|
|
cooldown = 180,
|
|
gcd = "off",
|
|
|
|
item = 200868,
|
|
toggle = "cooldowns",
|
|
},
|
|
irideus_fragment = {
|
|
cast = 0,
|
|
cooldown = 180,
|
|
gcd = "off",
|
|
|
|
item = 193743,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "crumbling_power", nil, 20 )
|
|
end,
|
|
|
|
proc = "primary",
|
|
|
|
auras = {
|
|
crumbling_power = {
|
|
id = 383941,
|
|
duration = 20,
|
|
max_stack = 20
|
|
}
|
|
}
|
|
},
|
|
kharnalex_the_first_light = {
|
|
cast = 3,
|
|
channeled = true,
|
|
cooldown = 180,
|
|
gcd = "off",
|
|
|
|
item = 195519,
|
|
toggle = "cooldowns",
|
|
|
|
usable = function() return class.evoker, "evoker only" end,
|
|
},
|
|
lifeflame_ampoule = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 198451,
|
|
toggle = "cooldowns",
|
|
},
|
|
manic_grieftorch = {
|
|
cast = function() return 2 * haste end,
|
|
channeled = true,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
cycle = function()
|
|
-- Recommend a different target if yours is expected to die before the channel would complete, with a little buffer added.
|
|
if active_enemies > 1 and fight_remains > 3 * haste and target.time_to_die < 3 * haste then
|
|
return "cycle"
|
|
end
|
|
end,
|
|
|
|
item = 194308,
|
|
toggle = "cooldowns",
|
|
},
|
|
miniature_singing_stone = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 193678,
|
|
toggle = "defensives",
|
|
|
|
-- TODO: May require an ally?
|
|
handler = function()
|
|
applyBuff( "erupting_spear_fragment", nil, min( 5, active_enemies ) )
|
|
end,
|
|
|
|
proc = "absorb",
|
|
|
|
auras = {
|
|
miniature_singing_stone = {
|
|
id = 388855,
|
|
duration = 10,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
mote_of_sanctification = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 133646,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
end,
|
|
},
|
|
primal_ritual_shell = {
|
|
cast = 0,
|
|
cooldown = 1,
|
|
gcd = "off",
|
|
|
|
item = 200563,
|
|
|
|
usable = false,
|
|
auras = {
|
|
stone_turtles_blessing = {
|
|
id = 390643,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
flame_turtles_blessing = {
|
|
id = 390835,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
sea_turtles_blessing = {
|
|
id = 390869,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
wind_turtles_blessing = {
|
|
id = 390899,
|
|
duration = 3600,
|
|
max_stack = 1
|
|
},
|
|
primal_turtles_wish = {
|
|
id = 390936,
|
|
duration = 20,
|
|
max_stack = 1,
|
|
},
|
|
}
|
|
},
|
|
restored_titan_artifact = {
|
|
cast = 0,
|
|
cooldown = 60,
|
|
gcd = "off",
|
|
|
|
item = 200549,
|
|
|
|
handler = function()
|
|
applyBuff( "restored_titan_artifact" )
|
|
end,
|
|
|
|
proc = "absorb",
|
|
|
|
auras = {
|
|
restored_titan_artifact = {
|
|
id = 390420,
|
|
duration = 10,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
--[[ ringbound_hourglass = {
|
|
cast = 0,
|
|
cooldown = 3600,
|
|
gcd = "off",
|
|
|
|
item = 193000,
|
|
toggle = "cooldowns",
|
|
}, ]]
|
|
ruby_whelp_shell = {
|
|
cast = 0,
|
|
cooldown = 1,
|
|
gcd = "off",
|
|
|
|
item = 193757,
|
|
usable = false,
|
|
|
|
auras = {
|
|
under_red_wings = {
|
|
id = 389820,
|
|
duration = 12,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
spoils_of_neltharus = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 193773,
|
|
toggle = "cooldowns",
|
|
|
|
proc = function()
|
|
if buff.spoils_of_neltharus_crit.up then return "critical_strike"
|
|
elseif buff.spoils_of_neltharus_haste.up then return "haste"
|
|
elseif buff.spoils_of_neltharus_mastery.up then return "mastery"
|
|
elseif buff.spoils_of_neltharus_vers.up then return "versatility" end
|
|
return "random"
|
|
end,
|
|
|
|
handler = function()
|
|
if buff.spoils_of_neltharus_crit.up then applyBuff( "spoils_of_neltharus_crit" )
|
|
elseif buff.spoils_of_neltharus_haste.up then applyBuff( "spoils_of_neltharus_haste" )
|
|
elseif buff.spoils_of_neltharus_mastery.up then applyBuff( "spoils_of_neltharus_mastery" )
|
|
elseif buff.spoils_of_neltharus_vers.up then applyBuff( "spoils_of_neltharus_vers" ) end
|
|
end,
|
|
|
|
auras = {
|
|
spoils_of_neltharus_crit = {
|
|
id = 381954,
|
|
duration = 20,
|
|
max_stack = 1,
|
|
},
|
|
spoils_of_neltharus_haste = {
|
|
id = 381955,
|
|
duration = 20,
|
|
max_stack = 1,
|
|
},
|
|
spoils_of_neltharus_mastery = {
|
|
id = 381956,
|
|
duration = 20,
|
|
max_stack = 1,
|
|
},
|
|
spoils_of_neltharus_vers = {
|
|
id = 381957,
|
|
duration = 20,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
stormeaters_boon = {
|
|
cast = 0,
|
|
cooldown = 180,
|
|
gcd = "off",
|
|
|
|
item = 194302,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "stormeaters_boon" )
|
|
applyDebuff( "player", "rooted", 10 )
|
|
end,
|
|
|
|
proc = "damage",
|
|
|
|
auras = {
|
|
stormeaters_boon = {
|
|
id = 377453,
|
|
duration = 10,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
timebreaching_talon = {
|
|
cast = 0,
|
|
cooldown = 150,
|
|
gcd = "off",
|
|
|
|
item = 193791,
|
|
toggle = "cooldowns",
|
|
|
|
proc = "primary",
|
|
|
|
handler = function()
|
|
applyBuff( "power_theft" )
|
|
end,
|
|
|
|
auras = {
|
|
power_theft = {
|
|
id = 382126,
|
|
duration = 15,
|
|
max_stack = 1,
|
|
},
|
|
price_of_power = {
|
|
id = 384050,
|
|
duration = 15,
|
|
max_stack = 1
|
|
},
|
|
}
|
|
},
|
|
tome_of_unstable_power = {
|
|
cast = 0,
|
|
cooldown = 180,
|
|
gcd = "off",
|
|
|
|
item = 193628,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "tome_of_unstable_power" )
|
|
end,
|
|
|
|
proc = "primary",
|
|
|
|
auras = {
|
|
tome_of_unstable_power = {
|
|
id = 388583,
|
|
duration = 15,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
torrent_callers_shell = {
|
|
cast = 3,
|
|
channeled = true,
|
|
cooldown = 150,
|
|
gcd = "off",
|
|
|
|
item = 200552,
|
|
toggle = "cooldowns"
|
|
},
|
|
treemouths_festering_splinter = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 193652,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "treemouths_festering_splinter" )
|
|
end,
|
|
|
|
proc = "absorb",
|
|
|
|
auras = {
|
|
treemouths_festering_splinter = {
|
|
id = 395175,
|
|
duration = 15,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
uncanny_pocketwatch = {
|
|
cast = 0,
|
|
cooldown = 180,
|
|
gcd = "off",
|
|
|
|
item = 195220,
|
|
toggle = "interrupts",
|
|
|
|
handler = function()
|
|
applyBuff( "pocketwatch_acceleration" )
|
|
end,
|
|
|
|
proc = "speed",
|
|
|
|
auras = {
|
|
pocketwatch_acceleration = {
|
|
id = 381609,
|
|
duration = 8,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
waters_beating_heart = {
|
|
cast = 8,
|
|
channeled = true,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 193736,
|
|
toggle = "defensives",
|
|
|
|
start = function()
|
|
applyBuff( "waters_beating_heart" )
|
|
end,
|
|
|
|
auras = {
|
|
waters_beating_heart = {
|
|
id = 383934,
|
|
duration = 8,
|
|
tick_time = 2,
|
|
max_stack = 1,
|
|
dot = "buff"
|
|
}
|
|
}
|
|
},
|
|
|
|
|
|
-- Shadowmoon Burial Grounds
|
|
bonemaws_big_toe = {
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
item = 110012,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "bonemaws_big_toe" )
|
|
end,
|
|
|
|
auras = {
|
|
bonemaws_big_toe = {
|
|
id = 397400,
|
|
duration = 20,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
voidmenders_shadowgem = {
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
item = 110007,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function()
|
|
applyBuff( "voidmenders_shadowgem" )
|
|
end,
|
|
|
|
auras = {
|
|
voidmenders_shadowgem = {
|
|
id = 397399,
|
|
duration = 15,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
|
|
-- Trial of Valor
|
|
gift_of_radiance = {
|
|
cast = 0,
|
|
cooldown = 60,
|
|
gcd = "off",
|
|
|
|
item = 133647,
|
|
},
|
|
} )
|