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

19 lines
415 B
C

#include <lib.h>
inherit LIB_DUMMY; // These do not show up in desc, but you can look at them
inherit LIB_WEAR; // Makes the item pressable
varargs mixed eventWear(object who) {
return 1;
}
static void create() {
dummy::create();
SetKeyName("hood");
SetId("cloak hood","cloak's hood");
SetShort("a hood");
SetLong("A hood on a cloak.");
SetInvis(0);
//SetWear((: eventWear :));
}