diff --git a/code/modules/clothing/accessories/armor.dm b/code/modules/clothing/accessories/armor.dm index dc3a91ada1..f0f186bc42 100644 --- a/code/modules/clothing/accessories/armor.dm +++ b/code/modules/clothing/accessories/armor.dm @@ -243,6 +243,17 @@ siemens_coefficient = 0.5 armor = list(melee = 80, bullet = 10, laser = 10, energy = 50, bomb = 0, bio = 0, rad = 0) +/obj/item/clothing/accessory/armor/armguards/security + name = "security arm guards" + desc = "A pair of black-and-red arm pads reinforced with armor plating. Attaches to a plate carrier." + icon_state = "armguards_merc" + +/obj/item/clothing/accessory/armor/armguards/security/white + name = "security combat arm guards" + desc = "A pair of black, red and white arm pads up-armored with combat-grade plating. Attaches to a plate carrier." + icon_state = "armguards_sec_white" + armor = list(melee = 60, bullet = 60, laser = 60, energy = 40, bomb = 40, bio = 0, rad = 0) + ////////////// //Leg guards ////////////// @@ -310,6 +321,17 @@ siemens_coefficient = 0.5 armor = list(melee = 80, bullet = 10, laser = 10, energy = 10, bomb = 0, bio = 0, rad = 0) +/obj/item/clothing/accessory/armor/legguards/security + name = "security leg guards" + desc = "A pair of black-and-red leg pads reinforced with armor plating. Attaches to a plate carrier." + icon_state = "legguards_merc" + +/obj/item/clothing/accessory/armor/legguards/security/white + name = "security combat leg guards" + desc = "A pair of black, red and white leg pads up-armored with combat-grade plating. Attaches to a plate carrier." + icon_state = "legguards_sec_white" + armor = list(melee = 60, bullet = 60, laser = 60, energy = 40, bomb = 40, bio = 0, rad = 0) + ////////////////////////// //Decorative attachments ////////////////////////// @@ -391,6 +413,11 @@ desc = "An embroidered patch indicating the wearer's blood type as AB NEGATIVE." icon_state = "abnegtag" +/obj/item/clothing/accessory/armor/tag/ntwhite + name = "White NANOTRASEN tag" + desc = "An armor tag with the word NANOTRASEN printed in red-and-white lettering on it and an accompanying company logo." + icon_state = "nanotag_white" + ///////////////// // Helmet Covers ///////////////// @@ -437,3 +464,8 @@ name = "\improper SAARE helmet cover" desc = "A fabric cover for armored helmets. This one has SAARE's colors." icon_state = "helmcover_saare" + +/obj/item/clothing/accessory/armor/helmcover/ntblack + name = "\improper NanoTrasen black helmet cover" + desc = "A fabric cover for armored helmets. This one has a simple red NanoTrasen highlight." + icon_state = "helmcover_ntblack" diff --git a/icons/inventory/accessory/mob.dmi b/icons/inventory/accessory/mob.dmi index 285f2db609..829c1ea8c9 100644 Binary files a/icons/inventory/accessory/mob.dmi and b/icons/inventory/accessory/mob.dmi differ diff --git a/icons/mob/modular_armor.dmi b/icons/mob/modular_armor.dmi index fb91272a9d..c4182baf91 100644 Binary files a/icons/mob/modular_armor.dmi and b/icons/mob/modular_armor.dmi differ diff --git a/icons/obj/clothing/modular_armor.dmi b/icons/obj/clothing/modular_armor.dmi index feb87b3293..1e6a3b14d9 100644 Binary files a/icons/obj/clothing/modular_armor.dmi and b/icons/obj/clothing/modular_armor.dmi differ