Difference between revisions of "Weapon damage"

From CrawlWiki
Jump to: navigation, search
m (Notes)
Line 1: Line 1:
{{version028}}
+
{{version029}}
  
 
Weapon damage is your base weapon damage, multiplied by strength modifier, multiplied by weapon skill and fighting skill modifiers.  Slaying bonuses and weapon enchantment are added afterwards.  Actual damage components are randomly rolled in four places: 1d(Base * Strength modifier), Slaying bonus, Weapon skill modifier and Fighting modifier.
 
Weapon damage is your base weapon damage, multiplied by strength modifier, multiplied by weapon skill and fighting skill modifiers.  Slaying bonuses and weapon enchantment are added afterwards.  Actual damage components are randomly rolled in four places: 1d(Base * Strength modifier), Slaying bonus, Weapon skill modifier and Fighting modifier.
Line 12: Line 12:
 
*'''Stat modifier''':
 
*'''Stat modifier''':
 
** <code>0.75 + 0.025 * [[Stats|Stat]]</code>
 
** <code>0.75 + 0.025 * [[Stats|Stat]]</code>
** The [[Stats|Stat]] is your [[Strength]]. There is a minimum modifier of 0.01 (1%), at -30 strength.
+
** [[Short Blades]], [[Long Blades]], and [[Ranged Weapons]] use [[dexterity]]. Other weapons and Unarmed use [[Strength]].  
 +
** There is a minimum modifier of 0.01 (1%), at -30 stat.
 
*'''Skill modifier''':  
 
*'''Skill modifier''':  
 
** <code>1 + uniform(Weapon [[skill]])/25</code> (not applied to unarmed combat)
 
** <code>1 + uniform(Weapon [[skill]])/25</code> (not applied to unarmed combat)
Line 43: Line 44:
 
*At very low skill levels, the value of 1 base damage and +1 enchantment are approximately the same. But as characters gain more skill and stats, only base damage gets multiplied, having a greater effect.
 
*At very low skill levels, the value of 1 base damage and +1 enchantment are approximately the same. But as characters gain more skill and stats, only base damage gets multiplied, having a greater effect.
 
*Weapon [[brand]]s with multiplicative bonuses are applied after the damage formula, including AC reduction. The added damage then ignores AC, but can be affected by resistances and vulnerabilities.
 
*Weapon [[brand]]s with multiplicative bonuses are applied after the damage formula, including AC reduction. The added damage then ignores AC, but can be affected by resistances and vulnerabilities.
*Each term in the formula is calculated in sequence and is rounded down to an integer. This rounding is worse with a weapon with low base damage. For example, take a player with a Stat of 12 and a Skill of 12 in short blades:  
+
*Each term in the formula is calculated in sequence and is rounded down to an integer. This rounding is worse with a weapon with low base damage. For example, take a player with Dex = 12 and Short Blades skill = 12:  
 
** With no slaying bonuses, a +0 dagger with a base damage of 4 cannot do more than 5 damage. The same player wielding a +0 rapier with a base damage of 8 can do up to 13 damage. So, the stat and skill bonuses increase the dagger's damage by 25% and the rapier's damage by 62%. The dagger would deal up to 10 damage per 10 [[aut]], while the rapier would deal up to 20. For this player, a +5 dagger would be inferior to a +0 rapier (if not used for [[stab]]bing).
 
** With no slaying bonuses, a +0 dagger with a base damage of 4 cannot do more than 5 damage. The same player wielding a +0 rapier with a base damage of 8 can do up to 13 damage. So, the stat and skill bonuses increase the dagger's damage by 25% and the rapier's damage by 62%. The dagger would deal up to 10 damage per 10 [[aut]], while the rapier would deal up to 20. For this player, a +5 dagger would be inferior to a +0 rapier (if not used for [[stab]]bing).
  
Line 50: Line 51:
  
 
==History==
 
==History==
*In [[0.29]], launcher, long blade, and short blade damage will scale with [[Dexterity]] rather than [[Strength]].
+
*In [[0.29]], launcher, long blade, and short blade damage scale with [[Dexterity]] rather than [[Strength]].
 
*In [[0.27]], the strength modifier was simplified and made nonrandom.
 
*In [[0.27]], the strength modifier was simplified and made nonrandom.
 
*In [[0.13]] the effect of stats on melee was doubled.
 
*In [[0.13]] the effect of stats on melee was doubled.
 
*Between [[0.8]] and [[0.13]], melee weapons of [[speed (brand)|speed]] suffered a -10% penalty to damage.
 
*Between [[0.8]] and [[0.13]], melee weapons of [[speed (brand)|speed]] suffered a -10% penalty to damage.
  
 
[[Category:Crystal Ball Articles]]
 
 
[[Category:Game mechanics]]
 
[[Category:Game mechanics]]
 
[[Category:Combat]]
 
[[Category:Combat]]

Revision as of 04:47, 24 August 2022

Version 0.29: This article may not be up to date for the latest stable release of Crawl.

Weapon damage is your base weapon damage, multiplied by strength modifier, multiplied by weapon skill and fighting skill modifiers. Slaying bonuses and weapon enchantment are added afterwards. Actual damage components are randomly rolled in four places: 1d(Base * Strength modifier), Slaying bonus, Weapon skill modifier and Fighting modifier.

Damage formula

Damage = uniform(Base damage * Stat modifier) * Skill modifier * Fighting modifier + Misc modifiers + uniform(Slaying bonuses) + Stabbing bonus - AC damage reduction[1]

As a shorthand uniform(x) = 1d(x+1)-1 or a roll from 0 to x inclusive.

Notes

  • The main contributions to weapon damage are: base damage, weapon skill (Maximum of +108% at level 27) and fighting skill (Maximum of +67.5% at level 27).
  • Effect of weapon and fighting skills is random, with a linear distribution between 0 and the maximum.
  • At very low skill levels, the value of 1 base damage and +1 enchantment are approximately the same. But as characters gain more skill and stats, only base damage gets multiplied, having a greater effect.
  • Weapon brands with multiplicative bonuses are applied after the damage formula, including AC reduction. The added damage then ignores AC, but can be affected by resistances and vulnerabilities.
  • Each term in the formula is calculated in sequence and is rounded down to an integer. This rounding is worse with a weapon with low base damage. For example, take a player with Dex = 12 and Short Blades skill = 12:
    • With no slaying bonuses, a +0 dagger with a base damage of 4 cannot do more than 5 damage. The same player wielding a +0 rapier with a base damage of 8 can do up to 13 damage. So, the stat and skill bonuses increase the dagger's damage by 25% and the rapier's damage by 62%. The dagger would deal up to 10 damage per 10 aut, while the rapier would deal up to 20. For this player, a +5 dagger would be inferior to a +0 rapier (if not used for stabbing).

References

  1. attack.cc:1216 (0.28.0)

History

  • In 0.29, launcher, long blade, and short blade damage scale with Dexterity rather than Strength.
  • In 0.27, the strength modifier was simplified and made nonrandom.
  • In 0.13 the effect of stats on melee was doubled.
  • Between 0.8 and 0.13, melee weapons of speed suffered a -10% penalty to damage.