/* /domains/Ylsrim/armor/helm.c * from the Dead Souls Mud Library * created by Descartes of Borg 960302 */ #include #include #include #include inherit LIB_ARMOR; static void create() { armor::create(); SetKeyName("wooden helm"); SetId("helm"); SetAdjectives("wooden"); SetShort("a wooden helm"); SetLong("It is a lame wooden helm."); SetDamagePoints(3000); SetVendorType(VT_ARMOR); SetMass(200); SetValue(100); SetArmorType(A_HELMET); SetProtection(BLUNT, 40); SetProtection(BLADE, 3); SetProtection(KNIFE, 10); SetProtection(HEAT, 30); }