summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-gear.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-08 12:23:21 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-08 14:46:34 +0000
commit1b4a07aabe4332f4cab1e306e2f869fc354e9c83 (patch)
treef3a7ef87ed5da761a241a2ad361f4835d9f88af1 /crawl-ref/source/mon-gear.cc
parenta23cdd3435a54cfbcf02009eae03fe011bab5c76 (diff)
downloadcrawl-ref-1b4a07aabe4332f4cab1e306e2f869fc354e9c83.tar.gz
crawl-ref-1b4a07aabe4332f4cab1e306e2f869fc354e9c83.zip
Don't generate plain formicids
They're not really interesting in bands, either.
Diffstat (limited to 'crawl-ref/source/mon-gear.cc')
-rw-r--r--crawl-ref/source/mon-gear.cc31
1 files changed, 0 insertions, 31 deletions
diff --git a/crawl-ref/source/mon-gear.cc b/crawl-ref/source/mon-gear.cc
index 9e6f2ad230..42089e09cb 100644
--- a/crawl-ref/source/mon-gear.cc
+++ b/crawl-ref/source/mon-gear.cc
@@ -344,28 +344,6 @@ static void _give_weapon(monster* mon, int level, bool melee_only = false,
}
break;
- case MONS_FORMICID:
- item.base_type = OBJ_WEAPONS;
- if (one_chance_in(4))
- item.sub_type = coinflip() ? WPN_GIANT_CLUB : WPN_GIANT_SPIKED_CLUB;
- else
- {
- item.sub_type = random_choose_weighted(10, WPN_HAND_AXE, 15, WPN_GLAIVE,
- 10, WPN_MACE, 15, WPN_FLAIL,
- 5, WPN_GREAT_SWORD, 5, WPN_DIRE_FLAIL,
- 5, WPN_BATTLEAXE, 3, WPN_GREAT_MACE,
- 0);
- }
- if (coinflip())
- {
- force_item = true;
- item.plus += random2(3);
- item.plus2 += random2(3);
- if (one_chance_in(20))
- level = MAKE_GOOD_ITEM;
- }
- break;
-
case MONS_DWARF:
case MONS_DEEP_DWARF:
if (one_chance_in(9))
@@ -2011,7 +1989,6 @@ static void _give_shield(monster* mon, int level)
}
break;
- case MONS_FORMICID:
case MONS_CORRUPTER:
case MONS_BLACK_SUN:
if (one_chance_in(3))
@@ -2222,14 +2199,6 @@ static void _give_armour(monster* mon, int level, bool spectral_orcs)
item.sub_type = ARM_ROBE;
break;
- case MONS_FORMICID:
- item.base_type = OBJ_ARMOUR;
- item.sub_type = random_choose_weighted(5, ARM_SCALE_MAIL,
- 3, ARM_CHAIN_MAIL,
- 1, ARM_PLATE_ARMOUR,
- 0);
- break;
-
case MONS_DWARF:
case MONS_DEEP_DWARF:
case MONS_DEEP_DWARF_DEATH_KNIGHT: