From d1ab24ab2fdfd2e8278f85658faa23583f32f425 Mon Sep 17 00:00:00 2001 From: KazooBard <65713506+KazooBard@users.noreply.github.com> Date: Mon, 24 Feb 2025 13:04:13 +0100 Subject: [PATCH] Craftable chisels [suggestions channel post] (#2978) ## About The Pull Request Chisel is craftable 1 wood 1 iron screwdriver, people wanted in suggestions channel with like fuckign 12 voters in 24 hours so that's insane amounts and here you go ## Why It's Good For The Game [ ![cood](https://github.com/user-attachments/assets/2b15ac23-9b9a-4c02-a4e6-b2c038f9b7ab) ](url) I rest my case ## Proof Of Testing ## Changelog :cl: add: Chisels can be crafted [1 wood, 1 iron, screwdriver] /:cl: --- .../modules/modular_items/code/recipes_misc.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modular_skyrat/modules/modular_items/code/recipes_misc.dm b/modular_skyrat/modules/modular_items/code/recipes_misc.dm index 63c23024520..534a071b788 100644 --- a/modular_skyrat/modules/modular_items/code/recipes_misc.dm +++ b/modular_skyrat/modules/modular_items/code/recipes_misc.dm @@ -50,3 +50,12 @@ /obj/item/stack/sheet/cloth = 2) time = 80 category = CAT_MISC + +/datum/crafting_recipe/makeshift/chisel //BUBBERSTATION ADDITION + name = "Makeshift Chisel" + tool_behaviors = list(TOOL_SCREWDRIVER) + result = /obj/item/chisel + reqs = list(/obj/item/stack/sheet/iron = 1, + /obj/item/stack/sheet/mineral/wood = 1) + time = 80 + category = CAT_MISC