From 84a0a262ec8a097dee9c64701cabddeb5f2a6084 Mon Sep 17 00:00:00 2001 From: RaveRadbury <3204033+RaveRadbury@users.noreply.github.com> Date: Sat, 11 May 2019 09:19:47 -0700 Subject: [PATCH] [READY] Adds follower hoodies to crafting menu (#43810) * Follower hoodies can be crafted by those wearing follower hoodies * Adds bible tool requirement to follower hoodie construction --- code/modules/crafting/recipes.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 4c58d443c66..fcf0775a66c 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -645,6 +645,14 @@ result = /obj/item/clothing/under/mummy reqs = list(/obj/item/stack/sheet/cloth = 5) +/datum/crafting_recipe/chaplain_hood + name = "Follower Hoodie" + result = /obj/item/clothing/suit/hooded/chaplain_hoodie + time = 10 + tools = list(/obj/item/clothing/suit/hooded/chaplain_hoodie, /obj/item/storage/book/bible) + reqs = list(/obj/item/stack/sheet/cloth = 4) + category = CAT_CLOTHING + /datum/crafting_recipe/guillotine name = "Guillotine" result = /obj/structure/guillotine