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

23 lines
573 B
C

#include <lib.h>
#include <meal_types.h>
inherit LIB_MEAL;
static void create() {
meal::create();
SetKeyName("special");
SetId( ({ "special of the house", "bottle", "bourbon" }) );
SetShort("a bottle of bourbon");
SetLong("A dark green bottle of cheap bourbon.");
SetMass(100);
SetBaseCost("silver",20);
SetMealType(MEAL_DRINK | MEAL_ALCOHOL);
SetStrength(30);
SetMealMessages("You finish off the bourbon and gasp! WHEW!! Mean stuff!",
"$N finishes off a bottle of bourbon and gasps.");
}
void init(){
::init();
}