added scare beast debuff and cooldown #24

Closed
Kazimazi wants to merge 3 commits from main into main
3 changed files with 16 additions and 5 deletions

View File

@ -264,6 +264,16 @@ local importantAuras = {
onDamage = true,
spellID = 19503,
},
-- Scare Beast
[GetSpellInfo(14327)] = {
track = AURA_TYPE_DEBUFF,
duration = 8,
priority = 40,
onDamage = true,
fear = true,
magic = true,
spellID = 14327,
},
-- Silencing Shot
[GetSpellInfo(34490)] = {
track = AURA_TYPE_DEBUFF,
@ -915,6 +925,7 @@ local cooldownList = {
-- Hunter
["HUNTER"] = {
[19503] = 30, -- Scatter Shot
[14327] = 30, -- Scare Beast
[19263] = 300, -- Deterrence; not on BM but can't do 2 specs
[14311] = { cd = 30, -- Freezing Trap
sharedCD = {

View File

@ -1,6 +1,6 @@
## Interface: 20502
## Title: Gladdy - TBC
## Version: 1.22-Release
## Version: 1.23-Release
## Notes: The most powerful arena AddOn for WoW 2.5.1
## Author: XiconQoo, DnB_Junkee, Knall
## X-Email: contact me on discord Knall#1751

View File

@ -188,9 +188,9 @@ Data.spells = {
--[[ SLEEPS ]]--
-- Hibernate
[2637] = "sleep",
[18657] = "sleep",
[18658] = "sleep",
[2637] = "disorient",
[18657] = "disorient",
[18658] = "disorient",
-- Wyvern Sting
[19386] = "disorient",
@ -398,4 +398,4 @@ local function COMBAT_LOG_EVENT_UNFILTERED(self, event, timestamp, eventType, so
resetDR(destGUID)
end
end
]]
]]