diff --git a/code/datums/supplypacks.dm b/code/datums/supplypacks.dm index 37fe9c0977..601533acc3 100644 --- a/code/datums/supplypacks.dm +++ b/code/datums/supplypacks.dm @@ -1526,6 +1526,9 @@ var/list/all_supply_groups = list("Operations","Security","Hospitality","Enginee /obj/item/clothing/accessory/storage/black_vest, /obj/item/clothing/accessory/storage/brown_vest, /obj/item/clothing/accessory/storage/white_vest, + /obj/item/clothing/accessory/storage/black_drop_pouches, + /obj/item/clothing/accessory/storage/brown_drop_pouches, + /obj/item/clothing/accessory/storage/white_drop_pouches, /obj/item/clothing/accessory/storage/webbing ) cost = 15 diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index ced70ebef8..a5c66d2e79 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -136,6 +136,21 @@ path = /obj/item/clothing/accessory/storage/white_vest allowed_roles = list("Paramedic","Chief Medical Officer","Medical Doctor") +/datum/gear/accessory/brown_drop_pouches + display_name = "drop pouches, engineering" + path = /obj/item/clothing/accessory/storage/brown_drop_pouches + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer") + +/datum/gear/accessory/black_drop_pouches + display_name = "drop pouches, security" + path = /obj/item/clothing/accessory/storage/black_drop_pouches + allowed_roles = list("Security Officer","Head of Security","Warden") + +/datum/gear/accessory/white_drop_pouches + display_name = "drop pouches, medical" + path = /obj/item/clothing/accessory/storage/white_drop_pouches + allowed_roles = list("Paramedic","Chief Medical Officer","Medical Doctor") + /datum/gear/accessory/webbing display_name = "webbing, simple" path = /obj/item/clothing/accessory/storage/webbing diff --git a/code/modules/clothing/under/accessories/storage.dm b/code/modules/clothing/under/accessories/storage.dm index 0e9a004a2e..cc305a78e8 100644 --- a/code/modules/clothing/under/accessories/storage.dm +++ b/code/modules/clothing/under/accessories/storage.dm @@ -68,6 +68,27 @@ icon_state = "vest_white" slots = 5 +/obj/item/clothing/accessory/storage/black_drop_pouches + name = "black drop pouches" + gender = PLURAL + desc = "Robust black synthcotton bags to hold whatever you need, but cannot hold in hands." + icon_state = "thigh_black" + slots = 5 + +/obj/item/clothing/accessory/storage/brown_drop_pouches + name = "black drop pouches" + gender = PLURAL + desc = "Worn brownish synthcotton bags to hold whatever you need, but cannot hold in hands." + icon_state = "thigh_brown" + slots = 5 + +/obj/item/clothing/accessory/storage/white_drop_pouches + name = "white drop pouches" + gender = PLURAL + desc = "Durable white synthcotton bags to hold whatever you need, but cannot hold in hands." + icon_state = "thigh_white" + slots = 5 + /obj/item/clothing/accessory/storage/knifeharness name = "decorated harness" desc = "A heavily decorated harness of sinew and leather with two knife-loops." diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index 0d8a4129d7..72c63543ab 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index 084392801d..17872821ea 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ