-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIRROR] reduced the items used, and the time to make for most improv…
…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
1 parent
da6982d
commit f112211
Showing
1 changed file
with
24 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |