From e2cd03acd3e7928d5cde3667c80c09d9cf66cb85 Mon Sep 17 00:00:00 2001 From: Xoxeyos <39686570+Xoxeyos@users.noreply.github.com> Date: Sun, 14 Jun 2020 11:28:34 -0500 Subject: [PATCH] You can now create paint with the crafting menu. (#8871) * Can now create paint without xenobio * Now paint is any color --- code/datums/components/crafting/recipes.dm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm index 8c4d37a80a2f..7221442a64d2 100644 --- a/code/datums/components/crafting/recipes.dm +++ b/code/datums/components/crafting/recipes.dm @@ -784,6 +784,26 @@ result = /obj/structure/urinal category = CAT_MISC +/datum/crafting_recipe/paint/crayon + name = "Paint" + result = /obj/item/paint/anycolor + reqs = list(/obj/item/toy/crayon = 1, + /datum/reagent/water = 5, + /datum/reagent/consumable/milk = 5, + /obj/item/reagent_containers/glass/bucket = 1) + tools = list(TOOL_CROWBAR) + category = CAT_MISC + time = 30 +/datum/crafting_recipe/paint/spraycan + name = "Paint" + result = /obj/item/paint/anycolor + reqs = list(/obj/item/toy/crayon/spraycan = 1, + /datum/reagent/water = 5, + /datum/reagent/consumable/milk = 5, + /obj/item/reagent_containers/glass/bucket = 1) + tools = list(TOOL_CROWBAR) + category = CAT_MISC + time = 30