summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-09 18:49:14 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-09 18:49:14 +0000
commit31ecf11f2b7ff57426fb26fce5e3e63444e743c3 (patch)
treeb1b833eea1ac7f74044df506716ef65468127945 /crawl-ref/source/tilepick.cc
parent8387025f9dbca1c317d332b8e17661d55d5928bb (diff)
downloadcrawl-ref-31ecf11f2b7ff57426fb26fce5e3e63444e743c3.tar.gz
crawl-ref-31ecf11f2b7ff57426fb26fce5e3e63444e743c3.zip
* Add tile for Nergalle, who's actually not all that ugly but apparently
has a really bad fashion sense. * Add a sticky flame marker for monsters. * Replace the trapdoor spider tile with a less original, but nicer one. * Improve shopping interface: replace "examine item" command with a toggle between browsing and shopping. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9397 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index 36365ff298..c824b8c88c 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -925,7 +925,7 @@ static int _tileidx_monster_base(const monsters *mon, bool detected)
case MONS_PRINCE_RIBBIT:
return TILEP_MONS_PRINCE_RIBBIT;
case MONS_NERGALLE:
- return TILEP_MONS_ORC_SORCERER; // TODO enne
+ return TILEP_MONS_NERGALLE;
case MONS_SAINT_ROKA:
return TILEP_MONS_SAINT_ROKA;
case MONS_NESSOS:
@@ -1021,6 +1021,8 @@ int tileidx_monster(const monsters *mons, bool detected)
ch |= TILE_FLAG_NET;
if (mons->has_ench(ENCH_POISON))
ch |= TILE_FLAG_POISON;
+ if (mons->has_ench(ENCH_STICKY_FLAME))
+ ch |= TILE_FLAG_FLAME;
if (mons_friendly_real(mons))
ch |= TILE_FLAG_PET;
@@ -1910,6 +1912,7 @@ static int _tileidx_rune(const item_def &item)
{
switch (item.plus)
{
+ // the hell runes:
case RUNE_DIS: return TILE_MISC_RUNE_DIS;
case RUNE_GEHENNA: return TILE_MISC_RUNE_GEHENNA;
case RUNE_COCYTUS: return TILE_MISC_RUNE_COCYTUS;