mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-05 22:43:46 +00:00
About The Pull Request I made a machine board for the PDA message server and added it to the telecomms techweb node. To keep the usefulness of the machine's password, a player built message server won't work until 15 minutes after construction. I've also converted a lot of magic numbers to defines, and changed the departmentType var on request consoles into a bitflag. I'm open to ideas other than a time gate when it comes to keeping the server password's usefulness. Why It's Good For The Game You can't build a Message Server right now. If it's destroyed, PDAs may be knocked out for the rest of the round. Changelog cl JJRcop add: You can now build a new PDA messaging server if you lose it. tweak: Requests console messages no longer work if the messaging server is offline. Emergency alerts will still function in that case as long as the rest of telecomms is online. /cl
69 lines
3.0 KiB
Plaintext
69 lines
3.0 KiB
Plaintext
///////////////////////////////////
|
|
/////Subspace Telecomms////////////
|
|
///////////////////////////////////
|
|
|
|
/datum/design/board/subspace_receiver
|
|
name = "Machine Design (Subspace Receiver)"
|
|
desc = "Allows for the construction of Subspace Receiver equipment."
|
|
id = "s-receiver"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/receiver
|
|
category = list("Subspace Telecomms")
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_bus
|
|
name = "Machine Design (Bus Mainframe)"
|
|
desc = "Allows for the construction of Telecommunications Bus Mainframes."
|
|
id = "s-bus"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/bus
|
|
category = list("Subspace Telecomms")
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_hub
|
|
name = "Machine Design (Hub Mainframe)"
|
|
desc = "Allows for the construction of Telecommunications Hub Mainframes."
|
|
id = "s-hub"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/hub
|
|
category = list("Subspace Telecomms")
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_relay
|
|
name = "Machine Design (Relay Mainframe)"
|
|
desc = "Allows for the construction of Telecommunications Relay Mainframes."
|
|
id = "s-relay"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/relay
|
|
category = list("Subspace Telecomms")
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_processor
|
|
name = "Machine Design (Processor Unit)"
|
|
desc = "Allows for the construction of Telecommunications Processor equipment."
|
|
id = "s-processor"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/processor
|
|
category = list("Subspace Telecomms")
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_server
|
|
name = "Machine Design (Server Mainframe)"
|
|
desc = "Allows for the construction of Telecommunications Servers."
|
|
id = "s-server"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/server
|
|
category = list("Subspace Telecomms")
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|
|
|
|
/datum/design/board/telecomms_messaging
|
|
name = "Machine Design (Messaging Server)"
|
|
desc = "Allows for the construction of Telecommunications Messaging Servers."
|
|
id = "s-messaging"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/message_server
|
|
category = list("Subspace Telecomms")
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|
|
|
|
/datum/design/board/subspace_broadcaster
|
|
name = "Machine Design (Subspace Broadcaster)"
|
|
desc = "Allows for the construction of Subspace Broadcasting equipment."
|
|
id = "s-broadcaster"
|
|
build_path = /obj/item/circuitboard/machine/telecomms/broadcaster
|
|
category = list("Subspace Telecomms")
|
|
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE
|