mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-18 13:43:27 +00:00
* New Tech Tree * ew * wew * e * Modular Fix all * Bluespace bag fix * fixes broke * Remove drill bit * more fixes * Update scipaper_partner.dm * Update powerator.dm --------- Co-authored-by: Andrew <mt.forspam@gmail.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com> Co-authored-by: SpaceLoveSs13 <68121607+SpaceLoveSs13@users.noreply.github.com>
75 lines
2.0 KiB
Plaintext
75 lines
2.0 KiB
Plaintext
// Quantum server
|
|
|
|
/obj/item/circuitboard/machine/quantum_server
|
|
name = "Quantum Server"
|
|
greyscale_colors = CIRCUIT_COLOR_SUPPLY
|
|
build_path = /obj/machinery/quantum_server
|
|
req_components = list(
|
|
/datum/stock_part/servo = 2,
|
|
/datum/stock_part/scanning_module = 1,
|
|
/datum/stock_part/capacitor = 1,
|
|
)
|
|
|
|
/**
|
|
* quantum server design
|
|
* are you absolutely sure??
|
|
*/
|
|
|
|
// Netpod
|
|
|
|
/obj/item/circuitboard/machine/netpod
|
|
name = "Netpod"
|
|
greyscale_colors = CIRCUIT_COLOR_SUPPLY
|
|
build_path = /obj/machinery/netpod
|
|
req_components = list(
|
|
/datum/stock_part/servo = 1,
|
|
/datum/stock_part/matter_bin = 2,
|
|
)
|
|
|
|
/datum/design/board/netpod
|
|
name = "Netpod Board"
|
|
desc = "The circuit board for a netpod."
|
|
id = "netpod"
|
|
build_path = /obj/item/circuitboard/machine/netpod
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_CARGO
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING
|
|
|
|
// Quantum console
|
|
|
|
/obj/item/circuitboard/computer/quantum_console
|
|
name = "Quantum Console"
|
|
greyscale_colors = CIRCUIT_COLOR_SUPPLY
|
|
build_path = /obj/machinery/computer/quantum_console
|
|
|
|
/datum/design/board/quantum_console
|
|
name = "Quantum Console Board"
|
|
desc = "Allows for the construction of circuit boards used to build a Quantum Console."
|
|
id = "quantum_console"
|
|
build_path = /obj/item/circuitboard/computer/quantum_console
|
|
category = list(
|
|
RND_CATEGORY_COMPUTER + RND_SUBCATEGORY_COMPUTER_CARGO
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING
|
|
|
|
// Byteforge
|
|
|
|
/obj/item/circuitboard/machine/byteforge
|
|
name = "Byteforge"
|
|
greyscale_colors = CIRCUIT_COLOR_SUPPLY
|
|
build_path = /obj/machinery/byteforge
|
|
req_components = list(
|
|
/datum/stock_part/micro_laser = 1,
|
|
)
|
|
|
|
/datum/design/board/byteforge
|
|
name = "Byteforge Board"
|
|
desc = "Allows for the construction of circuit boards used to build a Byteforge."
|
|
id = "byteforge"
|
|
build_path = /obj/item/circuitboard/machine/byteforge
|
|
category = list(
|
|
RND_CATEGORY_COMPUTER + RND_SUBCATEGORY_COMPUTER_CARGO
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING
|