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

28 lines
659 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("large shield");
SetId( ({ "shield" }) );
SetAdjectives( ({ "wood", "wooden","large" }) );
SetShort("a large wooden shield");
SetLong("A large, heavy shield made of strong wood banded with iron.");
SetVendorType(VT_ARMOR);
SetMass(100);
SetBaseCost("silver",250);
SetArmorType(A_SHIELD);
SetProtection(BLUNT, 10);
SetProtection(BLADE, 10);
SetProtection(KNIFE, 10);
//SetRestrictLimbs( ({"left hand"}) );
}
void init(){
::init();
}