From 0f4840c66abf4edd796208eefb0dc73eb2254aec Mon Sep 17 00:00:00 2001 From: Sadhorizon <108196626+Sadhorizon@users.noreply.github.com> Date: Sat, 8 Jun 2024 11:37:19 +0200 Subject: [PATCH] Adds pickaxes to the autolathe. (#3037) ## About The Pull Request Title. ## Why It's Good For The Game What if you loose yours?? Huh?? Why it's not a thing yet is the real mystery. ## Changelog :cl: add: Pickaxe was added to the autolathe. /:cl: --- code/modules/research/designs/autolathe_designs.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index e39d48e5cc774..517c8691c92d6 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -491,6 +491,14 @@ build_path = /obj/item/shovel category = list("initial","Misc", "Tool Designs") +/datum/design/pickaxe + name = "Pickaxe" + id = "pickaxe" + build_type = AUTOLATHE | PROTOLATHE + materials = list(/datum/material/iron = 1000) + build_path = /obj/item/pickaxe + category = list("initial","Tools", "Tool Designs") + /datum/design/spade name = "Spade" id = "spade"