diff --git a/modular_chomp/code/modules/client/preference_setup/loadout/loadout_suit.dm b/modular_chomp/code/modules/client/preference_setup/loadout/loadout_suit.dm new file mode 100644 index 0000000000..d5af35f6df --- /dev/null +++ b/modular_chomp/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -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) \ No newline at end of file diff --git a/vorestation.dme b/vorestation.dme index 4d9eb46729..f6f8bae515 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -4560,6 +4560,7 @@ #include "modular_chomp\code\modules\client\preference_setup\general\03_body.dm" #include "modular_chomp\code\modules\client\preference_setup\global\setting_datums.dm" #include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_general.dm" +#include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_suit.dm" #include "modular_chomp\code\modules\client\preference_setup\loadout\loadout_xeno.dm" #include "modular_chomp\code\modules\clothing\clothing.dm" #include "modular_chomp\code\modules\clothing\clothing_icons.dm"