[MIRROR] Loadout Tweaks (#12090)

Co-authored-by: Killian <49700375+KillianKirilenko@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-12-10 04:08:26 +01:00
committed by GitHub
co-authored by Killian
parent 685542f6ae
commit 333331d529
@@ -148,7 +148,8 @@
"Pink labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/pink,
"Red labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/red,
"Yellow labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/yellow,
"Modern labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/modern
"Modern labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/modern,
"Long labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/neo_labcoat
)
gear_tweaks += new/datum/gear_tweak/path(labcoats)
@@ -168,10 +169,20 @@
gear_tweaks += new/datum/gear_tweak/path(labcoats)
/datum/gear/suit/labcoat_emt
display_name = "labcoat, EMT"
display_name = "labcoat selection, EMT"
path = /obj/item/clothing/suit/storage/toggle/labcoat/emt
allowed_roles = list(JOB_MEDICAL_DOCTOR,JOB_CHIEF_MEDICAL_OFFICER,JOB_CHEMIST,JOB_PARAMEDIC,JOB_GENETICIST, JOB_PSYCHIATRIST)
/datum/gear/suit/labcoat_emt/New()
..()
var/list/labcoats_emt = list(
"EMT labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/emt,
"Neo Highvis" = /obj/item/clothing/suit/storage/toggle/labcoat/neo_highvis,
"Neo Red" = /obj/item/clothing/suit/storage/toggle/labcoat/neo_redemt,
"Neo Blue" = /obj/item/clothing/suit/storage/toggle/labcoat/neo_blueemt
)
gear_tweaks += new/datum/gear_tweak/path(labcoats_emt)
/datum/gear/suit/labcoat_rd
display_name = "labcoat, research director"
path = /obj/item/clothing/suit/storage/toggle/labcoat/rd
@@ -1187,3 +1198,9 @@ Talon winter coat
display_name = "flowing cloak, colorable"
description = "A heavy cloak, suitable for recoloring."
path = /obj/item/clothing/accessory/poncho/roles/cloak/custom/neo_pcloak_color
/datum/gear/suit/neo_medical_coat
display_name = "medical coat"
path = /obj/item/clothing/suit/neo_medical_coat
allowed_roles = list(JOB_CHIEF_MEDICAL_OFFICER,JOB_MEDICAL_DOCTOR,JOB_CHEMIST,JOB_PSYCHIATRIST,JOB_PARAMEDIC,JOB_TALON_DOCTOR)