34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
#include <lib.h>
|
|
#include <vendor_types.h>
|
|
#include <meal_types.h>
|
|
|
|
inherit LIB_POTION;
|
|
|
|
static void create() {
|
|
potion::create();
|
|
SetKeyName("eve tonic");
|
|
SetId( ({ "bottle", "liquid", "eve", "tonic"}) );
|
|
SetAdjectives( "eve", "glowing","liquid", "blue" );
|
|
SetShort("a bottle of Eve");
|
|
SetLong("A bottle of glowing blue liquid. It has a label on it featuring "+
|
|
"the silhouette of a bearded man wearing a top hat.");
|
|
SetEmptyLong("An empty bottle. It has a label on it featuring "+
|
|
"the silhouette of a bearded man wearing a top hat.");
|
|
SetMass(60);
|
|
SetMealType(MEAL_DRINK);
|
|
SetStrength(5);
|
|
SetMealMessages("You drink a potion.",
|
|
"$N drinks a potion.");
|
|
SetBaseCost("gold",50);
|
|
SetPoints( ([ "MP" : 500 ]) );
|
|
SetStats( ([ "intelligence" : 5 ]) );
|
|
SetVendorType(VT_MAGIC);
|
|
SetItems(([
|
|
({"label"}) : "A label affixed to the bottle.",
|
|
]));
|
|
SetRead( ({"label"}), "Invigorating EVE! Give in to your inner power!" );
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|