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

24 lines
565 B
C

#include <lib.h>
#include <meal_types.h>
inherit LIB_MEAL;
static void create() {
meal::create();
SetKeyName("coffee");
SetId( ({"cup","coffee" }) );
SetAdjectives( ({"regular","cup of","ordinary"}) );
SetShort("a cup of coffee");
SetLong("An ordinary cup of coffee");
SetMass(10);
SetMealType( MEAL_DRINK | MEAL_CAFFEINE );
SetStrength(10);
SetBaseCost("silver",5);
SetMealMessages("The wonderful drink is invigorating." ,
"$N drinks $P coffee, and looks invigorated.");
}
void init(){
::init();
}