summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-19 15:08:26 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-19 15:08:26 -0600
commit6b87b7db8e71224fa04777ededa5719b8d0a76a7 (patch)
tree0ed5adbef192eb28965cd9c0ccd6d6c3a7001eab /crawl-ref/source/mon-util.cc
parent319f9da34bb761ab98bf158483b60539ff9c8a05 (diff)
downloadcrawl-ref-6b87b7db8e71224fa04777ededa5719b8d0a76a7.tar.gz
crawl-ref-6b87b7db8e71224fa04777ededa5719b8d0a76a7.zip
Set manticores' number of spike volleys in the proper place.
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 22392fa3f1..5169f76542 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -1534,16 +1534,23 @@ void define_monster(monsters &mons)
ev = 7 + random2(5);
break;
+ case MONS_MANTICORE:
+ // Manticores start off with 8 to 16 spike volleys.
+ monnumber = 8 + random2(9);
+ break;
+
case MONS_SLIME_CREATURE:
// Slime creatures start off as only single un-merged blobs.
monnumber = 1;
break;
case MONS_HYDRA:
+ // Hydras start off with 4 to 8 heads.
monnumber = random_range(4, 8);
break;
case MONS_LERNAEAN_HYDRA:
+ // The Lernaean hydra starts off with 27 heads.
monnumber = 27;
break;