summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-info.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-05-14 12:24:10 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-05-14 12:24:10 -0400
commitedb40d360931499a73b11273a2af2a7e1d5fe4f4 (patch)
tree0cbaeeb16f3aa7e9f2fcaecef9467cf0513775ec /crawl-ref/source/mon-info.cc
parentf983490b193a098cabc2e460b7abaf99972b2dda (diff)
downloadcrawl-ref-edb40d360931499a73b11273a2af2a7e1d5fe4f4.tar.gz
crawl-ref-edb40d360931499a73b11273a2af2a7e1d5fe4f4.zip
Remove plague shamblers.
The idea behind the miasma death explosion is interesting, but in general miasma can be extremely annoying and the cloud rather easy to avoid. This is especially true in the layout of Crypt, which is the only place they show up outside of vaults. The retching attack gave a rare special case that very rarely mattered and didn't help to distinguish them all that much.
Diffstat (limited to 'crawl-ref/source/mon-info.cc')
-rw-r--r--crawl-ref/source/mon-info.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-info.cc b/crawl-ref/source/mon-info.cc
index 530b0f551e..2450f0dbe3 100644
--- a/crawl-ref/source/mon-info.cc
+++ b/crawl-ref/source/mon-info.cc
@@ -166,8 +166,6 @@ static monster_info_flags ench_to_mb(const monster& mons, enchant_type ench)
return MB_WATER_HOLD_DROWN;
case ENCH_FLAYED:
return MB_FLAYED;
- case ENCH_RETCHING:
- return MB_RETCHING;
case ENCH_WEAK:
return MB_WEAK;
case ENCH_DIMENSION_ANCHOR:
@@ -1567,8 +1565,6 @@ vector<string> monster_info::attributes() const
}
if (is(MB_FLAYED))
v.push_back("covered in terrible wounds");
- if (is(MB_RETCHING))
- v.push_back("retching with violent nausea");
if (is(MB_WEAK))
v.push_back("weak");
if (is(MB_DIMENSION_ANCHOR))