From d84f9a5e75967ff31021303ae34474cd198d38a3 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Wed, 2 Dec 2009 15:50:14 +1000 Subject: New monster: giant leech (Eronarn). A blood-sucking amphibious 'w'-glyph. It also submerges, much like swamp worms, but will follow you onto dry land. It has a tile, but after a quick play through of Swamp and using wizard mode to create some, it's quite difficult to see. Hopefully someone can improve the tile for me! --- crawl-ref/source/tilepick.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'crawl-ref/source/tilepick.cc') diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc index 7fe6cda6cb..1997072b81 100644 --- a/crawl-ref/source/tilepick.cc +++ b/crawl-ref/source/tilepick.cc @@ -394,6 +394,8 @@ int tileidx_monster_base(const monsters *mon, bool detected) return TILEP_MONS_BRAIN_WORM; case MONS_SWAMP_WORM: return TILEP_MONS_SWAMP_WORM; + case MONS_GIANT_LEECH: + return TILEP_MONS_GIANT_LEECH; case MONS_SPINY_WORM: return TILEP_MONS_SPINY_WORM; @@ -1761,6 +1763,8 @@ static int _tileidx_corpse(const item_def &item) return TILE_CORPSE_BRAIN_WORM; case MONS_SWAMP_WORM: return TILE_CORPSE_SWAMP_WORM; + case MONS_GIANT_LEECH: + return TILE_CORPSE_GIANT_LEECH; case MONS_ROCK_WORM: return TILE_CORPSE_ROCK_WORM; case MONS_SPINY_WORM: -- cgit v1.2.3-54-g00ecf