Files
Bubberstation/code/datums/components/crafting/doors.dm
tattle 57e88e6091 Crafting fireaxe cabinets, mech removal cabinets, and mirrors (#72856)
## About The Pull Request
Breaking down #72371 because it's... unreasonably large.
So this PR splits the crafting recipe file, and adds 3 new recipes for
fireaxe cabinets, mech removal cabinets, and mirrors.

## Why It's Good For The Game
Wallening compliance, and more of me on my shit breaking down long
files.

## Changelog
🆑 Tattle
qol: fireaxe cabinets, mech removal cabinets, and mirrors can now all be
crafted
/🆑

Co-authored-by: tattle <article.disaster@gmail.com>
2023-01-23 10:45:27 +01:00

26 lines
761 B
Plaintext

/datum/crafting_recipe/shutters
name = "Shutters"
reqs = list(
/obj/item/stack/sheet/plasteel = 5,
/obj/item/stack/cable_coil = 5,
/obj/item/electronics/airlock = 1,
)
result = /obj/machinery/door/poddoor/shutters/preopen
tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER)
time = 10 SECONDS
category = CAT_DOORS
one_per_turf = TRUE
/datum/crafting_recipe/blast_doors
name = "Blast Door"
reqs = list(
/obj/item/stack/sheet/plasteel = 15,
/obj/item/stack/cable_coil = 15,
/obj/item/electronics/airlock = 1,
)
result = /obj/machinery/door/poddoor/preopen
tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER)
time = 30 SECONDS
category = CAT_DOORS
one_per_turf = TRUE