summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-info.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-01-20 16:59:39 -0700
committerSteve Melenchuk <smelenchuk@gmail.com>2014-01-21 22:10:13 -0700
commitf8cb75a49fcc32518a60c13df46f16e3f4c73ec2 (patch)
tree796ad069212fdf8346d58a4d2f5b8055d23b35c1 /crawl-ref/source/mon-info.cc
parentfe637a9830636e896b11b04401062ab67311425a (diff)
downloadcrawl-ref-f8cb75a49fcc32518a60c13df46f16e3f4c73ec2.tar.gz
crawl-ref-f8cb75a49fcc32518a60c13df46f16e3f4c73ec2.zip
Powered by Pain for torturous demonspawn.
Diffstat (limited to 'crawl-ref/source/mon-info.cc')
-rw-r--r--crawl-ref/source/mon-info.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-info.cc b/crawl-ref/source/mon-info.cc
index 1a06c40881..6a5780e51a 100644
--- a/crawl-ref/source/mon-info.cc
+++ b/crawl-ref/source/mon-info.cc
@@ -188,6 +188,8 @@ static monster_info_flags ench_to_mb(const monster& mons, enchant_type ench)
return MB_TORNADO_COOLDOWN;
case ENCH_ICEMAIL:
return MB_ICEMAIL;
+ case ENCH_AGILE:
+ return MB_AGILE;
default:
return NUM_MB_FLAGS;
}
@@ -1571,6 +1573,8 @@ vector<string> monster_info::attributes() const
v.push_back("surrounded by restless winds");
if (is(MB_ICEMAIL))
v.push_back("surrounded by an icy envelope");
+ if (is(MB_AGILE))
+ v.push_back("unusually agile");
return v;
}