summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-gear.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-05-04 23:47:47 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-05-05 00:02:00 -0400
commita5424833455d53c6fb2d6d63a9e9feb38181cbf1 (patch)
treea7d2f09aa3374953a0b422d66c95cb0ba10abf03 /crawl-ref/source/mon-gear.cc
parent23238270265ca678ef325505d69bdba4829162bf (diff)
downloadcrawl-ref-a5424833455d53c6fb2d6d63a9e9feb38181cbf1.tar.gz
crawl-ref-a5424833455d53c6fb2d6d63a9e9feb38181cbf1.zip
Remove spriggan enchanters.
The monster. It didn't really exist anywhere, nor did the idea seem to add too much to the good-sized danger that spriggans already posed.
Diffstat (limited to 'crawl-ref/source/mon-gear.cc')
-rw-r--r--crawl-ref/source/mon-gear.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/crawl-ref/source/mon-gear.cc b/crawl-ref/source/mon-gear.cc
index 972ee35a02..e4deb67d80 100644
--- a/crawl-ref/source/mon-gear.cc
+++ b/crawl-ref/source/mon-gear.cc
@@ -1304,13 +1304,6 @@ static void _give_weapon(monster* mon, int level, bool melee_only = false,
WPN_CUTLASS, -1);
break;
- case MONS_SPRIGGAN_ENCHANTER:
- if (one_chance_in(3))
- level = MAKE_GOOD_ITEM;
- item.base_type = OBJ_WEAPONS;
- item.sub_type = one_chance_in(12) ? WPN_QUICK_BLADE : WPN_DAGGER;
- break;
-
case MONS_SPRIGGAN_RIDER:
if (!melee_only && one_chance_in(15))
{
@@ -1909,7 +1902,6 @@ static void _give_shield(monster* mon, int level)
break;
case MONS_SPRIGGAN:
case MONS_SPRIGGAN_RIDER:
- case MONS_SPRIGGAN_ENCHANTER:
if (!one_chance_in(4))
break;
case MONS_SPRIGGAN_DEFENDER:
@@ -2328,7 +2320,6 @@ static void _give_armour(monster* mon, int level, bool spectral_orcs)
case MONS_MERFOLK_AQUAMANCER:
case MONS_SPRIGGAN:
case MONS_SPRIGGAN_AIR_MAGE:
- case MONS_SPRIGGAN_ENCHANTER:
case MONS_SPRIGGAN_DEFENDER:
item.base_type = OBJ_ARMOUR;
item.sub_type = ARM_ROBE;