Advertisement
Guest User

Untitled

a guest
May 25th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. // this goes to spell.mgr
  2. // druid - initial dmg from these abilities although gets increased dmg from bleed increase dmg debuffs (mangle, trauma) but doesn't ignore armor like it should - hack fix
  3.  
  4. case 48574: // Rake Rank 7 - initial dmg ignores armor
  5. case 48573: // Rake Rank 6 - initial dmg ignores armor
  6. case 27003: // Rake Rank 5 - initial dmg ignores armor
  7. case 9904: // Rake Rank 4 - initial dmg ignores armor
  8. case 1824: // Rake Rank 3 - initial dmg ignores armor
  9. case 1823: // Rake Rank 2 - initial dmg ignores armor
  10. case 1822: // Rake Rank 1 - initial dmg ignore armor
  11. case 48568: // Lacerate Rank 3 - initial dmg ignores armor
  12. case 48567: // Lacerate Rank 2 - initial dmg ignores armor
  13. case 33745: // Lacerate Rank 1 - initial dmg ignores armor
  14. spellInfo->AttributesCu |= SPELL_ATTR0_CU_IGNORE_ARMOR;
  15. break;
  16. // shaman - these enchants procced talents like elemental devastation and clearcasting where it shouldn't - hacks
  17. case 10444: // flamentongue weapon no proc
  18. spellInfo->AttributesEx3 |= SPELL_ATTR3_CANT_TRIGGER_PROC;
  19. break;
  20. case 58799: // frostbrand weapon rank 9 no proc
  21. case 58798: // frostbrand weapon rank 8 no proc
  22. case 58797: // frostbrand weapon rank 7 no proc
  23. case 25501: // frostbrand weapon rank 6 no proc
  24. case 16353: // frostbrand weapon rank 5 no proc
  25. case 16352: // frostbrand weapon rank 4 no proc
  26. case 10458: // frostbrand weapon rank 3 no proc
  27. case 8037: // frostbrand weapon rank 2 no proc
  28. case 8034: // frostbrand weapon rank 1 no proc
  29. spellInfo->AttributesEx3 |= SPELL_ATTR3_CANT_TRIGGER_PROC;
  30. break;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement