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

24 lines
675 B
C

#include <lib.h>
#include <armor_types.h>
#include <damage_types.h>
inherit LIB_ARMOR;
static void create(){
armor::create();
SetKeyName("leather boot");
SetAdjectives( ({"leather", "simple", "orc", "orcish", "inelegant", "protective"}) );
SetId(({"boot","left boot"}));
SetShort("a leather boot");
SetLong("A leather boot of orcish design. Simple and inelegant, but quite protective. It is designed for the left foot.");
SetMass(60);
SetBaseCost("silver", 30);
SetProtection(BLUNT,5);
SetProtection(BLADE,5);
SetProtection(KNIFE,5);
SetArmorType(A_BOOT);
SetRestrictLimbs(({"left foot"}));
}
void init(){
::init();
}