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.
2127 lines
91 KiB
2127 lines
91 KiB
-- DeathKnightUnholy.lua
|
|
-- October 2022
|
|
|
|
if UnitClassBase( "player" ) ~= "DEATHKNIGHT" then return end
|
|
|
|
local addon, ns = ...
|
|
local Hekili = _G[ addon ]
|
|
local class, state = Hekili.Class, Hekili.State
|
|
|
|
local roundUp = ns.roundUp
|
|
local FindUnitBuffByID = ns.FindUnitBuffByID
|
|
local PTR = ns.PTR
|
|
|
|
local strformat = string.format
|
|
|
|
local me = Hekili:NewSpecialization( 252 )
|
|
|
|
me:RegisterResource( Enum.PowerType.Runes, {
|
|
rune_regen = {
|
|
last = function ()
|
|
return state.query_time
|
|
end,
|
|
|
|
interval = function( time, val )
|
|
local r = state.runes
|
|
val = math.floor( val )
|
|
|
|
if val == 6 then return -1 end
|
|
return r.expiry[ val + 1 ] - time
|
|
end,
|
|
|
|
stop = function( x )
|
|
return x == 6
|
|
end,
|
|
|
|
value = 1,
|
|
},
|
|
}, setmetatable( {
|
|
expiry = { 0, 0, 0, 0, 0, 0 },
|
|
cooldown = 10,
|
|
regen = 0,
|
|
max = 6,
|
|
forecast = {},
|
|
fcount = 0,
|
|
times = {},
|
|
values = {},
|
|
resource = "runes",
|
|
|
|
reset = function()
|
|
local t = state.runes
|
|
|
|
for i = 1, 6 do
|
|
local start, duration, ready = GetRuneCooldown( i )
|
|
|
|
start = start or 0
|
|
duration = duration or ( 10 * state.haste )
|
|
|
|
start = roundUp( start, 3 )
|
|
|
|
t.expiry[ i ] = ready and 0 or start + duration
|
|
t.cooldown = duration
|
|
end
|
|
|
|
table.sort( t.expiry )
|
|
|
|
t.actual = nil
|
|
end,
|
|
|
|
gain = function( amount )
|
|
local t = state.runes
|
|
|
|
for i = 1, amount do
|
|
t.expiry[ 7 - i ] = 0
|
|
end
|
|
table.sort( t.expiry )
|
|
|
|
t.actual = nil
|
|
end,
|
|
|
|
spend = function( amount )
|
|
local t = state.runes
|
|
|
|
for i = 1, amount do
|
|
if t.expiry[ 4 ] > state.query_time then
|
|
t.expiry[ 1 ] = t.expiry[ 4 ] + t.cooldown
|
|
else
|
|
t.expiry[ 1 ] = state.query_time + t.cooldown
|
|
end
|
|
table.sort( t.expiry )
|
|
end
|
|
|
|
if amount > 0 then
|
|
state.gain( amount * 10, "runic_power" )
|
|
|
|
if state.set_bonus.tier20_4pc == 1 then
|
|
state.cooldown.army_of_the_dead.expires = max( 0, state.cooldown.army_of_the_dead.expires - 1 )
|
|
end
|
|
end
|
|
|
|
t.actual = nil
|
|
end,
|
|
|
|
timeTo = function( x )
|
|
return state:TimeToResource( state.runes, x )
|
|
end,
|
|
}, {
|
|
__index = function( t, k, v )
|
|
if k == "actual" then
|
|
local amount = 0
|
|
|
|
for i = 1, 6 do
|
|
if t.expiry[ i ] <= state.query_time then
|
|
amount = amount + 1
|
|
end
|
|
end
|
|
|
|
return amount
|
|
|
|
elseif k == "current" then
|
|
-- If this is a modeled resource, use our lookup system.
|
|
if t.forecast and t.fcount > 0 then
|
|
local q = state.query_time
|
|
local index, slice
|
|
|
|
if t.values[ q ] then return t.values[ q ] end
|
|
|
|
for i = 1, t.fcount do
|
|
local v = t.forecast[ i ]
|
|
if v.t <= q then
|
|
index = i
|
|
slice = v
|
|
else
|
|
break
|
|
end
|
|
end
|
|
|
|
-- We have a slice.
|
|
if index and slice then
|
|
t.values[ q ] = max( 0, min( t.max, slice.v ) )
|
|
return t.values[ q ]
|
|
end
|
|
end
|
|
|
|
return t.actual
|
|
|
|
elseif k == "deficit" then
|
|
return t.max - t.current
|
|
|
|
elseif k == "time_to_next" then
|
|
return t[ "time_to_" .. t.current + 1 ]
|
|
|
|
elseif k == "time_to_max" then
|
|
return t.current == 6 and 0 or max( 0, t.expiry[6] - state.query_time )
|
|
|
|
|
|
elseif k == "add" then
|
|
return t.gain
|
|
|
|
else
|
|
local amount = k:match( "time_to_(%d+)" )
|
|
amount = amount and tonumber( amount )
|
|
|
|
if amount then return state:TimeToResource( t, amount ) end
|
|
end
|
|
end
|
|
} ) )
|
|
me:RegisterResource( Enum.PowerType.RunicPower )
|
|
|
|
|
|
me:RegisterStateFunction( "apply_festermight", function( n )
|
|
if azerite.festermight.enabled or talent.festermight.enabled then
|
|
if buff.festermight.up then
|
|
addStack( "festermight", buff.festermight.remains, n )
|
|
else
|
|
applyBuff( "festermight", nil, n )
|
|
end
|
|
end
|
|
end )
|
|
|
|
|
|
local spendHook = function( amt, resource, noHook )
|
|
if amt > 0 and resource == "runes" and active_dot.shackle_the_unworthy > 0 then
|
|
reduceCooldown( "shackle_the_unworthy", 4 * amt )
|
|
end
|
|
end
|
|
|
|
me:RegisterHook( "spend", spendHook )
|
|
|
|
|
|
-- Talents
|
|
me:RegisterTalents( {
|
|
-- DeathKnight
|
|
abomination_limb = { 76049, 383269, 1 }, -- Sprout an additional limb, dealing 4,574 Shadow damage over 12 sec to all nearby enemies. Deals reduced damage beyond 5 targets. Every 1 sec, an enemy is pulled to your location if they are further than 8 yds from you. The same enemy can only be pulled once every 4 sec. Gain Runic Corruption instantly, and again every 6 sec.
|
|
acclimation = { 76047, 373926, 1 }, -- Icebound Fortitude's cooldown is reduced by 60 sec.
|
|
antimagic_barrier = { 76046, 205727, 1 }, -- Reduces the cooldown of Anti-Magic Shell by 20 sec and increases its duration and amount absorbed by 40%.
|
|
antimagic_shell = { 76070, 48707 , 1 }, -- Surrounds you in an Anti-Magic Shell for 7 sec, absorbing up to 15,262 magic damage and preventing application of harmful magical effects. Damage absorbed generates Runic Power.
|
|
antimagic_zone = { 76065, 51052 , 1 }, -- Places an Anti-Magic Zone that reduces spell damage taken by party or raid members by 20%. The Anti-Magic Zone lasts for 8 sec or until it absorbs 47,400 damage.
|
|
asphyxiate = { 76064, 221562, 1 }, -- Lifts the enemy target off the ground, crushing their throat with dark energy and stunning them for 5 sec.
|
|
assimilation = { 76048, 374383, 1 }, -- The amount absorbed by Anti-Magic Zone is increased by 10% and grants up to 100 Runic Power based on the amount absorbed.
|
|
blinding_sleet = { 76044, 207167, 1 }, -- Targets in a cone in front of you are blinded, causing them to wander disoriented for 5 sec. Damage may cancel the effect. When Blinding Sleet ends, enemies are slowed by 50% for 6 sec.
|
|
blood_draw = { 76079, 374598, 2 }, -- When you fall below 30% health you drain 1,127 health from nearby enemies. Can only occur every 2 min.
|
|
blood_scent = { 76066, 374030, 1 }, -- Increases Leech by 3%.
|
|
brittle = { 76061, 374504, 1 }, -- Your diseases have a chance to weaken your enemy causing your attacks against them to deal 6% increased damage for 5 sec.
|
|
cleaving_strikes = { 76073, 316916, 1 }, -- Scourge Strike hits up to 7 additional enemies while you remain in Death and Decay.
|
|
clenching_grasp = { 76062, 389679, 1 }, -- Death Grip slows enemy movement speed by 50% for 6 sec.
|
|
coldthirst = { 76045, 378848, 1 }, -- Successfully interrupting an enemy with Mind Freeze grants 10 Runic Power and reduces its cooldown by 3 sec.
|
|
control_undead = { 76059, 111673, 1 }, -- Dominates the target undead creature up to level 61, forcing it to do your bidding for 5 min.
|
|
death_pact = { 76077, 48743 , 1 }, -- Create a death pact that heals you for 50% of your maximum health, but absorbs incoming healing equal to 30% of your max health for 15 sec.
|
|
deaths_echo = { 76056, 356367, 1 }, -- Death's Advance, Death and Decay, and Death Grip have 1 additional charge.
|
|
deaths_reach = { 76057, 276079, 1 }, -- Increases the range of Death Grip by 10 yds. Killing an enemy that yields experience or honor resets the cooldown of Death Grip.
|
|
empower_rune_weapon = { 76050, 47568 , 1 }, -- Empower your rune weapon, gaining 15% Haste and generating 1 Rune and 5 Runic Power instantly and every 5 sec for 20 sec.
|
|
enfeeble = { 76060, 392566, 1 }, -- Your ghoul's attacks have a chance to apply Enfeeble, reducing the enemies movement speed by 30% and the damage they deal to you by 15% for 6 sec.
|
|
gloom_ward = { 76052, 391571, 1 }, -- Absorbs are 15% more effective on you.
|
|
grip_of_the_dead = { 76057, 273952, 1 }, -- Death and Decay reduces the movement speed of enemies within its area by 90%, decaying by 10% every sec.
|
|
icebound_fortitude = { 76084, 48792 , 1 }, -- Your blood freezes, granting immunity to Stun effects and reducing all damage you take by 30% for 8 sec.
|
|
icy_talons = { 76051, 194878, 2 }, -- Your Runic Power spending abilities increase your melee attack speed by 3% for 10 sec, stacking up to 3 times.
|
|
improved_death_strike = { 76067, 374277, 1 }, -- Death Strike's cost is reduced by 10, and its healing is increased by 60%.
|
|
insidious_chill = { 76088, 391566, 1 }, -- Your auto-attacks reduce the target's auto-attack speed by 5% for 30 sec, stacking up to 4 times.
|
|
march_of_darkness = { 76069, 391546, 1 }, -- Death's Advance grants an additional 25% movement speed over the first 3 sec.
|
|
merciless_strikes = { 76085, 373923, 1 }, -- Increases Critical Strike chance by 2%.
|
|
might_of_thassarian = { 76076, 374111, 1 }, -- Increases Strength by 2%.
|
|
mind_freeze = { 76082, 47528 , 1 }, -- Smash the target's mind with cold, interrupting spellcasting and preventing any spell in that school from being cast for 3 sec.
|
|
permafrost = { 76083, 207200, 1 }, -- Your auto attack damage grants you an absorb shield equal to 40% of the damage dealt.
|
|
proliferating_chill = { 76086, 373930, 1 }, -- Chains of Ice affects 1 additional nearby enemy.
|
|
rune_mastery = { 76080, 374574, 2 }, -- Consuming a Rune has a chance to increase your Strength by 3% for 8 sec.
|
|
runic_attenuation = { 76087, 207104, 1 }, -- Auto attacks have a chance to generate 5 Runic Power.
|
|
sacrificial_pact = { 76074, 327574, 1 }, -- Sacrifice your ghoul to deal 929 Shadow damage to all nearby enemies and heal for 25% of your maximum health. Deals reduced damage beyond 8 targets.
|
|
soul_reaper = { 76053, 343294, 1 }, -- Strike an enemy for 532 Shadowfrost damage and afflict the enemy with Soul Reaper. After 5 sec, if the target is below 35% health this effect will explode dealing an additional 2,445 Shadowfrost damage to the target. If the enemy that yields experience or honor dies while afflicted by Soul Reaper, gain Runic Corruption.
|
|
suppression = { 76075, 374049, 1 }, -- Damage taken from area of effect attacks reduced by 3%.
|
|
unholy_bond = { 76055, 374261, 2 }, -- Increases the effectiveness of your Runeforge effects by 10%.
|
|
unholy_endurance = { 76063, 389682, 1 }, -- Increases Lichborne duration by 2 sec and while active damage taken is reduced by 15%.
|
|
unholy_ground = { 76058, 374265, 1 }, -- Gain 5% Haste while you remain within your Death and Decay.
|
|
veteran_of_the_third_war = { 76068, 48263 , 2 }, -- Stamina increased by 10%.
|
|
will_of_the_necropolis = { 76054, 206967, 2 }, -- Damage taken below 30% Health is reduced by 20%.
|
|
wraith_walk = { 76078, 212552, 1 }, -- Embrace the power of the Shadowlands, removing all root effects and increasing your movement speed by 70% for 4 sec. Taking any action cancels the effect. While active, your movement speed cannot be reduced below 170%.
|
|
|
|
-- Unholy
|
|
all_will_serve = { 76181, 194916, 1 }, -- Your Raise Dead spell summons an additional skeletal minion.
|
|
apocalypse = { 76185, 275699, 1 }, -- Bring doom upon the enemy, dealing 620 Shadow damage and bursting up to 4 Festering Wounds on the target. Summons an Army of the Dead ghoul for 20 sec for each Festering Wound you burst. Generates 2 Runes.
|
|
army_of_the_damned = { 76153, 276837, 1 }, -- Apocalypse's cooldown is reduced by 45 sec. Additionally, Death Coil and Epidemic reduce the cooldown of Army of the Dead by 5 sec.
|
|
army_of_the_dead = { 76196, 42650 , 1 }, -- Summons a legion of ghouls who swarms your enemies, fighting anything they can for 30 sec.
|
|
bursting_sores = { 76164, 207264, 1 }, -- Bursting a Festering Wound deals 20% more damage, and deals 200 Shadow damage to all nearby enemies. Deals reduced damage beyond 8 targets.
|
|
chains_of_ice = { 76081, 45524 , 1 }, -- Shackles the target with frozen chains, reducing movement speed by 70% for 8 sec.
|
|
clawing_shadows = { 76183, 207311, 1 }, -- Deals 1,012 Shadow damage and causes 1 Festering Wound to burst.
|
|
coil_of_devastation = { 76156, 390270, 1 }, -- Death Coil causes the target to take an additional 30% of the direct damage dealt over 4 sec.
|
|
commander_of_the_dead = { 76149, 390259, 1 }, -- Dark Transformation also empowers your Gargoyle and Army of the Dead for 30 sec, increasing their damage by 35%.
|
|
dark_transformation = { 76187, 63560 , 1 }, -- Your geist deals 554 Shadow damage to 5 nearby enemies and transforms into a powerful undead monstrosity for 15 sec. Granting them 100% energy and the geist's abilities are empowered and take on new functions while the transformation is active.
|
|
death_rot = { 76158, 377537, 1 }, -- Death Coil and Epidemic debilitate your enemy applying Death Rot causing them to take 1% increased Shadow damage, up to 10% from you for 10 sec. If Death Coil or Epidemic consume Sudden Doom it applies two stacks of Death Rot.
|
|
death_strike = { 76071, 49998 , 1 }, -- Focuses dark power into a strike that deals 436 Physical damage and heals you for 40.00% of all damage taken in the last 5 sec, minimum 11.2% of maximum health.
|
|
-- defile = { 76180, 152280, 1 }, -- Defile the targeted ground, dealing 682 Shadow damage to all enemies over 10 sec. While you remain within your Defile, your Scourge Strike will hit 7 enemies near the target. Every sec, if any enemies are standing in the Defile, it grows in size, dealing increased damage, and increasing your Mastery by 1%, up to 8%.
|
|
defile = { 76160, 152280, 1 }, -- Defile the targeted ground, dealing 682 Shadow damage to all enemies over 10 sec. While you remain within your Defile, your Scourge Strike will hit 7 enemies near the target. Every sec, if any enemies are standing in the Defile, it grows in size, dealing increased damage, and increasing your Mastery by 1%, up to 8%.
|
|
ebon_fever = { 76164, 207269, 1 }, -- Virulent Plague deals 15% more damage over time in half the duration.
|
|
epidemic = { 76162, 207317, 1 }, -- Causes each of your Virulent Plagues to flare up, dealing 282 Shadow damage to the infected enemy, and an additional 113 Shadow damage to all other enemies near them. Increases the duration of Dark Transformation by 1 sec.
|
|
eternal_agony = { 76195, 390268, 1 }, -- Death Coil and Epidemic increase the duration of Dark Transformation by 1 sec.
|
|
feasting_strikes = { 76193, 390161, 1 }, -- Festering Strike has a 15% chance to generate 1 Rune and grant Runic Corruption.
|
|
festering_strike = { 76189, 85948 , 1 }, -- Strikes for 1,090 Physical damage and infects the target with 2-3 Festering Wounds. Festering Wound A pustulent lesion that will burst on death or when damaged by Scourge Strike, dealing 282 Shadow damage and generating 5 Runic Power.
|
|
festermight = { 76152, 377590, 2 }, -- Popping a Festering Wound increases your Strength by 1% for 20 sec stacking. Does not refresh duration.
|
|
ghoulish_frenzy = { 76154, 377587, 2 }, -- Dark Transformation also increases the attack speed and damage of you and your Monstrosity by 0%.
|
|
harbinger_of_doom = { 76175, 276023, 1 }, -- Sudden Doom triggers 30% more often, can accumulate up to 2 charges, and increases the damage of your next Death Coil by 20% or Epidemic by 10%.
|
|
improved_death_coil = { 76184, 377580, 2 }, -- Death Coil deals 15% additional damage and seeks out 1 additional nearby enemy.
|
|
improved_festering_strike = { 76192, 316867, 2 }, -- Festering Strike and Festering Wound damage increased by 10%.
|
|
infected_claws = { 76182, 207272, 1 }, -- Your ghoul's Claw attack has a 30% chance to cause a Festering Wound on the target.
|
|
magus_of_the_dead = { 76148, 390196, 1 }, -- Apocalypse and Army of the Dead also summon a Magus of the Dead who hurls Frostbolts and Shadow Bolts at your foes.
|
|
morbidity = { 76197, 377592, 2 }, -- Diseased enemies take 1% increased damage from you per disease they are affected by.
|
|
outbreak = { 76191, 77575 , 1 }, -- Deals 124 Shadow damage to the target and infects all nearby enemies with Virulent Plague. Virulent Plague A disease that deals 1,603 Shadow damage over 13.5 sec. It erupts when the infected target dies, dealing 297 Shadow damage to nearby enemies.
|
|
pestilence = { 76157, 277234, 1 }, -- Death and Decay damage has a 10% chance to apply a Festering Wound to the enemy.
|
|
plaguebringer = { 76183, 390175, 1 }, -- Scourge Strike causes your disease damage to occur 100% more quickly for 10 sec.
|
|
raise_dead = { 76072, 46585 , 1 }, -- Raises a geist to fight by your side. You can have a maximum of one geist at a time. Lasts 1 min.
|
|
raise_dead_2 = { 76188, 46584 , 1 }, -- Raises a geist to fight by your side. You can have a maximum of one geist at a time.
|
|
reaping = { 76177, 377514, 1 }, -- Your Soul Reaper, Scourge Strike, Festering Strike, and Death Coil deal 30% addtional damage to enemies below 35% health.
|
|
replenishing_wounds = { 76163, 377585, 1 }, -- When a Festering Wound pops it generates an additional 2 Runic Power.
|
|
rotten_touch = { 76178, 390275, 1 }, -- Sudden Doom causes your next Death Coil to also increase your Scourge Strike damage against the target by 50% for 10 sec.
|
|
runic_mastery = { 76186, 390166, 2 }, -- Increases your maximum Runic Power by 10 and increases the Rune regeneration rate of Runic Corruption by 10%.
|
|
ruptured_viscera = { 76148, 390236, 1 }, -- When your ghouls expire, they explode in viscera dealing 152 Shadow damage to nearby enemies. Each explosion has a 25% chance to apply Festering Wounds to enemies hit.
|
|
scourge_strike = { 76190, 55090 , 1 }, -- An unholy strike that deals 523 Physical damage and 380 Shadow damage, and causes 1 Festering Wound to burst.
|
|
sudden_doom = { 76179, 49530 , 1 }, -- Your auto attacks have a chance to make your next Death Coil or Epidemic cost no Runic Power.
|
|
summon_gargoyle = { 76176, 49206 , 1 }, -- Summon a Gargoyle into the area to bombard the target for 25 sec. The Gargoyle gains 1% increased damage for every 1 Runic Power you spend. Generates 50 Runic Power.
|
|
superstrain = { 76155, 390283, 1 }, -- Your Virulent Plague also applies Frost Fever and Blood Plague at 80% effectiveness.
|
|
unholy_assault = { 76151, 207289, 1 }, -- Strike your target dealing 1,261 Shadow damage, infecting the target with 4 Festering Wounds and sending you into an Unholy Frenzy increasing haste by 20% for 20 sec.
|
|
unholy_aura = { 76150, 377440, 2 }, -- All enemies within 8 yards take 10% increased damage from your minions.
|
|
unholy_blight = { 76161, 115989, 1 }, -- Surrounds yourself with a vile swarm of insects for 6 sec, stinging all nearby enemies and infecting them with Virulent Plague and an unholy disease that deals 394 damage over 14 sec, stacking up to 4 times.
|
|
unholy_command = { 76194, 316941, 2 }, -- The cooldown of Dark Transformation is reduced by 8 sec.
|
|
unholy_pact = { 76180, 319230, 1 }, -- Dark Transformation creates an unholy pact between you and your pet, igniting flaming chains that deal 2,781 Shadow damage over 15 sec to enemies between you and your pet.
|
|
vile_contagion = { 76159, 390279, 1 }, -- Inflict disease upon your enemies spreading Festering Wounds equal to the amount currently active on your target to 7 nearby enemies.
|
|
} )
|
|
|
|
|
|
-- PvP Talents
|
|
me:RegisterPvpTalents( {
|
|
bloodforged_armor = 5585, -- (410301)
|
|
dark_simulacrum = 41 , -- (77606) Places a dark ward on an enemy player that persists for 12 sec, triggering when the enemy next spends mana on a spell, and allowing the Death Knight to unleash an exact duplicate of that spell.
|
|
doomburst = 5436, -- (356512)
|
|
life_and_death = 40 , -- (288855) When targets afflicted by your Virulent Plague are healed, you are also healed for 5% of the amount. In addition, your Virulent Plague now erupts for 400% of normal eruption damage when dispelled.
|
|
necromancers_bargain = 3746, -- (288848)
|
|
necrotic_aura = 3437, -- (199642)
|
|
necrotic_wounds = 149 , -- (356520) Bursting a Festering Wound converts it into a Necrotic Wound, absorbing 4% of all healing received for 15 sec and healing you for the amount absorbed when the effect ends, up to 4% of your max health. Max 6 stacks. Adding a stack does not refresh the duration.
|
|
reanimation = 152 , -- (210128) Reanimates a nearby corpse, summoning a zombie for 20 sec that slowly moves towards your target. If your zombie reaches its target, it explodes after 3.0 sec. The explosion stuns all enemies within 8 yards for 3 sec and deals 10% of their health in Shadow damage.
|
|
rot_and_wither = 5511, -- (202727)
|
|
spellwarden = 5590, -- (410320)
|
|
strangulate = 5430, -- (47476) Shadowy tendrils constrict an enemy's throat, silencing them for 4 sec.
|
|
} )
|
|
|
|
|
|
-- Auras
|
|
me:RegisterAuras( {
|
|
-- Talent: Absorbing up to $w1 magic damage. Immune to harmful magic effects.
|
|
-- https://wowhead.com/beta/spell=48707
|
|
antimagic_shell = {
|
|
id = 48707,
|
|
duration = 5,
|
|
max_stack = 1
|
|
},
|
|
-- Talent: Summoning ghouls.
|
|
-- https://wowhead.com/beta/spell=42650
|
|
army_of_the_dead = {
|
|
id = 42650,
|
|
duration = 4,
|
|
tick_time = 0.5,
|
|
max_stack = 1
|
|
},
|
|
-- Talent: Stunned.
|
|
-- https://wowhead.com/beta/spell=221562
|
|
asphyxiate = {
|
|
id = 221562,
|
|
duration = 5,
|
|
mechanic = "stun",
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
-- Talent: Disoriented.
|
|
-- https://wowhead.com/beta/spell=207167
|
|
blinding_sleet = {
|
|
id = 207167,
|
|
duration = 5,
|
|
mechanic = "disorient",
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
-- You may not benefit from the effects of Blood Draw.
|
|
-- https://wowhead.com/beta/spell=374609
|
|
blood_draw = {
|
|
id = 374609,
|
|
duration = 180,
|
|
max_stack = 1
|
|
},
|
|
-- Draining $w1 health from the target every $t1 sec.
|
|
-- https://wowhead.com/beta/spell=55078
|
|
blood_plague = {
|
|
id = 55078,
|
|
duration = 24,
|
|
max_stack = 1,
|
|
copy = "blood_plague_superstrain"
|
|
},
|
|
-- Talent: Movement slowed $w1% $?$w5!=0[and Haste reduced $w5% ][]by frozen chains.
|
|
-- https://wowhead.com/beta/spell=45524
|
|
chains_of_ice = {
|
|
id = 45524,
|
|
duration = 8,
|
|
mechanic = "snare",
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
commander_of_the_dead = { -- 10.0.7 PTR
|
|
id = 390260,
|
|
duration = 30,
|
|
max_stack = 1,
|
|
copy = "commander_of_the_dead_window"
|
|
},
|
|
-- Talent: Controlled.
|
|
-- https://wowhead.com/beta/spell=111673
|
|
control_undead = {
|
|
id = 111673,
|
|
duration = 300,
|
|
mechanic = "charm",
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
-- Taunted.
|
|
-- https://wowhead.com/beta/spell=56222
|
|
dark_command = {
|
|
id = 56222,
|
|
duration = 3,
|
|
mechanic = "taunt",
|
|
max_stack = 1
|
|
},
|
|
-- Your next Death Strike is free and heals for an additional $s1% of maximum health.
|
|
-- https://wowhead.com/beta/spell=101568
|
|
dark_succor = {
|
|
id = 101568,
|
|
duration = 20,
|
|
max_stack = 1
|
|
},
|
|
-- Talent: $?$w2>0[Transformed into an undead monstrosity.][Gassy.] Damage dealt increased by $w1%.
|
|
-- https://wowhead.com/beta/spell=63560
|
|
dark_transformation = {
|
|
id = 63560,
|
|
duration = 15,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
generate = function( t )
|
|
local name, _, count, _, duration, expires, caster, _, _, spellID, _, _, _, _, timeMod, v1, v2, v3 = FindUnitBuffByID( "pet", 63560 )
|
|
|
|
if name then
|
|
t.name = t.name or name or class.abilities.dark_transformation.name
|
|
t.count = count > 0 and count or 1
|
|
t.expires = expires
|
|
t.duration = duration
|
|
t.applied = expires - duration
|
|
t.caster = "player"
|
|
return
|
|
end
|
|
|
|
t.name = t.name or class.abilities.dark_transformation.name
|
|
t.count = 0
|
|
t.expires = 0
|
|
t.duration = class.auras.dark_transformation.duration
|
|
t.applied = 0
|
|
t.caster = "nobody"
|
|
end,
|
|
},
|
|
-- Reduces healing done by $m1%.
|
|
-- https://wowhead.com/beta/spell=327095
|
|
death = {
|
|
id = 327095,
|
|
duration = 6,
|
|
type = "Magic",
|
|
max_stack = 3
|
|
},
|
|
-- $?s206930[Heart Strike will hit up to ${$m3+2} targets.]?s207311[Clawing Shadows will hit ${$55090s4-1} enemies near the target.]?s55090[Scourge Strike will hit ${$55090s4-1} enemies near the target.][Dealing Shadow damage to enemies inside Death and Decay.]
|
|
-- https://wowhead.com/beta/spell=188290
|
|
death_and_decay = {
|
|
id = 188290,
|
|
duration = 10,
|
|
max_stack = 1
|
|
},
|
|
-- Talent: The next $w2 healing received will be absorbed.
|
|
-- https://wowhead.com/beta/spell=48743
|
|
death_pact = {
|
|
id = 48743,
|
|
duration = 15,
|
|
max_stack = 1
|
|
},
|
|
death_rot = {
|
|
id = 377540,
|
|
duration = 10,
|
|
max_stack = 2,
|
|
},
|
|
-- Your movement speed is increased by $s1%, you cannot be slowed below $s2% of normal speed, and you are immune to forced movement effects and knockbacks.
|
|
-- https://wowhead.com/beta/spell=48265
|
|
deaths_advance = {
|
|
id = 48265,
|
|
duration = 10,
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
-- Defile the targeted ground, dealing 918 Shadow damage to all enemies over 10 sec. While you remain within your Defile, your Scourge Strike will hit 7 enemies near the target. If any enemies are standing in the Defile, it grows in size and deals increasing damage every sec.
|
|
defile = {
|
|
id = 152280,
|
|
duration = 10,
|
|
tick_time = 1,
|
|
max_stack = 1
|
|
},
|
|
defile_buff = {
|
|
id = 218100,
|
|
duration = 10,
|
|
max_stack = 8,
|
|
copy = "defile_mastery"
|
|
},
|
|
-- Talent: Haste increased by $s3%. Generating $s1 $LRune:Runes; and ${$m2/10} Runic Power every $t1 sec.
|
|
-- https://wowhead.com/beta/spell=47568
|
|
empower_rune_weapon = {
|
|
id = 47568,
|
|
duration = 20,
|
|
tick_time = 5,
|
|
max_stack = 1
|
|
},
|
|
-- Suffering from a wound that will deal [(20.7% of Attack power) / 1] Shadow damage when damaged by Scourge Strike.
|
|
festering_wound = {
|
|
id = 194310,
|
|
duration = 30,
|
|
max_stack = 6,
|
|
},
|
|
-- Reduces damage dealt to $@auracaster by $m1%.
|
|
-- https://wowhead.com/beta/spell=327092
|
|
famine = {
|
|
id = 327092,
|
|
duration = 6,
|
|
max_stack = 3
|
|
},
|
|
-- Strength increased by $w1%.
|
|
-- https://wowhead.com/beta/spell=377591
|
|
festermight = {
|
|
id = 377591,
|
|
duration = 20,
|
|
max_stack = 20
|
|
},
|
|
-- Suffering $w1 Frost damage every $t1 sec.
|
|
-- https://wowhead.com/beta/spell=55095
|
|
frost_fever = {
|
|
id = 55095,
|
|
duration = 24,
|
|
tick_time = 3,
|
|
max_stack = 1,
|
|
copy = "frost_fever_superstrain"
|
|
},
|
|
-- Movement speed slowed by $s2%.
|
|
-- https://wowhead.com/beta/spell=279303
|
|
frostwyrms_fury = {
|
|
id = 279303,
|
|
duration = 10,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
-- Damage and attack speed increased by $s1%.
|
|
-- https://wowhead.com/beta/spell=377588
|
|
ghoulish_frenzy = {
|
|
id = 377588,
|
|
duration = 15,
|
|
max_stack = 1,
|
|
copy = 377589
|
|
},
|
|
-- Dealing $w1 Frost damage every $t1 sec.
|
|
-- https://wowhead.com/beta/spell=274074
|
|
glacial_contagion = {
|
|
id = 274074,
|
|
duration = 14,
|
|
tick_time = 2,
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
grip_of_the_dead = {
|
|
id = 273977,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
-- Dealing $w1 Shadow damage every $t1 sec.
|
|
-- https://wowhead.com/beta/spell=275931
|
|
harrowing_decay = {
|
|
id = 275931,
|
|
duration = 4,
|
|
tick_time = 1,
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
-- Talent: Damage taken reduced by $w3%. Immune to Stun effects.
|
|
-- https://wowhead.com/beta/spell=48792
|
|
icebound_fortitude = {
|
|
id = 48792,
|
|
duration = 8,
|
|
max_stack = 1
|
|
},
|
|
-- Attack speed increased $w1%.
|
|
icy_talons = {
|
|
id = 194879,
|
|
duration = 6,
|
|
max_stack = 3
|
|
},
|
|
-- Time between attacks increased by $w1%.
|
|
insidious_chill = {
|
|
id = 391568,
|
|
duration = 30,
|
|
max_stack = 4
|
|
},
|
|
-- Casting speed reduced by $w1%.
|
|
-- https://wowhead.com/beta/spell=326868
|
|
lethargy = {
|
|
id = 326868,
|
|
duration = 6,
|
|
max_stack = 1
|
|
},
|
|
-- Leech increased by $s1%$?a389682[, damage taken reduced by $s8%][] and immune to Charm, Fear and Sleep. Undead.
|
|
-- https://wowhead.com/beta/spell=49039
|
|
lichborne = {
|
|
id = 49039,
|
|
duration = 10,
|
|
tick_time = 1,
|
|
max_stack = 1
|
|
},
|
|
-- Death's Advance movement speed increased by $w1%.
|
|
march_of_darkness = {
|
|
id = 391547,
|
|
duration = 3,
|
|
max_stack = 1
|
|
},
|
|
-- Grants the ability to walk across water.
|
|
-- https://wowhead.com/beta/spell=3714
|
|
path_of_frost = {
|
|
id = 3714,
|
|
duration = 600,
|
|
tick_time = 0.5,
|
|
max_stack = 1
|
|
},
|
|
-- Disease damage occurring ${100*(1/(1+$s1/100)-1)}% more quickly.
|
|
plaguebringer = {
|
|
id = 390178,
|
|
duration = 10,
|
|
max_stack = 1
|
|
},
|
|
raise_abomination = { -- TODO: Is a totem.
|
|
id = 288853,
|
|
duration = 25,
|
|
max_stack = 1
|
|
},
|
|
raise_dead = { -- TODO: Is a pet.
|
|
id = 46585,
|
|
duration = 60,
|
|
max_stack = 1
|
|
},
|
|
reanimation = { -- TODO: Summons a zombie (totem?).
|
|
id = 210128,
|
|
duration = 20,
|
|
max_stack = 1
|
|
},
|
|
-- Frost damage taken from the Death Knight's abilities increased by $s1%.
|
|
-- https://wowhead.com/beta/spell=51714
|
|
razorice = {
|
|
id = 51714,
|
|
duration = 20,
|
|
tick_time = 1,
|
|
type = "Magic",
|
|
max_stack = 5
|
|
},
|
|
rotten_touch = {
|
|
id = 390276,
|
|
duration = 10,
|
|
max_stack = 1
|
|
},
|
|
-- Strength increased by $w1%
|
|
-- https://wowhead.com/beta/spell=374585
|
|
rune_mastery = {
|
|
id = 374585,
|
|
duration = 8,
|
|
max_stack = 1
|
|
},
|
|
-- Runic Power generation increased by $s1%.
|
|
-- https://wowhead.com/beta/spell=326918
|
|
rune_of_hysteria = {
|
|
id = 326918,
|
|
duration = 8,
|
|
max_stack = 1
|
|
},
|
|
-- Healing for $s1% of your maximum health every $t sec.
|
|
-- https://wowhead.com/beta/spell=326808
|
|
rune_of_sanguination = {
|
|
id = 326808,
|
|
duration = 8,
|
|
max_stack = 1
|
|
},
|
|
-- Absorbs $w1 magic damage. When an enemy damages the shield, their cast speed is reduced by $w2% for $326868d.
|
|
-- https://wowhead.com/beta/spell=326867
|
|
rune_of_spellwarding = {
|
|
id = 326867,
|
|
duration = 8,
|
|
max_stack = 1
|
|
},
|
|
-- Haste and Movement Speed increased by $s1%.
|
|
-- https://wowhead.com/beta/spell=326984
|
|
rune_of_unending_thirst = {
|
|
id = 326984,
|
|
duration = 10,
|
|
max_stack = 1
|
|
},
|
|
-- Increases your rune regeneration rate for 3 sec.
|
|
runic_corruption = {
|
|
id = 51460,
|
|
duration = function () return 3 * haste end,
|
|
max_stack = 1,
|
|
},
|
|
-- Talent: Afflicted by Soul Reaper, if the target is below $s3% health this effect will explode dealing an additional $343295s1 Shadowfrost damage.
|
|
-- https://wowhead.com/beta/spell=343294
|
|
soul_reaper = {
|
|
id = 343294,
|
|
duration = 5,
|
|
tick_time = 5,
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
-- Silenced.
|
|
strangulate = {
|
|
id = 47476,
|
|
duration = 4,
|
|
max_stack = 1
|
|
},
|
|
-- Your next Death Coil$?s207317[ or Epidemic][] consumes no Runic Power.
|
|
-- https://wowhead.com/beta/spell=81340
|
|
sudden_doom = {
|
|
id = 81340,
|
|
duration = 10,
|
|
max_stack = function () return talent.harbinger_of_doom.enabled and 2 or 1 end,
|
|
},
|
|
-- Runic Power is being fed to the Gargoyle.
|
|
-- https://wowhead.com/beta/spell=61777
|
|
summon_gargoyle = {
|
|
id = 61777,
|
|
duration = 25,
|
|
max_stack = 1
|
|
},
|
|
summon_gargoyle_buff = { -- TODO: Buff on the gargoyle...
|
|
id = 61777,
|
|
duration = 25,
|
|
max_stack = 1,
|
|
},
|
|
-- Talent: Haste increased by $s1%.
|
|
-- https://wowhead.com/beta/spell=207289
|
|
unholy_assault = {
|
|
id = 207289,
|
|
duration = 20,
|
|
type = "Magic",
|
|
max_stack = 1
|
|
},
|
|
-- Talent: Surrounded by a vile swarm of insects, infecting enemies within $115994a1 yds with Virulent Plague and an unholy disease that deals damage to enemies.
|
|
-- https://wowhead.com/beta/spell=115989
|
|
unholy_blight_buff = {
|
|
id = 115989,
|
|
duration = 6,
|
|
tick_time = 1,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
dot = "buff"
|
|
},
|
|
-- Suffering $s1 Shadow damage every $t1 sec.
|
|
-- https://wowhead.com/beta/spell=115994
|
|
unholy_blight = {
|
|
id = 115994,
|
|
duration = 14,
|
|
tick_time = 2,
|
|
max_stack = 4,
|
|
copy = { "unholy_blight_debuff", "unholy_blight_dot" }
|
|
},
|
|
-- Strength increased by $s1%.
|
|
-- https://wowhead.com/beta/spell=53365
|
|
unholy_strength = {
|
|
id = 53365,
|
|
duration = 15,
|
|
max_stack = 1
|
|
},
|
|
-- Suffering $w1 Shadow damage every $t1 sec. Erupts for $191685s1 damage split among all nearby enemies when the infected dies.
|
|
-- https://wowhead.com/beta/spell=191587
|
|
virulent_plague = {
|
|
id = 191587,
|
|
duration = function () return 27 * ( talent.ebon_fever.enabled and 0.5 or 1 ) end,
|
|
tick_time = function() return 3 * ( talent.ebon_fever.enabled and 0.5 or 1 ) end,
|
|
type = "Disease",
|
|
max_stack = 1
|
|
},
|
|
-- The touch of the spirit realm lingers....
|
|
-- https://wowhead.com/beta/spell=97821
|
|
voidtouched = {
|
|
id = 97821,
|
|
duration = 300,
|
|
max_stack = 1
|
|
},
|
|
-- Increases damage taken from $@auracaster by $m1%.
|
|
-- https://wowhead.com/beta/spell=327096
|
|
war = {
|
|
id = 327096,
|
|
duration = 6,
|
|
type = "Magic",
|
|
max_stack = 3
|
|
},
|
|
-- Talent: Movement speed increased by $w1%. Cannot be slowed below $s2% of normal movement speed. Cannot attack.
|
|
-- https://wowhead.com/beta/spell=212552
|
|
wraith_walk = {
|
|
id = 212552,
|
|
duration = 4,
|
|
max_stack = 1
|
|
},
|
|
|
|
-- PvP Talents
|
|
doomburst = {
|
|
id = 356518,
|
|
duration = 3,
|
|
max_stack = 2,
|
|
},
|
|
-- Your next spell with a mana cost will be copied by the Death Knight's runeblade.
|
|
dark_simulacrum = {
|
|
id = 77606,
|
|
duration = 12,
|
|
max_stack = 1,
|
|
},
|
|
-- Your runeblade contains trapped magical energies, ready to be unleashed.
|
|
dark_simulacrum_buff = {
|
|
id = 77616,
|
|
duration = 12,
|
|
max_stack = 1,
|
|
},
|
|
necrotic_wound = {
|
|
id = 223929,
|
|
duration = 18,
|
|
max_stack = 1,
|
|
},
|
|
} )
|
|
|
|
|
|
me:RegisterStateTable( "death_and_decay",
|
|
setmetatable( { onReset = function( self ) end },
|
|
{ __index = function( t, k )
|
|
if k == "ticking" then
|
|
return buff.death_and_decay.up
|
|
|
|
elseif k == "remains" then
|
|
return buff.death_and_decay.remains
|
|
|
|
end
|
|
|
|
return false
|
|
end } ) )
|
|
|
|
me:RegisterStateTable( "defile",
|
|
setmetatable( { onReset = function( self ) end },
|
|
{ __index = function( t, k )
|
|
if k == "ticking" then
|
|
return buff.death_and_decay.up
|
|
|
|
elseif k == "remains" then
|
|
return buff.death_and_decay.remains
|
|
|
|
end
|
|
|
|
return false
|
|
end } ) )
|
|
|
|
me:RegisterStateExpr( "dnd_ticking", function ()
|
|
return death_and_decay.ticking
|
|
end )
|
|
|
|
me:RegisterStateExpr( "dnd_remains", function ()
|
|
return death_and_decay.remains
|
|
end )
|
|
|
|
|
|
me:RegisterStateExpr( "spreading_wounds", function ()
|
|
if talent.infected_claws.enabled and buff.dark_transformation.up then return false end -- Ghoul is dumping wounds for us, don't bother.
|
|
return azerite.festermight.enabled and settings.cycle and settings.festermight_cycle and cooldown.death_and_decay.remains < 9 and active_dot.festering_wound < spell_targets.festering_strike
|
|
end )
|
|
|
|
|
|
me:RegisterStateFunction( "time_to_wounds", function( x )
|
|
if debuff.festering_wound.stack >= x then return 0 end
|
|
return 3600
|
|
--[[ No timeable wounds mechanic in SL?
|
|
if buff.unholy_frenzy.down then return 3600 end
|
|
|
|
local deficit = x - debuff.festering_wound.stack
|
|
local swing, speed = state.swings.mainhand, state.swings.mainhand_speed
|
|
|
|
local last = swing + ( speed * floor( query_time - swing ) / swing )
|
|
local fw = last + ( speed * deficit ) - query_time
|
|
|
|
if fw > buff.unholy_frenzy.remains then return 3600 end
|
|
return fw ]]
|
|
end )
|
|
|
|
me:RegisterHook( "step", function ( time )
|
|
if Hekili.ActiveDebug then Hekili:Debug( "Rune Regeneration Time: 1=%.2f, 2=%.2f, 3=%.2f, 4=%.2f, 5=%.2f, 6=%.2f\n", runes.time_to_1, runes.time_to_2, runes.time_to_3, runes.time_to_4, runes.time_to_5, runes.time_to_6 ) end
|
|
end )
|
|
|
|
local Glyphed = IsSpellKnownOrOverridesKnown
|
|
|
|
me:RegisterPet( "ghoul", 26125, "raise_dead", 3600 )
|
|
|
|
me:RegisterTotem( "gargoyle", 458967 )
|
|
me:RegisterTotem( "dark_arbiter", 298674 )
|
|
|
|
me:RegisterTotem( "abomination", 298667 )
|
|
me:RegisterPet( "apoc_ghoul", 24207, "apocalypse", 15 )
|
|
me:RegisterPet( "army_ghoul", 24207, "army_of_the_dead", 30 )
|
|
me:RegisterPet( "magus_of_the_dead", 148797, "apocalypse", 15 )
|
|
me:RegisterPet( "t31_magus", 148797, "apocalypse", 15 )
|
|
|
|
-- Tier 29
|
|
me:RegisterGear( "tier29", 200405, 200407, 200408, 200409, 200410 )
|
|
me:RegisterAuras( {
|
|
vile_infusion = {
|
|
id = 3945863,
|
|
duration = 5,
|
|
max_stack = 1,
|
|
shared = "pet"
|
|
},
|
|
ghoulish_infusion = {
|
|
id = 394899,
|
|
duration = 8,
|
|
max_stack = 1
|
|
}
|
|
} )
|
|
|
|
-- Tier 30
|
|
me:RegisterGear( "tier30", 202464, 202462, 202461, 202460, 202459 )
|
|
-- 2 pieces (Unholy) : Death Coil and Epidemic damage increased by 10%. Casting Death Coil or Epidemic grants a stack of Master of Death, up to 20. Dark Transformation consumes Master of Death and grants 1% Mastery for each stack for 20 sec.
|
|
me:RegisterAura( "master_of_death", {
|
|
id = 408375,
|
|
duration = 30,
|
|
max_stack = 20
|
|
} )
|
|
me:RegisterAura( "death_dealer", {
|
|
id = 408376,
|
|
duration = 20,
|
|
max_stack = 1
|
|
} )
|
|
-- 4 pieces (Unholy) : Army of the Dead grants 20 stacks of Master of Death. When Death Coil or Epidemic consumes Sudden Doom gain 2 extra stacks of Master of Death and 10% Mastery for 6 sec.
|
|
me:RegisterAura( "lingering_chill", {
|
|
id = 410879,
|
|
duration = 12,
|
|
max_stack = 1
|
|
} )
|
|
|
|
me:RegisterGear( "tier31", 207198, 207199, 207200, 207201, 207203, 217223, 217225, 217221, 217222, 217224 )
|
|
-- (2) Apocalypse summons an additional Magus of the Dead. Your Magus of the Dead Shadow Bolt now fires a volley of Shadow Bolts at up to $s2 nearby enemies.
|
|
-- (4) Each Rune you spend increases the duration of your active Magi by ${$s1/1000}.1 sec and your Magi will now also cast Amplify Damage, increasing the damage you deal by $424949s2% for $424949d.
|
|
|
|
|
|
local any_dnd_set, wound_spender_set = false, false
|
|
|
|
local ExpireRunicCorruption = setfenv( function()
|
|
local debugstr
|
|
|
|
local mod = ( 2 + 0.1 * talent.runic_mastery.rank )
|
|
|
|
if Hekili.ActiveDebug then debugstr = format( "Runic Corruption expired; updating regen from %.2f to %.2f at %.2f + %.2f.", rune.cooldown, rune.cooldown * mod, offset, delay ) end
|
|
rune.cooldown = rune.cooldown * mod
|
|
|
|
for i = 1, 6 do
|
|
local exp = rune.expiry[ i ] - query_time
|
|
|
|
if exp > 0 then
|
|
rune.expiry[ i ] = query_time + exp * mod
|
|
if Hekili.ActiveDebug then debugstr = format( "%s\n - rune %d extended by %.2f [%.2f].", debugstr, i, exp * mod, rune.expiry[ i ] - query_time ) end
|
|
end
|
|
end
|
|
|
|
table.sort( rune.expiry )
|
|
rune.actual = nil
|
|
if Hekili.ActiveDebug then debugstr = format( "%s\n - %d, %.2f %.2f %.2f %.2f %.2f %.2f.", debugstr, rune.current, rune.expiry[1] - query_time, rune.expiry[2] - query_time, rune.expiry[3] - query_time, rune.expiry[4] - query_time, rune.expiry[5] - query_time, rune.expiry[6] - query_time ) end
|
|
forecastResources( "runes" )
|
|
if Hekili.ActiveDebug then debugstr = format( "%s\n - %d, %.2f %.2f %.2f %.2f %.2f %.2f.", debugstr, rune.current, rune.expiry[1] - query_time, rune.expiry[2] - query_time, rune.expiry[3] - query_time, rune.expiry[4] - query_time, rune.expiry[5] - query_time, rune.expiry[6] - query_time ) end
|
|
if debugstr then Hekili:Debug( debugstr ) end
|
|
end, state )
|
|
|
|
|
|
local TriggerERW = setfenv( function()
|
|
gain( 1, "runes" )
|
|
gain( 5, "runic_power" )
|
|
end, state )
|
|
|
|
me:RegisterHook( "reset_precast", function ()
|
|
if buff.runic_corruption.up then
|
|
state:QueueAuraExpiration( "runic_corruption", ExpireRunicCorruption, buff.runic_corruption.expires )
|
|
end
|
|
|
|
if totem.dark_arbiter.remains > 0 then
|
|
summonPet( "dark_arbiter", totem.dark_arbiter.remains )
|
|
summonTotem( "gargoyle", nil, totem.dark_arbiter.remains )
|
|
summonPet( "gargoyle", totem.dark_arbiter.remains )
|
|
elseif totem.gargoyle.remains > 0 then
|
|
summonPet( "gargoyle", totem.gargoyle.remains )
|
|
end
|
|
|
|
local control_expires = action.control_undead.lastCast + 300
|
|
if control_expires > now and pet.up and not pet.ghoul.up then
|
|
summonPet( "controlled_undead", control_expires - now )
|
|
end
|
|
|
|
local apoc_expires = action.apocalypse.lastCast + 15
|
|
if apoc_expires > now then
|
|
summonPet( "apoc_ghoul", apoc_expires - now )
|
|
if talent.magus_of_the_dead.enabled then
|
|
summonPet( "magus_of_the_dead", apoc_expires - now )
|
|
end
|
|
|
|
-- TODO: Accommodate extensions from spending runes.
|
|
if set_bonus.tier31_2pc > 0 then
|
|
summonPet( "t31_magus", apoc_expires - now )
|
|
end
|
|
end
|
|
|
|
local army_expires = action.army_of_the_dead.lastCast + 30
|
|
if army_expires > now then
|
|
summonPet( "army_ghoul", army_expires - now )
|
|
end
|
|
|
|
if talent.all_will_serve.enabled and pet.ghoul.up then
|
|
summonPet( "skeleton" )
|
|
end
|
|
|
|
if query_time - action.unholy_blight.lastCast < 2 and debuff.virulent_plague.down then
|
|
applyDebuff( "target", "virulent_plague" )
|
|
end
|
|
|
|
if query_time - action.outbreak.lastCast < 2 and debuff.virulent_plague.down then
|
|
applyDebuff( "target", "virulent_plague" )
|
|
end
|
|
|
|
if state:IsKnown( "deaths_due" ) then
|
|
class.abilities.any_dnd = class.abilities.deaths_due
|
|
cooldown.any_dnd = cooldown.deaths_due
|
|
setCooldown( "death_and_decay", cooldown.deaths_due.remains )
|
|
elseif state:IsKnown( "defile" ) then
|
|
class.abilities.any_dnd = class.abilities.defile
|
|
cooldown.any_dnd = cooldown.defile
|
|
setCooldown( "death_and_decay", cooldown.defile.remains )
|
|
else
|
|
class.abilities.any_dnd = class.abilities.death_and_decay
|
|
cooldown.any_dnd = cooldown.death_and_decay
|
|
end
|
|
|
|
if not any_dnd_set then
|
|
class.abilityList.any_dnd = "|T136144:0|t |cff00ccff[Any " .. class.abilities.death_and_decay.name .. "]|r"
|
|
any_dnd_set = true
|
|
end
|
|
|
|
if state:IsKnown( "clawing_shadows" ) then
|
|
class.abilities.wound_spender = class.abilities.clawing_shadows
|
|
cooldown.wound_spender = cooldown.clawing_shadows
|
|
else
|
|
class.abilities.wound_spender = class.abilities.scourge_strike
|
|
cooldown.wound_spender = cooldown.scourge_strike
|
|
end
|
|
|
|
if not wound_spender_set then
|
|
class.abilityList.wound_spender = "|T237530:0|t |cff00ccff[Wound Spender]|r"
|
|
wound_spender_set = true
|
|
end
|
|
|
|
if state:IsKnown( "deaths_due" ) and cooldown.deaths_due.remains then setCooldown( "death_and_decay", cooldown.deaths_due.remains )
|
|
elseif talent.defile.enabled and cooldown.defile.remains then setCooldown( "death_and_decay", cooldown.defile.remains ) end
|
|
|
|
-- Reset CDs on any Rune abilities that do not have an actual cooldown.
|
|
for action in pairs( class.abilityList ) do
|
|
local data = class.abilities[ action ]
|
|
if data and data.cooldown == 0 and data.spendType == "runes" then
|
|
setCooldown( action, 0 )
|
|
end
|
|
end
|
|
|
|
if buff.empower_rune_weapon.up then
|
|
local expires = buff.empower_rune_weapon.expires
|
|
|
|
while expires >= query_time do
|
|
state:QueueAuraExpiration( "empower_rune_weapon", TriggerERW, expires )
|
|
expires = expires - 5
|
|
end
|
|
end
|
|
|
|
if Hekili.ActiveDebug then Hekili:Debug( "Pet is %s.", pet.alive and "alive" or "dead" ) end
|
|
end )
|
|
|
|
local mt_runeforges = {
|
|
__index = function( t, k )
|
|
return false
|
|
end,
|
|
}
|
|
|
|
-- Not actively supporting this since we just respond to the player precasting AOTD as they see fit.
|
|
me:RegisterStateTable( "death_knight", setmetatable( {
|
|
disable_aotd = false,
|
|
delay = 6,
|
|
runeforge = setmetatable( {}, mt_runeforges )
|
|
}, {
|
|
__index = function( t, k )
|
|
if k == "fwounded_targets" then return state.active_dot.festering_wound end
|
|
if k == "disable_iqd_execute" then return state.settings.disable_iqd_execute and 1 or 0 end
|
|
return 0
|
|
end,
|
|
} ) )
|
|
|
|
|
|
local runeforges = {
|
|
[6243] = "hysteria",
|
|
[3370] = "razorice",
|
|
[6241] = "sanguination",
|
|
[6242] = "spellwarding",
|
|
[6245] = "apocalypse",
|
|
[3368] = "fallen_crusader",
|
|
[3847] = "stoneskin_gargoyle",
|
|
[6244] = "unending_thirst"
|
|
}
|
|
|
|
local function ResetRuneforges()
|
|
table.wipe( state.death_knight.runeforge )
|
|
end
|
|
|
|
local function UpdateRuneforge( slot, item )
|
|
if ( slot == 16 or slot == 17 ) then
|
|
local link = GetInventoryItemLink( "player", slot )
|
|
local enchant = link:match( "item:%d+:(%d+)" )
|
|
|
|
if enchant then
|
|
enchant = tonumber( enchant )
|
|
local name = runeforges[ enchant ]
|
|
|
|
if name then
|
|
state.death_knight.runeforge[ name ] = true
|
|
|
|
if name == "razorice" and slot == 16 then
|
|
state.death_knight.runeforge.razorice_mh = true
|
|
elseif name == "razorice" and slot == 17 then
|
|
state.death_knight.runeforge.razorice_oh = true
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
Hekili:RegisterGearHook( ResetRuneforges, UpdateRuneforge )
|
|
|
|
|
|
-- Abilities
|
|
me:RegisterAbilities( {
|
|
-- Talent: Surrounds you in an Anti-Magic Shell for $d, absorbing up to $<shield> magic ...
|
|
antimagic_shell = {
|
|
id = 48707,
|
|
cast = 0,
|
|
cooldown = 60,
|
|
gcd = "off",
|
|
|
|
talent = "antimagic_shell",
|
|
startsCombat = false,
|
|
|
|
toggle = function()
|
|
if settings.dps_shell then return end
|
|
return "defensives"
|
|
end,
|
|
|
|
handler = function ()
|
|
applyBuff( "antimagic_shell" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Places an Anti-Magic Zone that reduces spell damage taken by party or raid me...
|
|
antimagic_zone = {
|
|
id = 51052,
|
|
cast = 0,
|
|
cooldown = 45,
|
|
gcd = "spell",
|
|
|
|
talent = "antimagic_zone",
|
|
startsCombat = false,
|
|
|
|
toggle = "cooldowns",
|
|
|
|
handler = function ()
|
|
applyBuff( "antimagic_zone" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Bring doom upon the enemy, dealing $sw1 Shadow damage and bursting up to $s2 ...
|
|
apocalypse = {
|
|
id = 275699,
|
|
cast = 0,
|
|
cooldown = function () return ( essence.vision_of_perfection.enabled and 0.87 or 1 ) * ( ( pvptalent.necromancers_bargain.enabled and 75 or 90 ) - ( level > 48 and 15 or 0 ) ) end,
|
|
gcd = "spell",
|
|
|
|
talent = "apocalypse",
|
|
startsCombat = true,
|
|
|
|
toggle = function () return not talent.army_of_the_damned.enabled and "cooldowns" or nil end,
|
|
|
|
debuff = "festering_wound",
|
|
|
|
handler = function ()
|
|
if pvptalent.necrotic_wounds.enabled and debuff.festering_wound.up and debuff.necrotic_wound.down then
|
|
applyDebuff( "target", "necrotic_wound" )
|
|
else
|
|
summonPet( "apoc_ghoul", 15 )
|
|
end
|
|
|
|
if debuff.festering_wound.stack > 4 then
|
|
applyDebuff( "target", "festering_wound", debuff.festering_wound.remains, debuff.festering_wound.remains - 4 )
|
|
apply_festermight( 4 )
|
|
if conduit.convocation_of_the_dead.enabled and cooldown.apocalypse.remains > 0 then
|
|
reduceCooldown( "apocalypse", 4 * conduit.convocation_of_the_dead.mod * 0.1 )
|
|
end
|
|
gain( 12, "runic_power" )
|
|
else
|
|
gain( 3 * debuff.festering_wound.stack, "runic_power" )
|
|
apply_festermight( debuff.festering_wound.stack )
|
|
if conduit.convocation_of_the_dead.enabled and cooldown.apocalypse.remains > 0 then
|
|
reduceCooldown( "apocalypse", debuff.festering_wound.stack * conduit.convocation_of_the_dead.mod * 0.1 )
|
|
end
|
|
removeDebuff( "target", "festering_wound" )
|
|
end
|
|
|
|
if level > 57 then gain( 2, "runes" ) end
|
|
if set_bonus.tier29_2pc > 0 then applyBuff( "vile_infusion" ) end
|
|
if pvptalent.necromancers_bargain.enabled then applyDebuff( "target", "crypt_fever" ) end
|
|
end,
|
|
},
|
|
|
|
-- Talent: Summons a legion of ghouls who swarms your enemies, fighting anything they ca...
|
|
army_of_the_dead = {
|
|
id = function () return pvptalent.raise_abomination.enabled and 288853 or 42650 end,
|
|
cast = 0,
|
|
cooldown = function () return pvptalent.raise_abomination.enabled and 120 or 480 end,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "army_of_the_dead",
|
|
startsCombat = false,
|
|
texture = function () return pvptalent.raise_abomination.enabled and 298667 or 237511 end,
|
|
|
|
toggle = "cooldowns",
|
|
|
|
handler = function ()
|
|
if set_bonus.tier30_4pc > 0 then addStack( "master_of_death", nil, 20 ) end
|
|
|
|
if pvptalent.raise_abomination.enabled then
|
|
summonPet( "abomination" )
|
|
else
|
|
applyBuff( "army_of_the_dead", 4 )
|
|
end
|
|
end,
|
|
|
|
copy = { 288853, 42650, "army_of_the_dead", "raise_abomination" }
|
|
},
|
|
|
|
-- Talent: Lifts the enemy target off the ground, crushing their throat with dark energy...
|
|
asphyxiate = {
|
|
id = 221562,
|
|
cast = 0,
|
|
cooldown = 45,
|
|
gcd = "spell",
|
|
|
|
talent = "asphyxiate",
|
|
startsCombat = true,
|
|
|
|
toggle = "interrupts",
|
|
|
|
debuff = "casting",
|
|
readyTime = state.timeToInterrupt,
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "asphyxiate" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Targets in a cone in front of you are blinded, causing them to wander disorie...
|
|
blinding_sleet = {
|
|
id = 207167,
|
|
cast = 0,
|
|
cooldown = 60,
|
|
gcd = "spell",
|
|
|
|
talent = "blinding_sleet",
|
|
startsCombat = true,
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "blinding_sleet" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Shackles the target $?a373930[and $373930s1 nearby enemy ][]with frozen chain...
|
|
chains_of_ice = {
|
|
id = 45524,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "chains_of_ice",
|
|
startsCombat = true,
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "chains_of_ice" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Deals $s2 Shadow damage and causes 1 Festering Wound to burst.
|
|
clawing_shadows = {
|
|
id = 207311,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "clawing_shadows",
|
|
startsCombat = true,
|
|
|
|
aura = "festering_wound",
|
|
cycle_to = true,
|
|
|
|
handler = function ()
|
|
if debuff.festering_wound.up then
|
|
if debuff.festering_wound.stack > 1 then
|
|
applyDebuff( "target", "festering_wound", debuff.festering_wound.remains, debuff.festering_wound.stack - 1 )
|
|
else removeDebuff( "target", "festering_wound" ) end
|
|
|
|
if conduit.convocation_of_the_dead.enabled and cooldown.apocalypse.remains > 0 then
|
|
reduceCooldown( "apocalypse", conduit.convocation_of_the_dead.mod * 0.1 )
|
|
end
|
|
|
|
apply_festermight( 1 )
|
|
if set_bonus.tier29_2pc > 0 then applyBuff( "vile_infusion" ) end
|
|
end
|
|
gain( 3, "runic_power" )
|
|
end,
|
|
|
|
bind = { "scourge_strike", "wound_spender" }
|
|
},
|
|
|
|
-- Talent: Dominates the target undead creature up to level $s1, forcing it to do your b...
|
|
control_undead = {
|
|
id = 111673,
|
|
cast = 1.5,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "control_undead",
|
|
startsCombat = false,
|
|
|
|
usable = function () return target.is_undead and target.level <= level + 1 end,
|
|
handler = function ()
|
|
dismissPet( "ghoul" )
|
|
summonPet( "controlled_undead", 300 )
|
|
end,
|
|
},
|
|
|
|
-- Command the target to attack you.
|
|
dark_command = {
|
|
id = 56222,
|
|
cast = 0,
|
|
cooldown = 8,
|
|
gcd = "off",
|
|
|
|
startsCombat = true,
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "dark_command" )
|
|
end,
|
|
},
|
|
|
|
|
|
dark_simulacrum = {
|
|
id = 77606,
|
|
cast = 0,
|
|
cooldown = 20,
|
|
gcd = "off",
|
|
|
|
pvptalent = "dark_simulacrum",
|
|
startsCombat = false,
|
|
texture = 135888,
|
|
|
|
usable = function ()
|
|
if not target.is_player then return false, "target is not a player" end
|
|
return true
|
|
end,
|
|
handler = function ()
|
|
applyDebuff( "target", "dark_simulacrum" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Your $?s207313[abomination]?s58640[geist][ghoul] deals $344955s1 Shadow damag...
|
|
dark_transformation = {
|
|
id = 63560,
|
|
cast = 0,
|
|
cooldown = 60,
|
|
gcd = "spell",
|
|
|
|
talent = "dark_transformation",
|
|
startsCombat = false,
|
|
|
|
usable = function ()
|
|
if Hekili.ActiveDebug then Hekili:Debug( "Pet is %s.", pet.alive and "alive" or "dead" ) end
|
|
return pet.alive, "requires a living ghoul"
|
|
end,
|
|
handler = function ()
|
|
applyBuff( "dark_transformation" )
|
|
|
|
if buff.master_of_death.up then
|
|
applyBuff( "death_dealer" )
|
|
end
|
|
|
|
if azerite.helchains.enabled then applyBuff( "helchains" ) end
|
|
if talent.unholy_pact.enabled then applyBuff( "unholy_pact" ) end
|
|
|
|
if legendary.frenzied_monstrosity.enabled then
|
|
applyBuff( "frenzied_monstrosity" )
|
|
applyBuff( "frenzied_monstrosity_pet" )
|
|
end
|
|
|
|
if talent.commander_of_the_dead.enabled then
|
|
applyBuff( "commander_of_the_dead" ) -- 10.0.7
|
|
applyBuff( "commander_of_the_dead_window" ) -- 10.0.5
|
|
end
|
|
end,
|
|
|
|
auras = {
|
|
frenzied_monstrosity = {
|
|
id = 334895,
|
|
duration = 15,
|
|
max_stack = 1,
|
|
},
|
|
frenzied_monstrosity_pet = {
|
|
id = 334896,
|
|
duration = 15,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
|
|
-- Corrupts the targeted ground, causing ${$52212m1*11} Shadow damage over $d to...
|
|
death_and_decay = {
|
|
id = 43265,
|
|
noOverride = 324128,
|
|
cast = 0,
|
|
charges = function() if talent.deaths_echo.enabled then return 2 end end,
|
|
cooldown = 30,
|
|
recharge = function() if talent.deaths_echo.enabled then return 30 end end,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
startsCombat = true,
|
|
notalent = "defile",
|
|
|
|
handler = function ()
|
|
applyBuff( "death_and_decay" )
|
|
if talent.grip_of_the_dead.enabled then applyDebuff( "target", "grip_of_the_dead" ) end
|
|
end,
|
|
|
|
bind = { "defile", "any_dnd", "deaths_due" },
|
|
|
|
copy = "any_dnd"
|
|
},
|
|
|
|
-- Fires a blast of unholy energy at the target$?a377580[ and $377580s2 addition...
|
|
death_coil = {
|
|
id = 47541,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = function ()
|
|
if buff.sudden_doom.up then return 0 end
|
|
return 30 - ( legendary.deadliest_coil.enabled and 10 or 0 ) end,
|
|
spendType = "runic_power",
|
|
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
if set_bonus.tier30_2pc > 0 then addStack( "master_of_death" ) end
|
|
|
|
if pvptalent.doomburst.enabled and buff.sudden_doom.up and debuff.festering_wound.up then
|
|
if debuff.festering_wound.stack > 2 then
|
|
applyDebuff( "target", "festering_wound", debuff.festering_wound.remains, debuff.festering_wound.stack - 2 )
|
|
applyDebuff( "target", "doomburst", debuff.doomburst.up and debuff.doomburst.remains or nil, 2 )
|
|
else
|
|
removeDebuff( "target", "festering_wound" )
|
|
applyDebuff( "target", "doomburst", debuff.doomburst.up and debuff.doomburst.remains or nil, debuff.doomburst.stack + 1 )
|
|
end
|
|
if set_bonus.tier29_2pc > 0 then applyBuff( "vile_infusion" ) end
|
|
end
|
|
|
|
if buff.sudden_doom.up then
|
|
removeStack( "sudden_doom" )
|
|
if set_bonus.tier30_4pc > 0 then
|
|
addStack( "master_of_death", nil, 2 )
|
|
applyBuff( "doom_dealer" )
|
|
end
|
|
if buff.master_of_death.up then
|
|
removeBuff( "master_of_death" )
|
|
applyBuff( "death_dealer" )
|
|
end
|
|
if talent.rotten_touch.enabled then applyDebuff( "target", "rotten_touch" ) end
|
|
if talent.death_rot.enabled then applyDebuff( "target", "death_rot", nil, 2 ) end
|
|
elseif talent.death_rot.enabled then applyDebuff( "target", "death_rot" ) end
|
|
if cooldown.dark_transformation.remains > 0 then setCooldown( "dark_transformation", max( 0, cooldown.dark_transformation.remains - 1 ) ) end
|
|
if legendary.deadliest_coil.enabled and buff.dark_transformation.up then buff.dark_transformation.expires = buff.dark_transformation.expires + 2 end
|
|
if legendary.deaths_certainty.enabled then
|
|
local spell = action.deaths_due.known and "deaths_due" or ( talent.defile.enabled and "defile" or "death_and_decay" )
|
|
if cooldown[ spell ].remains > 0 then reduceCooldown( spell, 2 ) end
|
|
end
|
|
end,
|
|
},
|
|
|
|
-- Opens a gate which you can use to return to Ebon Hold. Using a Death Gate ...
|
|
death_gate = {
|
|
id = 50977,
|
|
cast = 4,
|
|
cooldown = 60,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
end,
|
|
},
|
|
|
|
-- Harnesses the energy that surrounds and binds all matter, drawing the target ...
|
|
death_grip = {
|
|
id = 49576,
|
|
cast = 0,
|
|
charges = function() if talent.deaths_echo.enabled then return 2 end end,
|
|
cooldown = 25,
|
|
recharge = function() if talent.deaths_echo.enabled then return 25 end end,
|
|
|
|
gcd = "off",
|
|
icd = 0.5,
|
|
|
|
startsCombat = true,
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "death_grip" )
|
|
setDistance( 5 )
|
|
if conduit.unending_grip.enabled then applyDebuff( "target", "unending_grip" ) end
|
|
end,
|
|
},
|
|
|
|
-- Talent: Create a death pact that heals you for $s1% of your maximum health, but absor...
|
|
death_pact = {
|
|
id = 48743,
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
talent = "death_pact",
|
|
startsCombat = false,
|
|
|
|
toggle = "defensives",
|
|
|
|
handler = function ()
|
|
gain( health.max * 0.5, "health" )
|
|
applyDebuff( "player", "death_pact" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Focuses dark power into a strike$?s137006[ with both weapons, that deals a to...
|
|
death_strike = {
|
|
id = 49998,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = function()
|
|
if buff.dark_succor.up then return 0 end
|
|
return ( level > 27 and 35 or 45 )
|
|
end,
|
|
spendType = "runic_power",
|
|
|
|
talent = "death_strike",
|
|
startsCombat = true,
|
|
|
|
handler = function ()
|
|
removeBuff( "dark_succor" )
|
|
|
|
if legendary.deaths_certainty.enabled then
|
|
local spell = conduit.night_fae and "deaths_due" or ( talent.defile.enabled and "defile" or "death_and_decay" )
|
|
if cooldown[ spell ].remains > 0 then reduceCooldown( spell, 2 ) end
|
|
end
|
|
end,
|
|
},
|
|
|
|
-- For $d, your movement speed is increased by $s1%, you cannot be slowed below ...
|
|
deaths_advance = {
|
|
id = 48265,
|
|
cast = 0,
|
|
charges = function() if talent.deaths_echo.enabled then return 2 end end,
|
|
cooldown = 45,
|
|
recharge = function() if talent.deaths_echo.enabled then return 45 end end,
|
|
gcd = "off",
|
|
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
applyBuff( "deaths_advance" )
|
|
if conduit.fleeting_wind.enabled then applyBuff( "fleeting_wind" ) end
|
|
end,
|
|
},
|
|
|
|
-- Talent: Defile the targeted ground, dealing ${($156000s1*($d+1)/$t3)} Shadow damage t...
|
|
defile = {
|
|
id = 152280,
|
|
cast = 0,
|
|
charges = function() if talent.deaths_echo.enabled then return 2 end end,
|
|
cooldown = 20,
|
|
recharge = function() if talent.deaths_echo.enabled then return 20 end end,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "defile",
|
|
startsCombat = true,
|
|
|
|
handler = function ()
|
|
applyBuff( "death_and_decay" )
|
|
applyDebuff( "target", "defile" )
|
|
applyBuff( "defile_buff" )
|
|
end,
|
|
|
|
bind = { "defile", "any_dnd" },
|
|
},
|
|
|
|
-- Talent: Empower your rune weapon, gaining $s3% Haste and generating $s1 $LRune:Runes;...
|
|
empower_rune_weapon = {
|
|
id = 47568,
|
|
cast = 0,
|
|
charges = function()
|
|
if spec.frost and talent.empower_rune_weapon.enabled then return 2 end
|
|
end,
|
|
cooldown = 120,
|
|
recharge = function()
|
|
if spec.frost and talent.empower_rune_weapon.enabled then return ( level > 55 and 105 or 120 ) end
|
|
end,
|
|
gcd = "off",
|
|
|
|
talent = "empower_rune_weapon",
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
applyBuff( "empower_rune_weapon" )
|
|
gain( 1, "runes" )
|
|
gain( 5, "runic_power" )
|
|
state:QueueAuraExpiration( "empower_rune_weapon", TriggerERW, query_time + 5 )
|
|
state:QueueAuraExpiration( "empower_rune_weapon", TriggerERW, query_time + 10 )
|
|
state:QueueAuraExpiration( "empower_rune_weapon", TriggerERW, query_time + 15 )
|
|
state:QueueAuraExpiration( "empower_rune_weapon", TriggerERW, query_time + 20 )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Causes each of your Virulent Plagues to flare up, dealing $212739s1 Shadow da...
|
|
epidemic = {
|
|
id = 207317,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = function () return buff.sudden_doom.up and 0 or 30 end,
|
|
spendType = "runic_power",
|
|
|
|
talent = "epidemic",
|
|
startsCombat = false,
|
|
|
|
targets = {
|
|
count = function () return active_dot.virulent_plague end,
|
|
},
|
|
|
|
usable = function () return active_dot.virulent_plague > 0, "requires active virulent_plague dots" end,
|
|
handler = function ()
|
|
if set_bonus.tier30_2pc > 0 then addStack( "master_of_death" ) end
|
|
|
|
if buff.sudden_doom.up then
|
|
removeStack( "sudden_doom" )
|
|
if set_bonus.tier30_4pc > 0 then
|
|
addStack( "master_of_death", nil, 2 )
|
|
applyBuff( "doom_dealer" )
|
|
end
|
|
if talent.death_rot.enabled then applyDebuff( "target", "death_rot", nil, 2 ) end
|
|
elseif talent.death_rot.enabled then applyDebuff( "target", "death_rot" ) end
|
|
end,
|
|
},
|
|
|
|
-- Talent: Strikes for $s1 Physical damage and infects the target with $m2-$M2 Festering...
|
|
festering_strike = {
|
|
id = 85948,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 2,
|
|
spendType = "runes",
|
|
|
|
talent = "festering_strike",
|
|
startsCombat = true,
|
|
|
|
aura = "festering_wound",
|
|
cycle = "festering_wound",
|
|
|
|
min_ttd = function () return min( cooldown.death_and_decay.remains + 3, 8 ) end, -- don't try to cycle onto targets that will die too fast to get consumed.
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "festering_wound", nil, debuff.festering_wound.stack + 2 )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Your blood freezes, granting immunity to Stun effects and reducing all damage...
|
|
icebound_fortitude = {
|
|
id = 48792,
|
|
cast = 0,
|
|
cooldown = function () return 180 - ( azerite.cold_hearted.enabled and 15 or 0 ) + ( conduit.chilled_resilience.mod * 0.001 ) end,
|
|
gcd = "off",
|
|
|
|
talent = "icebound_fortitude",
|
|
startsCombat = false,
|
|
|
|
toggle = "defensives",
|
|
|
|
handler = function ()
|
|
applyBuff( "icebound_fortitude" )
|
|
if azerite.cold_hearted.enabled then applyBuff( "cold_hearted" ) end
|
|
end,
|
|
},
|
|
|
|
-- Draw upon unholy energy to become Undead for $d, increasing Leech by $s1%$?a3...
|
|
lichborne = {
|
|
id = 49039,
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "off",
|
|
|
|
startsCombat = false,
|
|
|
|
toggle = "defensives",
|
|
|
|
handler = function ()
|
|
applyBuff( "lichborne" )
|
|
if conduit.hardened_bones.enabled then applyBuff( "hardened_bones" ) end
|
|
end,
|
|
},
|
|
|
|
-- Talent: Smash the target's mind with cold, interrupting spellcasting and preventing a...
|
|
mind_freeze = {
|
|
id = 47528,
|
|
cast = 0,
|
|
cooldown = 15,
|
|
gcd = "off",
|
|
|
|
talent = "mind_freeze",
|
|
startsCombat = true,
|
|
|
|
toggle = "interrupts",
|
|
|
|
debuff = "casting",
|
|
readyTime = state.timeToInterrupt,
|
|
|
|
handler = function ()
|
|
if conduit.spirit_drain.enabled then gain( conduit.spirit_drain.mod * 0.1, "runic_power" ) end
|
|
interrupt()
|
|
end,
|
|
},
|
|
|
|
-- Talent: Deals $s1 Shadow damage to the target and infects all nearby enemies with Vir...
|
|
outbreak = {
|
|
id = 77575,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "outbreak",
|
|
startsCombat = true,
|
|
|
|
cycle = "virulent_plague",
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "virulent_plague" )
|
|
active_dot.virulent_plague = active_enemies
|
|
|
|
if legendary.superstrain.enabled or talent.superstrain.enabled then
|
|
applyDebuff( "target", "blood_plague_superstrain" )
|
|
applyDebuff( "target", "frost_fever_superstrain" )
|
|
end
|
|
end,
|
|
},
|
|
|
|
|
|
-- Activates a freezing aura for $d that creates ice beneath your feet, allowing...
|
|
path_of_frost = {
|
|
id = 3714,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
applyBuff( "path_of_frost" )
|
|
end,
|
|
},
|
|
|
|
|
|
raise_ally = {
|
|
id = 61999,
|
|
cast = 0,
|
|
cooldown = 600,
|
|
gcd = "spell",
|
|
|
|
spend = 30,
|
|
spendType = "runic_power",
|
|
|
|
startsCombat = false,
|
|
texture = 136143,
|
|
|
|
toggle = "cooldowns",
|
|
|
|
handler = function ()
|
|
end,
|
|
},
|
|
|
|
|
|
-- Talent: Raises $?s207313[an abomination]?s58640[a geist][a ghoul] to fight by your si...
|
|
raise_dead = {
|
|
id = function() return IsActiveSpell( 46584 ) and 46584 or 46585 end,
|
|
cast = 0,
|
|
cooldown = function() return IsActiveSpell( 46584 ) and 30 or 120 end,
|
|
gcd = "spell",
|
|
|
|
talent = "raise_dead",
|
|
startsCombat = false,
|
|
texture = 1100170,
|
|
|
|
essential = true, -- new flag, will allow recasting even in precombat APL.
|
|
nomounted = true,
|
|
|
|
usable = function () return not pet.alive end,
|
|
handler = function ()
|
|
summonPet( "ghoul", talent.raise_dead_2.enabled and 3600 or 30 )
|
|
if talent.all_will_serve.enabled then summonPet( "skeleton", talent.raise_dead_2.enabled and 3600 or 30 ) end
|
|
end,
|
|
|
|
copy = { 46584, 46585 }
|
|
},
|
|
|
|
|
|
reanimation = {
|
|
id = 210128,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
pvptalent = "reanimation",
|
|
startsCombat = false,
|
|
texture = 1390947,
|
|
|
|
handler = function ()
|
|
end,
|
|
},
|
|
|
|
|
|
-- Talent: Sacrifice your ghoul to deal $327611s1 Shadow damage to all nearby enemies an...
|
|
sacrificial_pact = {
|
|
id = 327574,
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "spell",
|
|
|
|
spend = 20,
|
|
spendType = "runic_power",
|
|
|
|
talent = "sacrificial_pact",
|
|
startsCombat = false,
|
|
|
|
toggle = "cooldowns",
|
|
|
|
usable = function () return pet.alive, "requires an undead pet" end,
|
|
|
|
handler = function ()
|
|
dismissPet( "ghoul" )
|
|
gain( 0.25 * health.max, "health" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: An unholy strike that deals $s2 Physical damage and $70890sw2 Shadow damage, ...
|
|
scourge_strike = {
|
|
id = 55090,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "scourge_strike",
|
|
startsCombat = true,
|
|
|
|
notalent = "clawing_shadows",
|
|
aura = "festering_wound",
|
|
cycle_to = true,
|
|
|
|
handler = function ()
|
|
if debuff.festering_wound.up then
|
|
if debuff.festering_wound.stack > 1 then
|
|
applyDebuff( "target", "festering_wound", debuff.festering_wound.remains, debuff.festering_wound.stack - 1 )
|
|
else
|
|
removeDebuff( "target", "festering_wound" )
|
|
end
|
|
apply_festermight( 1 )
|
|
if set_bonus.tier29_2pc > 0 then applyBuff( "vile_infusion" ) end
|
|
end
|
|
|
|
if talent.plaguebringer.enabled then
|
|
removeBuff( "plaguebringer" )
|
|
applyBuff( "plaguebringer" )
|
|
end
|
|
|
|
if conduit.lingering_plague.enabled and debuff.virulent_plague.up then
|
|
debuff.virulent_plague.expires = debuff.virulent_plague.expires + ( conduit.lingering_plague.mod * 0.001 )
|
|
end
|
|
end,
|
|
|
|
bind = { "clawing_shadows", "wound_spender" }
|
|
},
|
|
|
|
|
|
-- Talent: Strike an enemy for $s1 Shadowfrost damage and afflict the enemy with Soul Re...
|
|
soul_reaper = {
|
|
id = 343294,
|
|
cast = 0,
|
|
cooldown = 6,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "soul_reaper",
|
|
startsCombat = true,
|
|
|
|
aura = "soul_reaper",
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "soul_reaper" )
|
|
end,
|
|
},
|
|
|
|
|
|
strangulate = {
|
|
id = 47476,
|
|
cast = 0,
|
|
cooldown = 60,
|
|
gcd = "off",
|
|
|
|
spend = 0,
|
|
spendType = "runes",
|
|
|
|
pvptalent = "strangulate",
|
|
startsCombat = false,
|
|
texture = 136214,
|
|
|
|
toggle = "interrupts",
|
|
|
|
debuff = "casting",
|
|
readyTime = state.timeToInterrupt,
|
|
|
|
handler = function ()
|
|
interrupt()
|
|
applyDebuff( "target", "strangulate" )
|
|
end,
|
|
},
|
|
|
|
-- Talent: Summon a Gargoyle into the area to bombard the target for $61777d. The Gar...
|
|
summon_gargoyle = {
|
|
id = function() return IsSpellKnownOrOverridesKnown( 207349 ) and 207349 or 49206 end,
|
|
cast = 0,
|
|
cooldown = 180,
|
|
gcd = "off",
|
|
|
|
talent = "summon_gargoyle",
|
|
startsCombat = true,
|
|
|
|
toggle = "cooldowns",
|
|
|
|
handler = function ()
|
|
summonPet( "gargoyle", 25 )
|
|
gain( 50, "runic_power" )
|
|
end,
|
|
|
|
copy = { 49206, 207349 }
|
|
},
|
|
|
|
-- Talent: Strike your target dealing $s2 Shadow damage, infecting the target with $s3 F...
|
|
unholy_assault = {
|
|
id = 207289,
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "spell",
|
|
|
|
talent = "unholy_assault",
|
|
startsCombat = true,
|
|
|
|
toggle = "cooldowns",
|
|
|
|
cycle = "festering_wound",
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "festering_wound", nil, min( 6, debuff.festering_wound.stack + 4 ) )
|
|
applyBuff( "unholy_frenzy" )
|
|
stat.haste = stat.haste + 0.1
|
|
end,
|
|
},
|
|
|
|
-- Talent: Surrounds yourself with a vile swarm of insects for $d, stinging all nearby e...
|
|
unholy_blight = {
|
|
id = 115989,
|
|
cast = 0,
|
|
cooldown = 45,
|
|
gcd = "spell",
|
|
|
|
spend = 1,
|
|
spendType = "runes",
|
|
|
|
talent = "unholy_blight",
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
applyBuff( "unholy_blight_buff" )
|
|
applyDebuff( "target", "unholy_blight" )
|
|
applyDebuff( "target", "virulent_plague" )
|
|
active_dot.virulent_plague = active_enemies
|
|
|
|
if talent.superstrain.enabled then
|
|
applyDebuff( "target", "blood_plague_superstrain" )
|
|
applyDebuff( "target", "frost_fever_superstrain" )
|
|
end
|
|
end,
|
|
},
|
|
|
|
-- Talent: Inflict disease upon your enemies spreading Festering Wounds equal to the amount currently active on your target to $s1 nearby enemies.
|
|
vile_contagion = {
|
|
id = 390279,
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "spell",
|
|
|
|
spend = 30,
|
|
spendType = "runic_power",
|
|
|
|
talent = "vile_contagion",
|
|
startsCombat = false,
|
|
|
|
toggle = "cooldowns",
|
|
|
|
debuff = "festering_wound",
|
|
|
|
handler = function ()
|
|
if debuff.festering_wound.up then
|
|
active_dot.festering_wound = min( active_enemies, active_dot.festering_wound + 7 )
|
|
end
|
|
end,
|
|
},
|
|
|
|
-- Talent: Embrace the power of the Shadowlands, removing all root effects and increasing your movement speed by $s1% for $d. Taking any action cancels the effect. While active, your movement speed cannot be reduced below $m2%.
|
|
wraith_walk = {
|
|
id = 212552,
|
|
cast = 4,
|
|
fixedCast = true,
|
|
channeled = true,
|
|
cooldown = 60,
|
|
gcd = "spell",
|
|
|
|
talent = "wraith_walk",
|
|
startsCombat = false,
|
|
|
|
start = function ()
|
|
applyBuff( "wraith_walk" )
|
|
end,
|
|
},
|
|
|
|
-- Stub.
|
|
any_dnd = {
|
|
name = function () return "|T136144:0|t |cff00ccff[Any " .. ( class.abilities.death_and_decay and class.abilities.death_and_decay.name or "Death and Decay" ) .. "]|r" end,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
copy = "any_dnd_stub"
|
|
},
|
|
|
|
wound_spender = {
|
|
name = "|T237530:0|t |cff00ccff[Wound Spender]|r",
|
|
cast = 0,
|
|
cooldown = 0,
|
|
copy = "wound_spender_stub"
|
|
}
|
|
} )
|
|
|
|
|
|
me:RegisterRanges( "festering_strike", "mind_freeze", "death_coil" )
|
|
|
|
me:RegisterOptions( {
|
|
enabled = true,
|
|
|
|
aoe = 2,
|
|
|
|
nameplates = true,
|
|
nameplateRange = 10,
|
|
rangeFilter = false,
|
|
|
|
damage = true,
|
|
damageExpiration = 8,
|
|
|
|
cycle = true,
|
|
cycleDebuff = "festering_wound",
|
|
|
|
potion = "potion_of_spectral_strength",
|
|
|
|
package = "Unholy",
|
|
} )
|
|
|
|
|
|
me:RegisterSetting( "dps_shell", false, {
|
|
name = strformat( "Use %s Offensively", Hekili:GetSpellLinkWithTexture( me.abilities.antimagic_shell.id ) ),
|
|
desc = strformat( "If checked, %s will not be on the Defensives toggle by default.", Hekili:GetSpellLinkWithTexture( me.abilities.antimagic_shell.id ) ),
|
|
type = "toggle",
|
|
width = "full",
|
|
} )
|
|
|
|
me:RegisterSetting( "ob_macro", nil, {
|
|
name = strformat( "%s Macro", Hekili:GetSpellLinkWithTexture( me.abilities.outbreak.id ) ),
|
|
desc = strformat( "Using a mouseover macro makes it easier to apply %s and %s to other enemies without retargeting.",
|
|
Hekili:GetSpellLinkWithTexture( me.abilities.outbreak.id ), Hekili:GetSpellLinkWithTexture( me.auras.virulent_plague.id ) ),
|
|
type = "input",
|
|
width = "full",
|
|
multiline = true,
|
|
get = function () return "#showtooltip\n/use [@mouseover,harm,nodead][] " .. class.abilities.outbreak.name end,
|
|
set = function () end,
|
|
} )
|
|
|
|
|
|
me:RegisterPack( "Unholy", 20240508, [[Hekili:S3t)VTTrY(3IrrvKsILfPSCClSeqU86D4kAlkoNR)OPOLOS4luI6rszxhyO)2FZU8J9doZYL6JMChcWHEoIlND25RDMzND4Do39X7UDUFwWD)M7a3lhmAW19DCDCCV(UBZEEtWD3UXF2N8Fa(J1(RG)7)E9Y4ONz)8ZrX(ZzVEA82KzWJwMLTj9hV4IhcZwU9((ZIxDrA4QTr(zHXRNL4ViJ9VNDXD3E)2WOS)567UhFUVcG5MGzWppYfaB485b5JniD2D3Yg75dgD(GR)XDtVnC1h2nD7ggy6V7N39Z5pD45oV7T7Mo4YZDgaJ6xdxhNOo4u1rZg1)ki951Z2n9ja)3nfqvPH4CU7vWq(4tb(FA30)(Zj(WYAP6aCed4N2eopyv4mLb4CfoQuoianCp356Dt7SBQ71nG28bp4YFumx7M6NUB6IWOOa4LEAzW6DtZwgKeapG9FwhVBAY21kGaW63XWA2WEvkB8HW)1)pd63xzuoSrrI1WZhbp)Vh(Naescx)PGSDtF0pj0)(iTPZ5sTbQ(4bm487(zZagGZG(Uil7b)qo3smkN(VdBCVdaO24gTBAK)21ZwknSRo39YAmF2cvAmJo3LnLVF(8Dt)Jq)OkSxzmCI0)MJhILhqnFWpCT0aV88HdQpqaZIFGXexKeVQgcCzofUqGilxildyOBtbq83dsZcaW8a8Ea4(e8tHaZFtsWg)eU2haw2l((nXZ8JEEtAGcS5Ir5k2Lesc8yyoH4xJzcufK8cyde4b9FNYyDgkToLh0D3gfMMLYmE4hh4LgKTDd8p(nU1OG1mXM5393GhoJH8W))6N9MVEEUfGKWn5)67J)jab5V7TWVYib(3DB3DtpdOn(rbRZ6F)2K0mGW4LcyCA)cqVB6lVSB68aqd27tRdFyzw)fpfVD98G5Ez(jpWzBtgVB6SNNff4fSguVyRtlFRRZhzIF4CVGhzOH)85WK)NS1mx7w)rjbRaze4z3aVUJJ5Xmz3uqoUhFqkl25bGYFG6IK4rWRE)2flk)DX8VB6dZM3FLpOG27UmWcmbhzrPiNxkxItJdmpGdEXO4eQ(ZJFATvKXBQr7ZxVgzRaoWFNcOWeNGvWqTvGapptyKQ)M44igabdKHZ82e)eZgkdrxWWqpzcKZabziOW2lBIU8RgsfoHy0EGFZaYcdt67lSCitlQOFSN7LfUIBeQd5Qknd8MG)MxIJKxT)CRoY6cLmgHSr5YnNColomcMVmWtJmtwEKgTQXNBH5pcmR9ro6tHOLOH3MKWyyeplP124QPAaGZqRN7LSjxE4(40CRiyIMeQTcS7llQHQ4yudnNb4dtY8Gz(p3plC2NkfYaKLbVhLK9z2FDvm9TLVVM3djCbqzlGWRVb2cNl6(WY4Tr9ZHg)HApry9LzHEy(mWgZda)p(zMgG67w97Y2TVw8E(jREMywfpb5Dv5oBY1RsTqNJH4xYTJAEFHUeRRkeVo5YWAIlvW3PXp5tEzj(RtbhbwXDkP)2nC8PARml2BfzhzDragdsrwR07bd2O5ZLhxyoibvDrMwJnRfcEDiLypEgL3BrGgm7IzZtGAWOExBPE7nMYfwrr1mXMsPMmCNUD1Q41ELIX6wV)4fFikWNjH(HkOjH4CCdcGDLpBj5fVWdIKc4N(Z5cTfkIfkr4JReNmAn(ScLnjDgXsa8amnhyMTs20M0JKyT11cnPwiaiQorAM3Mi)1RTBtFAEAnTalMlkZuKMFzUw7ouN3PjMOyjSyiCRALCw)vRdu3fPbJ54wlTdboZwCWOf29z(mnQMmNB0ragtWrYnGvCFky(xe4br1UjxEK2lq2a5c1d18driEij(EFm4qkh58IcxDVjByfUj4NM6VnkRjrqCX4RjrB89O4Yymaa7rScawS3MzzEdhLR1I985Hb5bakzOdKTacS)gW0lGd)aL9qPHjHynn)0BZrGzSTXJbbiX0jubFtEKRu219JdmzrVYLrvt5)da3syjo59X)uRIxGm6odH92g)eWLr0nJV)B4JdFDt5TGG0z)cGc8HKRYuY6khhO6n3BrsqWNd08JWvEyPmRipWYsS(WO3XtcT5UWolmJl8D5GgDH1cBCSHvTNQ(OKDjxSX7AqnW)baNsxgef1F(2Y0UP4gQYGmZSuCf2F1N98Vpno5EpqFAgG88PpFXsrlE3aLnXstHGZZtfV1U7BbTcD99541byBRhVby3bzHluTaXNHWvBsIFmG50CP4fXEtShX2lCEWJ(GRf1wryMSgQe1Z(aHl1jjnHWOwo1SD9hL5iNBaXl)ewQfyUGexQ)Y(ROTaWJyEMnO4FE3TOPqrIQJbNYPLXBZZelSwwTjkilW0oysuvR0vCkL2m6TA(avj0sJti2zTakNTd7rXHT7aJuoDFdSKYjL7R24wUZalCA(MCrVos0nvpvuPDARVHvRV3H5FILRVCuBfFRsWy9SpvlipkpXlyosaOUNKYpK5bzUusThvTmVG)CWpIxlNRA()JNBgvkqZHK0LlhFUqVE9IGzzGE9Si)NsvS0vqlBgMoyEIzj1wzdE5ef3KIdEUyTsxkNMxbaegEzQOBCLRh4cYe2gi1Ou)nmTAzHnTbklVHhmPe6KeNLfSgCND7SLLcJwHPwSKKZ(wD3ohz7Cz0agO)VNYC1Chezl6hdbVnNfVod2KxBhZk2K2yKxId1DxH)RxnOuIbpoltRw9ifSC1QghxZXOLNtCQJZJXp1Fg70xzMJhjmBqSe0d0WYLaBwkKFAAtA39CnyZXvcRXRACjQ7gVLlXYtwqZkOW0IIYQ6(9MgqUWgLcpNsG5r9nfSZsQzxRDee5ukQDifg9iTxfAvL6JYmUJ62oFLLULv1mEZJJxb8l4XA(QDioLmPchoSe8MVVTzPhQutUjUmAuj)P)GFu0UPVFwESx)cVgdKeFOtm4Wb5RNUw7tPvo9E1GghS)8NLKQmMBTo54jJ0roUQzVucPDNZKmTO9Nnw5BBrsahYtZIJfj(vYuNq5L(mbfSpQA)OJPt)QHQIqoA3QdvYHoDLnjj1XgbPCvEz3DBrSpgos2HszrujbZfN4GJE8qkgI1TPDZyzRcezrssuVHygmEOkcwf9z00PzJDJAcoY6YUxP4MxUmiS)HMFIIFhr8rjFjk5r73C0doRCyeP98xJNhUiKrkefQfy673)LFKDKwBzPi6pct2gXtw0Vh5)Wwgt684eisNkEgtLAMpReYEoEBI0d4fmy82SuyUH)yXUPRcIccyUcS(HG(4IcS8((yXCY8WcMsLCNqKwLkjI)A58hdEjJVPhM3riMT3up1k1c)HVVbfvDOw9sLZmUNTnm4tJMZjvwr2eKWsgB4AuVPkWG7JudJVNGJOolgTEQMhDwkH1JCXUJaSRnXAAKjyPPufY5Q4K7dNhM9S68CMPbuSNi(2A4XekFqzkuFobJ6ysaT27bXJpz4uEkpRgefwbHPt1z5uFilGnuxYMzfjeujibya7uahCbehrIN8qRbo2GVpkoEEXespA5Ih5SMKuBwwUtDfUIHOKKTrLjHQbLNxxQi(g5HsOl(AEib6do4EqAKtYqgzpQZs73CjcRKmtY3DBzbnN50peIWB79p790YGOn5hwrb1tzmpTmeuG5U2hUEMFYA)SaVWzfqVikUIxXZXl4pNfTDo)CbCjcj0g0Z1c0ZT1ONRc6PhZrZOxxfIZs)uVTPbEmRI1OCF5FyVshLRmgvNlHYczVEkNcrCYowsHCnHTFn8qAkKRjkKRefAppfgbXMDDeq3guJFuTnUGDxzetCoKFp4Q1iEIhgupK7(Jud62DppiebDOrK3La5DpCKN4uoSX4c3UMFeyjDjSO2S9ZFgmTEF8FIz(lmb8nEBQ3Ie)hwX9YU(yEm0NNwh)1Hq85bZ94BRHZVbNz36ZdfWL4KdSzf4A3kW1IvGB7wbUsRGH7zEOlHL4KpXlFbmvGwiIXu2lfZAwtx4CNQbvbe09TJadAuo)cLbWExpPkjGVZpad(1y6nMTE9A1d0rvXS05Hj1WkuthxOmaRXkKDDiWkhbwvaRsVGuXTWOhJYpPojru(V1JJLodgi5xKSrcNkffxU45EEWbZ9x5)a4R1biLIlPjEETLglConAG51g5n2P4olMhRmeHWQKAvXeZZ7vSSkcA8LJVPkUxenDTirzHWqfCJCG)nNQ4YSLxEq(fNSsX5ttTYyKdDxnll2HhdIktCWIqW1DpFiKTmg5OKGzymmaR7KyXbZu30le8gOeedQnqyWmh0fjDdBWifqGPmdMNdRIZgaRovmL7rdfTpcZuRKl1tmBxlQd1MtnRunvXtWk2PtykfW8KYmu3)0CMJ(gE0CM6JujToTSYJbe)QJaBP(t0NIEFz5DnWu0DjoNPq5HbfRHA8QhZt7p4cNR1zry5tQJfeQVsj)uv(CXUlajonkot(FRZcAABUChaX9gZPMVq2PlOpw9dQGkvF6dRGxdo1THxEpkNpNs1wopmLbrp)4m9ZRGOA(72KudQuX4Y840KmvHwnHvHEkIhnzwb9aJBEJg29pBWxleJouo3Q4WETNlUNJIA2bZF8APgMkWHEve)QdzJ2rz2kuXliUoj1H(uahxnDs32Qt6AuNSE8jFtN0EXWVPt2SoPtB0jD10jDSqNejuCsDYAHuJRtsDdAoj7t2u8IYevIWppA2Zu9(XUlkMzvF7GwJGQtRnI4oOniGnlhzCWyH3in7wPd7wftdQTGcPzKlQ0iM06L6zA7KUdstzVWwP1JHM(XL9Ap0AeuFtALwAvpXB6L2jTTWgLxQ2eYOqAJgjLkqhMIcGERsRPZWwku5zJbhVL(SUvuUMN0pyu1l4)BB4MnbZ7tLpltlWVa0jgrG62mcoye5L)p8yT6P8g(urAut8NbXWZ3S9s6BaxfUXeY0Uys5Nfe)Udgoltj9ajBxtoXciXNBlk(qLsfhz2mUoljA5Ru6IeelTaTF2ynsl1zKU89iteXHL9TwGPcUG9xA6I6fRJH5FFiA8mQWrf6s5Igv6AIOnXcIwLPFCMsp7xjS1Wi66OsFnWlyZ2tY40k4N2KeaQJ37x)I)k13kKWKm6BvDTIpT1ggrJFHFBzQqtw11vCijzkMcm135K6)fQx6C41r69CnFqgvcn8bASggjtMC9UyrdLmzdTekDc34DNQMtWE3PNA8(iiFQk0T7hX81a5VvK3oA3QjoFwQjXP5pfM3e0Bf1YJAG5C9qXu36(RXHnDAnrJS6xPw5AsC)PTTIbjqpIUFd9oqMf7YRhfPe9qCGbI9hWlgzTI7VrX9BQoLp9ltxDkdbkH7)UGsvRBuKv)(SkitItFusnCUwBIO0RptMBtM5VMzkjbSRNPzY9Fv8(QZlARpWDqTTMnDeQYuELty2YyYydJsVP6sB5AhJ1PrR1L7DKxHSl2M8SuTAKx54mLeCfwDn5smTiUn7YaS1blEvT0t2Ud1CCZl1sAF7pVpBGmMBFgBYB1Z(iYDFY8mluhedX8ENvsebjPbjm04)(LiOxQhQeHziFkLiOMzjjIQHyH3nfBgdgWdw)q2sPMRGGJI2zg4yRWmLw)x4gC)(QEj9PTPxukahET2N69)UDEErxy0XOU5hz))fjz7C9Hi9w(2NgjuNRLDWEwa7Uoe5Xcu0S)KeytbdGT7O0o3JLkNjKn2hxqLR5WWMTSkHZO3ML2ixeMeWTR(F9MiPxP7VmMfa(0i(zCILCBTCeMDRxhhhl1PhinDAeflBSDvgQ9FGhkscSgtVRS72jLFodEbR2cnUR(f8X6auejCWyE9gI1x9)GCQevByB6HZQKJhJnTTkxHr3IrkA(AXXy)gvfBZzCdmhxjBiinjY21pulqrJvMfkBszhztP)qCwoAds2gLE)HWeaZh74YluHn9KvZ0abNQ9KbvPvgQNgK5DF86TPashKm0XZDZmlHGd(QrFhQYvdDB)S5(YLSCmEPrGJl07svgwUKn57WsRQrRBgZiTin(fSlQ2DvNYY8PcwuT2hgnOfnpMYEJt12CZn31VVP(EkQMgOAlrvBI2WxsJcOrTe6PpFgAqyLSkIenrNbfJYqLqLizE1A6tkYtgGSMPLgoM4RAClWA3Y7uFavyEVbUkUb(rXgH5N5s7B2R8TM(B8xwvIVY4xzHWyHXiJIDIK71SPTCjn5JWHQ)Q2f3bPcAlvJhQSJSqTJ548uEz8d2czNRDVnP(f7dRslMOoYSplBPT578rq3K91Hln)iesoBG5FcZUKTgEYpHDGXP3D7hxccLHGABswXhaPxvD4NVc43St2kHjbLgZs7O)2SyEnTdQLlznAd2NZQFjKjz7WBRhRHzJ)4xHkrcGK9nHc)HLRAyqDD(ZEnb58EGJgevByoNoi5EYwTxHd5srdnyQlXiG2UFMG3YrJVY5ThbiF5PKo2wc4qCKr5l)IggH(vHrFrsa3wjqJUalolK2Tkjuk0chtdTiYhHLR0JcSjevK2htdUiX6PdZrNq89DNeytAWOkNaTtAGGJDquvco1rWCbb)6ia5RXHSQt6Aqg3dElHSA4gAqgpwelH8bHZOYx7PSfX2gONYUgAA8K4TuQ4a10mc76Fiv0ap9xAflNHVH9NiyJkHZg(r0F6JUioHj1J(8qSP1)XopeMifjFuxWVwDUCkHiQOyX3bL2jh(fWXl5pfi6RzKVsiwc1Jcgty4aPdlRbFd9GzlNdKoWCn5xYE08xrZXrLwreT8EPZyeIhfPNtHBvgH8b5STgmJ3eKFMMP5TL1xDgYzo3Hg8DqoiSoDPofSVV7OxxKU2E9Mm2Pe9pPt6f6tAfT4ho6Yz)Lbr1dqsdQ4Flk0Hm)Zz)PjsdhI9xK779AagRR5)fgShvBAutYr14SZPCxsNtx00uGUvP8QauNst9NwGt4KBRtUPzWD09z2HyBQJ)eryluP12QnbOT9wBbSu71TglTwJ31wGQ0HFXnCR2GG1bSlHD7dytgkqEuKRPaEv3QwdS16I1NEasew(bX)Pa6HZ))RgWNeYWbR0sbyrVRw3GzTMADtGSMZX1lK4jgAM5D62qBm)LxOPJ5VSfnV8xEX2gxEVED6EMjbIk8b9PDQQzd0Mu(eNrFF3U0lOxpS3B6AIb)AxXaQZRGN2RNGJ(n(Gb(WfNC(GqLP2XdwC79r7N7v8prNcaFuQQLgNdYgUo(KzA4QZAnh2lGdARGV2KrnQwmh2VYAC4QZATOeQONY9oxe6N2JBdu5rNxwzZeGwFmhB4FiO(kFwIfE2eMlgYrg6hcEdplf2dls2TieCxDyNGz5qwdlzuhtyF5aoQq(qWywTIzcHlE(XeUKOBTyRRSXyuBV2JBdunRnIpMJn8peuNsFeDihzOFi4Tj9qYHDcMLdznGRtImGJkKpemgvRS(ZpMWLeDRLHQkJiIsUU4AmHyibBmNw4tc5AbFr18P6010e89F)LJgpOkYH9ei5WqGR1YTwfZRzQa(yuPYhB4tc5MPYU1iqitqtuz7aIovUwIfRK1W)AJGiWroqv6TXzsVRSJpniJQfZbE7fhFMihR68vl)JvYqws9mmWwmtns9OgvlMdlPEMhRY8nSwogvmpxk7syDw6X2bvhZqT2JTdQ7R1Itn8TbYBsINLFpY2KAc6uJZ2vGTZdZ(L3EaFB9w1O3Whb4t5WGbrYMzUw4WWrh(2az7yQ0JZ2vGTZZ(j8yFIn2pHh7H)Ei8W(IbHaTIF2oO4IdfxRGs9kBH03pRCxr2cCN6WQ6ZaWlVCMg1R8T69Yl0ZKzpJOme171DD6p6ne66WtrMq2x9QE9M01ShVusV6ZOtJZy(3zl279gL5KXepxJP277Dgmqkr))hmp7I)Y5zx8fINDrbptOkw7O5kEJ2PqtbL2zC5uwsmua)iusmdpnvZUzGFmW7JFXBsbYJb2EAU1vMbUEFNvNGq0E1Tg8haL(lc54yIVvgAQSowCSOigDqgYPe62a3dj2skOAVBQ25o8HppMDhMOCYooYGuxhJJKk5X82E8LKCCmX3kXJgvAqhYPe62a3djXmuq1(0oyNk5HppMvjPt(wJuDlmZECHUnW9qmZswROhd9rQ7pWrY803W92b8JeUFPf5aRfwToTq3g4Ea2eRd1JiFKc4Nm(43W9)sWD6mbSps4NwO3mC3V91SfR3pOlGlDXw2iCTGwFCHEZWD)Og2I17h07xCpUxehff)uiR3y6dEELUB6tbjWVVnLnjSCwNXgwElbB3u2hdhwZylRCCRJ5xc8TRvg985Sbp3pZ)E)0GFC3pVB657MYkLe6UbZRA1Lh)41eM(NCeHbewFzuEHYMn2xrNy2D9QSTOL2V6ZQZBgFHOXuU7NXEUU1L3Q(n5zS7Bdxm(Sg)k)8YlQToVjommVycHPzv465Elscc(CG8pZk661pSfGOYp7VgMB)hcNLxqWmuaP97n5YbD6ICNyz5Pg1W8lVujLPBYUqQBs1a0qHQOc6HJNFoEDadnNl34c9x9zp)7tJtU3BtqYmaJMmOd2c5DdkVhVYxY)2T4ae772n9pkYrDQmAwM463Y(irnUuuR6R(4BJ3monilCXBF0pABWyN8)FVGO0GXdE7S41ZdzGACXeJCFo7uIuixdZoAsgJhwv5(2m6lfRySjwF4U0lCgLs7BvN1lDK1qJYsoD6keN2O)1LzIJyHjEApdcVm9XjUdOxG8odomkWyP(c7DYlSHslmdy4nod6yQbuEZ4lRDllkVn1vlsdOR0TqN1BtN9PGeD0200prLBzEODhEEPqKstfONePWY7xF7Ux96xMFAYXM4n54CQ1sLgLVeFY6eIfOICDeNSfcl5LxAGj0PoiB(DAqU5g3klIQdOd2x)XQPt5ESdCLgWIgqZlbLrLgH6nJAcIM4U16aQwZMlOeQDvabjeV3pFZq5TAU5QbshTReTJgJLgK1yQQzsGp39m8w38lVuV1tpXzupdg3eF4f3t0b2COf4t(V3HO)up5kdOkVH06LSXA8S6IUjlaxTlP8p25mCrDa)R7xXnabTt1TCdB3ZUAmmxtBn3Jpjb3a79H6ysEnYSD(CaVMhhVcOvWJK2OS9BXmbMRZK6IWLwiBqp8YE5Ed9b)OODtFFHhZ)cVNH)ZF33bp5FNcUOFJ)UPltcwm(vlZY2K(JxCXtp9u)NIFAjlmBWhHlaozu0yNbdUAWfCs75W2hBz9u4xn53Z7IX)ZIF4Ml8NaXCSeugThYx(dUdU6I8D6pVk7ct(hf)vomdHyE2U5TGR)8GFylj2Fz7C4(Urx9d)WfsNwXK3x935ZalcNNcZwApqVA4iGKWAl5NR2wYF1K)h4h3n9Jk)AXczH9tGLyTTGZkcTFv8I5kbqix)mtyrONhU(X4pbQl)ji1T2pIxziL23zD)9sPdwOaywBrDPVd2x2MBg76s6lyhIud1b9tsJ(VwndoxtpdNrnfC9o8Ewpn0m)sy0KM8U(nodebRHXwQIyRwOPJhw4Ugfcnh)JZrpft(BIZky04SVHdE5LU7FGOxnW4G8N)CpJRIodhmzm5ZlMLCd52lWWwtOFCI6G)HjI9gWUgSplbDu9KcEGAG08pfgkQnsB4Z21dLLujMQwilL6h5nbNcPV8gItjca(KRGa6PbbWecz5MyD3mS0HFdXYHqsgosgHeBsZqfT9PVHf)5zAPoQhUXLQ9Zr6Hm5ugQV0UDmTX9itVBPqS7vvUyNVEaVwK8lx8BsCL8DU)145Hlcz58Ars8QDtVnC1hGDY)9FHNvTTRbB0)rrRky30FNFb9HTeppo58DtR(6nWs33mF2o9phVnr6bCd9XBZsbkh8hW2sRcIccyFNrw)qqFz(qj1vMlG0Oe45POwQlawYPI83Eclpeu5LMYxpb(6RTHt(g50GulsoWgfIT3ELsKkTvHoi9Ib8g8qVCQMAtzGqRw5fP3tUlweSgOf05GRCTv1mDedT6NKlwwjBC6XA6QemjiSEpqr)0Bv(yFaruWTtDY7Zh)v2FpWz7n3ppq7RkK9Xd8(3bVVDK703hZpBcdjsT40l8Cklq6IW8eNwdsZTawDYpMSDu0806smTO9udX0AUly080wuA5ftAx1J7USAPLxL1U(eOpS42EJ(Shf3KA0NVK9UOpHDGo9qQP9kwwZRxx81RlX6f5UgH(WARx8Boo6Z1wVUnVEDTF9Mxu7MtDr)rsjVG8Yh0f5ylRU5e5xJ1Mrh3dgDQDLhOVzUnJooEWE1B9JWu1rUeOAA763FtThJFPlBgPCXrkQBMQMTaAKYWnbTzKI60LCLzDoYPFNuqYgw6ECjw2N7WIPRDerDeQDVsqmqy5TzX0fqIOSI1MBeJXwFVw0UwlQ3ejAXH5(R8FiW7eivGXKZFIkoozS6sqXbrW(DywWQIdKI4WT5hSl4wZkwK0GQq54QIcvp8Sr18711r3)owWbMZIPBXr(PLwCvC(b)hdIkJCyri42JNp4Ojap03H9hXlw4bokdK58eRx3cbBb3yyUJ6WZgS8b0QhQmA2fQrBg2bnMFZ5ObpUFPJVx5BRjlpZu5qaN4IqO0nuYdzY6855CvlPtuzHX5QENss4HsLW3VOmpz2N5i5KtkcbZCMe)QKQKgfNvAcIhVgMjT8nWRVtxLVuuPsuo6vTCyjhdREnewqMHDf3WpnCE(gvkEL5HPmmXZpoBErQLQX8KYWPCOZ6X872ZeBRhrwi7jfiAD1LAN(ut2RMC9Gt7YOd2M4vEDu7zL7eYogAeVlKs1aQpo9kZRAdEamzS63YZ2jV6IlV6skV6(n51)dwE1Xg5vx5OwmiV6ywELWB5dtETj7R0EtkigeESUN6PT)e2A)P(1c1g3bThHeW3WrjXHCJY0UGByiAd1k0gNrTKX3KHk6GfAMXVFc8TNo)ngpfJpvJZZC8Muv2e3ILZzkjbtQ3w7NhB0El9ZpkZMlBAm05VQLbSVrKx()0Jvm55UVx81VvEGqyE1hhJrMxmTVnfMWzz5SLkSs88QITD8GMN(smofhQefUgoSu(aUIdpPWcSdE5RyQJPEFc)0U5LhoIYAqF3(lPIrXQjahIDPwqtmSGKRyljIJfYEgxH3mEi7kf8D7M(pGFbg1UPVp(NQaAFyr8g1JRvUWXQv8L1m8mqhuQhpkY5Ujb(Y6sthgIm7WwyFkadmy13MoCuRgaJlSo61fqbvJrSM(3yIrkapxYsJY1LNzhhZbdx439cogdX5xUOK2Or99KpycmeVRUa4v4v1iRkuKYBwE5wZZz2yxPC4RS6AKzABH9ssZoePTkaEy85gx4YIcFO0YO67vzWKLjxLclU9uTlPnioKEw1CHGEG(3hVkCTFHrKv3ZqiUGRlL8by2siCk9uKXVDt968VI75AaPQcid)O6X1NqPISRvazHpjCntBafizNYs1LcaSNpwxDX(vcrHx1GaXlVaBG6DF86TPaIeKm0XZDZmRRQ(A4OAnN0wj0BgxkPGhIm98kUvDCAb3ZwPa0PFrKjIBW1KNdfuA1lUsNUI3b)cayDjTZQ8(b9mBv)gvBZcTi15gCmLQG5hbVdocjDNN0UCo00XGv5fCltk27PaqwLth3lMzQ)SKq2wl(rEBGbXzPgGKDHfDfAr(XlqjHr4BzUtQIzCpmFJsjr2fxztlby6SSjJZvhQyznm6RTwGPCXm2XH8(rmsQ8EYl9YkVjmxvM9Wjh24jf15PLhoUz5BfAvvDCPsWXXSJMtaFzwQ7poiSzvV(efraiQwqZxMWlXrKdZJiUM2TF8Ipef4dMLXC6XGRhvwuOkrtHHl0rGpjwV3Hf7ByIfmchsM3whls7M2uhFEiSqJob2FkQJDh2U0K5VADGX7fr9KR3Q0KLdFJNOytWRfxwcIIPxQwr7BLhYdrVhL4aPzFSShwPaDgqB)n5fvHQtfJD6OvkRBML5nC0nJ0)DwjUsiElpdnxRSvtGkMWUPGitjViyLMGsPY3WkqJ8utaVuTD1fPctv9ZI4N6A08dUkISgc6B2Ja1onmh1vVWPgYiBmstCOWDnl31Yx8Hyhx(I0cCLbe4aHfV2yBJaYAQGhhGsSLsBiewV)NYexZ3IgueyzuQ00ROqqmT1x1nWPbxouYV0nYRhPjc7ClOiPkoRKxEuofMg(xAjwVFrM2zAfjZ8xZ0DsscYlRigA9)xnxn7eXGaHFBm24LLA00lTx8rOEUBA0211S(tOlh8TxGsPe4BWYwJXM9wZYWaFZmaZF(njK8Do(JLkPSKR7Rmjng5bpt9ygyz8o63G84BCSm0YymR)7f8V03qvp(5VzJW7n3wblzouyYZwzn0nfb9LMBvL0mDQv(wmkfEAdHXqIZ7PPnex64dDCf5CWf732s4cIPVmCbtPFhCbrBeUOlGLH9VkE2MoHAcyS2pLHUJ(bCroTCIrcpr28N9jn9aGA4TV)uNQUAoTxfahT0eR4FSuJkhctt6qnI1kfWkIyK)tXPby02YLBokBVw79L3b7vuL3VdIn9h5D2uT00oAM(0gshhXZPcIri0AXwssdn82EqFDiUKKdWRuFnHcpCYTVYOwYFQUmXJAT25zoAiKcA7xU5qaYBkZVQZ0otGmfZvAmiOy)9Z(sEHrqGgNB7jgO4axDBhI0VJqURQKH7mkWlMxvKwX3R()xuNqX3TR4MkhCHsWHrJzsMUSgsXT0(kf(i6pg6wWUsck6EZ2sC8zY4GRZn9ustDXM8ClLbAQBfNF5dEtD9X3eJnxWh4T9NBu)A((p]] )
|