Files
2025-04-10 11:23:10 +02:00

24 lines
793 B
Plaintext

#ifndef T_BOARD
#error T_BOARD macro is not defined but we need it!
#endif
/obj/item/circuitboard/pipelayer
name = T_BOARD("pipe layer")
build_path = /obj/machinery/pipelayer
board_type = new /datum/frame/frame_types/machine
matter = list(MAT_STEEL = 50, MAT_GLASS = 50)
req_components = list(
/obj/item/stock_parts/motor = 1,
/obj/item/stock_parts/gear = 1,
/obj/item/stock_parts/matter_bin = 1)
/obj/item/circuitboard/space_heater
name = T_BOARD("space heater")
build_path = /obj/machinery/space_heater
board_type = new /datum/frame/frame_types/machine
matter = list(MAT_STEEL = 50, MAT_GLASS = 50)
req_components = list(
/obj/item/stock_parts/micro_laser = 4,
/obj/item/stock_parts/capacitor = 4,
/obj/item/stock_parts/manipulator = 4)