#include #include #include #include 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(); }