Forums-->General game forum-->
Author | Rules of damage and healing |
It says "The attack parameter increases dealt damage, while the defense parameter of the defending stack decreases it."
I wonder how exactly the attack parameter increase the dealt damage, and how exactly defense parameter affect the damage also. There must be some formula right? so what is it? | As far as i know damge is increased by 5% for each point of attack over defense. If defense has the higher value you take 1+ 0,05 per point that defense tops attack and then you divide the damage through that value.
e.g. atack 10 defense 7 normal damage 100
--> 100*(1+3*0,05)=115
or attack 4 defense 10 normal damage 100
--> 100/(1+6*0,05)=77 | Attack and defense parameters influence damage dealt (and taken). The exact formula for physical damage is:
-IF Attacker's attack>= Defenders' defense:
D=Rnd(min,max)*N*(1-0.03*M)*[1+0.05(Attack-Defense)]
-IF attack<defense:
D=Rnd(min,max)*N*(1-0.03M)/[1+0.05(Defense-Attack)]
D-damage
Rnd(min,max)-random integer of the min-max damage interval
N-number of creatures in stack
M-mutual faction skill (i.e.: What level of the enemy faction's racial skill does the defender possess.
basicly higher attack gives 5% extra damage per point, higher defense reduces slightly less than 5% per point. |
This topic is long since last update and considered obsolete for further discussions. Back to topics list
|