summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monster.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-19 18:43:13 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-19 18:43:13 -0600
commit01c2c98a5a6afe23c1bbbb1165b0c41dba2ddef2 (patch)
tree26069126d917ad1b7eca5b2d91cda2fd66a7c8ab /crawl-ref/source/monster.cc
parent215ab4d845887d5671a95c2b6db8dabf1b494d2e (diff)
downloadcrawl-ref-01c2c98a5a6afe23c1bbbb1165b0c41dba2ddef2.tar.gz
crawl-ref-01c2c98a5a6afe23c1bbbb1165b0c41dba2ddef2.zip
Switch angels from using great maces to holy scourges.
They'll do less damage, but their great speed and healing powers mean that they won't be weakened much.
Diffstat (limited to 'crawl-ref/source/monster.cc')
-rw-r--r--crawl-ref/source/monster.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index 7f5a262627..9de8e7d9df 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -1251,6 +1251,9 @@ static bool _is_signature_weapon(monsters *monster, const item_def &weapon)
if (weapon.base_type != OBJ_WEAPONS)
return (false);
+ if (monster->type == MONS_ANGEL)
+ return (weapon.sub_type == WPN_HOLY_SCOURGE);
+
if (monster->type == MONS_DAEVA)
return (weapon.sub_type == WPN_BLESSED_EUDEMON_BLADE);