summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-11-08 20:04:10 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-11-08 20:04:10 +0100
commit58b3ab725dec733191e76dcfa02243cc6b0ce3ac (patch)
tree1224e162ace233f3782645af45946b6b10ace2a8 /crawl-ref/source/makeitem.h
parent44191bee0ba18382a7c38cac428375d480d15af8 (diff)
downloadcrawl-ref-58b3ab725dec733191e76dcfa02243cc6b0ce3ac.tar.gz
crawl-ref-58b3ab725dec733191e76dcfa02243cc6b0ce3ac.zip
Split away monsters' starting gear from makeitem.cc to mon-gear.cc
Diffstat (limited to 'crawl-ref/source/makeitem.h')
-rw-r--r--crawl-ref/source/makeitem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/makeitem.h b/crawl-ref/source/makeitem.h
index 05cde765c8..5445467c4b 100644
--- a/crawl-ref/source/makeitem.h
+++ b/crawl-ref/source/makeitem.h
@@ -25,7 +25,6 @@ int items( int allow_uniques, object_class_type force_class, int force_type,
void item_colour(item_def &item);
void init_rod_mp(item_def &item, int ncharges = -1);
-void give_item(int mid, int level_number, bool mons_summoned);
jewellery_type get_random_ring_type();
jewellery_type get_random_amulet_type();
@@ -36,6 +35,8 @@ void item_set_appearance(item_def &item);
bool is_weapon_brand_ok(int type, int brand);
bool is_armour_brand_ok(int type, int brand);
+bool got_curare_roll(const int item_level);
+
#if DEBUG_DIAGNOSTICS || DEBUG_TESTS
void makeitem_tests();
#endif