summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
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
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')
-rw-r--r--crawl-ref/source/mon-gear.cc2
-rw-r--r--crawl-ref/source/monster.cc3
2 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-gear.cc b/crawl-ref/source/mon-gear.cc
index 0fdcd90d01..9f8b8785bd 100644
--- a/crawl-ref/source/mon-gear.cc
+++ b/crawl-ref/source/mon-gear.cc
@@ -644,7 +644,7 @@ static item_make_species_type _give_weapon(monsters *mon, int level,
item.base_type = OBJ_WEAPONS;
item.colour = YELLOW; // forced by force_item above {dlb}
- item.sub_type = (one_chance_in(4) ? WPN_GREAT_MACE
+ item.sub_type = (one_chance_in(4) ? WPN_HOLY_SCOURGE
: WPN_MACE);
set_equip_desc(item, ISFLAG_GLOWING);
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);