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

26 lines
659 B
C

#include <lib.h>
#include <armor_types.h>
#include <damage_types.h>
inherit LIB_ARMOR;
static void create(){
armor::create();
SetKeyName("riding boot");
SetId(({"boot"}));
SetAdjectives(({"long","riding","black","leather","right"}));
SetShort("a long riding boot");
SetLong("A long riding boot, made of black leather. It is "+
"designed for wear on the right foot and leg.");
SetMass(40);
SetBaseCost("silver",75);
SetProtection(BLUNT,5);
SetProtection(BLADE,5);
SetProtection(KNIFE,5);
SetArmorType(A_LONG_BOOT);
SetRestrictLimbs(({"right foot","right leg"}));
}
void init(){
::init();
}