mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-19 05:26:28 +00:00
## 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>
26 lines
761 B
Plaintext
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
|