mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-29 18:40:42 +00:00
Crafting fireaxe cabinets, mech removal cabinets, and mirrors (#72856) Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.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
|