From d93fceec983699765b21642838c1e035136ccf96 Mon Sep 17 00:00:00 2001 From: lolman360 Date: Sat, 17 Aug 2019 12:15:17 +1000 Subject: [PATCH] oops recipe time thanks pax --- code/modules/crafting/recipes.dm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index ca7727255f..2790a8cec7 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -919,4 +919,20 @@ /obj/item/stack/sheet/leather = 2) time = 50 category = CAT_CLOTHING + + /datum/crafting_recipe/durathread_helmet + name = "Makeshift Durathread Helmet" + result = /obj/item/clothing/head/helmet/durathread + reqs = list(/obj/item/stack/sheet/durathread = 4, + /obj/item/stack/sheet/leather = 2) + time = 30 + category = CAT_CLOTHING + +/datum/crafting_recipe/durathread_vest + name = "Makeshift Durathread Armour" + result = /obj/item/clothing/suit/armor/vest/durathread + reqs = list(/obj/item/stack/sheet/durathread = 6, + /obj/item/stack/sheet/leather = 3) + time = 50 + category = CAT_CLOTHING