From: Pasi Kallinen Date: Wed, 30 Sep 2020 15:59:09 +0000 (+0300) Subject: Make piranhas faster and more bitey X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb7b578af19f50629087457b89b1f522a432ea42;p=nethack Make piranhas faster and more bitey Piranhas are pretty bland, so make them faster and give them an extra bite attack. (via xNetHack) --- diff --git a/doc/fixes37.0 b/doc/fixes37.0 index 2adfa50f3..8897d086f 100644 --- a/doc/fixes37.0 +++ b/doc/fixes37.0 @@ -262,6 +262,7 @@ when make was invoked with -j makedefs instances could end up running in mkstemp() to define HAS_NO_MKSTEMP to revert to the old behaviour; provide a work-alike mkstemp() implementation for windows visual studio in mdlib.c so there is no requirement to define HAS_NO_MKSTEMP there +make piranhas faster and give them extra bite attack Fixes to 3.7.0-x Problems that Were Exposed Via git Repository diff --git a/src/monst.c b/src/monst.c index 8173aea04..9bbce0a27 100644 --- a/src/monst.c +++ b/src/monst.c @@ -2636,9 +2636,9 @@ struct permonst _mons2[] = { M1_SWIM | M1_AMPHIBIOUS | M1_SLITHY | M1_NOLIMBS | M1_NOHEAD | M1_NOTAKE | M1_POIS, M2_HOSTILE, 0, 5, CLR_BLUE), - MON("piranha", S_EEL, LVL(5, 12, 4, 0, 0), (G_GENO | G_NOGEN | G_SGROUP), - A(ATTK(AT_BITE, AD_PHYS, 2, 6), NO_ATTK, NO_ATTK, NO_ATTK, NO_ATTK, - NO_ATTK), + MON("piranha", S_EEL, LVL(5, 18, 4, 0, 0), (G_GENO | G_NOGEN | G_SGROUP), + A(ATTK(AT_BITE, AD_PHYS, 2, 6), ATTK(AT_BITE, AD_PHYS, 2, 6), + NO_ATTK, NO_ATTK, NO_ATTK, NO_ATTK), SIZ(60, 30, MS_SILENT, MZ_SMALL), 0, 0, M1_SWIM | M1_AMPHIBIOUS | M1_ANIMAL | M1_SLITHY | M1_NOLIMBS | M1_CARNIVORE | M1_OVIPAROUS | M1_NOTAKE,