Skip to content

Commit

Permalink
[MIRROR] Medical mechs from round start (#2845)
Browse files Browse the repository at this point in the history
Co-authored-by: Sbotkin <[email protected]>
Co-authored-by: Lexanx <[email protected]>
  • Loading branch information
3 people authored Nov 24, 2024
1 parent 5868ecd commit 442dd5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions code/modules/mechs/components/software.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand All @@ -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)
6 changes: 3 additions & 3 deletions code/modules/research/designs/designs_exosuits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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"

0 comments on commit 442dd5c

Please sign in to comment.