Thread: MoP Debuffs
View Single Post
10-09-12, 03:57 AM   #10
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 1,740
Buff list from wowhead:
Lua Code:
  1. -- BUFFS
  2.  
  3. -- +5% STR, AGI, INT
  4.  
  5. {
  6.   1126,       -- druid (mark of the wild)
  7.   115921,     -- monk (legacy of the emperor)
  8.   20217,      -- paladin (blessing of kings)
  9.   90363,      -- pet, spider (embrace of the shale spider)
  10. }
  11.  
  12. -- +10% STA
  13.  
  14. {
  15.   21562,      -- priest (power word: fortitude)
  16.   103127,     -- warlock (imp: blood pact)
  17.   469,        -- warrior (commanding shout)
  18.   90364,      -- pet, silithid (qiraji fortitude)
  19. }
  20.  
  21. -- +10% AP / RAP
  22.  
  23. {
  24.   57330,      -- deathknight (horn of winter)
  25.   19506,      -- hunter (trueshot aura)
  26.   6673,       -- warrior (battle shout)
  27. }
  28.  
  29. -- +10% SP
  30.  
  31. {
  32.   1459,       -- mage (arcane brilliance)
  33.   61316,      -- mage (dalaran brilliance)
  34.   77747,      -- shaman (burning wrath)
  35.   109773,     -- warlock (dark intent)
  36.   126309,     -- pet, waitstrider (still water)
  37. }
  38.  
  39. -- +10% melee+ranged haste
  40.  
  41. {
  42.   55610,      -- deathknight (unholy aura)
  43.   113742,     -- rogue (swiftblades cunning)
  44.   30809,      -- shaman (unleashed rage)
  45.   128432,     -- pet, hyena (cackling howl)
  46.   128433,     -- pet, serpent (serpents swiftness)
  47. }
  48.  
  49. -- +5% spell haste
  50.  
  51. {
  52.   24907,      -- druid (moonkin aura)
  53.   15473,      -- priest (shadowform)
  54.   51470,      -- shaman (elemental oath)
  55.   49868,      -- pet, sporebat (mind quickening)
  56. }
  57.  
  58. -- +5% crit
  59.  
  60. {
  61.   17007,      -- druid (leader of the pack)
  62.   1459,       -- mage (arcane brilliance)
  63.   61316,      -- mage (dalaran brilliance)
  64.   116781,     -- monk (legacy of the white tiger)
  65.   97229,      -- pet, hydra
  66.   24604,      -- pet, wolf
  67.   90309,      -- pet, devilsaur
  68.   126373,     -- pet, quillen
  69.   126309,     -- pet, waterstrider
  70. }
  71.  
  72. -- +3000 mastery
  73.  
  74. {
  75.   19740,      -- paladin (blessing of might)
  76.   116956,     -- shaman (grace of air)
  77.   93435,      -- pet, cat
  78.   128997,     -- pet, spirit beast
  79. }
  80.  
  81. -- 30% haste (burst)
  82.  
  83. {
  84.   80353,      -- paladin (time warp)
  85.   2825,       -- shaman (bloodlust)
  86.   32182,      -- shaman (heroism)
  87.   90355,      -- pet, core hound
  88. }

Debuff list:
Lua Code:
  1. -- DEBUFFS
  2.  
  3. -- -10% armor
  4. {
  5.   113746,     -- global icon (weakened armor)
  6. }
  7.  
  8. -- +4% physical damage taken
  9. {
  10.   81326,     -- global icon (pysical vulnerability)
  11. }
  12.  
  13. -- -10% physical damage done
  14. {
  15.   115798,     -- global icon (weakened blows)
  16. }
  17.  
  18. -- -25% healing received
  19. {
  20.   115804,     -- global icon (mortal wounds)
  21. }
  22.  
  23. -- +5% spell damage taken
  24. {
  25.   58410,      -- rogue (master poisoner)
  26.   1490,       -- warlock (curse of elements)
  27.   34889,      -- pet, dragonhawk
  28.   24844,      -- pet, windserpent
  29. }
  30.  
  31. -- -30% casting speed
  32. {
  33.   73975,      -- deathknight (necrotic strike)
  34.   31589,      -- mage (slow)
  35.   5761,       -- rogue (mind numbing poison)
  36.   109466,     -- warlock (curse of enfeeblement)
  37.   50274,      -- pet, sporebat
  38.   90314,      -- pet, fox
  39.   126402,     -- pet, goat
  40.   58604,      -- pet, core hound
  41. }

Next to that that are tons of class specific cooldowns with or without party-/raid-wide effect.

Like Demoralizing Shout and Demoralizing Banner. They stack on top of weakened blows.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)

Last edited by zork : 10-09-12 at 04:20 AM.