Skip to content

Commit

Permalink
cata updates (#742)
Browse files Browse the repository at this point in the history
* changed felguard stun to Axe Toss as Intercept is deprecated as of 4.0.1

https://wowpedia.fandom.com/wiki/Intercept_(felguard_ability)
https://wowpedia.fandom.com/wiki/Axe_Toss

* added VT dispel effect

* added cata DK pet abilities

Shambling Rush dk pet kick
Monstrous Blow dk abom stun

* added hunter cata pet abilities

Nether Shock (nether ray pet kick)
Lock Jaw (dog pet root)
Pin (crab pet root)
Swoop (carrion bird pet root)
Venom Web Spray (silithid pet root)
Web (spider pet root)
Web Wrap (shale spider pet root)
Bad Manner (monkey stun)
Sonic Blast (bat pet stun)
Sting (wasp pet stun)
Clench (scorpid pet disarm)
Snatch (bird of prey pet disarm)
Serenity Dust (moth pet silence)
Sting (wasp pet stun)

* fixed indentation
  • Loading branch information
Poli93 authored Jun 14, 2024
1 parent 294aea3 commit f8dc5ca
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions BigDebuffs_Cata.lua
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ addon.Spells = {
[49203] = { type = CROWD_CONTROL, }, -- Hungering Cold
[50461] = { type = BUFF_DEFENSIVE, }, -- Anti-Magic Zone
[49016] = { type = BUFF_OFFENSIVE, }, -- Unholy Frenzy
[91802] = { type = INTERRUPT, duration = 2 }, -- Shambling Rush (pet dk kick)
[91797] = { type = CROWD_CONTROL }, -- Monstrous Blow (dk abom stun)

-- Priest

Expand All @@ -165,6 +167,7 @@ addon.Spells = {
[27827] = { type = IMMUNITY }, -- Spirit of Redemption
[33206] = { type = BUFF_DEFENSIVE }, -- Pain Suppression
[14751] = { type = BUFF_DEFENSIVE }, -- Inner Focus
[87204] = { type = CROWD_CONTROL }, -- Sin and Punishment (VT dispel)

-- Warlock

Expand All @@ -191,7 +194,7 @@ addon.Spells = {
[18708] = { type = BUFF_DEFENSIVE }, -- Fel Domination
[32752] = { type = CROWD_CONTROL }, -- Summoning Disorientation
[19482] = { type = CROWD_CONTROL }, -- Doom Guard Stun
[30153] = { type = CROWD_CONTROL }, -- Felguard Stun
[89766] = { type = CROWD_CONTROL }, -- Axe Toss (felguard stun)

-- Shaman

Expand Down Expand Up @@ -269,7 +272,21 @@ addon.Spells = {
[5384] = { type = BUFF_DEFENSIVE }, -- Feign Death
[24394] = { type = CROWD_CONTROL }, -- Intimidation
[19577] = { type = BUFF_OFFENSIVE, parent = 24394 }, -- Intimidation (Buff)

[50479] = { type = INTERRUPT, duration = 2}, -- Nether Shock (nether ray pet kick)
[90327] = { type = ROOT }, -- Lock Jaw (dog pet root)
[50245] = { type = ROOT }, -- Pin (crab pet root)
[52825] = { type = ROOT }, -- Swoop (carrion bird pet root)
[54706] = { type = ROOT }, -- Venom Web Spray (silithid pet root)
[4167] = { type = ROOT }, -- Web (spider pet root)
[96201] = { type = ROOT }, -- Web Wrap (shale spider pet root)
[90337] = { type = CROWD_CONTROL }, -- Bad Manner (monkey stun)
[50519] = { type = CROWD_CONTROL }, -- Sonic Blast (bat pet stun)
[56626] = { type = CROWD_CONTROL }, -- Sting (wasp pet stun)
[50541] = { type = CROWD_CONTROL }, -- Clench (scorpid pet disarm)
[91644] = { type = CROWD_CONTROL }, -- Snatch (bird of prey pet disarm)
[50318] = { type = CROWD_CONTROL }, -- Serenity Dust (moth pet silence)
[56626] = { type = CROWD_CONTROL }, -- Sting (wasp pet stun)


-- Druid

Expand Down

0 comments on commit f8dc5ca

Please sign in to comment.