• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Banish

Status
Not open for further replies.
Level 6
Joined
Jun 11, 2009
Messages
151
I'm creating a spell that is going to be using banish. We all know that banish deals 66% more damage, but the thing is that I'm confused about it. Does it deal damage of spell x 66%?
 
Level 19
Joined
Feb 25, 2009
Messages
2,004
You deal 100 damage to the target with a spell, which has Banish. Cause of damage reduction the target takes 86 spell-damage (for example), but it has Banish so ..
86 (primary damage) x 0.66 (damage multiplier) = 56.76 (extra damage from Banish), removing the .76 its 56,
then 86 (primary damage) + 56 (damage bonus from Banish) = 142 (exact damage).

So the target takes 142 spell-damage if it has Banish.
 
Level 18
Joined
Jan 21, 2006
Messages
2,552
Think about it this way.

Damage = 100%
Reduction = -20% (lets say)
Amplification = +66%

Code:
100% + 66% - 20% = 146%

If you were using -14% as you were (for the value of 86 damage) then it would yield:

Code:
100% + 66% - 14% = 152%

Giving you 152 damage.
 
Status
Not open for further replies.
Top