]> granicus.if.org Git - nethack/commitdiff
Give barrow wights a cold touch
authorPasi Kallinen <paxed@alt.org>
Wed, 13 Jan 2021 19:29:03 +0000 (21:29 +0200)
committerPasi Kallinen <paxed@alt.org>
Wed, 13 Jan 2021 19:29:07 +0000 (21:29 +0200)
Their attack is described as "the icy touch froze his bones"
in Lord of the Rings

doc/fixes37.0
src/monst.c

index 9f84ee6fd74de40ab3de0a75b682eefc3a3c70d7..5a8e6f40bfb8d64e0c215496f473142916bcd051 100644 (file)
@@ -364,6 +364,7 @@ have dowhatdoes ('&') catch up with '?i' to describe ^A, ESC, and movement
 transforming a potion by dipping a unicorn horn into it could result in the
        potion being dropped due to 'pickup_burden' if encumbrance was already
        over threshold before dipping but within it after removal from invent
+give barrow wights a cold touch
 
 
 Fixes to 3.7.0-x Problems that Were Exposed Via git Repository
index fbd1f8a997b1a1a22777a14b22a265d9cb507ec3..6d3dc51af7339eeb539415d0f81f2ff94df94141 100644 (file)
@@ -1919,7 +1919,8 @@ struct permonst _mons2[] = {
     MON("barrow wight", S_WRAITH, LVL(3, 12, 5, 5, -3),
         (G_GENO | G_NOCORPSE | 1),
         A(ATTK(AT_WEAP, AD_DRLI, 0, 0), ATTK(AT_MAGC, AD_SPEL, 0, 0),
-          ATTK(AT_CLAW, AD_PHYS, 1, 4), NO_ATTK, NO_ATTK, NO_ATTK),
+          ATTK(AT_CLAW, AD_PHYS, 1, 4), ATTK(AT_TUCH, AD_COLD, 1, 4),
+          NO_ATTK, NO_ATTK),
         SIZ(1200, 0, MS_SPELL, MZ_HUMAN), MR_COLD | MR_SLEEP | MR_POISON, 0,
         M1_BREATHLESS | M1_HUMANOID,
         M2_UNDEAD | M2_STALK | M2_HOSTILE | M2_COLLECT, 0, 7, CLR_GRAY),