This only covers melee currently, because missile combat is broken. Once that's changed, I'll try to remember to update this thread. Feel free to poke me if I forget.
For that matter, some of this describes how we want things to be, not how they actually currently are -- but those deviations are comparatively minor and will be patched shortly.
v4 melee bases all of its damage off of the damage dice on the weapon. When you attack a monster, here's what happens:
1) First, we calculate how many blows per round you get. This depends on your Finesse skill and the weapon's finesse bias (its "balance"). You get 1 + (finesse * balance / 100) blows per round. For example, if you have a finesse skill of 200 and are using a dagger (balance of .8), then you get (1 + 200 * .8 / 100) = 2.6 blows per round. If you're using a battle axe (balance of .3) with the same skill, you'd get (1 + 200 * .3 / 100) = 1.6 blows per round.
2) Roll to hit. Your hit chance is 75 + (finesse / 25) - (monster evasion) percent. For example, if you have finesse of 200 and you're fighting a Master Rogue (evasion 35) then you have a (75 + 200/25 - 35) = 48% chance to hit.
3) Next come critical hits. I'll discuss this in more detail further down, but in short you may get extra dice added to your weapon on a per-blow basis. For example, a 2d4 mace gets +1d4 damage for each extra critical -- and you may get more than one extra die when you crit.
4) Roll the dice (base weapon dice plus any bonus dice from crits). This result is the basis for all your damage.
5) Calculate your prowess bonus. Like finesse, this depends on the weapon's prowess bias (its "heft"). You get a multiplier of 1 + (prowess * heft / 100). If your prowess is 200 and you're using a dagger (heft of .2) then your multiplier is (1 + .2 * 200 / 100) = 1.4x damage per blow. Using that battle axe (heft of .7) your multiplier is (1 + .7 * 200 / 100) = 2.4x damage per blow.
6) Apply slays. Slays give you an additional multiplier that is added to your prowess multiplier. For example, if you have a 1.48x firebrand weapon (actually a .48x additional modifier) with that aforementioned battle axe, then your actual damage multiplier is (2.4 + .48) = 2.88x damage per blow vs. non-fire-resistant enemies.
7) Multiply your weapon damage dice (plus any bonus dice from crits) by your damage multiplier. That's your damage.
How critical hits work
This is also subject to change since it seems to degenerate at the high end, so this section will need to be updated.
You have a percentage chance on each successful blow of getting a critical hit. This chance depends on your "applied finesse" and "applied prowess" (that is, finesse * weapon balance and prowess * weapon heft) as follows:
chance is then capped at 50%.
Now, we roll d100. Is it less than chance? If so, add one die to the damage roll, then repeat. This continues until we fail the d100 roll.
So for example, consider a Mace. This 2d4 weapon has balance of .25 and heft of .75. We have a warrior whose finesse is 150 and prowess is 300. We apply those scores and get applied finesse of (.25 * 150) = 37 and applied prowess of (.75 * 300) = 225. We plug that in and get a chance score of 11%. We roll the d100 and it happens to come up less than 11, so we add 1d4 damage to the die roll. We roll again, but this time we roll a higher number, so we stop trying to add dice. For this blow, the mace is a 3d4 weapon.
Compare that to a Longsword. This 2d5 weapon has balance of .5 and heft of .5. Using the same warrior as before, we get applied finesse of 75 and applied prowess of 150, giving chance of 6%. If we roll successfully, we add 1d5 to the damage roll.
"Unbiased" weapons, like most of the swords, are thus less likely to get critical hits than the heavily biased weapons. However, they get more blows than prowess weapons with a better multiplier than finesse weapons do -- it works out that they have higher average damage when crits aren't considered, but less frequent crits.
For that matter, some of this describes how we want things to be, not how they actually currently are -- but those deviations are comparatively minor and will be patched shortly.
v4 melee bases all of its damage off of the damage dice on the weapon. When you attack a monster, here's what happens:
1) First, we calculate how many blows per round you get. This depends on your Finesse skill and the weapon's finesse bias (its "balance"). You get 1 + (finesse * balance / 100) blows per round. For example, if you have a finesse skill of 200 and are using a dagger (balance of .8), then you get (1 + 200 * .8 / 100) = 2.6 blows per round. If you're using a battle axe (balance of .3) with the same skill, you'd get (1 + 200 * .3 / 100) = 1.6 blows per round.
2) Roll to hit. Your hit chance is 75 + (finesse / 25) - (monster evasion) percent. For example, if you have finesse of 200 and you're fighting a Master Rogue (evasion 35) then you have a (75 + 200/25 - 35) = 48% chance to hit.
3) Next come critical hits. I'll discuss this in more detail further down, but in short you may get extra dice added to your weapon on a per-blow basis. For example, a 2d4 mace gets +1d4 damage for each extra critical -- and you may get more than one extra die when you crit.
4) Roll the dice (base weapon dice plus any bonus dice from crits). This result is the basis for all your damage.
5) Calculate your prowess bonus. Like finesse, this depends on the weapon's prowess bias (its "heft"). You get a multiplier of 1 + (prowess * heft / 100). If your prowess is 200 and you're using a dagger (heft of .2) then your multiplier is (1 + .2 * 200 / 100) = 1.4x damage per blow. Using that battle axe (heft of .7) your multiplier is (1 + .7 * 200 / 100) = 2.4x damage per blow.
6) Apply slays. Slays give you an additional multiplier that is added to your prowess multiplier. For example, if you have a 1.48x firebrand weapon (actually a .48x additional modifier) with that aforementioned battle axe, then your actual damage multiplier is (2.4 + .48) = 2.88x damage per blow vs. non-fire-resistant enemies.
7) Multiply your weapon damage dice (plus any bonus dice from crits) by your damage multiplier. That's your damage.
How critical hits work
This is also subject to change since it seems to degenerate at the high end, so this section will need to be updated.
You have a percentage chance on each successful blow of getting a critical hit. This chance depends on your "applied finesse" and "applied prowess" (that is, finesse * weapon balance and prowess * weapon heft) as follows:
Code:
chance = ((applied finesse) ^ 2 + (applied prowess) ^ 2) / 5000 + 1
Now, we roll d100. Is it less than chance? If so, add one die to the damage roll, then repeat. This continues until we fail the d100 roll.
So for example, consider a Mace. This 2d4 weapon has balance of .25 and heft of .75. We have a warrior whose finesse is 150 and prowess is 300. We apply those scores and get applied finesse of (.25 * 150) = 37 and applied prowess of (.75 * 300) = 225. We plug that in and get a chance score of 11%. We roll the d100 and it happens to come up less than 11, so we add 1d4 damage to the die roll. We roll again, but this time we roll a higher number, so we stop trying to add dice. For this blow, the mace is a 3d4 weapon.
Compare that to a Longsword. This 2d5 weapon has balance of .5 and heft of .5. Using the same warrior as before, we get applied finesse of 75 and applied prowess of 150, giving chance of 6%. If we roll successfully, we add 1d5 to the damage roll.
"Unbiased" weapons, like most of the swords, are thus less likely to get critical hits than the heavily biased weapons. However, they get more blows than prowess weapons with a better multiplier than finesse weapons do -- it works out that they have higher average damage when crits aren't considered, but less frequent crits.
Comment