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

24 lines
620 B
C

#include <lib.h>
#include <meal_types.h>
inherit LIB_MEAL;
static void create() {
meal::create();
SetKeyName("bourbon");
SetAdjectives( ({ "dark","green","cheap","bourbon" }) );
SetId( ({ "bottle", "bottle of 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();
}