RJ4591423

Raise Dead WoD

Nov 17th, 2016
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. ---- Raise Dead -----
  2. Warlords of Draenor:
  3. Raise Dead is now only available to Unholy Death Knights, summons a ghoul as a permanent pet, and has a 1-minute cooldown.
  4.  
  5. Pet damage formula:
  6. PET_DAMAGE (normal damage) = ATTACK POWER / (ATTACK POWER PER 1 DAMAGE) + BASE_WEAPON_DAMAGE
  7. ATTACK POWER PER 1 DAMAGE depends on the weapon the player is using.
  8. You can find the chart for it here; http://wowwiki.wikia.com/wiki/Weapon_damage.
  9. Example of function of formula:
  10. Unholy Death Knight, using two-handed weapon. 5000 Attack power. Attack Power per 1 damage = 4.24 (from chart). Base weapon damage = 1245-1882 damage.
  11. Pet damage (normal damage) = 5000 / 4.24 + random number from range(1245, 1882)
  12. E.g:
  13. Base weapon damage = 1500.
  14. Pet damage (normal damage) = 5000 / 4.24 + 1500 = 2679 damage.
  15. Take in account the armor (physical damage reduction) most players have 37%. Pet damage on players: 1678.
  16. This is the ideal damage a ghoul should do.
  17.  
  18. *I've looked for hours for the formula but sadly found none, fortunately, Raise Dead's attacks were categorized under physical damage.
  19. I was able to find the physical damage formula for PETS.
  20.  
  21. Raise Dead | Dark Transformation
  22. ---------------------------------------------------------------------------------------------------------------------------------------
  23. http://wow.gamepedia.com/Claw_(ghoul_ability) | Rakes an enemy with deformed claws, dealing 150% of normal damage to the target and
  24. | up to 2 additional targets.
  25. ---------------------------------------------------------------------------------------------------------------------------------------
  26. http://wow.gamepedia.com/Gnaw | Strike an enemy with a smashing attack, dealing 125% of normal melee damage and
  27. | stunning for 4 sec.
  28. |
  29. ---------------------------------------------------------------------------------------------------------------------------------------
  30. http://wow.gamepedia.com/Huddle | Unleash a fortifying roar, reducing all damage taken by 50% for 10 sec.
  31. (Go into a defensive crouch, reducing all |
  32. damage taken by 50%, but preventing other |
  33. actions for 10 sec.) |
  34. ---------------------------------------------------------------------------------------------------------------------------------------
  35. http://wow.gamepedia.com/Leap | Charge an enemy, interrupting spellcasting and immobilizing them for 2 sec.
  36. (Leap behind the targeted friend or enemy.) |
  37.  
  38. SOURCE - http://wow.gamepedia.com/Risen_Ghoul
Advertisement
Add Comment
Please, Sign In to add comment