From: Pasi Kallinen Date: Wed, 13 Jan 2021 19:29:03 +0000 (+0200) Subject: Give barrow wights a cold touch X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e41c029262b0812a2381ef376e3d74bc3eddb3da;p=nethack Give barrow wights a cold touch Their attack is described as "the icy touch froze his bones" in Lord of the Rings --- diff --git a/doc/fixes37.0 b/doc/fixes37.0 index 9f84ee6fd..5a8e6f40b 100644 --- a/doc/fixes37.0 +++ b/doc/fixes37.0 @@ -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 diff --git a/src/monst.c b/src/monst.c index fbd1f8a99..6d3dc51af 100644 --- a/src/monst.c +++ b/src/monst.c @@ -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),