From 36dada76eb71545a2dd8aebe467a5d8020defbc7 Mon Sep 17 00:00:00 2001 From: syrifgit <139663837+syrifgit@users.noreply.github.com> Date: Mon, 16 Sep 2024 01:19:19 -0300 Subject: [PATCH] Rsham, BM Groundwork for Restosham healing maintenance, Rsham preferred shield spec option groundwork (commented out until future PR), BM fix to stop "surprise" killshot in opener (it is not a surprise it's 100% guaranteed). --- TheWarWithin/HunterBeastMastery.lua | 1 + TheWarWithin/ShamanElemental.lua | 1 + TheWarWithin/ShamanRestoration.lua | 12 ++++++++++++ 3 files changed, 14 insertions(+) diff --git a/TheWarWithin/HunterBeastMastery.lua b/TheWarWithin/HunterBeastMastery.lua index 4d1ac351c..8be5beeaf 100644 --- a/TheWarWithin/HunterBeastMastery.lua +++ b/TheWarWithin/HunterBeastMastery.lua @@ -1485,6 +1485,7 @@ spec:RegisterAbilities( { handler = function() applyDebuff( "target", "black_arrow" ) + if talent.death_shade.enabled then applyBuff ( "hunters_prey" ) end end, }, diff --git a/TheWarWithin/ShamanElemental.lua b/TheWarWithin/ShamanElemental.lua index e80acbb15..d0f7fa2d3 100644 --- a/TheWarWithin/ShamanElemental.lua +++ b/TheWarWithin/ShamanElemental.lua @@ -268,6 +268,7 @@ spec:RegisterAuras( { type = "Magic", max_stack = function() return 9 + 3 * talent.earthen_communion.rank end, dot = "buff", + friendly = true, shared = "player", copy = { 383648, 974 } }, diff --git a/TheWarWithin/ShamanRestoration.lua b/TheWarWithin/ShamanRestoration.lua index 9eb241718..d98f3ad31 100644 --- a/TheWarWithin/ShamanRestoration.lua +++ b/TheWarWithin/ShamanRestoration.lua @@ -1044,6 +1044,18 @@ spec:RegisterSetting( "experimental_msg", nil, { width = "full", } ) +--[[spec:RegisterSetting( "second_shield", "earth_shield", { + name = "|T136082:0|t Preferred 2nd shield", + desc = "Specify which shield you want to use alongside water shield when you have talented into Elemental Orbit", + type = "select", + values = function() + return { + earth_shield = class.abilityList.earth_shield, + lightning_shield = class.abilityList.lightning_shield, + } + end, + width = "normal" +} )--]] spec:RegisterRanges( "lightning_bolt", "flame_shock", "wind_shear", "primal_strike" )