I was told there wouldn't be any maths...can you break it down for the layman (or extrapolate the data for a couple examples)?
The relation for how these behave in the engine is below:
Damage after armour reduction = (ran.*0.1+0.9)*RD-[round{(1.0-1/((ran.*0.55+0.45)*RF*0.014)*[(ran.*0.1+0.9)*RD-(ran.*0.55+0.45)*SF]+(ran.*0.55+0.45)*SF}]
RD=raw damage RF=reduction factor*armour SF=soak factor*armour
(1.0-1/((ran.*0.55+0.45)*RF*0.014)*[(ran.*0.1+0.9)*RD-(ran.*0.55+0.45)*SF]+(ran.*0.55+0.45)*SF
I was gonna simplify it a bit but then I realized it's missing a ). Not sure where that would come or where you should remove a ( from.
(1.0-1/((ran.*0.55+0.45)*RF*0.014)*[(ran.*0.1+0.9)*RD-(ran.*0.55+0.45)*SF]+(ran.*0.55+0.45)*SF
One more ( in that part than ).
Pierce has the lowest reduction factor and a mediocre soak factor. This means that piercing weapons penetrate armor easily, but still suffer from quite a lot of soak factor. As such, you will glance the least often with piercing weapons, giving you a rather consistent damage output.
Blunt has the lowest soak factor and a mediocre reduction factor. This means that blunt weapons will glance more often on armor than pierce (Not as much as cut though), but once it "breaks" through the armor, it deals a lot of damage. This is invented to make some blunt weapons effective against armor, and others not.
There's something just plain wrong with the equation still.
={(ran.*0.1 + 0.9)*RD} - round[ {(1.0 - 1.0 / ((ran.*0.55 + 0.45)*RF*0.014))*(ran.*0.1 + 0.9)*RD - (ran.* 0.55 + 0.45)*SF} + {(ran.*0.55 + 0.45)*SF}]
ran. on average is 0.5.
So:
0.95*RD
- 1.0
- 1.0 / ((0.725)*RF*0.014))
* 0.95*RD
- (0.725)*SF
+ 0.725*SF
So basically the 0.725*SF things remove each other removing the SF from equation completely.
((0.725)*RF*0.014) is 0.0105 * RF. With 80 armor and cut it's 1,344 and with 1 armor and pierce (0 makes it NaN) it's 0,0115. That means the multiplier for 0.95*RD will range from about 86 to about 0.75. With raw damage of 50 0.95*RD is 47.5. It's no real surprise that 47.5 * even 10 goes way way way over what the function is supposed to do. Though I might've made a mistake in both here and in Excel.
={(ran.*0.1 + 0.9)*RD} - round[ {(1.0 - 1.0 / ((ran.*0.55 + 0.45)*RF*0.014))*(ran.*0.1 + 0.9)*RD - (ran.* 0.55 + 0.45)*SF} + {(ran.*0.55 + 0.45)*SF}]
I bet there should be () so that the first SF is related to the multiplying of 1/(modified RF)*RD
={(ran.*0.1 + 0.9)*RD} - round[ {(1.0 - 1.0 / ((ran.*0.55 + 0.45)*RF*0.014))*((ran.*0.1 + 0.9)*RD - (ran.* 0.55 + 0.45)*SF)} + {(ran.*0.55 + 0.45)*SF}]
I believe that is what was missing.
It's such a cluster fuck.
If it makes it any easier to read for the layman, you could alternatively look at this:(click to show/hide)
cmp posted these a while ago, probably not for the layman:
http://forums.taleworlds.com/index.php/topic,168722.msg4090900.html#msg4090900
http://forums.taleworlds.com/index.php/topic,168722.msg4090940.html#msg4090940
lern2euler
math.exp(x) = e^x
TW prolly only did this to avoid DIV0. :| -> 8-)