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

26 lines
770 B
C

#include <lib.h>
#include <meal_types.h>
inherit LIB_POTION;
static void create() {
potion::create();
SetKeyName("potion");
SetId( ({ "potion","philtrum","megapotion","megapotion of uberness" }) );
SetShort("a megapotion of uberness");
SetLong("An example of a potion that is totally out of proportion in power.");
SetMass(60);
SetMealType(MEAL_DRINK | MEAL_ALCOHOL);
SetStrength(5);
SetMealMessages("You drink a potion.",
"$N drinks a potion.");
SetBaseCost("silver",10000);
SetDuration(30);
SetStats( ([ "strength" : 50, "speed" : 50 ]) );
SetSkills( ([ "bargaining" : 20, "melee defense" : 20 ]) );
SetPoints( ([ "HP" : 100, "XP" : 100, "SP" : 100, "MP" : 100 ]) );
}
void init(){
::init();
}