From 5f45fdbda2e7ffa4ab663d017af56be0f100a7f7 Mon Sep 17 00:00:00 2001 From: Captain277 Date: Tue, 11 Apr 2023 02:03:52 -0700 Subject: [PATCH] Makes Candles Craftable (#5339) --- .../crafting/recipes/recipes_misc.dm | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/code/datums/components/crafting/recipes/recipes_misc.dm b/code/datums/components/crafting/recipes/recipes_misc.dm index 1ec7ce72924..11138052b04 100644 --- a/code/datums/components/crafting/recipes/recipes_misc.dm +++ b/code/datums/components/crafting/recipes/recipes_misc.dm @@ -752,3 +752,30 @@ time = 5 category = CAT_FOOD subcategory = CAT_BREAD + +/datum/crafting_recipe/candle_red + name = "Candle (Red)" + result = /obj/item/flame/candle + time = 20 + reqs = list(/obj/item/stack/material/cloth = 1, + /obj/item/stack/material/wax = 2) + category = CAT_MISCELLANEOUS + subcategory = CAT_MISCELLANEOUS + +/datum/crafting_recipe/candle_white + name = "Candle (White)" + result = /obj/item/flame/candle/white + time = 20 + reqs = list(/obj/item/stack/material/cloth = 1, + /obj/item/stack/material/wax = 2) + category = CAT_MISCELLANEOUS + subcategory = CAT_MISCELLANEOUS + +/datum/crafting_recipe/candle_black + name = "Candle (Black)" + result = /obj/item/flame/candle/black + time = 20 + reqs = list(/obj/item/stack/material/cloth = 1, + /obj/item/stack/material/wax = 2) + category = CAT_MISCELLANEOUS + subcategory = CAT_MISCELLANEOUS