From af26ac0d38e755b7efe6afd71ccee39b42ae60dc Mon Sep 17 00:00:00 2001 From: Paxilmaniac <82386923+Paxilmaniac@users.noreply.github.com> Date: Tue, 7 Jun 2022 19:33:14 -0400 Subject: [PATCH] Allows autolathes to print solar assemblies and tracker electronics (#67591) this man pays NOTHING on electric bills, figure out how --- .../research/designs/autolathe_designs.dm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 49d00c43988..dfb26c104ca 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -1265,3 +1265,19 @@ build_path = /obj/item/toner/large category = list("initial", "Misc", "Equipment") departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SERVICE + +/datum/design/solar + name = "Solar Panel Frame" + id = "solar_panel" + build_type = AUTOLATHE + materials = list(/datum/material/iron = 3500, /datum/material/glass = 1000) + build_path = /obj/item/solar_assembly + category = list("initial", "Construction") + +/datum/design/tracker_electronics + name = "Solar Tracking Electronics" + id = "solar_tracker" + build_type = AUTOLATHE + materials = list(/datum/material/iron = 100, /datum/material/glass = 500) + build_path = /obj/item/electronics/tracker + category = list("initial", "Electronics", "Construction")