From 31ecf11f2b7ff57426fb26fce5e3e63444e743c3 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Mon, 9 Mar 2009 18:49:14 +0000 Subject: * 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 --- crawl-ref/source/tilepick.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/tilepick.cc') 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; -- cgit v1.2.3-54-g00ecf