summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/zotdef.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-02-23 13:11:06 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-02-23 13:11:22 +0000
commita4b783efdc617fe01f8c1aeddf2c0fa2134960c5 (patch)
treec9813d2de3be32a45850ee24935a23014cae10bb /crawl-ref/source/zotdef.cc
parentfc6d5a5dec65f01f1e3bfbe51bda4e11f6b8dbc2 (diff)
downloadcrawl-ref-a4b783efdc617fe01f8c1aeddf2c0fa2134960c5.tar.gz
crawl-ref-a4b783efdc617fe01f8c1aeddf2c0fa2134960c5.zip
Remove grey rats
They were barely distinct from plain rats and green rats, and only really used in sewers. Replaced them with various arbitrary weightings of rat and green rat.
Diffstat (limited to 'crawl-ref/source/zotdef.cc')
-rw-r--r--crawl-ref/source/zotdef.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/zotdef.cc b/crawl-ref/source/zotdef.cc
index 37b28c12eb..819a605a3c 100644
--- a/crawl-ref/source/zotdef.cc
+++ b/crawl-ref/source/zotdef.cc
@@ -221,7 +221,7 @@ static void _fire_wave(int power)
{
wave_name("FIRE WAVE");
monster_type firemons[] = {MONS_FIRE_ELEMENTAL, MONS_FIRE_DRAKE, MONS_CRIMSON_IMP,
- MONS_FIRE_DRAGON, MONS_FIRE_VORTEX ,MONS_FIRE_GIANT, MONS_HELLION,
+ MONS_FIRE_DRAGON, MONS_FIRE_VORTEX, MONS_FIRE_GIANT, MONS_HELLION,
MONS_MOLTEN_GARGOYLE, MONS_SALAMANDER, MONS_SUN_DEMON,
MONS_RED_DRACONIAN, MONS_MOTTLED_DRACONIAN, MONS_DRACONIAN_SCORCHER,
MONS_FLAMING_CORPSE, MONS_MOTTLED_DRAGON, MONS_EFREET,
@@ -263,8 +263,7 @@ static void _gnoll_wave(int power)
static void _rat_wave(int power)
{
wave_name("RAT WAVE");
- monster_type rats[] = {MONS_RAT, MONS_GREEN_RAT, MONS_GREY_RAT,
- MONS_ORANGE_RAT, END};
+ monster_type rats[] = {MONS_RAT, MONS_GREEN_RAT, MONS_ORANGE_RAT, END};
monster_type boss[] = {MONS_ORANGE_RAT, END};
_zotdef_fill_from_list(rats, 0, power); // full power
_zotdef_choose_boss(boss, power);