summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-08 13:57:32 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-08 14:21:06 +0100
commitd04148fa8117632bb4b6e9700f6374f8894f1d96 (patch)
tree4b76eec56c06df51d0ad9ac138ec6a157a052616 /crawl-ref/source/tilepick.cc
parent82a7b6bf2daad8d0158959ee0fc4ae8238391653 (diff)
downloadcrawl-ref-d04148fa8117632bb4b6e9700f6374f8894f1d96.tar.gz
crawl-ref-d04148fa8117632bb4b6e9700f6374f8894f1d96.zip
Add preliminary turtle tile.
It's a bit on the smallish side, having been originally intended for altar decoration, and also a bit too dark. I've no idea how an alligator turtle is supposed to look, so the two share the same tile for now.
Diffstat (limited to 'crawl-ref/source/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc18
1 files changed, 12 insertions, 6 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index 06c5ec5e6e..2aa99cccdd 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -358,9 +358,10 @@ int tileidx_monster_base(const monsters *mon, bool detected)
case MONS_REDBACK:
return TILEP_MONS_REDBACK;
- // minotaur ('t')
- case MONS_MINOTAUR:
- return TILEP_MONS_MINOTAUR;
+ // turtles ('t')
+ case MONS_SNAPPING_TURTLE:
+ case MONS_ALLIGATOR_SNAPPING_TURTLE: // TODO
+ return TILEP_MONS_TURTLE;
// ugly things ('u')
case MONS_UGLY_THING:
@@ -548,6 +549,8 @@ int tileidx_monster_base(const monsters *mon, bool detected)
return TILEP_MONS_SPHINX;
case MONS_HARPY:
return TILEP_MONS_HARPY;
+ case MONS_MINOTAUR:
+ return TILEP_MONS_MINOTAUR;
// ice beast ('I')
case MONS_ICE_BEAST:
@@ -1811,9 +1814,10 @@ static int _tileidx_corpse(const item_def &item)
case MONS_REDBACK:
return TILE_CORPSE_REDBACK;
- // minotaur ('t')
- case MONS_MINOTAUR:
- return TILE_CORPSE_MINOTAUR;
+ // turtles ('t')
+ case MONS_SNAPPING_TURTLE:
+ case MONS_ALLIGATOR_SNAPPING_TURTLE: // TODO
+ return TILE_CORPSE_TURTLE;
// ugly things ('u')
case MONS_UGLY_THING:
@@ -1936,6 +1940,8 @@ static int _tileidx_corpse(const item_def &item)
return TILE_CORPSE_GRIFFON;
case MONS_HARPY:
return TILE_CORPSE_HARPY;
+ case MONS_MINOTAUR:
+ return TILE_CORPSE_MINOTAUR;
// jellies ('J')
case MONS_GIANT_AMOEBA: