diff --git a/code/modules/response_team/ert_outfits.dm b/code/modules/response_team/ert_outfits.dm index 953c9376647..4137a840a62 100644 --- a/code/modules/response_team/ert_outfits.dm +++ b/code/modules/response_team/ert_outfits.dm @@ -89,6 +89,9 @@ /obj/item/storage/lockbox/mindshield = 1 ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) /datum/outfit/job/centcom/response_team/commander/gamma name = "RT Commander (Gamma)" shoes = /obj/item/clothing/shoes/magboots/advance @@ -114,6 +117,10 @@ /obj/item/organ/internal/cyberimp/arm/flash ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) + //////////////////// SECURITY /////////////////// /datum/outfit/job/centcom/response_team/security @@ -169,6 +176,10 @@ /obj/item/ammo_box/magazine/laser = 2 ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) + /datum/outfit/job/centcom/response_team/security/gamma name = "RT Security (Gamma)" shoes = /obj/item/clothing/shoes/magboots/advance @@ -198,6 +209,9 @@ /obj/item/organ/internal/cyberimp/chest/reviver/hardened ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) //////////////////// ENGINEER /////////////////// @@ -253,6 +267,10 @@ /obj/item/gun/energy/gun = 1 ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) + /datum/outfit/job/centcom/response_team/engineer/gamma name = "RT Engineer (Gamma)" shoes = /obj/item/clothing/shoes/magboots/advance @@ -279,6 +297,10 @@ /obj/item/organ/internal/cyberimp/arm/toolset ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) + //////////////////// MEDIC /////////////////// /datum/outfit/job/centcom/response_team/medic @@ -349,6 +371,10 @@ /obj/item/handheld_defibrillator = 1 ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) + /datum/outfit/job/centcom/response_team/medic/gamma name = "RT Medic (Gamma)" shoes = /obj/item/clothing/shoes/magboots/advance @@ -380,6 +406,10 @@ /obj/item/organ/internal/cyberimp/brain/anti_stun/hardened ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) + //////////////////// PARANORMAL /////////////////// /datum/outfit/job/centcom/response_team/paranormal @@ -425,6 +455,10 @@ /obj/item/organ/internal/cyberimp/chest/nutriment ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) + /datum/outfit/job/centcom/response_team/paranormal/gamma name = "RT Paranormal (Gamma)" suit = /obj/item/clothing/suit/space/hardsuit/ert/paranormal/inquisitor @@ -440,6 +474,10 @@ /obj/item/organ/internal/cyberimp/brain/anti_stun/hardened ) + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + ) + //////////////////// JANITORIAL /////////////////// /datum/outfit/job/centcom/response_team/janitorial @@ -505,3 +543,7 @@ /obj/item/organ/internal/cyberimp/arm/advmop, /obj/item/organ/internal/cyberimp/brain/anti_stun/hardened ) + + implants = list(/obj/item/implant/mindshield, + /obj/item/implant/death_alarm + )