From f11221112982da030d0c4f3e890dd5e7be1421de Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:19:28 +0300 Subject: [PATCH] [MIRROR] reduced the items used, and the time to make for most improvised tools (#5233) * reduced the items used, and the time to make for most improvised tools (#4650) * Update recipes_misc.dm * Fix this list formatting while we are at it --------- Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> * [MIRROR] reduced the items used, and the time to make for most improvised tools --------- Co-authored-by: RatFromTheJungle <62520989+RatFromTheJungle@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com> Co-authored-by: StealsThePRs --- .../modular_items/code/recipes_misc.dm | 45 ++++++++++--------- 1 file changed, 24 insertions(+), 21 deletions(-) diff --git a/modular_nova/modules/modular_items/code/recipes_misc.dm b/modular_nova/modules/modular_items/code/recipes_misc.dm index 63c23024520..93ae9cd0da8 100644 --- a/modular_nova/modules/modular_items/code/recipes_misc.dm +++ b/modular_nova/modules/modular_items/code/recipes_misc.dm @@ -1,20 +1,22 @@ /datum/crafting_recipe/makeshift/crowbar name = "Makeshift Crowbar" result = /obj/item/crowbar/makeshift - reqs = list(/obj/item/stack/sheet/iron = 4, - /obj/item/stack/sheet/cloth = 1, - /obj/item/stack/cable_coil = 1) - time = 120 + reqs = list( + /obj/item/stack/sheet/iron = 4, + /obj/item/stack/sheet/cloth = 1, + ) + time = 60 category = CAT_MISC /datum/crafting_recipe/makeshift/screwdriver name = "Makeshift Screwdriver" tool_paths = list(/obj/item/crowbar/makeshift) result = /obj/item/screwdriver/makeshift - reqs = list(/obj/item/stack/cable_coil = 1, - /obj/item/stack/sheet/cloth = 2, - /obj/item/stack/rods = 2) - time = 80 + reqs = list( + /obj/item/stack/sheet/cloth = 2, + /obj/item/stack/rods = 2, + ) + time = 60 category = CAT_MISC /datum/crafting_recipe/makeshift/welder @@ -22,11 +24,12 @@ tool_paths = list(/obj/item/crowbar/makeshift) tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER) result = /obj/item/weldingtool/makeshift - reqs = list(/obj/item/tank/internals/emergency_oxygen = 1, - /obj/item/stack/sheet/iron = 6, - /obj/item/stack/sheet/glass = 2, - /obj/item/stack/cable_coil = 2) - time = 160 + reqs = list( + /obj/item/tank/internals/emergency_oxygen = 1, + /obj/item/stack/sheet/iron = 6, + /obj/item/lighter, + ) + time = 60 category = CAT_MISC /datum/crafting_recipe/makeshift/wirecutters @@ -34,9 +37,8 @@ tool_paths = list(/obj/item/crowbar/makeshift) tool_behaviors = list(TOOL_SCREWDRIVER) result = /obj/item/wirecutters/makeshift - reqs = list(/obj/item/stack/cable_coil = 2, - /obj/item/stack/rods = 4) - time = 80 + reqs = list(/obj/item/stack/rods = 4) + time = 60 category = CAT_MISC /datum/crafting_recipe/makeshift/wrench @@ -44,9 +46,10 @@ tool_paths = list(/obj/item/crowbar/makeshift) tool_behaviors = list(TOOL_SCREWDRIVER) result = /obj/item/wrench/makeshift - reqs = list(/obj/item/stack/cable_coil = 1, - /obj/item/stack/sheet/iron = 3, - /obj/item/stack/rods = 1, - /obj/item/stack/sheet/cloth = 2) - time = 80 + reqs = list( + /obj/item/stack/sheet/iron = 3, + /obj/item/stack/rods = 1, + /obj/item/stack/sheet/cloth = 2, + ) + time = 60 category = CAT_MISC