Files
Bubberstation/modular_zubbers/code/modules/modular_items/code/recipes_misc.dm
Cursor 33aeffd25b Killing the Module Folder with a Chainsaw and taking it's skin for a mask. (#1624)
## About The Pull Request

Title. This WILL break shit. Probably. Help me sweet Jesus.

## Why It's Good For The Game

House of Leaves is less confusing than our file structure.

## Proof Of Testing


## Changelog

🆑
fix: MASSIVE File Structure clean-up.
/🆑

---------

Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com>
2024-06-12 18:59:14 +02:00

54 lines
1.7 KiB
Plaintext

/datum/crafting_recipe/makeshift/crowbar_alt
name = "Makeshift Crowbar"
result = /obj/item/crowbar/makeshift
reqs = list(/obj/item/stack/sheet/iron = 4,
/obj/item/stack/sheet/cloth = 1,
/obj/item/weaponcrafting/silkstring = 1)
time = 120
category = CAT_MISC
/datum/crafting_recipe/makeshift/screwdriver_alt
name = "Makeshift Screwdriver"
tool_paths = list(/obj/item/crowbar/makeshift)
result = /obj/item/screwdriver/makeshift
reqs = list(/obj/item/weaponcrafting/silkstring = 1,
/obj/item/stack/sheet/cloth = 2,
/obj/item/stack/rods = 2)
time = 80
category = CAT_MISC
/datum/crafting_recipe/makeshift/welder_alt
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/weaponcrafting/silkstring = 2)
time = 160
category = CAT_MISC
/datum/crafting_recipe/makeshift/wirecutters_alt
name = "Makeshift Wirecutters"
tool_paths = list(/obj/item/crowbar/makeshift)
tool_behaviors = list(TOOL_SCREWDRIVER)
result = /obj/item/wirecutters/makeshift
reqs = list(/obj/item/weaponcrafting/silkstring = 2,
/obj/item/stack/rods = 4)
time = 80
category = CAT_MISC
/datum/crafting_recipe/makeshift/wrench_alt
name = "Makeshift Wrench"
tool_paths = list(/obj/item/crowbar/makeshift)
tool_behaviors = list(TOOL_SCREWDRIVER)
result = /obj/item/wrench/makeshift
reqs = list(/obj/item/weaponcrafting/silkstring = 1,
/obj/item/stack/sheet/iron = 3,
/obj/item/stack/rods = 1,
/obj/item/stack/sheet/cloth = 2)
time = 80
category = CAT_MISC