mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-13 10:23:15 +00:00
73 lines
2.9 KiB
Plaintext
73 lines
2.9 KiB
Plaintext
///////////////////////////////////
|
|
/////Subspace Telecomms////////////
|
|
///////////////////////////////////
|
|
|
|
/datum/design/subspace_receiver
|
|
name = "Machine Design (Subspace Receiver)"
|
|
desc = "Allows for the construction of Subspace Receiver equipment."
|
|
id = "s-receiver"
|
|
req_tech = list("programming" = 2, "engineering" = 2, "bluespace" = 1)
|
|
build_type = IMPRINTER
|
|
materials = list(MAT_GLASS = 1000, "sacid" = 20)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/receiver
|
|
category = list("Subspace Telecomms")
|
|
|
|
/datum/design/telecomms_bus
|
|
name = "Machine Design (Bus Mainframe)"
|
|
desc = "Allows for the construction of Telecommunications Bus Mainframes."
|
|
id = "s-bus"
|
|
req_tech = list("programming" = 2, "engineering" = 2)
|
|
build_type = IMPRINTER
|
|
materials = list(MAT_GLASS = 1000, "sacid" = 20)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/bus
|
|
category = list("Subspace Telecomms")
|
|
|
|
/datum/design/telecomms_hub
|
|
name = "Machine Design (Hub Mainframe)"
|
|
desc = "Allows for the construction of Telecommunications Hub Mainframes."
|
|
id = "s-hub"
|
|
req_tech = list("programming" = 2, "engineering" = 2)
|
|
build_type = IMPRINTER
|
|
materials = list(MAT_GLASS = 1000, "sacid" = 20)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/hub
|
|
category = list("Subspace Telecomms")
|
|
|
|
/datum/design/telecomms_relay
|
|
name = "Machine Design (Relay Mainframe)"
|
|
desc = "Allows for the construction of Telecommunications Relay Mainframes."
|
|
id = "s-relay"
|
|
req_tech = list("programming" = 2, "engineering" = 2, "bluespace" = 2)
|
|
build_type = IMPRINTER
|
|
materials = list(MAT_GLASS = 1000, "sacid" = 20)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/relay
|
|
category = list("Subspace Telecomms")
|
|
|
|
/datum/design/telecomms_processor
|
|
name = "Machine Design (Processor Unit)"
|
|
desc = "Allows for the construction of Telecommunications Processor equipment."
|
|
id = "s-processor"
|
|
req_tech = list("programming" = 2, "engineering" = 2)
|
|
build_type = IMPRINTER
|
|
materials = list(MAT_GLASS = 1000, "sacid" = 20)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/processor
|
|
category = list("Subspace Telecomms")
|
|
|
|
/datum/design/telecomms_server
|
|
name = "Machine Design (Server Mainframe)"
|
|
desc = "Allows for the construction of Telecommunications Servers."
|
|
id = "s-server"
|
|
req_tech = list("programming" = 2, "engineering" = 2)
|
|
build_type = IMPRINTER
|
|
materials = list(MAT_GLASS = 1000, "sacid" = 20)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/server
|
|
category = list("Subspace Telecomms")
|
|
|
|
/datum/design/subspace_broadcaster
|
|
name = "Machine Design (Subspace Broadcaster)"
|
|
desc = "Allows for the construction of Subspace Broadcasting equipment."
|
|
id = "s-broadcaster"
|
|
req_tech = list("programming" = 2, "engineering" = 2, "bluespace" = 1)
|
|
build_type = IMPRINTER
|
|
materials = list(MAT_GLASS = 1000, "sacid" = 20)
|
|
build_path = /obj/item/weapon/circuitboard/telecomms/broadcaster
|
|
category = list("Subspace Telecomms") |