From 7ca72093aff77a612acc812f41511b5347eab060 Mon Sep 17 00:00:00 2001 From: Jacquerel Date: Tue, 4 Jul 2023 18:13:21 +0100 Subject: [PATCH] Makes traitor items available to Coroner & Chief Engineer (#76519) Coroners can now purchase the Evil MMI and Brainwashing Surgery Chip. Chief Engineers can now purchase the Deployable Sentry. Also I removed a duplicate definition of the noslip modsuit module, because it was pointless. --- code/modules/uplink/uplink_items/job.dm | 6 +++--- code/modules/uplink/uplink_items/suits.dm | 8 -------- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/code/modules/uplink/uplink_items/job.dm b/code/modules/uplink/uplink_items/job.dm index 32788fad169..991252a3826 100644 --- a/code/modules/uplink/uplink_items/job.dm +++ b/code/modules/uplink/uplink_items/job.dm @@ -87,7 +87,7 @@ desc = "An MMI modified to give cyborgs laws to serve the Syndicate without having their interface damaged by Cryptographic Sequencers, this will not unlock their hidden modules." item = /obj/item/mmi/syndie cost = 2 - restricted_roles = list(JOB_ROBOTICIST, JOB_RESEARCH_DIRECTOR, JOB_SCIENTIST, JOB_MEDICAL_DOCTOR, JOB_CHIEF_MEDICAL_OFFICER) + restricted_roles = list(JOB_ROBOTICIST, JOB_RESEARCH_DIRECTOR, JOB_SCIENTIST, JOB_CORONER, JOB_MEDICAL_DOCTOR, JOB_CHIEF_MEDICAL_OFFICER) surplus = 0 /datum/uplink_item/role_restricted/explosive_hot_potato @@ -144,7 +144,7 @@ desc = "A disposable sentry gun deployment system cleverly disguised as a toolbox, apply wrench for functionality." item = /obj/item/storage/toolbox/emergency/turret cost = 11 - restricted_roles = list(JOB_STATION_ENGINEER) + restricted_roles = list(JOB_STATION_ENGINEER, JOB_CHIEF_ENGINEER) /datum/uplink_item/role_restricted/magillitis_serum name = "Magillitis Serum Autoinjector" @@ -169,7 +169,7 @@ desc = "A disk containing the procedure to perform a brainwashing surgery, allowing you to implant an objective onto a target. \ Insert into an Operating Console to enable the procedure." item = /obj/item/disk/surgery/brainwashing - restricted_roles = list(JOB_MEDICAL_DOCTOR, JOB_CHIEF_MEDICAL_OFFICER, JOB_ROBOTICIST) + restricted_roles = list(JOB_MEDICAL_DOCTOR, JOB_CHIEF_MEDICAL_OFFICER, JOB_CORONER, JOB_ROBOTICIST) cost = 5 surplus = 50 diff --git a/code/modules/uplink/uplink_items/suits.dm b/code/modules/uplink/uplink_items/suits.dm index b264e088530..57982a8cf98 100644 --- a/code/modules/uplink/uplink_items/suits.dm +++ b/code/modules/uplink/uplink_items/suits.dm @@ -19,12 +19,6 @@ cost = 6 purchasable_from = ~(UPLINK_NUKE_OPS | UPLINK_CLOWN_OPS) -/datum/uplink_item/suits/noslip - name = "MODsuit Anti-Slip Module" - desc = "A MODsuit module preventing the user from slipping on water." - item = /obj/item/mod/module/noslip - cost = 2 - /datum/uplink_item/suits/space_suit name = "Syndicate Space Suit" desc = "This red and black Syndicate space suit is less encumbering than Nanotrasen variants, \ @@ -33,7 +27,6 @@ item = /obj/item/storage/box/syndie_kit/space cost = 4 - /datum/uplink_item/suits/modsuit name = "Syndicate MODsuit" desc = "The feared MODsuit of a Syndicate agent. Features armoring and a set of inbuilt modules." @@ -65,7 +58,6 @@ item = /obj/item/mod/module/plate_compression cost = 2 - /datum/uplink_item/suits/noslip name = "MODsuit Anti-Slip Module" desc = "A MODsuit module preventing the user from slipping on water."