summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-02 22:24:27 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-02 22:24:27 -0700
commitc20e871d72b71d4093c954bf0de924debf178fd9 (patch)
treef764003ccc3befe38dae0e2173135f7d3a4454ef /crawl-ref/source/describe.cc
parent8a89d76ea67453d169c1e2047434dafd53a87f33 (diff)
downloadcrawl-ref-c20e871d72b71d4093c954bf0de924debf178fd9.tar.gz
crawl-ref-c20e871d72b71d4093c954bf0de924debf178fd9.zip
Hint at pan lords knowing spells (Patashu)
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 88067f2ac0..9cce504e72 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3186,6 +3186,10 @@ static string _monster_attacks_description(const monster_info& mi)
static string _monster_spells_description(const monster_info& mi)
{
+ // Show a generic message for pan lords, since they're secret.
+ if (mi.type == MONS_PANDEMONIUM_LORD)
+ return "It may possess any of a vast number of diabolical powers.";
+
// Show monster spells and spell-like abilities.
if (!mi.is_spellcaster() || !mi.has_spells())
return "";