summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 49805de255..da5e0ee85f 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -4540,7 +4540,7 @@ static std::string describe_draconian_colour(int species)
static std::string describe_draconian(const monsters *mon)
{
- std::string description;
+ std::string description;
const int subsp = draco_subspecies( mon );
if (subsp == MONS_DRACONIAN)
@@ -5956,6 +5956,11 @@ void describe_monsters(int class_described, unsigned char which_mons)
"A small and slimy eel, crackling with electrical discharge.";
break;
+ case MONS_TIAMAT:
+ description += "A powerful draconian. Her scales seem to shimmer "
+ "and change colour as you watch.";
+ break;
+
case MONS_DRACONIAN:
case MONS_RED_DRACONIAN:
case MONS_WHITE_DRACONIAN: