Files
Guti e9d2322565 Makes material costs use sheets amount define (#19584)
* Material defines

* Move these

* Food sytnhetizer

---------

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2026-07-09 18:24:13 -04:00

23 lines
782 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 = MATERIAL_COST(0.025), MAT_GLASS = MATERIAL_COST(0.025))
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
req_components = list(
/obj/item/stock_parts/micro_laser = 4,
/obj/item/stock_parts/capacitor = 4,
/obj/item/stock_parts/manipulator = 4)