From 79182736ed1402755e3043ac5202eae51cb63ab3 Mon Sep 17 00:00:00 2001 From: Cyrelius <69184203+Cyrelius@users.noreply.github.com> Date: Tue, 8 Feb 2022 23:26:10 -0800 Subject: [PATCH] Update circuits_ch.dm Add Phazon circuits to the circuit imprinter. --- .../research/designs/circuits/circuits_ch.dm | 29 ++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/code/modules/research/designs/circuits/circuits_ch.dm b/code/modules/research/designs/circuits/circuits_ch.dm index 68d9ca3cf8..6f2ca630c2 100644 --- a/code/modules/research/designs/circuits/circuits_ch.dm +++ b/code/modules/research/designs/circuits/circuits_ch.dm @@ -24,4 +24,31 @@ id = "scarab_targ" req_tech = list(TECH_DATA = 4, TECH_COMBAT = 2) build_path = /obj/item/weapon/circuitboard/mecha/scarab/targeting - sort_string = "SAAAC" \ No newline at end of file + sort_string = "SAAAC" + +/datum/design/circuit/mecha/phazon_main + name = "'Phazon' central control" + id = "phazon_main" + req_tech = list(TECH_BLUESPACE = 5, TECH_MAGNET = 6, TECH_PHORON = 3, TECH_ARCANE = 1) + materials = list(MAT_GLASS = 2000, MAT_GRAPHITE = 1250) + chemicals = list("sacid" = 20) + build_path = /obj/item/weapon/circuitboard/mecha/phazon/main + sort_string = "PAADA" + +/datum/design/circuit/mecha/phazon_peri + name = "'Phazon' peripherals control" + id = "phazon_peri" + req_tech = list(TECH_BLUESPACE = 5, TECH_MAGNET = 6, TECH_PHORON = 3, TECH_ARCANE = 1) + materials = list(MAT_GLASS = 2000, MAT_GRAPHITE = 1250) + chemicals = list("sacid" = 20) + build_path = /obj/item/weapon/circuitboard/mecha/phazon/peripherals + sort_string = "PAADB" + +/datum/design/circuit/mecha/phazon_targ + name = "'Phazon' weapon control and targeting" + id = "phazon_targ" + req_tech = list(TECH_BLUESPACE = 5, TECH_MAGNET = 6, TECH_PHORON = 3, TECH_ARCANE = 1, TECH_COMBAT = 5) + materials = list(MAT_GLASS = 2000, MAT_GRAPHITE = 1250) + chemicals = list("sacid" = 20) + build_path = /obj/item/weapon/circuitboard/mecha/phazon/targeting + sort_string = "PAADC"