Skip to content

Commit

Permalink
[MIRROR] reduced the items used, and the time to make for most improv…
Browse files Browse the repository at this point in the history
…ised 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 <[email protected]>

* [MIRROR] reduced the items used, and the time to make for most improvised tools

---------

Co-authored-by: RatFromTheJungle <[email protected]>
Co-authored-by: Bloop <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
4 people authored Dec 14, 2024
1 parent da6982d commit f112211
Showing 1 changed file with 24 additions and 21 deletions.
45 changes: 24 additions & 21 deletions modular_nova/modules/modular_items/code/recipes_misc.dm
Original file line number Diff line number Diff line change
@@ -1,52 +1,55 @@
/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
name = "Makeshift Welder"
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
name = "Makeshift Wirecutters"
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
name = "Makeshift Wrench"
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

0 comments on commit f112211

Please sign in to comment.