mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
* TGUI for Techfabs II: The Great Recategorizing (AND ICONS) (AND MECHFABS) (AND AUTOLATHES) * Still doesn't compile but there's no more conflicts * [PR PR] Makes #16616 Compile And Work (#16656) Oh hey, it compiles! Co-authored-by: scriptis <scriptif@gmail.com> Co-authored-by: GoldenAlpharex <jerego1234@hotmail.com> Co-authored-by: RimiNosha <106692773+RimiNosha@users.noreply.github.com>
84 lines
3.1 KiB
Plaintext
84 lines
3.1 KiB
Plaintext
///////////////////////////////////
|
|
/////Subspace Telecomms////////////
|
|
///////////////////////////////////
|
|
|
|
/datum/design/board/subspace_receiver
|
|
name = "Subspace Receiver Board"
|
|
desc = "Allows for the construction of Subspace Receiver equipment."
|
|
id = "s_receiver"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/receiver
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_TELECOMMS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_bus
|
|
name = "Bus Mainframe Board"
|
|
desc = "Allows for the construction of Telecommunications Bus Mainframes."
|
|
id = "s_bus"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/bus
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_TELECOMMS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_hub
|
|
name = "Hub Mainframe Board"
|
|
desc = "Allows for the construction of Telecommunications Hub Mainframes."
|
|
id = "s_hub"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/hub
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_TELECOMMS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_relay
|
|
name = "Relay Mainframe Board"
|
|
desc = "Allows for the construction of Telecommunications Relay Mainframes."
|
|
id = "s_relay"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/relay
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_TELECOMMS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_processor
|
|
name = "Processor Unit Board"
|
|
desc = "Allows for the construction of Telecommunications Processor equipment."
|
|
id = "s_processor"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/processor
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_TELECOMMS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_server
|
|
name = "Server Mainframe Board"
|
|
desc = "Allows for the construction of Telecommunications Servers."
|
|
id = "s_server"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/server
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_TELECOMMS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_messaging
|
|
name = "Messaging Server Board"
|
|
desc = "Allows for the construction of Telecommunications Messaging Servers."
|
|
id = "s_messaging"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/message_server
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_TELECOMMS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|
|
|
|
/datum/design/board/subspace_broadcaster
|
|
name = "Subspace Broadcaster Board"
|
|
desc = "Allows for the construction of Subspace Broadcasting equipment."
|
|
id = "s_broadcaster"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/broadcaster
|
|
category = list(
|
|
RND_CATEGORY_MACHINE + RND_SUBCATEGORY_MACHINE_TELECOMMS
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_ENGINEERING | DEPARTMENT_BITFLAG_SCIENCE
|