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

22 lines
479 B
C

#include <lib.h>
#include <armor_types.h>
#include <damage_types.h>
inherit LIB_ARMOR;
static void create(){
armor::create();
SetKeyName("scarf");
SetId(({"scarf"}));
SetAdjectives( ({"handsome","tartan"}) );
SetShort("a handsome tartan scarf");
SetLong("This a handsome scarf, very comfortable and "+
"probably expensive as well.");
SetMass(3);
SetBaseCost("silver", 350);
SetArmorType(A_COLLAR);
}
void init(){
::init();
}