From d374be622d4f37b1f2f3ebdfcc5e4725e5b49535 Mon Sep 17 00:00:00 2001 From: biogod420 <105538359+biogod420@users.noreply.github.com> Date: Tue, 3 Oct 2023 10:29:45 -0700 Subject: [PATCH] added comments (#22662) --- code/game/objects/items/stacks/sheets/sheet_types.dm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 03d3af718c8..52e187263b5 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -4,10 +4,12 @@ * Plasteel * Wood * Cloth - * Plastic + * Durathread * Cardboard * Runed Metal (cult) * Brass (clockwork cult) + * Bones + * Plastic */ /* @@ -319,6 +321,10 @@ GLOBAL_LIST_INIT(cloth_recipes, list ( /obj/item/stack/sheet/cloth/ten amount = 10 +/* + * Durathread + */ + GLOBAL_LIST_INIT(durathread_recipes, list ( new /datum/stack_recipe("durathread jumpsuit", /obj/item/clothing/under/misc/durathread, 4, time = 4 SECONDS), new /datum/stack_recipe("durathread beret", /obj/item/clothing/head/beret/durathread, 2, time = 4 SECONDS), @@ -547,6 +553,10 @@ GLOBAL_LIST_INIT(brass_recipes, list ( throw_range = 3 origin_tech = "materials=2;biotech=2" +/* + * Plastic + */ + GLOBAL_LIST_INIT(plastic_recipes, list( new /datum/stack_recipe("plastic flaps", /obj/structure/plasticflaps, 5, one_per_turf = TRUE, on_floor = TRUE, time = 4 SECONDS), new /datum/stack_recipe("wet floor sign", /obj/item/caution, 2),