summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-10 19:32:12 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-10 19:43:51 +0100
commit7815696da9512482d66ea97a885936a98c6495c6 (patch)
treebc2d7c83fa1e08e898dd1ece53663594eb18e10f /crawl-ref/source/tilepick.cc
parent88bc1cd2f728a9900fdee4cfc92435614f46794b (diff)
downloadcrawl-ref-7815696da9512482d66ea97a885936a98c6495c6.tar.gz
crawl-ref-7815696da9512482d66ea97a885936a98c6495c6.zip
Reorder demons by glyph in dc-mon.txt.
I was originally planning to add a preliminary tile for sixfirhy (red devil recoloured cyan) but then got confused about the pitchfork description. I took that to mean it's generated with a trident, but it isn't mentioned in mon-gear at all... So, should it get a weapon or not?
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index 913c7855b5..d56139759a 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -817,10 +817,12 @@ int tileidx_monster_base(const monsters *mon, bool detected)
return TILEP_MONS_HAIRY_DEVIL;
case MONS_ROTTING_DEVIL:
return TILEP_MONS_ROTTING_DEVIL;
- case MONS_BEAST:
- return TILEP_MONS_BEAST;
case MONS_SMOKE_DEMON:
return TILEP_MONS_SMOKE_DEMON;
+// case MONS_SIXFIRHY: // TODO
+// return TILEP_MONS_SIXFIRHY;
+ case MONS_HELLWING:
+ return TILEP_MONS_HELLWING;
// '3' demons
case MONS_HELLION:
@@ -835,8 +837,6 @@ int tileidx_monster_base(const monsters *mon, bool detected)
return TILEP_MONS_NEQOXEC;
case MONS_ORANGE_DEMON:
return TILEP_MONS_ORANGE_DEMON;
- case MONS_HELLWING:
- return TILEP_MONS_HELLWING;
case MONS_YNOXINUL:
return TILEP_MONS_YNOXINUL;
case MONS_DEMONIC_CRAWLER:
@@ -847,6 +847,8 @@ int tileidx_monster_base(const monsters *mon, bool detected)
return TILEP_MONS_CHAOS_SPAWN;
// '2' demon
+ case MONS_BEAST:
+ return TILEP_MONS_BEAST;
case MONS_SUN_DEMON:
return TILEP_MONS_SUN_DEMON;
case MONS_REAPER: