From 60cd7360f5557052966a2062ff380d2e72f6bb94 Mon Sep 17 00:00:00 2001 From: 1080pCat <96908085+1080pCat@users.noreply.github.com> Date: Thu, 15 Jun 2023 06:17:32 +1000 Subject: [PATCH] the lathe now really only gives illegal (#21206) --- .../research/designs/autolathe_designs.dm | 64 ++++++++++--------- 1 file changed, 33 insertions(+), 31 deletions(-) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 61d9861b6f8..cf6faf757da 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -663,7 +663,40 @@ build_path = /obj/item/ammo_box/foambox/sniper category = list("initial", "Miscellaneous") +/datum/design/large_welding_tool + name = "Industrial Welding Tool" + id = "large_welding_tool" + build_type = AUTOLATHE + materials = list(MAT_METAL = 400, MAT_GLASS = 300) + build_path = /obj/item/weldingtool/largetank + category = list("initial", "Tools") + +/datum/design/rcd + name = "Rapid Construction Device (RCD)" + id = "rcd" + build_type = AUTOLATHE + materials = list(MAT_METAL = 30000) + build_path = /obj/item/rcd + category = list("initial", "Construction") + +/datum/design/rpd + name = "Rapid Pipe Dispenser (RPD)" + id = "rpd" + build_type = AUTOLATHE + materials = list(MAT_METAL = 75000, MAT_GLASS = 37500) + build_path = /obj/item/rpd + category = list("initial", "Construction") + +/datum/design/rcl + name = "Rapid Cable Layer" + id = "rcl" + build_type = AUTOLATHE + materials = list(MAT_METAL = 5000) + build_path = /obj/item/twohanded/rcl + category = list("initial", "Construction") + //hacked autolathe recipes + /datum/design/flamethrower name = "Flamethrower" id = "flamethrower" @@ -672,29 +705,6 @@ build_path = /obj/item/flamethrower/full category = list("hacked", "Security") -/datum/design/rcd - name = "Rapid Construction Device (RCD)" - id = "rcd" - build_type = AUTOLATHE - materials = list(MAT_METAL = 30000) - build_path = /obj/item/rcd - category = list("hacked", "Construction") - -/datum/design/rpd - name = "Rapid Pipe Dispenser (RPD)" - id = "rpd" - build_type = AUTOLATHE - materials = list(MAT_METAL = 75000, MAT_GLASS = 37500) - build_path = /obj/item/rpd - category = list("hacked", "Construction") - -/datum/design/rcl - name = "Rapid Cable Layer" - id = "rcl" - build_type = AUTOLATHE - materials = list(MAT_METAL = 5000) - build_path = /obj/item/twohanded/rcl - category = list("hacked", "Construction") /datum/design/electropack name = "Electropack" @@ -704,14 +714,6 @@ build_path = /obj/item/electropack category = list("hacked", "Tools") -/datum/design/large_welding_tool - name = "Industrial Welding Tool" - id = "large_welding_tool" - build_type = AUTOLATHE - materials = list(MAT_METAL = 400, MAT_GLASS = 300) - build_path = /obj/item/weldingtool/largetank - category = list("hacked", "Tools") - /datum/design/handcuffs name = "Handcuffs" id = "handcuffs"