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

28 lines
784 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 strength" }) );
SetAdjectives( "red", "strength", "strongitude", "strongicity" );
SetShort("a red potion of strength");
SetLong("A bottle containing a red fluid with the magical property of making one stronger.");
SetMass(60);
SetMealType(MEAL_DRINK);
SetStrength(5);
SetMealMessages("You drink a potion.",
"$N drinks a potion.");
SetBaseCost("silver",1000);
SetDuration(600);
SetStats( ([ "strength" : 10 ]) );
SetPoints( ([ "HP" : 50, "SP" : 50 ]) );
SetVendorType(VT_MAGIC);
}
void init(){
::init();
}