From: arromdee Date: Tue, 13 Aug 2002 03:49:11 +0000 (+0000) Subject: mind flayers growing up into master mind flayers, etc. X-Git-Tag: MOVE2GIT~2526 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55e58c662ef21a4c768a54845f503ee4d6cbead8;p=nethack mind flayers growing up into master mind flayers, etc. While one could argue that giant rats aren't just grown up forms of sewer rats, we already have bat/giant bat in there. --- diff --git a/doc/fixes34.1 b/doc/fixes34.1 index 90bb2b100..bf57062b1 100644 --- a/doc/fixes34.1 +++ b/doc/fixes34.1 @@ -200,6 +200,8 @@ prevent "the mimic looks better" on an unrecognized mimic hit with healing spell after forcefighting a concealed lurker, the lurker wouldn't fight back when polymorphed into a hider, cease hiding during level changes +let mind flayer grow up into master mind flayer; also giant/sewer rat and + cave/large spider Platform- and/or Interface-Specific Fixes diff --git a/src/mondata.c b/src/mondata.c index 3a9cdb03c..ca4937632 100644 --- a/src/mondata.c +++ b/src/mondata.c @@ -527,6 +527,10 @@ static const short grownups[][2] = { {PM_KOBOLD, PM_LARGE_KOBOLD}, {PM_LARGE_KOBOLD, PM_KOBOLD_LORD}, {PM_GNOME, PM_GNOME_LORD}, {PM_GNOME_LORD, PM_GNOME_KING}, {PM_DWARF, PM_DWARF_LORD}, {PM_DWARF_LORD, PM_DWARF_KING}, + {PM_MIND_FLAYER, PM_MASTER_MIND_FLAYER}, + {PM_ORC, PM_ORC_CAPTAIN}, + {PM_SEWER_RAT, PM_GIANT_RAT}, + {PM_CAVE_SPIDER, PM_GIANT_SPIDER}, {PM_OGRE, PM_OGRE_LORD}, {PM_OGRE_LORD, PM_OGRE_KING}, {PM_ELF, PM_ELF_LORD}, {PM_WOODLAND_ELF, PM_ELF_LORD}, {PM_GREEN_ELF, PM_ELF_LORD}, {PM_GREY_ELF, PM_ELF_LORD},