Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

You can now create paint with the crafting menu. #8871

Merged
merged 8 commits into from Jun 14, 2020
20 changes: 20 additions & 0 deletions code/datums/components/crafting/recipes.dm
Expand Up @@ -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