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

23 lines
508 B
C

#include <lib.h>
#include <meal_types.h>
inherit LIB_MEAL;
static void create() {
meal::create();
SetKeyName("ale");
SetId( ({ "bottle", "ale", "first class ale", "first-class ale" }) );
SetShort("a bottle of ale");
SetLong("A nice bottle of ale.");
SetMass(60);
SetMealType(MEAL_DRINK | MEAL_ALCOHOL);
SetStrength(5);
SetMealMessages("You drink a bottle of ale.",
"$N drinks a bottle of ale.");
SetBaseCost("silver",10);
}
void init(){
::init();
}