summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-07 15:47:02 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-07 15:47:02 +0000
commitb12dd9a0fe5c15ff1f655252ef07e03fdf0d4943 (patch)
tree0b3a28070cabb5735c47b7656b748bfda6dc5ca1 /crawl-ref/source/monstuff.cc
parent289e5541661b8bc7a6fa955356357655b7e5146a (diff)
downloadcrawl-ref-b12dd9a0fe5c15ff1f655252ef07e03fdf0d4943.tar.gz
crawl-ref-b12dd9a0fe5c15ff1f655252ef07e03fdf0d4943.zip
Add two more uniques: Nessos and the Lernaean hydra, also implemented by
castamir. Nessos still needs to be buffed (he's a normal centaur with fixed equipment) and is also in need of speech. The Lernaean hydra shouldn't be generated randomly but instead be placed via vaults (which will favour spoiled players, but you can't have everything). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8307 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 633e517986..8355f48cab 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -1948,6 +1948,11 @@ bool monster_polymorph(monsters *monster, monster_type targetc,
name = "shaped Royal Jelly";
flags |= MF_NAME_SUFFIX;
}
+ else if (monster->type == MONS_LERNAEAN_HYDRA)
+ {
+ name = "shaped Lernaean hydra";
+ flags |= MF_NAME_SUFFIX;
+ }
// "Blork the orc" and similar.
const size_t the_pos = name.find(" the ");
@@ -8464,6 +8469,7 @@ bool monster_descriptor(int which_class, unsigned char which_descriptor)
case MONS_TROLL:
case MONS_HYDRA:
case MONS_KILLER_KLOWN:
+ case MONS_LERNAEAN_HYDRA:
return (true);
default:
return (false);