mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-06-26 08:42:49 +01:00
10 lines
829 B
Plaintext
10 lines
829 B
Plaintext
/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]"), \
|
|
))
|