• 🏆 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!

Explain me how do I calculate the damage of Cluster Rockets

Status
Not open for further replies.
Level 10
Joined
Apr 18, 2009
Messages
576
Look at the fields
Data - Damage Interval
Data - Damage Amount
Data - Max Damage
for the ability in the object editor.

if
[Damage Amount * number of targets in the AoE] is less than or equal to Max Damage
or
Max Damage is set to 0
then:
Damage dealt to each target in the AoE will be: Damage Amount points of damage.

else:
Damage dealt to each target in the AoE will be: [Max Damage / number of targets in the AoE] points of damage.


Shortly: set Max Damage to 0. Then every Damage Interval seconds damage dealt to each target in the AoE will be: Damage Amount points of damage.

Do you understand how the fields Damage Interval and Effect Duration make up the total number of waves of damage?
 
  • Like
Reactions: hdm

hdm

hdm

Level 9
Joined
Nov 19, 2011
Messages
384
Look at the fields
Data - Damage Interval
Data - Damage Amount
Data - Max Damage
for the ability in the object editor.

if
[Damage Amount * number of targets in the AoE] is less than or equal to Max Damage
or
Max Damage is set to 0
then:
Damage dealt to each target in the AoE will be: Damage Amount points of damage.

else:
Damage dealt to each target in the AoE will be: [Max Damage / number of targets in the AoE] points of damage.


Shortly: set Max Damage to 0. Then every Damage Interval seconds damage dealt to each target in the AoE will be: Damage Amount points of damage.

Do you understand how the fields Damage Interval and Effect Duration make up the total number of waves of damage?

Is there any way to simplify this ? :vw_wtf:
 
Status
Not open for further replies.
Top