From f567295848b4dfc4a3d11381b783610f731f680c Mon Sep 17 00:00:00 2001 From: yeeny-max Date: Mon, 29 Jul 2024 22:21:01 -0500 Subject: [PATCH] Update recipes_misc.dm --- .../crafting/recipes/recipes_misc.dm | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/code/datums/components/crafting/recipes/recipes_misc.dm b/code/datums/components/crafting/recipes/recipes_misc.dm index 566acc0f..502f2921 100644 --- a/code/datums/components/crafting/recipes/recipes_misc.dm +++ b/code/datums/components/crafting/recipes/recipes_misc.dm @@ -20,6 +20,28 @@ tools = list(TOOL_SCREWDRIVER, TOOL_WRENCH, TOOL_WELDER) category = CAT_MISC +/datum/crafting_recipe/weightmachine/stacklifter + name ="Stack Lifter" + result = /obj/structure/weightmachine/stacklifter + time = 50 + reqs = list(/obj/item/stack/sheet/metal = 10) + category = CAT_MISC + +/datum/crafting_recipe/weightmachine/weightlifter + name ="Weight Lifter" + result = /obj/structure/weightmachine/weightlifter + time = 50 + reqs = list(/obj/item/stack/sheet/metal = 8, + /obj/item/stack/rods = 4) + category = CAT_MISC + +/datum/crafting_recipe/punching_bag + name ="Punching Bag" + result = /obj/structure/punching_bag + time = 35 + reqs = list(/obj/item/storage/backpack = 1, + /obj/item/stack/cable_coil = 2) + category = CAT_MISC /////////////////// //Tools & Storage// ///////////////////