From 5455cf8cb68b41c8b7e167199526858e3540207f Mon Sep 17 00:00:00 2001 From: Nadyr <41974248+Darlantanis@users.noreply.github.com> Date: Fri, 30 Apr 2021 01:44:26 -0400 Subject: [PATCH] Create plastic_ch.dm --- code/modules/materials/materials/plastic_ch.dm | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code/modules/materials/materials/plastic_ch.dm diff --git a/code/modules/materials/materials/plastic_ch.dm b/code/modules/materials/materials/plastic_ch.dm new file mode 100644 index 0000000000..9cf1a4b918 --- /dev/null +++ b/code/modules/materials/materials/plastic_ch.dm @@ -0,0 +1,9 @@ +/datum/material/plastic/generate_recipes() + . = ..() + recipes += new/datum/stack_recipe_list("sofas", list( \ + new /datum/stack_recipe("sofa middle", /obj/structure/bed/chair/sofa, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ + new /datum/stack_recipe("sofa left", /obj/structure/bed/chair/sofa/left, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ + new /datum/stack_recipe("sofa right", /obj/structure/bed/chair/sofa/right, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ + new /datum/stack_recipe("sofa corner", /obj/structure/bed/chair/sofa/corner, 1, one_per_turf = 1, on_floor = 1, supplied_material = "[name]"), \ + new /datum/stack_recipe("Feeder", /obj/machinery/feeder, 4, time = 20, one_per_turf = 1, on_floor = 1, recycle_material = "[name]"), \ + ))