summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-info.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-06-11 12:22:23 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-06-11 14:24:44 -0400
commit3de993f02c4bed1965ab08f9ec0803c66b83e503 (patch)
tree76c94c9448056e2e53d1e71bae22fea20e9e1d0c /crawl-ref/source/mon-info.cc
parent07fcab1d610d00ddc0b1407c416be49c7e45f88b (diff)
downloadcrawl-ref-3de993f02c4bed1965ab08f9ec0803c66b83e503.tar.gz
crawl-ref-3de993f02c4bed1965ab08f9ec0803c66b83e503.zip
Clarify some monster enchant descriptions (#1958).
Diffstat (limited to 'crawl-ref/source/mon-info.cc')
-rw-r--r--crawl-ref/source/mon-info.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mon-info.cc b/crawl-ref/source/mon-info.cc
index ae0b0d5b9a..f38a4d195b 100644
--- a/crawl-ref/source/mon-info.cc
+++ b/crawl-ref/source/mon-info.cc
@@ -1474,7 +1474,7 @@ vector<string> monster_info::attributes() const
if (is(MB_GLOWING))
v.push_back("softly glowing");
if (is(MB_SLOWED))
- v.push_back("moving slowly");
+ v.push_back("slow");
if (is(MB_INSANE))
v.push_back("frenzied and insane");
if (is(MB_BERSERK))
@@ -1484,7 +1484,7 @@ vector<string> monster_info::attributes() const
if (is(MB_ROUSED))
v.push_back("inspired to greatness");
if (is(MB_HASTED))
- v.push_back("moving very quickly");
+ v.push_back("fast");
if (is(MB_STRONG))
v.push_back("unusually strong");
if (is(MB_CONFUSED))
@@ -1506,7 +1506,7 @@ vector<string> monster_info::attributes() const
if (is(MB_VULN_MAGIC))
v.push_back("susceptible to magic");
if (is(MB_SWIFT))
- v.push_back("moving somewhat quickly");
+ v.push_back("covering ground quickly");
if (is(MB_SILENCING))
v.push_back("radiating silence");
if (is(MB_PARALYSED))