Merge pull request #6115 from Aroliacue/aro_vests

Sec/Explo Plate Carriers in Loadout
This commit is contained in:
Nadyr
2023-04-25 20:48:31 -04:00
committed by GitHub
2 changed files with 18 additions and 0 deletions
@@ -0,0 +1,17 @@
/datum/gear/suit/pcarrier // No protection until inserted with plates, purely for cosmetic purposes.
display_name = "Plate Carrier selection (Security/Exploration)"
path = /obj/item/clothing/suit/armor/pcarrier
allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer", "Pathfinder", "Field Medic", "Pilot", "Explorer")
cost = 2
/datum/gear/suit/pcarrier/New()
..()
var/list/pcarriers = list(
"Black Plate Carrier" = /obj/item/clothing/suit/armor/pcarrier,
"Navy Plate Carrier" = /obj/item/clothing/suit/armor/pcarrier/navy,
"Blue Plate Carrier" = /obj/item/clothing/suit/armor/pcarrier/blue,
"Light Blue Plate Carrier" = /obj/item/clothing/suit/armor/pcarrier/press,
"Green Plate Carrier" = /obj/item/clothing/suit/armor/pcarrier/green,
"Tan Plate Carrier" = /obj/item/clothing/suit/armor/pcarrier/tan
)
gear_tweaks += new/datum/gear_tweak/path(pcarriers)