Double damage

From NetHackWiki
Revision as of 20:14, 7 January 2016 by Ais523 (talk | contribs) (Calculation: fix a couple of versions that the previous edit missed)
Jump to navigation Jump to search

Double damage is a property of some weapons that doubles their damage.

Components of damage doubled

Components of damage not doubled

Weapons that have the double damage property

Even at +0, these weapons are twice as powerful as their base damage alone would suggest, but even greater benefits are to be had from enchanting them: a scroll of enchant weapon used on an artifact weapon with double damage is more effective than the same scroll used on a weapon without double damage (for Grayswandir that's twice as effective, since the doubled damage applies to all monsters.) This also works in reverse; if you ever come across a negatively enchanted -3 Grayswandir you might not want to use it, because it will deal 2*1d8 - 6 for an average of 3 damage (but will still do nicely against silver-haters).

Calculation

A user has suggested this page be merged with "damage"

The damage calculation in NetHack is quite complex, but when concerned only with melee weapons, it is simple enough to describe.

hmon_hitmon in uhitm.c is called once for each melee hit on a monster, whether the hit is barehanded, with a weapon, with a weapon tool, or with something else (silver wand, cream pie, or cockatrice corpse for instance). If twoweaponing, it is called once for each of the two weapons or weapon-tools in use.[1][2][3][4]

Reading hmon_hitmon and its sub-functions gives us the order in which bonuses are applied, and thus tells us which of these bonuses will be affected by double damage.

Inside hmon_hitmon, the weapon/item in question is stored in the variable obj. The damage is stored in tmp, and this variable is modified as the function progresses, adding layer upon layer of NetHack combat functionality. hmon_hitman calls dmgval in weapon.c to get the base damage, enchantment bonus, and situation bonuses for the weapon.[5]. dmgval adds bonuses for using blessed weapons against undead, axes against wooden monsters, and silver against silver hating monsters, but tests to see if the weapon will do double damage and divides these values by two in that case (so the bonuses are not doubled).[6]. dmgval also subtracts damage due to erosion.[7]

hmon_hitmon then considers backstab damage.[8].

Double damage and other special artifact effects (like Magicbane's specials and the Tsurugi's special, which could itself by double damage) are added in by artifact_hit in artifact.c.[9].

Finally, hmon_hitmon adds on intrinsic damage bonuses and damage bonuses from rings of increase damage[10]; followed by the bonus for skill in the weapon's class [11]; and lastly, poison damage is potentially added [12]. Bare-hands or martial arts skill only grant their damage bonus if the d2 or d4 base damage is at least two -- effectively you are at unskilled 50% or 25% of the time.[13][14][15]

(tmp, the damage, is subtracted from the monster's hp, mon->mhp on line 1064[16].)

See also

See http://www.steelypips.org/nethack/343/weap-343.txt, the weapons spoiler by Kevin Hugo at steelypips for a run down on NetHack's entire damage calculation process.

References

This page may need to be updated for the current version of NetHack.

It may contain text specific to NetHack 3.6.0. Information on this page may be out of date.

Editors: After reviewing this page and making necessary edits, please change the {{nethack-360}} tag to the current version's tag or {{noversion}} as appropriate.