diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index c94984e4b2d..4d5fe5e11e3 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -65,6 +65,11 @@ mask_type = /obj/item/clothing/mask/gas/atmos/captain storage_type = /obj/item/tank/jetpack/oxygen/captain +/obj/machinery/suit_storage_unit/centcom + suit_type = /obj/item/clothing/suit/space/hardsuit/swat/centcom + mask_type = /obj/item/clothing/mask/gas/atmos/centcom + storage_type = /obj/item/tank/jetpack/oxygen/captain + /obj/machinery/suit_storage_unit/engine suit_type = /obj/item/clothing/suit/space/hardsuit/engine mask_type = /obj/item/clothing/mask/breath diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index 3cf3e6e2f69..f39d7e9ff69 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -104,6 +104,13 @@ inhand_icon_state = "gas_cap" resistance_flags = FIRE_PROOF | ACID_PROOF +/obj/item/clothing/mask/gas/atmos/centcom + name = "\improper CentCom gas mask" + desc = "Oooh, gold and green. Fancy! This should help as you sit in your office." + icon_state = "gas_centcom" + inhand_icon_state = "gas_centcom" + resistance_flags = FIRE_PROOF | ACID_PROOF + // **** Welding gas mask **** /obj/item/clothing/mask/gas/welding diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index e810c5a18ad..164d094c912 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -224,21 +224,19 @@ //All of the armor below is mostly unused -/obj/item/clothing/suit/armor/centcom - name = "\improper CentCom armor" - desc = "A suit that protects against some damage." +/obj/item/clothing/head/helmet/space/hardsuit/swat/centcom + name = "\improper CentCom SWAT helmet" + icon_state = "centcomspace" + inhand_icon_state = "centcomspacehelmet" + desc = "A tactical MK.II SWAT helmet boasting better protection and a reasonable fashion sense." + +/obj/item/clothing/suit/space/hardsuit/swat/centcom + name = "\improper CentCom SWAT armor" + desc = "A MK.II SWAT suit with streamlined joints and armor made out of superior materials, insulated against intense heat with the complementary gas mask. Usually given to station Captains, this one has been painted CC green with complimentary gold accents." icon_state = "centcom" - inhand_icon_state = "centcom" - w_class = WEIGHT_CLASS_BULKY - body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - allowed = list(/obj/item/gun/energy, /obj/item/melee/baton, /obj/item/restraints/handcuffs, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) - clothing_flags = THICKMATERIAL - flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT - cold_protection = CHEST | GROIN | LEGS | FEET | ARMS | HANDS - min_cold_protection_temperature = SPACE_SUIT_MIN_TEMP_PROTECT - heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - max_heat_protection_temperature = SPACE_SUIT_MAX_TEMP_PROTECT - armor = list(MELEE = 80, BULLET = 80, LASER = 50, ENERGY = 50, BOMB = 100, BIO = 100, RAD = 100, FIRE = 90, ACID = 90) + inhand_icon_state = "centcomspacesuit" + helmettype = /obj/item/clothing/head/helmet/space/hardsuit/swat/centcom + cell = /obj/item/stock_parts/cell/super /obj/item/clothing/suit/armor/heavy name = "heavy armor" diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index ee3b6d1a3df..be8d9f18cbc 100644 Binary files a/icons/mob/clothing/head.dmi and b/icons/mob/clothing/head.dmi differ diff --git a/icons/mob/clothing/mask.dmi b/icons/mob/clothing/mask.dmi index 878e166d29c..5f29dd61984 100644 Binary files a/icons/mob/clothing/mask.dmi and b/icons/mob/clothing/mask.dmi differ diff --git a/icons/mob/clothing/suit.dmi b/icons/mob/clothing/suit.dmi index ac880c00c2f..ed57bc6b605 100644 Binary files a/icons/mob/clothing/suit.dmi and b/icons/mob/clothing/suit.dmi differ diff --git a/icons/mob/inhands/clothing_lefthand.dmi b/icons/mob/inhands/clothing_lefthand.dmi index 5c923d450c9..79b6178b90b 100644 Binary files a/icons/mob/inhands/clothing_lefthand.dmi and b/icons/mob/inhands/clothing_lefthand.dmi differ diff --git a/icons/mob/inhands/clothing_righthand.dmi b/icons/mob/inhands/clothing_righthand.dmi index 8fdccbd1f0a..876e872d2cd 100644 Binary files a/icons/mob/inhands/clothing_righthand.dmi and b/icons/mob/inhands/clothing_righthand.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 413250ef8c4..86f52f020f0 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/masks.dmi b/icons/obj/clothing/masks.dmi index 95deb4c53f9..7131e283e73 100644 Binary files a/icons/obj/clothing/masks.dmi and b/icons/obj/clothing/masks.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index c91fa05dbfb..e83db7cadf1 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ