Integrates NTTC + Other Stuff

This commit is contained in:
AffectedArc07
2020-05-15 19:48:53 +01:00
parent 64dc83846e
commit d97a20aa3c
40 changed files with 776 additions and 11869 deletions

View File

@@ -302,16 +302,6 @@
build_path = /obj/item/circuitboard/supplycomp
category = list("Computer Boards")
/datum/design/comm_traffic
name = "Console Board (Telecommunications Traffic Control Console)"
desc = "Allows for the construction of circuit boards used to build a telecommunications traffic control console."
id = "comm_traffic"
req_tech = list("programming" = 3, "magnets" = 3, "bluespace" = 2)
build_type = IMPRINTER
materials = list(MAT_GLASS = 1000)
build_path = /obj/item/circuitboard/comm_traffic
category = list("Computer Boards")
/datum/design/teleconsole
name = "Console Board (Teleporter Console)"
desc = "Allows for the construction of circuit boards used to build a teleporter control console."

View File

@@ -1,3 +1,23 @@
////////////////////////////////////////
//////////Telecomms Equipment///////////
////////////////////////////////////////
// Only 2 of these exist, so they should really be in a different place. But oh well.
/datum/design/telecomms_core
name = "Machine Board (Telecommunications Core)"
desc = "Allows for the construction of Telecommunications Cores."
id = "s-hub"
req_tech = list("programming" = 2, "engineering" = 2)
build_type = IMPRINTER
materials = list(MAT_GLASS = 1000)
build_path = /obj/item/circuitboard/tcomms/core
category = list("Subspace Telecomms")
/datum/design/telecomms_relay
name = "Machine Board (Telecommunications Core)"
desc = "Allows for the construction of Telecommunications Relays."
id = "s-relay"
req_tech = list("programming" = 2, "engineering" = 2, "bluespace" = 2)
build_type = IMPRINTER
materials = list(MAT_GLASS = 1000)
build_path = /obj/item/circuitboard/tcomms/relay
category = list("Subspace Telecomms")