mud/lib/realms/babylon/area/obj/cup.c
2020-09-06 05:43:07 -07:00

24 lines
524 B
C

#include <lib.h>
#include <vendor_types.h>
#include <meal_types.h>
inherit LIB_FLASK;
void create(){
::create();
SetKeyName("cup");
SetId( ({"cup", "cup made of wood"}) );
SetAdjectives( ({"simple","wooden"}) );
SetShort("a wooden cup");
SetLong("A simple cup made of wood, for containing fluids.");
SetMass(5);
SetBaseCost("silver",1);
SetVendorType(VT_TREASURE);
SetFlaskUses(0);
SetStrength(5);
SetMaxFlask(1);
SetMealType(MEAL_DRINK);
}
void init(){
::init();
}