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.
1653 lines
51 KiB
1653 lines
51 KiB
-- ShamanEnhancement.lua
|
|
-- May 2018
|
|
|
|
local addon, ns = ...
|
|
local Hekili = _G[ addon ]
|
|
|
|
local class = Hekili.Class
|
|
local state = Hekili.State
|
|
|
|
local PTR = ns.PTR
|
|
|
|
-- Globals
|
|
local GetWeaponEnchantInfo = GetWeaponEnchantInfo
|
|
|
|
-- Conduits
|
|
-- [-] Chilled to the Core
|
|
-- [-] Focused Lightning
|
|
-- [-] Magma Fist
|
|
-- [-] Unruly Winds
|
|
|
|
-- Generate the Enhancement spec database only if you're actually a Shaman.
|
|
if UnitClassBase( "player" ) == "SHAMAN" then
|
|
local spec = Hekili:NewSpecialization( 263 )
|
|
|
|
spec:RegisterResource( Enum.PowerType.Mana )
|
|
|
|
-- Talents
|
|
spec:RegisterTalents( {
|
|
lashing_flames = 22354, -- 334046
|
|
forceful_winds = 22355, -- 262647
|
|
elemental_blast = 22353, -- 117014
|
|
|
|
stormflurry = 22636, -- 344357
|
|
hot_hand = 23462, -- 201900
|
|
ice_strike = 23109, -- 342240
|
|
|
|
spirit_wolf = 23165, -- 260878
|
|
earth_shield = 19260, -- 974
|
|
static_charge = 23166, -- 265046
|
|
|
|
elemental_assault = 23089, -- 210853
|
|
hailstorm = 23090, -- 334195
|
|
fire_nova = 22171, -- 333974
|
|
|
|
natures_guardian = 22144, -- 30884
|
|
feral_lunge = 22149, -- 196884
|
|
wind_rush_totem = 21966, -- 192077
|
|
|
|
crashing_storm = 21973, -- 192246
|
|
stormkeeper = 22352, -- 320137
|
|
sundering = 22351, -- 197214
|
|
|
|
elemental_spirits = 21970, -- 262624
|
|
earthen_spike = 22977, -- 188089
|
|
ascendance = 21972, -- 114051
|
|
} )
|
|
|
|
|
|
-- PvP Talents
|
|
spec:RegisterPvpTalents( {
|
|
counterstrike_totem = 3489, -- 204331
|
|
ethereal_form = 1944, -- 210918
|
|
grounding_totem = 3622, -- 204336
|
|
ride_the_lightning = 721, -- 289874
|
|
seasoned_winds = 5414, -- 355630
|
|
shamanism = 722, -- 193876
|
|
skyfury_totem = 3487, -- 204330
|
|
spectral_recovery = 3519, -- 204261
|
|
static_field_totem = 5438, -- 355580
|
|
swelling_waves = 3623, -- 204264
|
|
thundercharge = 725, -- 204366
|
|
unleash_shield = 3492, -- 356736
|
|
} )
|
|
|
|
-- Auras
|
|
spec:RegisterAuras( {
|
|
ascendance = {
|
|
id = 114051,
|
|
duration = 15,
|
|
max_stack = 1,
|
|
},
|
|
|
|
astral_shift = {
|
|
id = 108271,
|
|
duration = function () return level > 53 and 12 or 8 end,
|
|
max_stack = 1,
|
|
},
|
|
|
|
chains_of_devastation_cl = {
|
|
id = 336736,
|
|
duration = 20,
|
|
max_stack = 1,
|
|
},
|
|
|
|
chains_of_devastation_ch = {
|
|
id = 336737,
|
|
duration = 20,
|
|
max_stack = 1
|
|
},
|
|
|
|
chill_of_the_twisting_nether = {
|
|
id = 207998,
|
|
duration = 8,
|
|
},
|
|
|
|
crackling_surge = {
|
|
id = 224127,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
|
|
crash_lightning = {
|
|
id = 187878,
|
|
duration = 10,
|
|
max_stack = 1,
|
|
},
|
|
|
|
crash_lightning_cl = {
|
|
id = 333964,
|
|
duration = 15,
|
|
max_stack = 3
|
|
},
|
|
|
|
crashing_lightning = {
|
|
id = 242286,
|
|
duration = 16,
|
|
max_stack = 15,
|
|
},
|
|
|
|
doom_winds = {
|
|
id = 335903,
|
|
duration = 8,
|
|
max_stack = 1,
|
|
copy = "doom_winds_buff"
|
|
},
|
|
|
|
doom_winds_cd = {
|
|
id = 335904,
|
|
duration = 60,
|
|
max_stack = 1,
|
|
copy = "doom_winds_debuff",
|
|
generate = function( t )
|
|
local name, _, count, debuffType, duration, expirationTime = GetPlayerAuraBySpellID( 335904 )
|
|
|
|
if name then
|
|
t.count = count > 0 and count or 1
|
|
t.expires = expirationTime > 0 and expirationTime or query_time + 5
|
|
t.applied = expirationTime > 0 and ( expirationTime - duration ) or query_time
|
|
t.caster = "player"
|
|
return
|
|
end
|
|
|
|
t.count = 0
|
|
t.expires = 0
|
|
t.applied = 0
|
|
t.caster = "nobody"
|
|
end,
|
|
},
|
|
|
|
earth_shield = {
|
|
id = 974,
|
|
duration = 600,
|
|
type = "Magic",
|
|
max_stack = 9,
|
|
},
|
|
|
|
earthbind = {
|
|
id = 3600,
|
|
duration = 5,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
earthen_spike = {
|
|
id = 188089,
|
|
duration = 10,
|
|
},
|
|
|
|
elemental_blast_critical_strike = {
|
|
id = 118522,
|
|
duration = 10,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
elemental_blast_haste = {
|
|
id = 173183,
|
|
duration = 10,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
elemental_blast_mastery = {
|
|
id = 173184,
|
|
duration = 10,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
-- Used to proc Maelstrom Weapon stacks.
|
|
feral_spirit = {
|
|
id = 333957,
|
|
duration = 15,
|
|
max_stack = 1,
|
|
},
|
|
|
|
fire_of_the_twisting_nether = {
|
|
id = 207995,
|
|
duration = 8,
|
|
},
|
|
|
|
flame_shock = {
|
|
id = 188389,
|
|
duration = 18,
|
|
tick_time = function () return 2 * haste end,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
forceful_winds = {
|
|
id = 262652,
|
|
duration = 15,
|
|
max_stack = 5,
|
|
},
|
|
|
|
frost_shock = {
|
|
id = 196840,
|
|
duration = 6,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
gathering_storms = {
|
|
id = 198300,
|
|
duration = 12,
|
|
max_stack = 1,
|
|
},
|
|
|
|
ghost_wolf = {
|
|
id = 2645,
|
|
duration = 3600,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
hailstorm = {
|
|
id = 334196,
|
|
duration = 20,
|
|
max_stack = 5,
|
|
},
|
|
|
|
hot_hand = {
|
|
id = 215785,
|
|
duration = 8,
|
|
max_stack = 1,
|
|
},
|
|
|
|
ice_strike = {
|
|
id = 342240,
|
|
duration = 6,
|
|
max_stack = 1,
|
|
},
|
|
|
|
icy_edge = {
|
|
id = 224126,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
|
|
lashing_flames = {
|
|
id = 334168,
|
|
duration = 12,
|
|
max_stack = 1,
|
|
},
|
|
|
|
legacy_of_the_frost_witch = {
|
|
id = 335901,
|
|
duration = 10,
|
|
max_stack = 1,
|
|
},
|
|
|
|
lightning_crash = {
|
|
id = 242284,
|
|
duration = 16
|
|
},
|
|
|
|
lightning_shield = {
|
|
id = 192106,
|
|
duration = 1800,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
lightning_shield_overcharge = {
|
|
id = 273323,
|
|
duration = 10,
|
|
max_stack = 1,
|
|
},
|
|
|
|
maelstrom_weapon = {
|
|
id = 344179,
|
|
duration = 30,
|
|
max_stack = 10,
|
|
},
|
|
|
|
molten_weapon = {
|
|
id = 271924,
|
|
duration = 4,
|
|
},
|
|
|
|
primal_lava_actuators = {
|
|
id = 335896,
|
|
duration = 15,
|
|
max_stack = 20,
|
|
},
|
|
|
|
reincarnation = {
|
|
id = 20608,
|
|
},
|
|
|
|
resonance_totem = {
|
|
id = 262417,
|
|
duration = 120,
|
|
max_stack =1 ,
|
|
},
|
|
|
|
shock_of_the_twisting_nether = {
|
|
id = 207999,
|
|
duration = 8,
|
|
},
|
|
|
|
spirit_walk = {
|
|
id = 58875,
|
|
duration = 8,
|
|
max_stack = 1,
|
|
},
|
|
|
|
spirit_wolf = {
|
|
id = 260881,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
|
|
storm_totem = {
|
|
id = 262397,
|
|
duration = 120,
|
|
max_stack =1 ,
|
|
},
|
|
|
|
static_charge = {
|
|
id = 118905,
|
|
duration = 3,
|
|
type = "Magic",
|
|
max_stack = 1,
|
|
},
|
|
|
|
stormbringer = {
|
|
id = 201845,
|
|
duration = 12,
|
|
max_stack = 1,
|
|
},
|
|
|
|
stormkeeper = {
|
|
id = 320137,
|
|
duration = 15,
|
|
max_stack = 2,
|
|
},
|
|
|
|
sundering = {
|
|
id = 197214,
|
|
duration = 2,
|
|
max_stack = 1,
|
|
},
|
|
|
|
tailwind_totem = {
|
|
id = 262400,
|
|
duration = 120,
|
|
max_stack =1 ,
|
|
},
|
|
|
|
water_walking = {
|
|
id = 546,
|
|
duration = 600,
|
|
max_stack = 1,
|
|
},
|
|
|
|
wind_rush = {
|
|
id = 192082,
|
|
duration = 5,
|
|
max_stack = 1,
|
|
},
|
|
|
|
windfury_totem = {
|
|
id = 327942,
|
|
duration = 120,
|
|
max_stack = 1,
|
|
shared = "player",
|
|
},
|
|
|
|
|
|
-- Azerite Powers
|
|
ancestral_resonance = {
|
|
id = 277943,
|
|
duration = 15,
|
|
max_stack = 1,
|
|
},
|
|
|
|
lightning_conduit = {
|
|
id = 275391,
|
|
duration = 60,
|
|
max_stack = 1
|
|
},
|
|
|
|
primal_primer = {
|
|
id = 273006,
|
|
duration = 30,
|
|
max_stack = 10,
|
|
},
|
|
|
|
roiling_storm = {
|
|
id = 278719,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
|
|
strength_of_earth = {
|
|
id = 273465,
|
|
duration = 10,
|
|
max_stack = 1,
|
|
},
|
|
|
|
thunderaans_fury = {
|
|
id = 287802,
|
|
duration = 6,
|
|
max_stack = 1,
|
|
},
|
|
|
|
|
|
-- Legendaries
|
|
legacy_oF_the_frost_witch = {
|
|
id = 335901,
|
|
duration = 10,
|
|
max_stack = 1,
|
|
},
|
|
|
|
|
|
-- PvP Talents
|
|
thundercharge = {
|
|
id = 204366,
|
|
duration = 10,
|
|
max_stack = 1,
|
|
},
|
|
|
|
windfury_weapon = {
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
|
|
flametongue_weapon = {
|
|
duration = 1800,
|
|
max_stack = 1,
|
|
},
|
|
|
|
-- Conduit
|
|
swirling_currents = {
|
|
id = 338340,
|
|
duration = 15,
|
|
max_stack = 1
|
|
}
|
|
} )
|
|
|
|
|
|
spec:RegisterStateTable( "feral_spirit", setmetatable( {}, {
|
|
__index = function( t, k )
|
|
return buff.feral_spirit[ k ]
|
|
end
|
|
} ) )
|
|
|
|
spec:RegisterStateTable( "twisting_nether", setmetatable( { onReset = function( self ) end }, {
|
|
__index = function( t, k )
|
|
if k == "count" then
|
|
return ( buff.fire_of_the_twisting_nether.up and 1 or 0 ) + ( buff.chill_of_the_twisting_nether.up and 1 or 0 ) + ( buff.shock_of_the_twisting_nether.up and 1 or 0 )
|
|
end
|
|
|
|
return 0
|
|
end
|
|
} ) )
|
|
|
|
|
|
local death_events = {
|
|
UNIT_DIED = true,
|
|
UNIT_DESTROYED = true,
|
|
UNIT_DISSIPATES = true,
|
|
PARTY_KILL = true,
|
|
SPELL_INSTAKILL = true,
|
|
}
|
|
|
|
local vesper_heal = 0
|
|
local vesper_damage = 0
|
|
local vesper_used = 0
|
|
|
|
local vesper_expires = 0
|
|
local vesper_guid
|
|
local vesper_last_proc = 0
|
|
|
|
spec:RegisterCombatLogEvent( function( _, subtype, _, sourceGUID, sourceName, _, _, destGUID, destName, destFlags, _, spellID, spellName )
|
|
-- Deaths/despawns.
|
|
if death_events[ subtype ] and destGUID == vesper_guid then
|
|
vesper_guid = nil
|
|
return
|
|
end
|
|
|
|
if sourceGUID == state.GUID then
|
|
-- Summons.
|
|
if subtype == "SPELL_SUMMON" and spellID == 324386 then
|
|
vesper_guid = destGUID
|
|
vesper_expires = GetTime() + 30
|
|
|
|
vesper_heal = 3
|
|
vesper_damage = 3
|
|
vesper_used = 0
|
|
|
|
-- Vesper Totem heal
|
|
elseif spellID == 324522 then
|
|
local now = GetTime()
|
|
|
|
if vesper_last_proc + 0.75 < now then
|
|
vesper_last_proc = now
|
|
vesper_used = vesper_used + 1
|
|
vesper_heal = vesper_heal - 1
|
|
end
|
|
|
|
-- Vesper Totem damage; only fires on SPELL_DAMAGE...
|
|
elseif spellID == 324520 then
|
|
local now = GetTime()
|
|
|
|
if vesper_last_proc + 0.75 < now then
|
|
vesper_last_proc = now
|
|
vesper_used = vesper_used + 1
|
|
vesper_damage = vesper_damage - 1
|
|
end
|
|
|
|
end
|
|
|
|
if subtype == "SPELL_CAST_SUCCESS" then
|
|
-- Reset in case we need to deal with an instant after a hardcast.
|
|
vesper_last_proc = 0
|
|
end
|
|
end
|
|
end )
|
|
|
|
spec:RegisterStateExpr( "vesper_totem_heal_charges", function()
|
|
return vesper_heal
|
|
end )
|
|
|
|
spec:RegisterStateExpr( "vesper_totem_dmg_charges", function ()
|
|
return vesper_damage
|
|
end )
|
|
|
|
spec:RegisterStateExpr( "vesper_totem_used_charges", function ()
|
|
return vesper_used
|
|
end )
|
|
|
|
spec:RegisterStateFunction( "trigger_vesper_heal", function ()
|
|
if vesper_totem_heal_charges > 0 then
|
|
vesper_totem_heal_charges = vesper_totem_heal_charges - 1
|
|
vesper_totem_used_charges = vesper_totem_used_charges + 1
|
|
end
|
|
end )
|
|
|
|
spec:RegisterStateFunction( "trigger_vesper_damage", function ()
|
|
if vesper_totem_dmg_charges > 0 then
|
|
vesper_totem_dmg_charges = vesper_totem_dmg_charges - 1
|
|
vesper_totem_used_charges = vesper_totem_used_charges + 1
|
|
end
|
|
end )
|
|
|
|
|
|
local TriggerFeralMaelstrom = setfenv( function()
|
|
addStack( "maelstrom_weapon", nil, 1 )
|
|
end, state )
|
|
|
|
spec:RegisterHook( "reset_precast", function ()
|
|
local mh, _, _, mh_enchant, oh, _, _, oh_enchant = GetWeaponEnchantInfo()
|
|
|
|
if mh and mh_enchant == 5401 then applyBuff( "windfury_weapon" ) end
|
|
if oh and oh_enchant == 5400 then applyBuff( "flametongue_weapon" ) end
|
|
|
|
if buff.windfury_totem.down and ( now - action.windfury_totem.lastCast < 1 ) then applyBuff( "windfury_totem" ) end
|
|
|
|
if buff.windfury_totem.up and pet.windfury_totem.up then
|
|
buff.windfury_totem.expires = pet.windfury_totem.expires
|
|
end
|
|
|
|
if buff.windfury_weapon.down and ( now - action.windfury_weapon.lastCast < 1 ) then applyBuff( "windfury_weapon" ) end
|
|
if buff.flametongue_weapon.down and ( now - action.flametongue_weapon.lastCast < 1 ) then applyBuff( "flametongue_weapon" ) end
|
|
|
|
if settings.pad_windstrike and cooldown.windstrike.remains > 0 then
|
|
reduceCooldown( "windstrike", latency * 2 )
|
|
end
|
|
|
|
if settings.pad_lava_lash and cooldown.lava_lash.remains > 0 and buff.hot_hand.up then
|
|
reduceCooldown( "lava_lash", latency * 2 )
|
|
end
|
|
|
|
if vesper_expires > 0 and now > vesper_expires then
|
|
vesper_expires = 0
|
|
vesper_heal = 0
|
|
vesper_damage = 0
|
|
vesper_used = 0
|
|
end
|
|
|
|
vesper_totem_heal_charges = nil
|
|
vesper_totem_dmg_charges = nil
|
|
vesper_totem_used_charges = nil
|
|
|
|
if totem.vesper_totem.up then
|
|
applyBuff( "vesper_totem", totem.vesper_totem.remains )
|
|
end
|
|
|
|
if buff.feral_spirit.up then
|
|
local next_mw = query_time + 3 - ( ( query_time - buff.feral_spirit.applied ) % 3 )
|
|
|
|
while ( next_mw <= buff.feral_spirit.expires ) do
|
|
state:QueueAuraEvent( "feral_maelstrom", TriggerFeralMaelstrom, next_mw, "AURA_PERIODIC" )
|
|
next_mw = next_mw + 3
|
|
end
|
|
end
|
|
end )
|
|
|
|
|
|
spec:RegisterGear( "waycrest_legacy", 158362, 159631 )
|
|
spec:RegisterGear( "electric_mail", 161031, 161034, 161032, 161033, 161035 )
|
|
|
|
spec:RegisterGear( "tier21", 152169, 152171, 152167, 152166, 152168, 152170 )
|
|
spec:RegisterAura( "force_of_the_mountain", {
|
|
id = 254308,
|
|
duration = 10
|
|
} )
|
|
spec:RegisterAura( "exposed_elements", {
|
|
id = 252151,
|
|
duration = 4.5
|
|
} )
|
|
|
|
spec:RegisterGear( "tier20", 147175, 147176, 147177, 147178, 147179, 147180 )
|
|
spec:RegisterAura( "lightning_crash", {
|
|
id = 242284,
|
|
duration = 16
|
|
} )
|
|
spec:RegisterAura( "crashing_lightning", {
|
|
id = 242286,
|
|
duration = 16,
|
|
max_stack = 15
|
|
} )
|
|
|
|
spec:RegisterGear( "tier19", 138341, 138343, 138345, 138346, 138348, 138372 )
|
|
spec:RegisterGear( "class", 139698, 139699, 139700, 139701, 139702, 139703, 139704, 139705 )
|
|
|
|
|
|
-- Tier 28
|
|
spec:RegisterSetBonuses( "tier28_2pc", 364473, "tier28_4pc", 363668 )
|
|
-- 2-Set - Stormspirit - Spending Maelstrom Weapon has a 3% chance per stack to summon a Feral Spirit for 9 sec.
|
|
-- 4-Set - Stormspirit - Your Feral Spirits' attacks have a 20% chance to trigger Stormbringer, resetting the cooldown of your Stormstrike.
|
|
-- 2/15/22: No mechanics require actual modeling; nothing can be predicted.
|
|
|
|
|
|
spec:RegisterGear( "akainus_absolute_justice", 137084 )
|
|
spec:RegisterGear( "emalons_charged_core", 137616 )
|
|
spec:RegisterGear( "eye_of_the_twisting_nether", 137050 )
|
|
spec:RegisterAura( "fire_of_the_twisting_nether", {
|
|
id = 207995,
|
|
duration = 8
|
|
} )
|
|
spec:RegisterAura( "chill_of_the_twisting_nether", {
|
|
id = 207998,
|
|
duration = 8
|
|
} )
|
|
spec:RegisterAura( "shock_of_the_twisting_nether", {
|
|
id = 207999,
|
|
duration = 8
|
|
} )
|
|
|
|
spec:RegisterGear( "smoldering_heart", 151819 )
|
|
spec:RegisterGear( "soul_of_the_farseer", 151647 )
|
|
spec:RegisterGear( "spiritual_journey", 138117 )
|
|
spec:RegisterGear( "storm_tempests", 137103 )
|
|
spec:RegisterGear( "uncertain_reminder", 143732 )
|
|
|
|
|
|
spec:RegisterStateFunction( "consume_maelstrom", function( cap )
|
|
local stacks = min( buff.maelstrom_weapon.stack, cap or 5 )
|
|
|
|
if talent.hailstorm.enabled and stacks > buff.hailstorm.stack then
|
|
applyBuff( "hailstorm", nil, stacks )
|
|
end
|
|
|
|
removeStack( "maelstrom_weapon", stacks )
|
|
|
|
if legendary.legacy_oF_the_frost_witch.enabled and stacks == 5 then
|
|
setCooldown( "stormstrike", 0 )
|
|
setCooldown( "windstrike", 0 )
|
|
setCooldown( "strike", 0 )
|
|
applyBuff( "legacy_of_the_frost_witch" )
|
|
end
|
|
end )
|
|
|
|
spec:RegisterStateFunction( "maelstrom_mod", function( amount )
|
|
local mod = max( 0, 1 - ( 0.2 * buff.maelstrom_weapon.stack ) )
|
|
return mod * amount
|
|
end )
|
|
|
|
spec:RegisterTotem( "windfury_totem", 136114 )
|
|
spec:RegisterTotem( "skyfury_totem", 135829 )
|
|
spec:RegisterTotem( "counterstrike_totem", 511726 )
|
|
|
|
|
|
spec:RegisterAbilities( {
|
|
ascendance = {
|
|
id = 114051,
|
|
cast = 0,
|
|
cooldown = 180,
|
|
gcd = "spell",
|
|
|
|
readyTime = function() return buff.ascendance.remains end,
|
|
|
|
toggle = "cooldowns",
|
|
|
|
startsCombat = false,
|
|
|
|
talent = "ascendance",
|
|
nobuff = "ascendance",
|
|
|
|
handler = function ()
|
|
applyBuff( "ascendance" )
|
|
setCooldown( "stormstrike", 0 )
|
|
setCooldown( "windstrike", 0 )
|
|
end,
|
|
},
|
|
|
|
astral_shift = {
|
|
id = 108271,
|
|
cast = 0,
|
|
cooldown = 90,
|
|
gcd = "off",
|
|
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
applyBuff( "astral_shift" )
|
|
end,
|
|
},
|
|
|
|
bloodlust = {
|
|
id = function () return pvptalent.shamanism.enabled and 204361 or 2825 end,
|
|
known = 2825,
|
|
cast = 0,
|
|
cooldown = 300,
|
|
gcd = "off", -- Ugh.
|
|
|
|
spend = 0.215,
|
|
spendType = "mana",
|
|
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
applyBuff( "bloodlust", 40 )
|
|
if conduit.spiritual_resonance.enabled then
|
|
applyBuff( "spirit_walk", conduit.spiritual_resonance.mod * 0.001 )
|
|
end
|
|
end,
|
|
|
|
copy = { 204361, 2825 }
|
|
},
|
|
|
|
capacitor_totem = {
|
|
id = 192058,
|
|
cast = 0,
|
|
cooldown = function () return 60 + ( conduit.totemic_surge.mod * 0.001 ) end,
|
|
gcd = "spell",
|
|
|
|
spend = 0.1,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 136013,
|
|
|
|
handler = function ()
|
|
end,
|
|
},
|
|
|
|
chain_heal = {
|
|
id = 1064,
|
|
cast = function ()
|
|
if buff.chains_of_devastation_ch.up then return 0 end
|
|
return maelstrom_mod( 2.5 ) * haste
|
|
end,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = function () return maelstrom_mod( 0.3 ) end,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 136042,
|
|
|
|
handler = function ()
|
|
consume_maelstrom( 5 )
|
|
|
|
removeBuff( "chains_of_devastation_ch" )
|
|
if legendary.chains_of_devastation.enabled then
|
|
applyBuff( "chains_of_devastation_cl" )
|
|
end
|
|
|
|
if buff.vesper_totem.up and vesper_totem_heal_charges > 0 then trigger_vesper_heal() end
|
|
end,
|
|
},
|
|
|
|
chain_lightning = {
|
|
id = 188443,
|
|
cast = function ()
|
|
if buff.stormkeeper.up or buff.chains_of_devastation_cl.up then return 0 end
|
|
return maelstrom_mod( 2 ) * haste
|
|
end,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = function () return maelstrom_mod( 0.01 ) end,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 136015,
|
|
|
|
handler = function ()
|
|
if level > 51 and active_enemies > 1 then
|
|
applyBuff( "crash_lightning_cl", nil, min( 3, active_enemies ) )
|
|
end
|
|
|
|
if buff.stormkeeper.up then
|
|
removeBuff( "stormkeeper" )
|
|
return
|
|
end
|
|
|
|
consume_maelstrom( 5 )
|
|
|
|
removeBuff( "chains_of_devastation_cl" )
|
|
if legendary.chains_of_devastation.enabled then
|
|
applyBuff( "chains_of_devastation_ch" )
|
|
end
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
cleanse_spirit = {
|
|
id = 51886,
|
|
cast = 0,
|
|
cooldown = 8,
|
|
gcd = "spell",
|
|
|
|
spend = 0.06,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 236288,
|
|
|
|
buff = "dispellable_curse",
|
|
|
|
handler = function ()
|
|
removeBuff( "dispellable_curse" )
|
|
end,
|
|
},
|
|
|
|
counterstrike_totem = {
|
|
id = 204331,
|
|
cast = 0,
|
|
cooldown = 45,
|
|
gcd = "spell",
|
|
|
|
spend = 0.03,
|
|
spendType = "mana",
|
|
|
|
pvptalent = "counterstrike_totem",
|
|
|
|
startsCombat = false,
|
|
texture = 511726,
|
|
|
|
handler = function ()
|
|
summonPet( "counterstrike_totem" )
|
|
end,
|
|
},
|
|
|
|
crash_lightning = {
|
|
id = 187874,
|
|
cast = 0,
|
|
cooldown = function () return 9 * haste end,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
|
|
handler = function ()
|
|
if active_enemies >= 2 then
|
|
applyBuff( "crash_lightning", 10 )
|
|
applyBuff( "gathering_storms" )
|
|
end
|
|
|
|
removeBuff( "crashing_lightning" )
|
|
removeBuff( "crash_lightning_cl" )
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
earth_elemental = {
|
|
id = 198103,
|
|
cast = 0,
|
|
cooldown = 300,
|
|
gcd = "spell",
|
|
|
|
startsCombat = false,
|
|
texture = 136024,
|
|
|
|
toggle = "defensives",
|
|
|
|
handler = function ()
|
|
summonPet( "greater_earth_elemental", 60 )
|
|
if conduit.vital_accretion.enabled then
|
|
applyBuff( "vital_accretion" )
|
|
health.max = health.max * ( 1 + ( conduit.vital_accretion.mod * 0.01 ) )
|
|
end
|
|
end,
|
|
},
|
|
|
|
earth_shield = {
|
|
id = 974,
|
|
cast = 0,
|
|
cooldown = 6,
|
|
gcd = "spell",
|
|
|
|
spend = 0.1,
|
|
spendType = "mana",
|
|
|
|
startsCombat = false,
|
|
|
|
talent = "earth_shield",
|
|
|
|
handler = function ()
|
|
applyBuff( "earth_shield" )
|
|
removeBuff( "lightning_shield" )
|
|
|
|
if buff.vesper_totem.up and vesper_totem_heal_charges > 0 then trigger_vesper_heal() end
|
|
end,
|
|
},
|
|
|
|
earthen_spike = {
|
|
id = 188089,
|
|
cast = 0,
|
|
cooldown = function () return 20 * haste end,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 1016245,
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "earthen_spike" )
|
|
|
|
if azerite.natural_harmony.enabled and buff.frostbrand_weapon.up then applyBuff( "natural_harmony_frost" ) end
|
|
if azerite.natural_harmony.enabled and buff.flametongue_weapon.up then applyBuff( "natural_harmony_fire" ) end
|
|
if azerite.natural_harmony.enabled then applyBuff( "natural_harmony_nature" ) end
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
earthbind_totem = {
|
|
id = 2484,
|
|
cast = 0,
|
|
cooldown = 30,
|
|
gcd = "spell",
|
|
|
|
spend = 0.02,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 136102,
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "earthbind" )
|
|
end,
|
|
},
|
|
|
|
elemental_blast = {
|
|
id = 117014,
|
|
cast = function () return maelstrom_mod( 2 ) * haste end,
|
|
cooldown = 12,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 651244,
|
|
|
|
handler = function ()
|
|
consume_maelstrom( 5 )
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
feral_spirit = {
|
|
id = 51533,
|
|
cast = 0,
|
|
cooldown = function () return ( essence.vision_of_perfection.enabled and 0.87 or 1 ) * ( 120 - ( talent.elemental_spirits.enabled and 30 or 0 ) ) end,
|
|
gcd = "spell",
|
|
|
|
startsCombat = false,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function ()
|
|
-- instant MW stack?
|
|
applyBuff( "feral_spirit" )
|
|
|
|
addStack( "maelstrom_weapon", nil, 1 )
|
|
state:QueueAuraEvent( "feral_maelstrom", TriggerFeralMaelstrom, query_time + 3, "AURA_PERIODIC" )
|
|
state:QueueAuraEvent( "feral_maelstrom", TriggerFeralMaelstrom, query_time + 6, "AURA_PERIODIC" )
|
|
state:QueueAuraEvent( "feral_maelstrom", TriggerFeralMaelstrom, query_time + 9, "AURA_PERIODIC" )
|
|
state:QueueAuraEvent( "feral_maelstrom", TriggerFeralMaelstrom, query_time + 12, "AURA_PERIODIC" )
|
|
state:QueueAuraEvent( "feral_maelstrom", TriggerFeralMaelstrom, query_time + 15, "AURA_PERIODIC" )
|
|
end
|
|
},
|
|
|
|
fire_nova = {
|
|
id = 333974,
|
|
cast = 0,
|
|
cooldown = 15,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 459027,
|
|
|
|
talent = "fire_nova",
|
|
|
|
handler = function ()
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
flame_shock = {
|
|
id = 188389,
|
|
cast = 0,
|
|
cooldown = 6,
|
|
gcd = "spell",
|
|
|
|
spend = 0.15,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 135813,
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "flame_shock" )
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
flametongue_weapon = {
|
|
id = 318038,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
essential = true,
|
|
|
|
startsCombat = false,
|
|
texture = 135814,
|
|
|
|
usable = function () return swings.oh_speed > 0, "requires an offhand weapon" end,
|
|
|
|
handler = function ()
|
|
applyBuff( "flametongue_weapon" )
|
|
end,
|
|
},
|
|
|
|
frost_shock = {
|
|
id = 196840,
|
|
cast = 0,
|
|
cooldown = 6,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 135849,
|
|
|
|
handler = function ()
|
|
removeBuff( "hailstorm" )
|
|
|
|
setCooldown( "flame_shock", 6 * haste )
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
ghost_wolf = {
|
|
id = 2645,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 136095,
|
|
|
|
handler = function ()
|
|
applyBuff( "ghost_wolf" )
|
|
if conduit.thunderous_paws.enabled then applyBuff( "thunderous_paws" ) end
|
|
end,
|
|
|
|
auras = {
|
|
-- Conduit
|
|
thunderous_paws = {
|
|
id = 338036,
|
|
duration = 3,
|
|
max_stack = 1
|
|
}
|
|
}
|
|
},
|
|
|
|
healing_stream_totem = {
|
|
id = 5394,
|
|
cast = 0,
|
|
cooldown = 30,
|
|
gcd = "spell",
|
|
|
|
spend = 0.09,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 135127,
|
|
|
|
handler = function ()
|
|
if buff.vesper_totem.up and vesper_totem_heal_charges > 0 then trigger_vesper_heal() end
|
|
if conduit.swirling_currents.enabled then applyBuff( "swirling_currents" ) end
|
|
end,
|
|
},
|
|
|
|
healing_surge = {
|
|
id = 8004,
|
|
cast = function () return maelstrom_mod( 1.5 ) * haste end,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = function () return maelstrom_mod( 0.23 ) end,
|
|
spendType = "mana",
|
|
|
|
startsCombat = false,
|
|
|
|
handler = function ()
|
|
consume_maelstrom( 5 )
|
|
|
|
if buff.vesper_totem.up and vesper_totem_heal_charges > 0 then trigger_vesper_heal() end
|
|
if buff.swirling_currents.up then removeStack( "swirling_currents" ) end
|
|
end
|
|
},
|
|
|
|
|
|
heroism = {
|
|
id = function () return pvptalent.shamanism.enabled and 204362 or 32182 end,
|
|
cast = 0,
|
|
cooldown = 300,
|
|
gcd = "spell", -- Ugh.
|
|
|
|
spend = 0.215,
|
|
spendType = "mana",
|
|
|
|
startsCombat = false,
|
|
toggle = "cooldowns",
|
|
|
|
handler = function ()
|
|
applyBuff( "heroism" )
|
|
applyDebuff( "player", "exhaustion", 600 )
|
|
end,
|
|
|
|
copy = { 204362, 32182 }
|
|
},
|
|
|
|
ice_strike = {
|
|
id = 342240,
|
|
cast = 0,
|
|
cooldown = 15,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 135845,
|
|
|
|
talent = "ice_strike",
|
|
|
|
handler = function ()
|
|
setCooldown( "frost_shock", 0 )
|
|
setCooldown( "flame_shock", 0 )
|
|
|
|
applyDebuff( "ice_strike" )
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
lava_lash = {
|
|
id = 60103,
|
|
cast = 0,
|
|
cooldown = function () return ( buff.hot_hand.up and 4.5 or 18 ) * haste end,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 236289,
|
|
|
|
cycle = function()
|
|
return talent.lashing_flames.enabled and "lashing_flames" or nil
|
|
end,
|
|
|
|
indicator = function()
|
|
return debuff.flame_shock.down and active_dot.flame_shock > 0 and "cycle" or nil
|
|
end,
|
|
|
|
handler = function ()
|
|
removeDebuff( "target", "primal_primer" )
|
|
|
|
if talent.lashing_flames.enabled then applyDebuff( "target", "lashing_flames" ) end
|
|
|
|
removeBuff( "primal_lava_actuators" )
|
|
|
|
if azerite.natural_harmony.enabled and buff.frostbrand.up then applyBuff( "natural_harmony_frost" ) end
|
|
if azerite.natural_harmony.enabled then applyBuff( "natural_harmony_fire" ) end
|
|
if azerite.natural_harmony.enabled and buff.crash_lightning.up then applyBuff( "natural_harmony_nature" ) end
|
|
|
|
-- This is dumb, but technically you don't know if FS will go to a new target or refresh an old one. Even your current target.
|
|
if debuff.flame_shock.up and active_dot.flame_shock < 3 then active_dot.flame_shock = 3 end
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
lightning_bolt = {
|
|
id = 188196,
|
|
cast = function () return maelstrom_mod( 2 ) * haste end,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
|
|
handler = function ()
|
|
consume_maelstrom( 5 )
|
|
|
|
if buff.primordial_wave.up and state.spec.enhancement and legendary.splintered_elements.enabled then
|
|
applyBuff( "splintered_elements", nil, active_dot.flame_shock )
|
|
end
|
|
removeBuff( "primordial_wave" )
|
|
|
|
if azerite.natural_harmony.enabled then applyBuff( "natural_harmony_nature" ) end
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
lightning_shield = {
|
|
id = 192106,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
startsCombat = false,
|
|
essential = true,
|
|
|
|
nobuff = "earth_shield",
|
|
|
|
timeToReady = function () return buff.lightning_shield.remains - 120 end,
|
|
|
|
handler = function ()
|
|
removeBuff( "earth_shield" )
|
|
applyBuff( "lightning_shield" )
|
|
end,
|
|
},
|
|
|
|
primal_strike = {
|
|
id = 73899,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 0.09,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 460956,
|
|
|
|
usable = function () return level < 20, "replaced by stormstrike" end,
|
|
|
|
handler = function ()
|
|
end,
|
|
},
|
|
|
|
purge = {
|
|
id = 370,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
spend = 0.1,
|
|
spendType = "mana",
|
|
|
|
startsCombat = true,
|
|
texture = 136075,
|
|
|
|
toggle = "interrupts",
|
|
interrupt = true,
|
|
|
|
buff = "dispellable_magic",
|
|
|
|
handler = function ()
|
|
removeBuff( "dispellable_magic" )
|
|
end,
|
|
},
|
|
|
|
skyfury_totem = {
|
|
id = 204330,
|
|
cast = 0,
|
|
cooldown = 40,
|
|
gcd = "spell",
|
|
|
|
spend = 0.03,
|
|
spendType = "mana",
|
|
|
|
startsCombat = false,
|
|
texture = 135829,
|
|
|
|
pvptalent = "skyfury_totem",
|
|
|
|
handler = function ()
|
|
summonPet( "skyfury_totem" )
|
|
applyBuff( "skyfury_totem" )
|
|
end,
|
|
|
|
auras = {
|
|
skyfury_totem = {
|
|
id = 208963,
|
|
duration = 3600,
|
|
max_stack = 1,
|
|
},
|
|
},
|
|
},
|
|
|
|
spirit_walk = {
|
|
id = 58875,
|
|
cast = 0,
|
|
cooldown = 60,
|
|
gcd = "spell",
|
|
|
|
startsCombat = false,
|
|
texture = 132328,
|
|
|
|
handler = function ()
|
|
applyBuff( "spirit_walk" )
|
|
end,
|
|
},
|
|
|
|
stormkeeper = {
|
|
id = 320137,
|
|
cast = function () return maelstrom_mod( 1.5 ) * haste end,
|
|
cooldown = 60,
|
|
gcd = "spell",
|
|
|
|
startsCombat = false,
|
|
texture = 839977,
|
|
|
|
talent = "stormkeeper",
|
|
|
|
handler = function ()
|
|
applyBuff( "stormkeeper", nil, 2 )
|
|
consume_maelstrom( 5 )
|
|
end,
|
|
},
|
|
|
|
stormstrike = {
|
|
id = 17364,
|
|
cast = 0,
|
|
cooldown = function() return gcd.execute * 6 end,
|
|
gcd = "spell",
|
|
|
|
rangeSpell = 73899,
|
|
|
|
startsCombat = true,
|
|
texture = 132314,
|
|
|
|
bind = "windstrike",
|
|
|
|
cycle = function () return azerite.lightning_conduit.enabled and "lightning_conduit" or nil end,
|
|
|
|
nobuff = "ascendance",
|
|
|
|
usable = function () return level > 19 end,
|
|
|
|
handler = function ()
|
|
setCooldown( "windstrike", action.stormstrike.cooldown )
|
|
setCooldown( "strike", action.stormstrike.cooldown )
|
|
|
|
if buff.stormbringer.up then
|
|
removeBuff( "stormbringer" )
|
|
end
|
|
|
|
removeBuff( "gathering_storms" )
|
|
|
|
if azerite.lightning_conduit.enabled then
|
|
applyDebuff( "target", "lightning_conduit" )
|
|
end
|
|
|
|
removeBuff( "strength_of_earth" )
|
|
removeBuff( "legacy_of_the_frost_witch" )
|
|
|
|
if talent.elemental_assault.enabled then
|
|
addStack( "maelstrom_weapon", nil, 1 )
|
|
end
|
|
|
|
if azerite.natural_harmony.enabled and buff.frostbrand.up then applyBuff( "natural_harmony_frost" ) end
|
|
if azerite.natural_harmony.enabled and buff.flametongue.up then applyBuff( "natural_harmony_fire" ) end
|
|
if azerite.natural_harmony.enabled and buff.crash_lightning.up then applyBuff( "natural_harmony_nature" ) end
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
|
|
copy = { "strike" }, -- copies this ability to this key or keys (if a table value)
|
|
},
|
|
|
|
sundering = {
|
|
id = 197214,
|
|
cast = 0,
|
|
cooldown = 40,
|
|
gcd = "spell",
|
|
|
|
handler = function ()
|
|
applyDebuff( "target", "sundering" )
|
|
|
|
if azerite.natural_harmony.enabled and buff.flametongue.up then applyBuff( "natural_harmony_fire" ) end
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
thundercharge = {
|
|
id = 204366,
|
|
cast = 0,
|
|
cooldown = 45,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 1385916,
|
|
|
|
pvptalent = function () return not essence.conflict_and_strife.major and "thundercharge" or nil end,
|
|
|
|
handler = function ()
|
|
applyBuff( "thundercharge" )
|
|
end,
|
|
},
|
|
|
|
tremor_totem = {
|
|
id = 8143,
|
|
cast = 0,
|
|
cooldown = function () return 60 + ( conduit.totemic_surge.mod * 0.001 ) end,
|
|
gcd = "spell",
|
|
|
|
spend = 0.02,
|
|
spendType = "mana",
|
|
|
|
toggle = "cooldowns",
|
|
|
|
startsCombat = true,
|
|
texture = 136108,
|
|
|
|
handler = function ()
|
|
end,
|
|
},
|
|
|
|
water_walking = {
|
|
id = 546,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 135863,
|
|
|
|
handler = function ()
|
|
applyBuff( "water_walking" )
|
|
end,
|
|
},
|
|
|
|
wind_rush_totem = {
|
|
id = 192077,
|
|
cast = 0,
|
|
cooldown = 120,
|
|
gcd = "spell",
|
|
|
|
startsCombat = true,
|
|
texture = 538576,
|
|
|
|
handler = function ()
|
|
end,
|
|
},
|
|
|
|
wind_shear = {
|
|
id = 57994,
|
|
cast = 0,
|
|
cooldown = 12,
|
|
gcd = "off",
|
|
|
|
startsCombat = true,
|
|
toggle = "interrupts",
|
|
|
|
usable = function () return debuff.casting.up end,
|
|
|
|
debuff = "casting",
|
|
readyTime = state.timeToInterrupt,
|
|
|
|
handler = function () interrupt() end,
|
|
},
|
|
|
|
windfury_totem = {
|
|
id = 8512,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "totem",
|
|
icd = 3,
|
|
|
|
essential = true,
|
|
|
|
spend = 0.12,
|
|
spendType = "mana",
|
|
|
|
startsCombat = false,
|
|
texture = 136114,
|
|
|
|
nobuff = "doom_winds", -- Don't cast Windfury Totem while Doom Winds is already up, there's some weirdness with Windfury Totem's buff right now.
|
|
|
|
handler = function ()
|
|
applyBuff( "windfury_totem" )
|
|
summonTotem( "windfury_totem", nil, 120 )
|
|
|
|
if legendary.doom_winds.enabled and debuff.doom_winds_cd.down then
|
|
applyBuff( "doom_winds" )
|
|
applyDebuff( "player", "doom_winds_cd" )
|
|
applyDebuff( "player", "doom_winds_debuff" )
|
|
applyBuff( "doom_winds_cd" ) -- SimC weirdness.
|
|
applyBuff( "doom_winds_debuff" ) -- SimC weirdness.
|
|
end
|
|
end,
|
|
},
|
|
|
|
windfury_weapon = {
|
|
id = 33757,
|
|
cast = 0,
|
|
cooldown = 0,
|
|
gcd = "spell",
|
|
|
|
essential = true,
|
|
|
|
startsCombat = false,
|
|
texture = 462329,
|
|
|
|
handler = function ()
|
|
applyBuff( "windfury_weapon" )
|
|
end,
|
|
},
|
|
|
|
windstrike = {
|
|
id = 115356,
|
|
cast = 0,
|
|
cooldown = function() return gcd.execute * 2 end,
|
|
gcd = "spell",
|
|
|
|
texture = 1029585,
|
|
known = 17364,
|
|
|
|
buff = "ascendance",
|
|
|
|
bind = "stormstrike",
|
|
|
|
handler = function ()
|
|
setCooldown( "stormstrike", action.stormstrike.cooldown )
|
|
setCooldown( "strike", action.stormstrike.cooldown )
|
|
|
|
if buff.stormbringer.up then
|
|
removeBuff( "stormbringer" )
|
|
end
|
|
|
|
removeBuff( "gathering_storms" )
|
|
removeBuff( "strength_of_earth" )
|
|
removeBuff( "legacy_of_the_frost_witch" )
|
|
|
|
if talent.elemental_assault.enabled then
|
|
addStack( "maelstrom_weapon", nil, 1 )
|
|
end
|
|
|
|
if azerite.natural_harmony.enabled then
|
|
if buff.frostbrand.up then applyBuff( "natural_harmony_frost" ) end
|
|
if buff.flametongue.up then applyBuff( "natural_harmony_fire" ) end
|
|
if buff.crash_lightning.up then applyBuff( "natural_harmony_nature" ) end
|
|
end
|
|
|
|
if buff.vesper_totem.up and vesper_totem_dmg_charges > 0 then trigger_vesper_damage() end
|
|
end,
|
|
},
|
|
|
|
|
|
} )
|
|
|
|
|
|
spec:RegisterOptions( {
|
|
enabled = true,
|
|
|
|
aoe = 2,
|
|
|
|
nameplates = true,
|
|
nameplateRange = 8,
|
|
|
|
damage = true,
|
|
damageExpiration = 8,
|
|
|
|
potion = "potion_of_spectral_agility",
|
|
|
|
package = "Enhancement",
|
|
} )
|
|
|
|
|
|
spec:RegisterSetting( "pad_windstrike", true, {
|
|
name = "Pad |T1029585:0|t Windstrike Cooldown",
|
|
desc = "If checked, the addon will treat |T1029585:0|t Windstrike's cooldown as slightly shorter, to help ensure that it is recommended as frequently as possible during Ascendance.",
|
|
type = "toggle",
|
|
width = 1.5
|
|
} )
|
|
|
|
spec:RegisterSetting( "pad_lava_lash", true, {
|
|
name = "Pad |T236289:0|t Lava Lash Cooldown",
|
|
desc = "If checked, the addon will treat |T236289:0|t Lava Lash's cooldown as slightly shorter, to help ensure that it is recommended as frequently as possible during Hot Hand.",
|
|
type = "toggle",
|
|
width = 1.5
|
|
} )
|
|
|
|
spec:RegisterSetting( "filler_shock", true, {
|
|
name = "Filler |T135813:0|t Shock",
|
|
desc = "If checked, the addon's default priority will recommend a filler |T135813:0|t Flame Shock when there's nothing else to push, even if something better will be off cooldown very soon. " ..
|
|
"This matches sim behavior and is a small DPS increase, but has been confusing to some users.",
|
|
type = "toggle",
|
|
width = 1.5
|
|
})
|
|
|
|
|
|
spec:RegisterPack( "Enhancement", 20220828, [[Hekili:TZvBVnUns4FlbfWngxQplzNS7Eioa9kkoSl6Tf4sbU7twwrM2riYs(KOt2ae4F73musuKuCOSSDA)qpGIfPsudN3NNzeLN7n)3MF)YqoB(x9h77p(J(FCK3hU(JJNo)E(RBzZVFBy0tHRH)inCd8V)C6JHPrSnSuoEVxtYcxI0OiBxEeC)7J38tZV)HDXj8pNo)b7e3hw)wweC5BMm)(hJxUKvUwwrK2wSFX9pgUjmD)x(XDR3va))(tUc(hGAZVpjUGxi27401jm4V(QqCcJ4XzPZV)L40Lf884Na2ILg(qcB58)(CoSR4QAUY9r5XCwECiY3Rwn6XmEaWblhTB7(fV92(fxUFr(Uu2QS81SrBZJ3eMeKe(CyaSt7c5z5fJy)3DXB3YwUFXG9leuX(6k4G6C)I72V4M9lg2WRILLew8iYFti5VlQiokAR2L)AapJZ2amQUu3ClKCtjjxJuTmlBtGqHzruuUP6ovas0MkfmSnx)oTnr5GAjijE9J8uWqJB1nVtBvCelOrG(W70UuSlDjqNsr5JU9frVOS8LXGN0lHpJ73lPIna9jdJxgWEgctgfUe2J4uHJ1u)sVwB3(wt)od6JC0NC59XJJEc5CjbwLaPfckEml6j8H9g7wE2eYsanmQxyHBZsLbeZ2V4A9GhvXgJehqkXwFKC2MW40IALvDKtX2K4uGJyaHse5ykKX5RqFSa5dElWtE(6HP1EHbpKLWfcShTxcH9zCd9EMb5bZBcv96k1uyCIiStZHAvEwbxXgmrnlilmN)ilnOyB7eHE0PgwMXhPyBb15QCwXJ4kjYA5rNa4c1eOfm2YIGSvb5HB2gMYdwNN9c)rL4h0weLLLGo7JwXYbtkW9a1AmQGECIIECvilGNhMwSAxbEbKDOtsWdtqJIqrUkzxE(RJQwxJhO4MpGrPSCxz98OZs0qNNySTgKjcmLP6z186ixGZyhfdEPBnO0EamnLoP0X0n2L8W1OJDLl5Zz5C230tQvP3eEuGBrmlzPMIdcZuDOdEKbmbiOa1lnzEY6PUx3yxr7xwzHujrJJXpaogqiB5)1OuWTaLoq)Xc30eW5tNV6pjAgvEwOrOtO1Txin3b39tJnD)bbd4vHlQFhz(O2wmh9y6chykexPV91YvQgBBazKotz3AfJnOmBGGQ0Pmb80jpaqhg9CwsipobYdNLi0P1lxPemKygqjTcqKlQTLVBl8NEIDGolOnGKn1(q1QlqL(FqvX1uiWqTDkP0obRQJ8DeoNQvL1aOnzSQGQwQvxuNO17HjOvJ16RUwfuNglJUra8zFMfyuLwHpJZzbPzphkOdTZR0nBl0D1oWlJHopajC6MH086wGmcKvEmLdANWcgNd6NIrRItsGCwMIHo6YjDuS1H38exEZq0sywtdKhP)QRSBhqvMJPvcl9gr7ZCABLwqXH0s5Px1SJsHDxD)qAj93r20SulDyH9W7s)SBKqfCTQPcwZ1kIEncJ3tzBIrwDirYdZqU6fz25OoCFIU4Gvj2voQF4fy8g3vpWkUSqrZKxdYZaTSsRBTDFncjAnBKgO7hcO4ZY2A2YGjMtlvrPBeRQd8AyLuw4BBzGD4oihlGnRJJoCpKbcyM6Z26mizz8wtVUQbBNn5LqyPtF2rax19KBpgJ2ra6Woh4r3fDodZ3W2WI0w06OLDnfKoGhFyZT4aqdVopduOXPphVolpufOsPCix4kmjloLHhsYkkY2uOVUdFCekSBVgYG1ScYX3D0g9B1bA0U(FxdK403unKaDn0IZW2zK98tQapB4fJgpO7R3zqjrrqhnfxLTsyjkXGOLYcD2iDfCAiB1rSZYevSrsfxiKSIgq82Y15332lk1rtO0rtvnmAt20W2qhN33rM1v7TUQkRn8s)oIAoqG)wM92j1cSruGYKdObV094sCQsN0Xe87bqNj0rnUCW8jCW07AUJoS1MRd5BcCIMpl94FMCaLMoTb10Qh5oWjPnpEBr3t0gqJzTldX7JARLEghhPxN12J186MQnLfxVZIPETwj5GhM2XqfpH5fSKTkCha(X8LodWnYwMSdI9L77dIawx4kRsEhweXsxIV7BniV0ZtvCB5Bkr5X1NJNaPzvpJ1GRRFh3QBuPneG0bQ(kdiwUEOsvS4OxdylxZuF34hYRtb86JEQSh9D5vpEfDxYeRqZMljFvEcjQ6MrL)aaRtqFtuTL2o8OeKhVT0O850FikBZdH89l2MHxA)IyyPpGqazOgS8EmCMhnMYYLk87nmEgexgjR6WabqGij8cjISbXnasWHXAXRJt()(eNSpHDxHYdUIP2M3E8qY8tHrWIHwccJGMaWwPW5kbmjROvke5skEbG5s2Qfuv76AoXf55TNkKS6uuyUOrLvqJpS8u8TIc1QwzD0lKloyQdECINZJoG3n0gGAHJMl5UorfaF)Ci8xWDgblp9jg3liUaC5IZvQGwFlKy04QSqmFAI5JetRPIDfqlMqM(cJYjooCdx4mGvgQOCZARGZqvqZE9yJIlbyPib74EWm9LDu2gwEbl)P6o8OlDDmBt)LAeeOqYfCJZdh1VdCdEtWJgNYByIinIJHF0nlDrhMIW1yWe4Qg9Ki7GN27Dr9Wry6Ss3AK7Ql6JhX6Rkyy9uNo7ZLXm1YmrU9H0az5oN4HRYK0zYKMAP2rSnMjCiGhQU999nUeuv4RZJ5f(EaCid6fOnG5Qs8l60wlPsBUuuWghhyklicsSc(MClh2eD0sR2Viln5v8FziKl2MxVcGLLhNbQn4YRYssYEbKdOG9(fFF5z787lfte4gEQphPwRojjO8)jaVf2fheSG8HL(n18RkpbPbv1Te7JaPUzwEn()xbwyda8pEBsf7d07QkULukcZo)IWDMIa(km51ZQss8SDi(0YUATpogT2QlE6vvFz9vQ1uD1bC1w)Y4rdoNvcREE3VvvP)zfatDaC2AeRCHU7RsqAr3Z8S017yDs92RvI9xMooJZHnchV2RSLVGyx5zFlo1SVt3mvZ8ZREBIKSK5kTHATH4QGURMFw96ASV6ZrIUir3zggqNEHm5OtqGDEyemQL0RjUybXy2wXbqOz51OgX)kzhtcrCe3BuCXiJwik5g9Lqc)12ID2NbWlvX1TXdZB)Yl7HS43TS43hzXV)YIVQSiYx8mKJc576Vuaii4LWC01hE()9p(V(6N)6)4VTFX(f)gMqnEZ2SCoMMnxMDnNvUXOdYgynH74zBaghUqe0w7AwXO9F5xIXQoExdK6NYsHnvC)Vx6s9FacXZ0UsTxfCNl9)2qjrMCKebN0Wp)R)cqnpb12)LoepzjWEiH(NjMRsuNEEOwNIA1u16NS6DZXXDvwZozkzPS(XwF4i5kvf)rsd7wXpAqS6ayVgQPKFcV2LtuE8pr84(wECF1hF)x(SqFIp1uDuqO2cszTJ)ywE93o028SvXyERV77aPW23ceEJwFpq4(us6Irsl2mdedxfVAMlih3cvFTqM)YS)ABWbsArJXGMCuajSVAtyaYTMcjb9gRu)hPcnKb7pUE5CKcx4eLWaYgqi0Y11RrstIh4T3iXayNU1fdVcRcnRvb1ReLiN1eq0Ua5BVPDxYAJgRZrzXEWP(uCQTs5nCG7Q4gRZjNwgZ9ZFJfTtegdTJM)kE4FWCGIwCazbtwIJvp85W4euggjfXzYxlcqP9l6Z84L0auoLlgDnUKCagdA3V8DZ(04boMXZTEJh(2Bxsmg8bwhbo8aMd)UHewg79aIrEd0Hyy3V9MEhF35bBzwrXaT52cr6vQ0Q3cHQ(Q59qOE16XBw5IP798NyLBB9kLoZrSIm1CRxmG5g4Fn9gqg0kY4Eat4VL0aYxBB3TE30wrOYv1zkfBl9a6T8i(wFeFRpICE7QxSzw3ckr6sw5QOn)03EZHd5DxRzzBg2D)3hv6iNsD)jtFyx9Xp)(UxAdFURT6IoupktQw766ZZ1D6hWh2fyJHdU0XaPvan0Ai0MrbZ8gQP0LCcYF2Zb6oqYa3u1itN5DTGGDJGY(iIhCPnE5gl8sDgvliXgCPBiCvpPTX)oSS0ZzzKUQAlZjIwLuu8CxvoC0zICsMwnb)C2grB3Se8qo4hDxaltIv92AdEvd0J6CwRHI9pr5dFno4r(PHTBKoKhBqyc85mTpkfzzk7hzN7MDT2dJSV(5TQ3(TQ5dQiP8WBEoiMTVbeD668l9yGJVYJbKFHh3n2KnuF()a2E5bMtXB04q2bjiaWuu3B6aQ7OD86hAUXgNZ3R0osALbhLviSCGGniLWcl82n8lC)TyibbAC8eB511Ck)ExOV8CLAthq81CmGWECRMsNW0C7nTSgk3TSUD1hnIJLzZGXj(smOyKdJBBPW0(CceiaO8b1ZVklZ12lE4acNTbUZ6bfdlrxB9ZOWev9mp)2WQL3CD0Y2gMMZwPmfS6hhrR13gE0rdX5W)MhoGC)wdgeWjocf)TTQ2OvA48qr9W(ZdnR5YJkn80dqnZD91fuHmZ6hzsFskXD9TdCuI2eZNsTewlXw)4alTo6Fha0seL3y7NX4453FqqgtpTFpmLCANaZ8AvC3MlC3c9bzW87WxKUgTdMSD5MMP7wpUQspWdyCUhuflLtfFhzsDKy(0SBwm8AdFY6nBob72u06dC3wFCQdTQSbH7fnlD4Diu2C1mB21YBznKt5Nknat5H(JKwtjI2RPuhQIOrU9wE3d20fQraYNLg0xpB2qsXZA)qsQ28BbXzIGNPESK0ZeNpvPuYXtm1cKP40BTAX7egBJRzlmKDGZJQ(Vfo26sRI46nErBIPAXrHzYIwBSn1ZbdMu(iePIShI743amBCtBOQxC4qovMlPTFXVUBInfGruDxVGaXnA(n9YwqDpHI0OxpEKfsA8EobJlPNHGhK52XegSfrCPq2S9Zm1pmz4qBU4VhJf5pAzQNduJ4DNDQjZaCI2tMP3gGTygQ72FaUkzSpbiEoQ07c0JNvDyDIStv)swSGs)QvW1IjVRu5DJ1WjUbBeV7oa6Wu64SyqgSBbslvHDR)kqDY(ftgloAHZ)Fp]] )
|
|
|
|
|
|
end
|
|
|