|
|
|
|
-- HunterMarksmanship.lua
|
|
|
|
|
-- June 2018
|
|
|
|
|
|
|
|
|
|
local addon, ns = ...
|
|
|
|
|
local Hekili = _G[ addon ]
|
|
|
|
|
|
|
|
|
|
local class = Hekili.Class
|
|
|
|
|
local state = Hekili.State
|
|
|
|
|
|
|
|
|
|
local PTR = ns.PTR
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Shadowlands Legendaries
|
|
|
|
|
-- [x] Eagletalon's True Focus
|
|
|
|
|
-- [-] Surging Shots (passive/reactive)
|
|
|
|
|
-- [-] Serpentstalker's Trickery (passive/reactive)
|
|
|
|
|
-- [-] Secrets of the Unblinking Vigil (passive/reactive)
|
|
|
|
|
|
|
|
|
|
-- Conduits
|
|
|
|
|
-- [x] Brutal Projectiles
|
|
|
|
|
-- [-] Deadly Chain
|
|
|
|
|
-- [-] Powerful Precision
|
|
|
|
|
-- [x] Sharpshooter's Focus
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if UnitClassBase( "player" ) == "HUNTER" then
|
|
|
|
|
local spec = Hekili:NewSpecialization( 254, true )
|
|
|
|
|
|
|
|
|
|
spec:RegisterResource( Enum.PowerType.Focus, {
|
|
|
|
|
death_chakram = {
|
|
|
|
|
aura = "death_chakram",
|
|
|
|
|
|
|
|
|
|
last = function ()
|
|
|
|
|
return state.buff.death_chakram.applied + floor( state.query_time - state.buff.death_chakram.applied )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
interval = function () return class.auras.death_chakram.tick_time end,
|
|
|
|
|
value = function () return state.conduit.necrotic_barrage.enabled and 5 or 3 end,
|
|
|
|
|
},
|
|
|
|
|
rapid_fire = {
|
|
|
|
|
channel = "rapid_fire",
|
|
|
|
|
|
|
|
|
|
last = function ()
|
|
|
|
|
local app = state.buff.casting.applied
|
|
|
|
|
local t = state.query_time
|
|
|
|
|
|
|
|
|
|
return app + floor( ( t - app ) / class.auras.rapid_fire.tick_time ) * class.auras.rapid_fire.tick_time
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
interval = function () return class.auras.rapid_fire.tick_time * ( state.buff.trueshot.up and 0.667 or 1 ) end,
|
|
|
|
|
value = 1,
|
|
|
|
|
}
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
-- Talents
|
|
|
|
|
spec:RegisterTalents( {
|
|
|
|
|
master_marksman = 22279, -- 260309
|
|
|
|
|
serpent_sting = 22501, -- 271788
|
|
|
|
|
a_murder_of_crows = 22289, -- 131894
|
|
|
|
|
|
|
|
|
|
careful_aim = 22495, -- 260228
|
|
|
|
|
barrage = 22497, -- 120360
|
|
|
|
|
explosive_shot = 22498, -- 212431
|
|
|
|
|
|
|
|
|
|
trailblazer = 19347, -- 199921
|
|
|
|
|
natural_mending = 19348, -- 270581
|
|
|
|
|
camouflage = 23100, -- 199483
|
|
|
|
|
|
|
|
|
|
steady_focus = 22267, -- 193533
|
|
|
|
|
streamline = 22286, -- 260367
|
|
|
|
|
chimaera_shot = 21998, -- 342049
|
|
|
|
|
|
|
|
|
|
born_to_be_wild = 22268, -- 266921
|
|
|
|
|
posthaste = 22276, -- 109215
|
|
|
|
|
binding_shackles = 23463, -- 321468
|
|
|
|
|
|
|
|
|
|
lethal_shots = 23063, -- 260393
|
|
|
|
|
dead_eye = 23104, -- 321460
|
|
|
|
|
double_tap = 22287, -- 260402
|
|
|
|
|
|
|
|
|
|
calling_the_shots = 22274, -- 260404
|
|
|
|
|
lock_and_load = 22308, -- 194595
|
|
|
|
|
volley = 22288, -- 260243
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
-- PvP Talents
|
|
|
|
|
spec:RegisterPvpTalents( {
|
|
|
|
|
dire_beast_basilisk = 825, -- 205691
|
|
|
|
|
dire_beast_hawk = 824, -- 208652
|
|
|
|
|
dragonscale_armor = 3600, -- 202589
|
|
|
|
|
hiexplosive_trap = 3605, -- 236776
|
|
|
|
|
hunting_pack = 3730, -- 203235
|
|
|
|
|
interlope = 1214, -- 248518
|
|
|
|
|
roar_of_sacrifice = 3612, -- 53480
|
|
|
|
|
scorpid_sting = 3604, -- 202900
|
|
|
|
|
spider_sting = 3603, -- 202914
|
|
|
|
|
survival_tactics = 3599, -- 202746
|
|
|
|
|
the_beast_within = 693, -- 212668
|
|
|
|
|
viper_sting = 3602, -- 202797
|
|
|
|
|
wild_protector = 821, -- 204190
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
-- Auras
|
|
|
|
|
spec:RegisterAuras( {
|
|
|
|
|
a_murder_of_crows = {
|
|
|
|
|
id = 131894,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
aspect_of_the_turtle = {
|
|
|
|
|
id = 186265,
|
|
|
|
|
duration = 8,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
binding_shot = {
|
|
|
|
|
id = 117526,
|
|
|
|
|
duration = 8,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
bursting_shot = {
|
|
|
|
|
id = 186387,
|
|
|
|
|
duration = 6,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
camouflage = {
|
|
|
|
|
id = 199483,
|
|
|
|
|
duration = 60,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
concussive_shot = {
|
|
|
|
|
id = 5116,
|
|
|
|
|
duration = 6,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
dead_eye = {
|
|
|
|
|
id = 321461,
|
|
|
|
|
duration = 3,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
double_tap = {
|
|
|
|
|
id = 260402,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
eagle_eye = {
|
|
|
|
|
id = 6197,
|
|
|
|
|
},
|
|
|
|
|
explosive_shot = {
|
|
|
|
|
id = 212431,
|
|
|
|
|
duration = 3,
|
|
|
|
|
type = "Magic",
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
feign_death = {
|
|
|
|
|
id = 5384,
|
|
|
|
|
duration = 360,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
freezing_trap = {
|
|
|
|
|
id = 3355,
|
|
|
|
|
duration = 60,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
hunters_mark = {
|
|
|
|
|
id = 257284,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
type = "Magic",
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
lethal_shots = {
|
|
|
|
|
id = 260393,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
},
|
|
|
|
|
lock_and_load = {
|
|
|
|
|
id = 194594,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
lone_wolf = {
|
|
|
|
|
id = 164273,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
master_marksman = {
|
|
|
|
|
id = 269576,
|
|
|
|
|
duration = 12,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
misdirection = {
|
|
|
|
|
id = 34477,
|
|
|
|
|
duration = 8,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
pathfinding = {
|
|
|
|
|
id = 264656,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
posthaste = {
|
|
|
|
|
id = 118922,
|
|
|
|
|
duration = 4,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
precise_shots = {
|
|
|
|
|
id = 260242,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 2,
|
|
|
|
|
},
|
|
|
|
|
rapid_fire = {
|
|
|
|
|
id = 257044,
|
|
|
|
|
duration = function () return 2 * haste end,
|
|
|
|
|
tick_time = function ()
|
|
|
|
|
return ( 2 * haste ) / ( buff.double_tap.up and 14 or 7 )
|
|
|
|
|
end,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
serpent_sting = {
|
|
|
|
|
id = 271788,
|
|
|
|
|
duration = 18,
|
|
|
|
|
type = "Poison",
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
steady_focus = {
|
|
|
|
|
id = 193534,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
streamline = {
|
|
|
|
|
id = 342076,
|
|
|
|
|
duration = 15,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
survival_of_the_fittest = {
|
|
|
|
|
id = 281195,
|
|
|
|
|
duration = 6,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
tar_trap = {
|
|
|
|
|
id = 135299,
|
|
|
|
|
duration = 30,
|
|
|
|
|
max_stack = 1
|
|
|
|
|
},
|
|
|
|
|
trailblazer = {
|
|
|
|
|
id = 231390,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
trick_shots = {
|
|
|
|
|
id = 257622,
|
|
|
|
|
duration = 20,
|
|
|
|
|
max_stack = 2,
|
|
|
|
|
},
|
|
|
|
|
trueshot = {
|
|
|
|
|
id = 288613,
|
|
|
|
|
duration = function () return ( legendary.eagletalons_true_focus.enabled and 20 or 15 ) * ( 1 + ( conduit.sharpshooters_focus.mod * 0.01 ) ) end,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
volley = {
|
|
|
|
|
id = 260243,
|
|
|
|
|
duration = 6,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Legendaries
|
|
|
|
|
nessingwarys_trapping_apparatus = {
|
|
|
|
|
id = 336744,
|
|
|
|
|
duration = 5,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
copy = { "nesingwarys_trapping_apparatus", "nesingwarys_apparatus", "nessingwarys_apparatus" }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
-- stub.
|
|
|
|
|
eagletalons_true_focus_stub = {
|
|
|
|
|
duration = 10,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
copy = "eagletalons_true_focus"
|
|
|
|
|
}
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateExpr( "ca_execute", function ()
|
|
|
|
|
return talent.careful_aim.enabled and ( target.health.pct > 70 )
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateExpr( "ca_active", function ()
|
|
|
|
|
return talent.careful_aim.enabled and ( target.health.pct > 70 )
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
local steady_focus_applied = 0
|
|
|
|
|
|
|
|
|
|
spec:RegisterEvent( "COMBAT_LOG_EVENT_UNFILTERED", function( event, _, subtype, _, sourceGUID, sourceName, _, _, destGUID, destName, destFlags, _, spellID, spellName, _, amount, interrupt, a, b, c, d, offhand, multistrike, ... )
|
|
|
|
|
local _, subtype, _, sourceGUID, sourceName, _, _, destGUID, destName, destFlags, _, spellID, spellName = CombatLogGetCurrentEventInfo()
|
|
|
|
|
|
|
|
|
|
if sourceGUID == state.GUID and ( subtype == "SPELL_AURA_APPLIED" or subtype == "SPELL_AURA_REFRESH" or subtype == "SPELL_AURA_APPLIED_DOSE" ) and spellID == 193534 then -- Steady Aim.
|
|
|
|
|
steady_focus_applied = GetTime()
|
|
|
|
|
end
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateExpr( "last_steady_focus", function ()
|
|
|
|
|
return steady_focus_applied
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
local ExpireNesingwarysTrappingApparatus = setfenv( function()
|
|
|
|
|
focus.regen = focus.regen * 0.5
|
|
|
|
|
forecastResources( "focus" )
|
|
|
|
|
end, state )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateTable( "tar_trap", setmetatable( {}, {
|
|
|
|
|
__index = function( t, k )
|
|
|
|
|
return debuff.tar_trap[ k ]
|
|
|
|
|
end
|
|
|
|
|
}, state ) )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Tier 28
|
|
|
|
|
spec:RegisterSetBonuses( "tier28_2pc", 364491, "tier28_4pc", 363666 )
|
|
|
|
|
-- 2-Set - Focused Trickery - Trick Shots now also increases the damage of the affected shot by 30%.
|
|
|
|
|
-- 4-Set - Focused Trickery - Spending 40 Focus grants you 1 charge of Trick Shots.
|
|
|
|
|
|
|
|
|
|
local focusSpent = 0
|
|
|
|
|
|
|
|
|
|
local FOCUS = Enum.PowerType.Focus
|
|
|
|
|
local lastFocus = -1
|
|
|
|
|
|
|
|
|
|
spec:RegisterUnitEvent( "UNIT_POWER_FREQUENT", "player", nil, function( event, unit, powerType )
|
|
|
|
|
if powerType == "FOCUS" then
|
|
|
|
|
local current = UnitPower( "player", FOCUS )
|
|
|
|
|
|
|
|
|
|
if current < lastFocus then
|
|
|
|
|
focusSpent = ( focusSpent + lastFocus - current ) % 40
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
lastFocus = current
|
|
|
|
|
end
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
spec:RegisterStateExpr( "focused_trickery_count", function ()
|
|
|
|
|
return focusSpent
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
spec:RegisterHook( "spend", function( amt, resource )
|
|
|
|
|
if set_bonus.tier28_4pc > 0 and resource == "focus" then
|
|
|
|
|
focused_trickery_count = focused_trickery_count + amt
|
|
|
|
|
if focused_trickery_count >= 40 then
|
|
|
|
|
applyBuff( "trick_shots" )
|
|
|
|
|
focused_trickery_count = focused_trickery_count % 40
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
spec:RegisterHook( "reset_precast", function ()
|
|
|
|
|
if now - action.serpent_sting.lastCast < gcd.execute * 2 and target.unit == action.serpent_sting.lastUnit then
|
|
|
|
|
applyDebuff( "target", "serpent_sting" )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if debuff.tar_trap.up then
|
|
|
|
|
debuff.tar_trap.expires = debuff.tar_trap.applied + 30
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if buff.nesingwarys_apparatus.up then
|
|
|
|
|
state:QueueAuraExpiration( "nesingwarys_apparatus", ExpireNesingwarysTrappingApparatus, buff.nesingwarys_apparatus.expires )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if legendary.eagletalons_true_focus.enabled then
|
|
|
|
|
rawset( buff, "eagletalons_true_focus", buff.trueshot_aura )
|
|
|
|
|
else
|
|
|
|
|
rawset( buff, "eagletalons_true_focus", buff.eagletalons_true_focus_stub )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if now - action.volley.lastCast < 6 then applyBuff( "volley", 6 - ( now - action.volley.lastCast ) ) end
|
|
|
|
|
|
|
|
|
|
if now - action.resonating_arrow.lastCast < 6 then applyBuff( "resonating_arrow", 10 - ( now - action.resonating_arrow.lastCast ) ) end
|
|
|
|
|
|
|
|
|
|
last_steady_focus = nil
|
|
|
|
|
focused_trickery_count = nil
|
|
|
|
|
end )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Abilities
|
|
|
|
|
spec:RegisterAbilities( {
|
|
|
|
|
a_murder_of_crows = {
|
|
|
|
|
id = 131894,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 60,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 645217,
|
|
|
|
|
|
|
|
|
|
talent = "a_murder_of_crows",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "a_murder_of_crows" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
aimed_shot = {
|
|
|
|
|
id = 19434,
|
|
|
|
|
cast = function ()
|
|
|
|
|
if buff.lock_and_load.up then return 0 end
|
|
|
|
|
return 2.5 * haste * ( buff.trueshot.up and 0.5 or 1 ) * ( buff.streamline.up and 0.7 or 1 )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
charges = 2,
|
|
|
|
|
cooldown = function () return haste * ( buff.trueshot.up and 4.8 or 12 ) end,
|
|
|
|
|
recharge = function () return haste * ( buff.trueshot.up and 4.8 or 12 ) end,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return buff.lock_and_load.up and 0 or ( ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 35 ) end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 135130,
|
|
|
|
|
|
|
|
|
|
cycle = function () return runeforge.serpentstalkers_trickery.enabled and "serpent_sting" or nil end,
|
|
|
|
|
|
|
|
|
|
usable = function ()
|
|
|
|
|
if action.aimed_shot.cast > 0 and moving and settings.prevent_hardcasts then return false, "prevent_hardcasts is checked and player is moving" end
|
|
|
|
|
return true
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "precise_shots" )
|
|
|
|
|
removeBuff( "lock_and_load" )
|
|
|
|
|
removeBuff( "double_tap" )
|
|
|
|
|
if buff.volley.down and buff.trick_shots.up then removeBuff( "trick_shots" ) end
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
arcane_shot = {
|
|
|
|
|
id = 185358,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132218,
|
|
|
|
|
|
|
|
|
|
notalent = "chimaera_shot",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
|
|
|
|
removeStack( "precise_shots" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
aspect_of_the_cheetah = {
|
|
|
|
|
id = 186257,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = function () return ( 180 * ( legendary.call_of_the_wild.enabled and 0.75 or 1 ) * ( talent.born_to_be_wild.enabled and 0.8 or 1 ) ) + ( conduit.cheetahs_vigor.mod * 0.001 ) end,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132242,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "aspect_of_the_cheetah" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
aspect_of_the_turtle = {
|
|
|
|
|
id = 186265,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = function () return ( 180 * ( legendary.call_of_the_wild.enabled and 0.75 or 1 ) * ( talent.born_to_be_wild.enabled and 0.8 or 1 ) ) + ( conduit.harmony_of_the_tortollan.mod * 0.001 ) end,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
toggle = "defensives",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132199,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "aspect_of_the_turtle" )
|
|
|
|
|
setCooldown( "global_cooldown", 5 )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
barrage = {
|
|
|
|
|
id = 120360,
|
|
|
|
|
cast = 3,
|
|
|
|
|
channeled = true,
|
|
|
|
|
cooldown = 20,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 30 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 236201,
|
|
|
|
|
|
|
|
|
|
talent = "barrage",
|
|
|
|
|
|
|
|
|
|
start = function ()
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
binding_shot = {
|
|
|
|
|
id = 109248,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 45,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 462650,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "binding_shot" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bursting_shot = {
|
|
|
|
|
id = 186387,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 10 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 1376038,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "bursting_shot" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
camouflage = {
|
|
|
|
|
id = 199483,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 60,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 461113,
|
|
|
|
|
|
|
|
|
|
usable = function () return time == 0 end,
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "camouflage" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
concussive_shot = {
|
|
|
|
|
id = 5116,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 5,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 135860,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "concussive_shot" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
chimaera_shot = {
|
|
|
|
|
id = 342049,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 236176,
|
|
|
|
|
|
|
|
|
|
talent = "chimaera_shot",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
|
|
|
|
removeStack( "precise_shots" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
counter_shot = {
|
|
|
|
|
id = 147362,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 24,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 249170,
|
|
|
|
|
|
|
|
|
|
toggle = "interrupts",
|
|
|
|
|
|
|
|
|
|
debuff = "casting",
|
|
|
|
|
readyTime = state.timeToInterrupt,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if conduit.reversal_of_fortune.enabled then
|
|
|
|
|
gain( conduit.reversal_of_fortune.mod, "focus" )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
interrupt()
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
disengage = {
|
|
|
|
|
id = 781,
|
|
|
|
|
cast = 0,
|
|
|
|
|
charges = 1,
|
|
|
|
|
cooldown = 20,
|
|
|
|
|
recharge = 20,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132294,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.posthaste.enabled then applyBuff( "posthaste" ) end
|
|
|
|
|
if conduit.tactical_retreat.enabled and target.within8 then applyDebuff( "target", "tactical_retreat" ) end
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
double_tap = {
|
|
|
|
|
id = 260402,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 60,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
toggle = "cooldowns",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 537468,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "double_tap" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--[[ eagle_eye = {
|
|
|
|
|
id = 6197,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132172,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
end,
|
|
|
|
|
}, ]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exhilaration = {
|
|
|
|
|
id = 109304,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 120,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
toggle = "defensives",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 461117,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
gain( 0.3 * health.max, "health" )
|
|
|
|
|
if conduit.rejuvenating_wind.enabled then applyBuff( "rejuvenating_wind" ) end
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
explosive_shot = {
|
|
|
|
|
id = 212431,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 236178,
|
|
|
|
|
|
|
|
|
|
talent = "explosive_shot",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "explosive_shot" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--[[ Using from BM module.
|
|
|
|
|
feign_death = {
|
|
|
|
|
id = 5384,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132293,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "feign_death" )
|
|
|
|
|
end,
|
|
|
|
|
}, ]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--[[ flare = {
|
|
|
|
|
id = 1543,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 20,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 135815,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
end,
|
|
|
|
|
}, ]]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
freezing_trap = {
|
|
|
|
|
id = 187650,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function ()
|
|
|
|
|
if legendary.nessingwarys_trapping_apparatus.enabled then
|
|
|
|
|
return -45, "focus"
|
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 135834,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "freezing_trap" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
hunters_mark = {
|
|
|
|
|
id = 257284,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 236188,
|
|
|
|
|
|
|
|
|
|
usable = function () return debuff.hunters_mark.down end,
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "hunters_mark" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
masters_call = {
|
|
|
|
|
id = 272682,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 45,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 236189,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "masters_call" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
misdirection = {
|
|
|
|
|
id = 34477,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 30,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132180,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "misdirection" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
multishot = {
|
|
|
|
|
id = 257620,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132330,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
|
|
|
|
if active_enemies > 2 then applyBuff( "trick_shots" ) end
|
|
|
|
|
removeStack( "precise_shots" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rapid_fire = {
|
|
|
|
|
id = 257044,
|
|
|
|
|
cast = function () return ( 2 * haste ) end,
|
|
|
|
|
channeled = true,
|
|
|
|
|
cooldown = function () return ( buff.trueshot.up and 8 or 20 ) * haste end,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = 0,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 461115,
|
|
|
|
|
|
|
|
|
|
start = function ()
|
|
|
|
|
applyBuff( "rapid_fire" )
|
|
|
|
|
if buff.volley.down then removeBuff( "trick_shots" ) end
|
|
|
|
|
if talent.streamline.enabled then applyBuff( "streamline" ) end
|
|
|
|
|
removeBuff( "brutal_projectiles" )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
finish = function ()
|
|
|
|
|
removeBuff( "double_tap" )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
auras = {
|
|
|
|
|
-- Conduit
|
|
|
|
|
brutal_projectiles = {
|
|
|
|
|
id = 339929,
|
|
|
|
|
duration = 3600,
|
|
|
|
|
max_stack = 1,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
serpent_sting = {
|
|
|
|
|
id = 271788,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 10 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 1033905,
|
|
|
|
|
|
|
|
|
|
velocity = 45,
|
|
|
|
|
|
|
|
|
|
talent = "serpent_sting",
|
|
|
|
|
|
|
|
|
|
impact = function ()
|
|
|
|
|
applyDebuff( "target", "serpent_sting" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
steady_shot = {
|
|
|
|
|
id = 56641,
|
|
|
|
|
cast = 1.8,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function () return buff.trueshot.up and -15 or -10 end,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132213,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
if talent.steady_focus.enabled and prev[1].steady_shot and action.steady_shot.lastCast > last_steady_focus then
|
|
|
|
|
applyBuff( "steady_focus" )
|
|
|
|
|
last_steady_focus = query_time
|
|
|
|
|
end
|
|
|
|
|
if debuff.concussive_shot.up then debuff.concussive_shot.expires = debuff.concussive_shot.expires + 3 end
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
summon_pet = {
|
|
|
|
|
id = 883,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 0,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
essential = true,
|
|
|
|
|
|
|
|
|
|
texture = function () return GetStablePetInfo(1) or 'Interface\\ICONS\\Ability_Hunter_BeastCall' end,
|
|
|
|
|
nomounted = true,
|
|
|
|
|
|
|
|
|
|
usable = function () return false and not pet.exists end, -- turn this into a pref!
|
|
|
|
|
handler = function ()
|
|
|
|
|
summonPet( "made_up_pet", 3600, "ferocity" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
survival_of_the_fittest = {
|
|
|
|
|
id = function () return pet.exists and 264735 or 281195 end,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 180,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
known = function ()
|
|
|
|
|
if not pet.exists then return 155228 end
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
toggle = "defensives",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
|
|
|
|
|
usable = function ()
|
|
|
|
|
return not pet.exists or pet.alive, "requires either no pet or a living pet"
|
|
|
|
|
end,
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "survival_of_the_fittest" )
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
copy = { 264735, 281195, 155228 }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tar_trap = {
|
|
|
|
|
id = 187698,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = function () return level > 55 and 25 or 30 end,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = function ()
|
|
|
|
|
if legendary.nessingwarys_trapping_apparatus.enabled then
|
|
|
|
|
return -45, "focus"
|
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 576309,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyDebuff( "target", "tar_trap" )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
trueshot = {
|
|
|
|
|
id = 288613,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 120,
|
|
|
|
|
gcd = "off",
|
|
|
|
|
|
|
|
|
|
spend = 0,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
toggle = "cooldowns",
|
|
|
|
|
|
|
|
|
|
startsCombat = false,
|
|
|
|
|
texture = 132329,
|
|
|
|
|
|
|
|
|
|
nobuff = function ()
|
|
|
|
|
if settings.trueshot_vop_overlap then return end
|
|
|
|
|
return "trueshot"
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
focus.regen = focus.regen * 1.5
|
|
|
|
|
reduceCooldown( "aimed_shot", ( 1 - 0.3077 ) * 12 * haste )
|
|
|
|
|
reduceCooldown( "rapid_fire", ( 1 - 0.3077 ) * 20 * haste )
|
|
|
|
|
applyBuff( "trueshot" )
|
|
|
|
|
|
|
|
|
|
if azerite.unerring_vision.enabled then
|
|
|
|
|
applyBuff( "unerring_vision" )
|
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
duration_guess = function( t )
|
|
|
|
|
return talent.calling_the_shots.enabled and 90 or t.duration
|
|
|
|
|
end,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
volley = {
|
|
|
|
|
id = 260243,
|
|
|
|
|
cast = 0,
|
|
|
|
|
cooldown = 45,
|
|
|
|
|
gcd = "spell",
|
|
|
|
|
|
|
|
|
|
spend = 0,
|
|
|
|
|
spendType = "focus",
|
|
|
|
|
|
|
|
|
|
startsCombat = true,
|
|
|
|
|
texture = 132205,
|
|
|
|
|
|
|
|
|
|
talent = "volley",
|
|
|
|
|
|
|
|
|
|
handler = function ()
|
|
|
|
|
applyBuff( "volley" )
|
|
|
|
|
applyBuff( "trick_shots", 6 )
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterOptions( {
|
|
|
|
|
enabled = true,
|
|
|
|
|
|
|
|
|
|
aoe = 3,
|
|
|
|
|
|
|
|
|
|
nameplates = false,
|
|
|
|
|
nameplateRange = 8,
|
|
|
|
|
|
|
|
|
|
damage = true,
|
|
|
|
|
damageExpiration = 6,
|
|
|
|
|
|
|
|
|
|
potion = "spectral_agility",
|
|
|
|
|
|
|
|
|
|
package = "Marksmanship",
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterSetting( "prevent_hardcasts", false, {
|
|
|
|
|
name = "Prevent Hardcasts of |T135130:0|t Aimed Shot During Movement",
|
|
|
|
|
desc = "If checked, the addon will not recommend |T135130:0|t Aimed Shot if it has a cast time and you are moving.",
|
|
|
|
|
type = "toggle",
|
|
|
|
|
width = "full"
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
spec:RegisterSetting( "eagletalon_swap", false, {
|
|
|
|
|
name = "Use |T132329:0|t Trueshot with Eagletalon's True Focus Runeforge",
|
|
|
|
|
desc = "If checked, the default priority includes usage of |T132329:0|t Trueshot pre-pull, assuming you will successfully swap " ..
|
|
|
|
|
"your legendary on your own. The addon will not tell you to swap your gear.",
|
|
|
|
|
type = "toggle",
|
|
|
|
|
width = "full",
|
|
|
|
|
} )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
spec:RegisterPack( "Marksmanship", 20220226, [[daf1pcqicPhrOQCjGc1MisFcHmkvkNsL0Qqsu8kvIMfqLBHKWUa9lekdJq0XOIwgvQNbu00qsKRrOY2OssFJqv14iufohvsyDQe6DafqnpQe3tLQ9rO8pGcWbPsIAHecpuLGjsOkYfbkO2iHQu6JafOrsOkfNKkjYkrs9sKeLAMuj1nrsuYobk9tGcYqjuLQLsOk5PsQPcu1xjuf1yrOAVq8xadwvhwyXe1JPQjlXLrTzK6ZiQrJGtRy1afqEnsmBvCBjz3u(TOHtehhjr1Yv65qnDsxhsBhiFhrgpssNNkSEGcz(eSFPgXjc4rQlHYiG1TiD7wKUD7Qq3UbtQevYvGuRoKWi1scpLGmJuBrfJutLvSuWvHHjmsqQLeoozuqapsnorxpJul(6NGQsWxKyeJ8OeqLH(SIy4Pc9e6KMFdALy4PYtmKAz05OUsgImsDjugbSUfPB3I0TBxf62nysLOsorQduLqUi11t1fqQjmLcBiYi1fg7rQPYkwk4QWWegj9lEdQP82ulEllVOX6OF3obx)UfPB3n1n1xGqyKz8fBQPI(bltIorTs)IxmopG4(hC)wQ9h9xXEcHn((vcC)rPKw)(WigP5C6VkSGmdBQPI(fVySdZZL(JsjT(LStUJ6OFsJsO)6P6c97klE31WMAQOFxZA)uz7yNWW9xySdZ3VsGNT)liEc3poRyDQymeP(myfJaEKADhpfmHuXiGhbSorapsnBH8HliIaP2VJY7ei1ACytHyLJIda60JIHSfYhU0V0(hdG(mKjO9lTFzuAAiw5O4aGo9Oy4YvXy4(DPFXHuhEDsdPgRCuCaGjKkIIaw3iGhPMTq(WferGu73r5DcK6f1y6CjZqjjQNaqsdSbyuUa0BqUInfdzlKpCPFP9lJstdPpHdEXavXsbIkbPo86KgsnL5CaWesfrralyIaEKA2c5dxqebsTFhL3jqQxuJPZLmdLKOEcajnWgGr5cqVb5k2umKTq(WfK6WRtAi10NWbxaWesfrralvcb8i1SfYhUGicKA)okVtGuFRFFcITWuifh7ew)s73N5PKKm4Y40cDmYaXUjj4YvXy4(DPFY(s)cc9lA)(eeBHPqko2jS(L2VO97tqSfMcTHmbfGo4(fe63NGylmfAdzckaDW9lT)B97Z8ussgK0CkayjZokgUCvmgUFx6NSV0VGq)(mpLKKbjnNcawYSJIHlxfJH7xS(btr2)1(fe6xJLmRqDQyanbkd3Vl97uK9li0VpZtjjzWLXPf6yKbIDtsWLRIXW9lw)ofz)s7p86aIbyJRgg3Vy9dM9FTFP9FRFr7FJPaWGytHrPGHmvhSI7xqO)nMcadInfgLcgUCvmgUFX63v0VGq)I2VpbXwykKIJDcR)Ri1HxN0qQljQ8Hb0qcIIawXHaEKA2c5dxqebsTFhL3jqQxuJPZLmdXj6HoxYmaxjZlgYwiF4s)s7xJfq3qcC5QymC)U0pzFPFP97Z8ussgK(eldxUkgd3Vl9t2xqQdVoPHuRXcOBibrraRRIaEKA2c5dxqebsD41jnKA6tSmsTFhL3jqQ1yb0nKarL0V0(xuJPZLmdXj6HoxYmaxjZlgYwiF4cs9zmgWxqQDloefbSIFeWJuhEDsdPMPQKtIhqmaMqQi1SfYhUGicefbSIhiGhPMTq(WferGu73r5DcKAr7FJPaWGytHrPGHmvhSI7xqO)nMcadInfgLcgUCvmgUFX63Pi7xqO)WRdigGnUAyC)IDV)nMcadInfgLcg6tut7Nkt)UrQdVoPHutAofaSKzhfJOiG1vGaEKA2c5dxqebsTFhL3jqQ9zEkjjdUmoTqhJmqSBscUCvmgUFx6NSV0V0(V1VO9RXHnfYuvYjXdigativiBH8Hl9li0Vmknnu(Kz5GIviQK(V2VGq)I2VpbXwykKIJDcRFbH(9zEkjjdUmoTqhJmqSBscUCvmgUFX63Pi7xqOF5eJ7xA)0dzckWYvXy4(DPFXHuhEDsdPMumNXide7MKqueW6uKiGhPMTq(WferGu73r5DcK6B97Z8ussgeuEoSd4YvXy4(DPFY(s)cc9lA)ACytHGYZHDazlKpCPFbH(1yjZkuNkgqtGYW97s)oD3)1(L2)T(fT)nMcadInfgLcgYuDWkUFbH(3ykami2uyuky4YvXy4(fRFxr)cc9hEDaXaSXvdJ7xS79VXuayqSPWOuWqFIAA)uz63D)xrQdVoPHuVmoTqhJmqSBscrraRtNiGhPMTq(WferGu73r5DcKAzuAA4Y40cDmYaXUjjiQK(fe6x0(9ji2ctHuCStyi1HxN0qQbLNd7arraRt3iGhPo86KgsTCSBqMrQzlKpCbreikcyDcMiGhPMTq(WferGu73r5DcKAzuAA4Y40cDmYaXUjjiQK(fe63N5PKKm4Y40cDmYaXUjj4YvXy4(fRFNISFbH(fTFFcITWuifh7ew)cc9lNyC)s7NEitqbwUkgd3Vl97wKi1HxN0qQ1fLXesfrraRtQec4rQzlKpCbrei1(DuENaPErnMoxYmeJUKhJmaMqQyiBH8Hl9lT)B97Z8ussgCzCAHogzGy3KeC5QymC)I1Vtr2VGq)I2VpbXwykKIJDcRFbH(fTFnoSPWsIkFyanKazlKpCP)R9lTFzuAAOUJNcaMqQy4YvXy4(f7E)mvzpQYa6uXi1HxN0qQ3qYuaONLrueW6uCiGhPMTq(WferGuhEDsdPoMkUaGjKksTFhL3jqQLrPPH6oEkaycPIHlxfJH7xS79ZuL9OkdOtf3V0(V1VmknnuYY(bZaycPIHLKK1VGq)0ONdWYEcXsMb0PI73L(9bwb0PI7)Y(j7l9li0VmknnuxugtiviQK(VIu7D4pmGglzwXiG1jIIawNUkc4rQzlKpCbrei1(DuENaPMo9O4(VSFFGvGLjZw)U0pD6rXWQGQi1HxN0qQlCOea8eckBuHOiG1P4hb8i1SfYhUGicKA)okVtGuFRFFMNssYGlJtl0Xide7MKGlxfJH7xS(DkY(L2)IAmDUKzigDjpgzamHuXq2c5dx6xqOFr73NGylmfsXXoH1VGq)I2)IAmDUKzigDjpgzamHuXq2c5dx6xqOFr7xJdBkSKOYhgqdjq2c5dx6)A)s7xgLMgQ74PaGjKkgUCvmgUFXU3ptv2JQmGovmsD41jnK6nKmfa6zzefbSofpqapsnBH8HliIaP2VJY7ei1YO00qDhpfamHuXWssY6xqOFzuAAOKL9dMbWesfdrL0V0(PtpkUFX63NyT)l7p86KgmMkUaGjKk0NyTFP9FRFr7xJdBk0tyQcEdamHuHSfYhU0VGq)HxhqmaBC1W4(fRFWS)Ri1HxN0qQRqp6GjKkIIawNUceWJuZwiF4cIiqQ97O8obsTmknnuYY(bZaycPIHOs6xA)0Phf3Vy97tS2)L9hEDsdgtfxaWesf6tS2V0(dVoGya24QHX97s)ujK6WRtAi1EctvWBaGjKkIIaw3Ieb8i1SfYhUGicKA)okVtGulJstdlCuayhmSKKmK6WRtAi1uMZbativefbSUDIaEK6WRtAi1bqf6w4fiPb8BscJuZwiF4cIiqueW62nc4rQdVoPHutFchCbativKA2c5dxqebIIaw3Gjc4rQzlKpCbrei1HxN0qQX8kHnfaRJrgP2VJY7ei1ltVmMqiFyKAVd)Hb0yjZkgbSorueW6MkHaEKA2c5dxqebsTFhL3jqQPtpkUFX63NyT)l7p86KgmMkUaGjKk0NyTFP9FRFFMNssYGlJtl0Xide7MKGlxfJH7xS(fx)cc9lA)(eeBHPqko2jS(VIuhEDsdPUc9OdMqQikcyDloeWJuZwiF4cIiqQ97O8obs9IAmDUKzOXy8yKjfRdmGUHejJrgiKij2qrXq2c5dxqQdVoPHuRXcOBibrraRBxfb8i1SfYhUGicKA)okVtGuVOgtNlzgAmgpgzsX6adOBirYyKbcjsInuumKTq(WfK6WRtAi10lZGrJrgq3qcIIaw3IFeWJuZwiF4cIiqQ97O8obsTmknnuxugtivyj
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end
|