summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-grow.cc
diff options
context:
space:
mode:
authorDarshan Shaligram <dshaligram@users.sourceforge.net>2010-06-12 19:43:44 +0530
committerDarshan Shaligram <dshaligram@users.sourceforge.net>2010-06-12 20:43:09 +0530
commitc48789a38398d494e30802ff03028b41a6db9ab2 (patch)
tree99f3bfb6ab5fae9f23f4890af70be836d3ee02f9 /crawl-ref/source/mon-grow.cc
parent96eedbcecffbfe6646a65845aa9f33d63b2f82a8 (diff)
downloadcrawl-ref-c48789a38398d494e30802ff03028b41a6db9ab2.tar.gz
crawl-ref-c48789a38398d494e30802ff03028b41a6db9ab2.zip
Correct deep elf monster level-up paths.
summoner -> demonologist/sorcerer; conjurer -> annihilator (was) summoner -> demonologist; conjurer -> sorcerer
Diffstat (limited to 'crawl-ref/source/mon-grow.cc')
-rw-r--r--crawl-ref/source/mon-grow.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-grow.cc b/crawl-ref/source/mon-grow.cc
index 87b62a9582..42a6645e85 100644
--- a/crawl-ref/source/mon-grow.cc
+++ b/crawl-ref/source/mon-grow.cc
@@ -57,8 +57,10 @@ static const monster_level_up mon_grow[] =
monster_level_up(MONS_DEEP_ELF_MAGE, MONS_DEEP_ELF_CONJURER),
monster_level_up(MONS_DEEP_ELF_PRIEST, MONS_DEEP_ELF_HIGH_PRIEST),
- monster_level_up(MONS_DEEP_ELF_SUMMONER, MONS_DEEP_ELF_DEMONOLOGIST),
- monster_level_up(MONS_DEEP_ELF_CONJURER, MONS_DEEP_ELF_SORCERER),
+ monster_level_up(MONS_DEEP_ELF_CONJURER, MONS_DEEP_ELF_ANNIHILATOR),
+
+ monster_level_up(MONS_DEEP_ELF_SUMMONER, MONS_DEEP_ELF_DEMONOLOGIST, 500),
+ monster_level_up(MONS_DEEP_ELF_SUMMONER, MONS_DEEP_ELF_SORCERER),
monster_level_up(MONS_BABY_ALLIGATOR, MONS_ALLIGATOR),
};