Skip to content

Commit

Permalink
You can now create paint with the crafting menu. (#8871)
Browse files Browse the repository at this point in the history
* Can now create paint without xenobio

* Now paint is any color
  • Loading branch information
Xoxeyos committed Jun 14, 2020
1 parent e5d1a05 commit e2cd03a
Showing 1 changed file with 20 additions and 0 deletions.
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


0 comments on commit e2cd03a

Please sign in to comment.