summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-gear.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-05-30 07:52:37 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-05-30 07:53:11 -0700
commit10e107e5aa7d7497ecf563037afb919365d6aaae (patch)
treeeafee2d74243aeef87f86e48b75522417d872209 /crawl-ref/source/mon-gear.cc
parent58571b5d5a55ece2f6e9ceaf9c3cb4777631e59d (diff)
downloadcrawl-ref-10e107e5aa7d7497ecf563037afb919365d6aaae.tar.gz
crawl-ref-10e107e5aa7d7497ecf563037afb919365d6aaae.zip
Arm Iron Devils
Their only remotely distinctive feature was their love of weapons, so let's play with that.
Diffstat (limited to 'crawl-ref/source/mon-gear.cc')
-rw-r--r--crawl-ref/source/mon-gear.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-gear.cc b/crawl-ref/source/mon-gear.cc
index bbd4309161..bb7c277ca1 100644
--- a/crawl-ref/source/mon-gear.cc
+++ b/crawl-ref/source/mon-gear.cc
@@ -1522,6 +1522,14 @@ static void _give_weapon(monster* mon, int level, bool melee_only = false,
1, WPN_LAJATANG, 0);
break;
+ case MONS_IRON_DEVIL:
+ item.base_type = OBJ_WEAPONS;
+ item.sub_type = random_choose_weighted(1, WPN_MORNINGSTAR,
+ 1, WPN_DIRE_FLAIL,
+ 2, WPN_BATTLEAXE,
+ 1, WPN_GREAT_SWORD,
+ 0);
+
default:
break;
}