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

22 lines
508 B
C

#include <lib.h>
#include <vendor_types.h>
inherit LIB_DIE;
void create(){
::create();
SetKeyName("die");
SetId( ({ "implement"}) );
SetAdjectives( ({"6","six","sided","six-sided","6-sided"}) );
SetShort("a six-sided die");
SetLong("A typical implement of games of chance. Orange in color, and "
"marked with numbers rather than dots along its six surfaces.");
SetMass(2);
SetBaseCost("silver",1);
SetVendorType(VT_TREASURE);
}
void init(){
::init();
}