00001 /* 00002 * File: it_use2.h 00003 * Summary: Functions for using wands, potions, and weapon/armour removal. 00004 * Written by: Linley Henzell 00005 */ 00006 00007 #ifndef IT_USE2_H 00008 #define IT_USE2_H 00009 00010 00011 #include "externs.h" 00012 00013 // drank_it should be true for real potion effects (as opposed 00014 // to abilities which duplicate such effects.) 00015 bool potion_effect(potion_type pot_eff, int pow, 00016 bool drank_it = false, bool was_known = true); 00017 00018 bool unwield_item(bool showMsgs = true); 00019 00020 #endif