Page 1 of 1

New here, what's the damage multiplier on crit?

Posted: Sun Dec 09, 2018 3:34 am
by Squig
x1.5, x2?

Re: New here, what's the damage multiplier on crit?

Posted: Sun Dec 09, 2018 7:12 am
by bichka
1.5 if you are not BW/sorc or don't have special tactics like WH/WE/etc

Re: New here, what's the damage multiplier on crit?

Posted: Sun Dec 09, 2018 3:54 pm
by chargedbolt
It can also be noted that certain stances like assault for Shadow Warrior has a 2x crit multiplier for some abilities.

Re: New here, what's the damage multiplier on crit?

Posted: Sun Dec 09, 2018 5:12 pm
by Sulorie
Normal crit modifier is random 1,4-1,6x.

Re: New here, what's the damage multiplier on crit?

Posted: Mon Dec 10, 2018 12:08 am
by Ramasee
1.35 - 1.55*
Spoiler:
if (rand <= chanceToBeCrit || chanceToBeCrit > 99)
{
float critDmgMult = 1.35f + (float)StaticRandom.Instance.NextDouble() * 0.2f + damageInfo.CriticalHitDamageBonus + (caster.StsInterface.GetTotalStat(Stats.CriticalDamage) * 0.01f) + (target.StsInterface.GetTotalStat(Stats.CriticalDamageTaken) * 0.01f);

*redacted*
else
damageInfo.DamageEvent = (byte)CombatEvent.COMBATEVENT_HIT;