Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---- Raise Dead -----
- Warlords of Draenor:
- Raise Dead is now only available to Unholy Death Knights, summons a ghoul as a permanent pet, and has a 1-minute cooldown.
- Pet damage formula:
- PET_DAMAGE (normal damage) = ATTACK POWER / (ATTACK POWER PER 1 DAMAGE) + BASE_WEAPON_DAMAGE
- ATTACK POWER PER 1 DAMAGE depends on the weapon the player is using.
- You can find the chart for it here; http://wowwiki.wikia.com/wiki/Weapon_damage.
- Example of function of formula:
- 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.
- Pet damage (normal damage) = 5000 / 4.24 + random number from range(1245, 1882)
- E.g:
- Base weapon damage = 1500.
- Pet damage (normal damage) = 5000 / 4.24 + 1500 = 2679 damage.
- Take in account the armor (physical damage reduction) most players have 37%. Pet damage on players: 1678.
- This is the ideal damage a ghoul should do.
- *I've looked for hours for the formula but sadly found none, fortunately, Raise Dead's attacks were categorized under physical damage.
- I was able to find the physical damage formula for PETS.
- Raise Dead | Dark Transformation
- ---------------------------------------------------------------------------------------------------------------------------------------
- http://wow.gamepedia.com/Claw_(ghoul_ability) | Rakes an enemy with deformed claws, dealing 150% of normal damage to the target and
- | up to 2 additional targets.
- ---------------------------------------------------------------------------------------------------------------------------------------
- http://wow.gamepedia.com/Gnaw | Strike an enemy with a smashing attack, dealing 125% of normal melee damage and
- | stunning for 4 sec.
- |
- ---------------------------------------------------------------------------------------------------------------------------------------
- http://wow.gamepedia.com/Huddle | Unleash a fortifying roar, reducing all damage taken by 50% for 10 sec.
- (Go into a defensive crouch, reducing all |
- damage taken by 50%, but preventing other |
- actions for 10 sec.) |
- ---------------------------------------------------------------------------------------------------------------------------------------
- http://wow.gamepedia.com/Leap | Charge an enemy, interrupting spellcasting and immobilizing them for 2 sec.
- (Leap behind the targeted friend or enemy.) |
- SOURCE - http://wow.gamepedia.com/Risen_Ghoul
Advertisement
Add Comment
Please, Sign In to add comment