From 442dd5c17f07b17861cc5dce2e2a31673d4418c6 Mon Sep 17 00:00:00 2001 From: Sierra Helper <125094432+SierraHelper@users.noreply.github.com> Date: Sun, 24 Nov 2024 23:16:33 +0300 Subject: [PATCH] [MIRROR] Medical mechs from round start (#2845) Co-authored-by: Sbotkin <5092934+Sbotkin@users.noreply.github.com> Co-authored-by: Lexanx <61974560+Lexanx@users.noreply.github.com> --- code/modules/mechs/components/software.dm | 6 +++--- code/modules/research/designs/designs_exosuits.dm | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/mechs/components/software.dm b/code/modules/mechs/components/software.dm index d9a1d45a8323b..a50424642859b 100644 --- a/code/modules/mechs/components/software.dm +++ b/code/modules/mechs/components/software.dm @@ -8,7 +8,7 @@ /obj/item/circuitboard/exosystem/engineering name = "exosuit software (engineering systems)" contains_software = list(MECH_SOFTWARE_ENGINEERING) - origin_tech = list(TECH_DATA = 1) + origin_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1) /obj/item/circuitboard/exosystem/utility name = "exosuit software (utility systems)" @@ -20,10 +20,10 @@ name = "exosuit software (medical systems)" contains_software = list(MECH_SOFTWARE_MEDICAL) icon_state = "mcontroller" - origin_tech = list(TECH_DATA = 3,TECH_BIO = 2) + origin_tech = list(TECH_DATA = 1,TECH_BIO = 1) /obj/item/circuitboard/exosystem/weapons name = "exosuit software (basic weapon systems)" contains_software = list(MECH_SOFTWARE_WEAPONS) icon_state = "mainboard" - origin_tech = list(TECH_DATA = 4, TECH_COMBAT = 3) + origin_tech = list(TECH_DATA = 1, TECH_COMBAT = 3) diff --git a/code/modules/research/designs/designs_exosuits.dm b/code/modules/research/designs/designs_exosuits.dm index c568a0efed49b..4a279ae62e429 100644 --- a/code/modules/research/designs/designs_exosuits.dm +++ b/code/modules/research/designs/designs_exosuits.dm @@ -7,7 +7,7 @@ /datum/design/circuit/exosuit/engineering name = "engineering system control" id = "mech_software_engineering" - req_tech = list(TECH_DATA = 1) + req_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1) build_path = /obj/item/circuitboard/exosystem/engineering sort_string = "NAAAA" @@ -21,13 +21,13 @@ /datum/design/circuit/exosuit/medical name = "medical system control" id = "mech_software_medical" - req_tech = list(TECH_DATA = 3,TECH_BIO = 2) + req_tech = list(TECH_DATA = 1,TECH_BIO = 1) build_path = /obj/item/circuitboard/exosystem/medical sort_string = "NAABA" /datum/design/circuit/exosuit/weapons name = "basic weapon control" id = "mech_software_weapons" - req_tech = list(TECH_DATA = 4) + req_tech = list(TECH_DATA = 1, TECH_COMBAT = 3) build_path = /obj/item/circuitboard/exosystem/weapons sort_string = "NAACA"