summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-gear.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-12-10 15:10:45 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-12-10 15:13:45 +1000
commit076bae805cc14f884cf40c84f278478d2b4ad24c (patch)
treeadea467363d7c6bfadea7989e1e354f233f3790a /crawl-ref/source/mon-gear.cc
parentc602df19e39a4092f2307f414c7ea7d6a7fe3af1 (diff)
downloadcrawl-ref-076bae805cc14f884cf40c84f278478d2b4ad24c.tar.gz
crawl-ref-076bae805cc14f884cf40c84f278478d2b4ad24c.zip
Pre-emptively adjust Aizul. (dpeg)
In preparation for the guardian naga -> guardian serpent change. A compromise of sorts.
Diffstat (limited to 'crawl-ref/source/mon-gear.cc')
-rw-r--r--crawl-ref/source/mon-gear.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/crawl-ref/source/mon-gear.cc b/crawl-ref/source/mon-gear.cc
index f66fdb0410..96ff1feef1 100644
--- a/crawl-ref/source/mon-gear.cc
+++ b/crawl-ref/source/mon-gear.cc
@@ -274,16 +274,6 @@ static item_make_species_type _give_weapon(monsters *mon, int level,
do_curse_item(item);
break;
- case MONS_AIZUL:
- if (one_chance_in(3))
- level = MAKE_GOOD_ITEM;
-
- item_race = MAKE_ITEM_NO_RACE;
- item.base_type = OBJ_WEAPONS;
- item.sub_type = random_choose(WPN_HALBERD, WPN_SCIMITAR, WPN_GREAT_MACE,
- WPN_LONG_SWORD, WPN_EVENINGSTAR, -1);
- break;
-
case MONS_GNOLL:
case MONS_OGRE_MAGE:
case MONS_NAGA_WARRIOR:
@@ -1193,7 +1183,6 @@ void give_shield(monsters *mon, int level)
make_item_for_monster(mon, OBJ_ARMOUR, ARM_LARGE_SHIELD,
level * 2 + 1, MAKE_ITEM_RANDOM_RACE, 1);
break;
- case MONS_AIZUL:
case MONS_DONALD:
make_item_for_monster(mon, OBJ_ARMOUR, ARM_SHIELD,
level * 2 + 1, MAKE_ITEM_RANDOM_RACE, 1);
@@ -1490,13 +1479,6 @@ void give_armour(monsters *mon, int level)
force_colour = LIGHTCYAN;
break;
- case MONS_AIZUL:
- item_race = MAKE_ITEM_NO_RACE;
- item.base_type = OBJ_ARMOUR;
- item.sub_type = ARM_NAGA_BARDING;
- force_colour = RED;
- break;
-
default:
return;
}