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

22 lines
533 B
C

#include <lib.h>
#include <vendor_types.h>
inherit LIB_ITEM;
void create(){
::create();
SetKeyName("bath mat");
SetId( ({"mat"}) );
SetAdjectives( ({"slightly damp","damp","blue","light blue"}) );
SetShort("a bath mat");
SetLong("This is a mat used to help prevent slipping, promote "
"foot drying, and avoid a big wet mess on "
"the bathroom floor. It is slightly damp.");
SetMass(10);
SetBaseCost("silver",5);
SetVendorType(VT_TREASURE);
}
void init(){
::init();
}