mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-21 19:19:12 +01:00
24 lines
670 B
Plaintext
24 lines
670 B
Plaintext
#ifndef T_BOARD
|
|
#error T_BOARD macro is not defined but we need it!
|
|
#endif
|
|
|
|
//Stuff that doesn't fit into any category goes here
|
|
|
|
/obj/item/circuitboard/aicore
|
|
name = T_BOARD("AI core")
|
|
board_type = "other"
|
|
|
|
/obj/item/circuitboard/chem_master
|
|
name = T_BOARD("ChemMaster 3000")
|
|
build_path = /obj/machinery/chem_master
|
|
board_type = new /datum/frame/frame_types/machine
|
|
req_components = list(
|
|
/obj/item/stock_parts/matter_bin = 2,
|
|
/obj/item/stock_parts/manipulator = 2)
|
|
|
|
/obj/item/circuitboard/machine/ore_silo
|
|
name = T_BOARD("Ore Silo")
|
|
build_path = /obj/machinery/ore_silo
|
|
board_type = new /datum/frame/frame_types/machine
|
|
req_components = list()
|