]> granicus.if.org Git - nethack/commitdiff
Make piranhas faster and more bitey
authorPasi Kallinen <paxed@alt.org>
Wed, 30 Sep 2020 15:59:09 +0000 (18:59 +0300)
committerPasi Kallinen <paxed@alt.org>
Wed, 30 Sep 2020 16:05:02 +0000 (19:05 +0300)
Piranhas are pretty bland, so make them faster and give them
an extra bite attack.

(via xNetHack)

doc/fixes37.0
src/monst.c

index 2adfa50f356bfb11cbc38b62b5801675ad1d15df..8897d086fa528772dda3d51d31144b57fd631897 100644 (file)
@@ -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
index 8173aea04d65694f7692a1a34e8849566ba52c4e..9bbce0a277237dc84e3624beb0c7c1eda277aa78 100644 (file)
@@ -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,