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

19 lines
451 B
C

#include <lib.h>
#include <vendor_types.h>
inherit LIB_ITEM;
void create(){
::create();
SetKeyName("silver candlestick");
SetId( ({"candlestick","candelabra","candelabrum"}) );
SetAdjectives( ({"small","ornate","silver"}) );
SetShort("a silver candlestick");
SetLong("This is an small, ornate silver candlestick.");
SetMass(20);
SetBaseCost("silver",50);
SetVendorType(VT_TREASURE);
}
void init(){
::init();
}