diff --git a/code/modules/client/preference_setup/loadout/lists/factionsecurity.dm b/code/modules/client/preference_setup/loadout/lists/factionsecurity.dm index 6bedb4aeea9..033df85c231 100644 --- a/code/modules/client/preference_setup/loadout/lists/factionsecurity.dm +++ b/code/modules/client/preference_setup/loadout/lists/factionsecurity.dm @@ -6,6 +6,13 @@ sort_category = "Faction: Security" cost = 0 +/datum/gear/factionsecurity/miljacket_marshal //it's a Jacket for Marshals Commisioned by pneumo/husky and sprited/coded by Dromkii + display_name = "Marshal Jacket" + path = /obj/item/clothing/suit/storage/toggle/miljacket_marshal + allowed_roles = list("Warrant Officer","Supply Specialist","Ranger","Marshal Officer") + slot = slot_wear_suit + sort_category = "Faction: Security" + /datum/gear/factionsecurity/ironhammer_wintercoat //it's just a generic marshal plate carrier coat with no added coverage -Dongels display_name = "security armored coat" path = /obj/item/clothing/suit/armor/vest/ironhammer_wintercoat diff --git a/code/modules/clothing/suits/storage.dm b/code/modules/clothing/suits/storage.dm index a4c24457619..7e2613f9e1e 100644 --- a/code/modules/clothing/suits/storage.dm +++ b/code/modules/clothing/suits/storage.dm @@ -290,6 +290,16 @@ icon_open = "militaryjacket_soyfed_open" icon_closed = "militaryjacket_soyfed" +/obj/item/clothing/suit/storage/toggle/miljacket_marshal + name = "Marshal jacket" + desc = "A Resistant Marshal Coloured jacket with reflective yellow patches on it." + armor_list = list(melee = 15, bullet = 15, energy = 15, bomb = 10, bio = 0, rad = 0) + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + icon_state = "marshal_jacket" + item_state = "marshal_jacket" + icon_open = "marshal_jacket_open" + icon_closed = "marshal_jacket" + /*Snowsuits*/ /obj/item/clothing/suit/storage/snowsuit diff --git a/icons/inventory/suit/icon.dmi b/icons/inventory/suit/icon.dmi index 92571bafc8c..56306e83817 100644 Binary files a/icons/inventory/suit/icon.dmi and b/icons/inventory/suit/icon.dmi differ diff --git a/icons/inventory/suit/mob.dmi b/icons/inventory/suit/mob.dmi index de2495e2970..24d4b1b4afe 100644 Binary files a/icons/inventory/suit/mob.dmi and b/icons/inventory/suit/mob.dmi differ diff --git a/icons/inventory/suit/mob_fem.dmi b/icons/inventory/suit/mob_fem.dmi index 7e45e597412..b9c54418429 100644 Binary files a/icons/inventory/suit/mob_fem.dmi and b/icons/inventory/suit/mob_fem.dmi differ