mud/lib/domains/town/meals/potion_bigheal.c
2020-09-06 05:43:07 -07:00

26 lines
746 B
C

#include <lib.h>
#include <vendor_types.h>
#include <meal_types.h>
inherit LIB_POTION;
static void create() {
potion::create();
SetKeyName("potion");
SetId( ({ "bottle", "potion","philtrum","potion of healing","potion of greater healing" }) );
SetAdjectives(({"green", "healing","greater healing"}));
SetShort("a green potion of greater healing");
SetLong("A bottle containing a green fluid with the magical property of restoring much health.");
SetMass(60);
SetMealType(MEAL_DRINK);
SetStrength(15);
SetMealMessages("You drink a potion.",
"$N drinks a potion.");
SetBaseCost("silver",2000);
SetPoints( ([ "HP" : 1000 ]) );
SetVendorType(VT_MAGIC);
}
void init(){
::init();
}