mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-22 11:36:38 +01:00
* Upgrades the automatic pipe layer to modernize its code a bit towards latest standards and fixing various bugs. * Make it constructable so it can acutally be used by someone!
14 lines
462 B
Plaintext
14 lines
462 B
Plaintext
#ifndef T_BOARD
|
|
#error T_BOARD macro is not defined but we need it!
|
|
#endif
|
|
|
|
/obj/item/weapon/circuitboard/pipelayer
|
|
name = T_BOARD("pipe layer")
|
|
build_path = /obj/machinery/pipelayer
|
|
board_type = new /datum/frame/frame_types/machine
|
|
matter = list(DEFAULT_WALL_MATERIAL = 50, "glass" = 50)
|
|
req_components = list(
|
|
/obj/item/weapon/stock_parts/motor = 1,
|
|
/obj/item/weapon/stock_parts/gear = 1,
|
|
/obj/item/weapon/stock_parts/matter_bin = 1)
|