/* potion of bless */
/* Note: The potion is a drinkable object that can use spells
from the cleric, mage spell bins that are flagged as passive,
which means (mostly) that the potion's spell target should
default to the quaffer
The spell will default to the minimum cast level, though you can set
it higher. set_spell() will return 1 if it can use the spell.
*/
inherit "objects/potion";
void reset(status arg) {
::reset(arg); /* for default potion messages */
if(arg) return;
set_spell("bless");
set_cast_level(5); /* 1 is a little too low */
}