summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-22 10:42:23 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-22 10:42:23 +0000
commit0650cb7c5d9f3538143bfdd1c4a75c27dc86e17c (patch)
tree0e570e3927d0f4a9a6c015dba864da902aaecd2c /crawl-ref/source/dungeon.cc
parent040d4ec8b58e1e9f725d57fdffb5af422177c0c5 (diff)
downloadcrawl-ref-0650cb7c5d9f3538143bfdd1c4a75c27dc86e17c.tar.gz
crawl-ref-0650cb7c5d9f3538143bfdd1c4a75c27dc86e17c.zip
Add new unique Gastronok (slug wizard), via a patch by bookofjude and some
tweaks to make his speech and casting work correctly. Turns up around the same time as Erolcha and Grum. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10774 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index f4f8a147bb..ae86128d50 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -3286,6 +3286,7 @@ static bool _make_room(int sx,int sy,int ex,int ey,int max_doors, int doorlevel)
// Dissolution (Slime), Murray (Hell), or Tiamat (Zot).
// NOTE: The Lernaean hydra should *never* be randomly generated.
// The Royal jelly likewise is only placed via Slime end vault.
+// Dowan is automatically placed together with Duvessa.
static monster_type _choose_unique_by_depth(int step)
{
int ret;
@@ -3303,13 +3304,13 @@ static monster_type _choose_unique_by_depth(int step)
case 2: // depth <= 9
ret = random_choose(MONS_BLORK_THE_ORC, MONS_EDMUND, MONS_PSYCHE,
MONS_EROLCHA, MONS_PRINCE_RIBBIT, MONS_GRUM,
- -1);
+ MONS_GASTRONOK, -1);
break;
case 3: // depth <= 13
ret = random_choose(MONS_PSYCHE, MONS_EROLCHA, MONS_DONALD, MONS_URUG,
- MONS_MICHAEL, MONS_EUSTACHIO, MONS_SONJA,
- MONS_JOSEPH, MONS_ERICA, MONS_JOSEPHINE, MONS_GRUM,
- MONS_HAROLD, MONS_NORBERT, MONS_JOZEF, -1);
+ MONS_MICHAEL, MONS_EUSTACHIO, MONS_SONJA, MONS_GRUM,
+ MONS_JOSEPH, MONS_ERICA, MONS_JOSEPHINE, MONS_JOZEF,
+ MONS_HAROLD, MONS_NORBERT, MONS_GASTRONOK, -1);
break;
case 4: // depth <= 16
ret = random_choose(MONS_URUG, MONS_MICHAEL, MONS_EUSTACHIO, MONS_SONJA,