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

26 lines
738 B
C

#include <lib.h>
#include <meal_types.h>
inherit LIB_MEAL;
static void create() {
meal::create();
SetKeyName("firebreather bourbon");
SetId( ({ "bottle", "bourbon" ,"fire","firebreather",
"bottle of bourbon"}) );
SetAdjectives( ({ "firebreather","dark","green","bourbon"}) );
SetShort("a bottle of bourbon");
SetLong("A dark green bottle of \"Firebreather\" brand bourbon.");
SetMass(100);
SetBaseCost("silver",50);
SetMealType(MEAL_DRINK | MEAL_ALCOHOL);
SetStrength(40);
SetMealMessages("You finish off the bourbon and gasp! WHOOT!! Mean stuff!",
"$N finishes off a bottle of Firebreather bourbon and lets loose a rebel yell!");
}
void init(){
::init();
}