[MIRROR] SM, Tesla, and general engineering adjustments [MDB IGNORE] [IDB IGNORE] (#12603)

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2026-03-26 23:08:54 -04:00
committed by GitHub
co-authored by Cameron Lennox
parent 743a16c74d
commit a62b9ed8fe
83 changed files with 992 additions and 309 deletions
@@ -0,0 +1,5 @@
/obj/item/circuitboard/account_console
name = T_BOARD("account database console")
build_path = /obj/machinery/account_database
board_type = new /datum/frame/frame_types/computer
req_one_access = list(ACCESS_HOP, ACCESS_CAPTAIN, ACCESS_CENT_CAPTAIN)
@@ -16,3 +16,9 @@
name = T_BOARD("telecommunications traffic control console")
build_path = /obj/machinery/computer/telecomms/traffic
origin_tech = list(TECH_DATA = 3)
/obj/item/circuitboard/message_server
name = T_BOARD("message server")
build_path = /obj/machinery/message_server
origin_tech = list(TECH_DATA = 3)
board_type = new /datum/frame/frame_types/machine
@@ -74,6 +74,11 @@
build_path = /obj/machinery/button/windowtint
board_type = new /datum/frame/frame_types/button
/obj/item/circuitboard/mass_driver_button
name = T_BOARD("mass driver button")
build_path = /obj/machinery/button/remote/driver
board_type = new /datum/frame/frame_types/button
//Computer
/obj/item/circuitboard/holopad
@@ -36,3 +36,12 @@
/obj/item/stock_parts/spring = 1,
/obj/item/stock_parts/manipulator = 1,
/obj/item/stack/cable_coil = 10)
/obj/item/circuitboard/hydromagnetic_trap
name = T_BOARD("hydromagnetic trap")
build_path = /obj/machinery/power/hydromagnetic_trap
board_type = new /datum/frame/frame_types/machine
req_components = list(
/obj/item/stock_parts/spring = 1,
/obj/item/stock_parts/motor = 2,
/obj/item/stack/cable_coil = 10)
@@ -0,0 +1,78 @@
#ifndef T_BOARD
#error T_BOARD macro is not defined but we need it!
#endif
/obj/item/circuitboard/smartfridge
name = T_BOARD("smartfridge")
build_path = /obj/machinery/smartfridge
board_type = new /datum/frame/frame_types/machine
hidden = TRUE
req_components = list(
/obj/item/stock_parts/motor = 1,
/obj/item/stock_parts/gear = 2)
/obj/item/circuitboard/smartfridge/drying
name = T_BOARD("smartfridge - drying rack")
build_path = /obj/machinery/smartfridge/drying_rack
hidden = FALSE
/obj/item/circuitboard/smartfridge/sheets
name = T_BOARD("smartfridge - industrial sheet storage")
build_path = /obj/machinery/smartfridge/sheets
hidden = FALSE
/obj/item/circuitboard/smartfridge/sheets/mining
name = T_BOARD("smartfridge - mining sheet storage")
build_path = /obj/machinery/smartfridge/sheets/mining
hidden = FALSE
/obj/item/circuitboard/smartfridge/medbay
name = T_BOARD("smartfridge - refrigerated medicine storage")
build_path = /obj/machinery/smartfridge/medbay
hidden = FALSE
/obj/item/circuitboard/smartfridge/medbay/secure
name = T_BOARD("smartfridge - secure refrigerated medicine storage")
build_path = /obj/machinery/smartfridge/secure/medbay
hidden = FALSE
/obj/item/circuitboard/smartfridge/science
name = T_BOARD("smartfridge - biological sample storage")
build_path = /obj/machinery/smartfridge/secure/extract
hidden = FALSE
/obj/item/circuitboard/smartfridge/kitchen
name = T_BOARD("smartfridge - food storage")
build_path = /obj/machinery/smartfridge/chef
hidden = FALSE
/obj/item/circuitboard/smartfridge/drinks
name = T_BOARD("smartfridge - drink storage")
build_path = /obj/machinery/smartfridge/drinks
hidden = FALSE
/obj/item/circuitboard/smartfridge/drinks/showcase
name = T_BOARD("smartfridge - drink showcase")
build_path = /obj/machinery/smartfridge/drinks/showcase
hidden = FALSE
/obj/item/circuitboard/smartfridge/produce
name = T_BOARD("smartfridge - smart produce storage")
build_path = /obj/machinery/smartfridge/produce
hidden = FALSE
/obj/item/circuitboard/smartfridge/seeds
name = T_BOARD("smartfridge - megaSeed servitor")
build_path = /obj/machinery/smartfridge/seeds
hidden = FALSE
//these 2 are weird af
/obj/item/circuitboard/smartfridge/chemvator
name = T_BOARD("smartfridge - smart chemavator - upper")
build_path = /obj/machinery/smartfridge/chemistry/chemvator
hidden = FALSE
/obj/item/circuitboard/smartfridge/chemvator/down
name = T_BOARD("smartfridge - smart chemavator - lower")
build_path = /obj/machinery/smartfridge/chemistry/chemvator/down
hidden = FALSE