mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-27 10:32:08 +00:00
The RnD Console UI has been overhauled.
RnD levels are now a gradual progress instead of just leveling up, not much has changed, but deconstructed items now give more * Data disks now tell you what they contain.
The red scanning goggles now let you see examined items' tech levels.
RnD consoles should now open on the main menu instead of the research menu.
Ejected items from the RnD console and destructive analyzer now go into your hands if you're adjacent.
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
/datum/design/circuit/tcom
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4)
|
|
p_category = "Telecommunications Machinery Circuit Designs"
|
|
|
|
/datum/design/circuit/tcom/server
|
|
name = "Server Mainframe"
|
|
build_path = /obj/item/circuitboard/telecomms/server
|
|
|
|
/datum/design/circuit/tcom/processor
|
|
name = "Processor Unit"
|
|
build_path = /obj/item/circuitboard/telecomms/processor
|
|
|
|
/datum/design/circuit/tcom/bus
|
|
name = "Bus Mainframe"
|
|
build_path = /obj/item/circuitboard/telecomms/bus
|
|
|
|
/datum/design/circuit/tcom/hub
|
|
name = "Hub Mainframe"
|
|
build_path = /obj/item/circuitboard/telecomms/hub
|
|
|
|
/datum/design/circuit/tcom/relay
|
|
name = "Relay Mainframe"
|
|
req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 4, TECH_BLUESPACE = 3)
|
|
build_path = /obj/item/circuitboard/telecomms/relay
|
|
|
|
/datum/design/circuit/tcom/broadcaster
|
|
name = "Subspace Broadcaster"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4, TECH_BLUESPACE = 2)
|
|
build_path = /obj/item/circuitboard/telecomms/broadcaster
|
|
|
|
/datum/design/circuit/tcom/receiver
|
|
name = "Subspace Receiver"
|
|
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3, TECH_BLUESPACE = 2)
|
|
build_path = /obj/item/circuitboard/telecomms/receiver
|
|
|
|
/datum/design/circuit/tcom/ntnet_relay
|
|
name = "NTNet Quantum Relay"
|
|
req_tech = list(TECH_DATA = 4)
|
|
build_path = /obj/item/circuitboard/ntnet_relay |