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

32 lines
746 B
C

#include <lib.h>
#include <armor_types.h>
#include <damage_types.h>
#include <vendor_types.h>
inherit LIB_ARMOR;
static void create() {
armor::create();
SetKeyName("leather glove");
SetId( ({ "glove" }) );
SetAdjectives( ({ "black","leather","left" }) );
SetShort("a black leather glove");
SetLong("A black glove with five fingers designed for a left hand.");
SetDamagePoints(75);
SetVendorType(VT_ARMOR);
SetMass(10);
SetBaseCost("silver",7);
SetArmorType(A_GLOVE);
SetProtection(BLUNT, 1);
SetProtection(BLADE, 1);
SetProtection(KNIFE, 2);
SetProtection(HEAT, 3);
SetProtection(COLD, 7);
SetFingers(5);
SetRestrictLimbs(({"left hand"}));
}
void init(){
::init();
}