Files
Bubberstation/code/datums/components/crafting/doors.dm
Bloop c3f970c0e0 [MANUAL MIRROR] Crafting fireaxe cabinets, mech removal cabinets, and mirrors (#18919)
Crafting fireaxe cabinets, mech removal cabinets, and mirrors (#72856)

Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.com>
2023-01-23 17:06:34 -05: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