summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index d818a7f5ea..c9e3642688 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -3375,7 +3375,8 @@ static monster_type _choose_unique_by_depth(int step)
default:
ret = random_choose(MONS_FRANCIS, MONS_FRANCES, MONS_WAYNE, MONS_DUANE,
MONS_XTAHUA, MONS_NORRIS, MONS_FREDERICK, MONS_NIKOLA,
- MONS_MARGERY, MONS_BORIS, MONS_SAINT_ROKA, -1);
+ MONS_MARGERY, MONS_BORIS, MONS_SAINT_ROKA, MONS_AIZUL,
+ -1);
}
return static_cast<monster_type>(ret);
@@ -3400,6 +3401,11 @@ static monster_type _pick_unique(int lev)
else
return MONS_NO_MONSTER;
}
+ else if (player_in_branch(BRANCH_SNAKE_PIT))
+ {
+ if (player_branch_depth() > 3 && coinflip())
+ return MONS_AIZUL;
+ }
// First, pick generic unique depending on depth.
int which_unique =