From ba3826af5d6980ee9eac1c59d4a58a4c25f0e38b Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Fri, 11 Jan 2019 18:23:31 -0500 Subject: [PATCH] Update recipes.dm --- code/modules/crafting/recipes.dm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 586819ed8f..533a64b0e8 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -694,10 +694,18 @@ /obj/item/reagent_containers/food/snacks/grown/potato = 1) category = CAT_MISC +/datum/crafting_recipe/paperwork + name = "Filed Paper Work" + result = /obj/item/paper/fluff/jobs/cargo/manifest/paperwork_correct + time = 90 //Takes time for people to file and complete paper work! + reqs = list(/obj/item/pen/fountain = 1, + /obj/item/paper/fluff/jobs/cargo/manifest/paperwork = 2) + category = CAT_MISC + /datum/crafting_recipe/ghettojetpack name = "Improvised Jetpack" result = /obj/item/tank/jetpack/improvised time = 30 reqs = list(/obj/item/tank/internals/oxygen/red = 2, /obj/item/extinguisher = 1, /obj/item/pipe = 3, /obj/item/stack/cable_coil = 30)//red oxygen tank so it looks right category = CAT_MISC - tools = list(TOOL_WRENCH, TOOL_WELDER, TOOL_WIRECUTTER) \ No newline at end of file + tools = list(TOOL_WRENCH, TOOL_WELDER, TOOL_WIRECUTTER)