Author | What does defence do |
? |
press defense button gives that unit 30% added defense for 1 turn. |
I think he meant what does the defence stat do not the option |
reduces damage |
by how much and what is the fomulas for attack, damage and defence? |
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. |
What about when the hero defends? |
it skips the hero's turn... |