mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 04:28:12 +01:00
Simultaneous map definitions (#16924)
* initial * Update file pathing * Fix dup vars * Move shuttle datums around * Why am I fixing pdas --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
co-authored by
Cameron Lennox
parent
592bbd1a1e
commit
3e46e16e8c
@@ -1,63 +1,10 @@
|
||||
// ### Preset machines ###
|
||||
|
||||
|
||||
// #### Relays ####
|
||||
// Telecomms doesn't know about connected z-levels, so we need relays even for the other surface levels.
|
||||
/obj/machinery/telecomms/relay/preset/station
|
||||
/obj/machinery/telecomms/relay/preset/station/New()
|
||||
..()
|
||||
id = "groundbase Relay"
|
||||
autolinkers = list("groundbase_relay")
|
||||
|
||||
// #### Hub ####
|
||||
/obj/machinery/telecomms/hub/preset/groundbase
|
||||
id = "Hub"
|
||||
network = "tcommsat"
|
||||
autolinkers = list("hub",
|
||||
"groundbase_relay", "c_relay", "m_relay", "r_relay",
|
||||
"science", "medical", "supply", "service", "common", "command", "engineering", "security", "Away Team", "unused",
|
||||
"hb_relay", "receiverA", "broadcasterA"
|
||||
)
|
||||
|
||||
/obj/machinery/telecomms/receiver/preset_right/groundbase
|
||||
id = "groundbase_rx"
|
||||
freq_listening = list(AI_FREQ, SCI_FREQ, MED_FREQ, SUP_FREQ, SRV_FREQ, COMM_FREQ, ENG_FREQ, SEC_FREQ, ENT_FREQ, EXP_FREQ)
|
||||
|
||||
/obj/machinery/telecomms/broadcaster/preset_right/groundbase
|
||||
id = "groundbase_tx"
|
||||
|
||||
/obj/machinery/telecomms/bus/preset_two/groundbase
|
||||
freq_listening = list(SUP_FREQ, SRV_FREQ, EXP_FREQ)
|
||||
|
||||
/obj/machinery/telecomms/server/presets/service/groundbase
|
||||
freq_listening = list(SRV_FREQ, EXP_FREQ)
|
||||
autolinkers = list("service", "Away Team")
|
||||
|
||||
// Telecommunications Satellite
|
||||
/area/groundbase/command/tcomms
|
||||
name = "\improper Telecomms"
|
||||
ambience = list('sound/ambience/ambisin2.ogg', 'sound/ambience/signal.ogg', 'sound/ambience/signal.ogg')
|
||||
|
||||
/area/groundbase/command/tcomms/entrance
|
||||
name = "\improper Telecomms Teleporter"
|
||||
|
||||
/area/groundbase/command/tcomms/foyer
|
||||
name = "\improper Telecomms Foyer"
|
||||
|
||||
/area/groundbase/command/tcomms/storage
|
||||
name = "\improper Telecomms Storage"
|
||||
|
||||
/area/groundbase/command/tcomms/computer
|
||||
name = "\improper Telecomms Control Room"
|
||||
|
||||
/area/groundbase/command/tcomms/chamber
|
||||
name = "\improper Telecomms Central Compartment"
|
||||
flags = BLUE_SHIELDED
|
||||
|
||||
/area/maintenance/substation/tcomms
|
||||
name = "\improper Telecomms Substation"
|
||||
|
||||
/area/maintenance/station/tcomms
|
||||
name = "\improper Telecoms Maintenance"
|
||||
|
||||
/datum/map/groundbase/default_internal_channels()
|
||||
return list(
|
||||
num2text(PUB_FREQ) = list(),
|
||||
@@ -76,18 +23,8 @@
|
||||
num2text(EXP_FREQ) = list(access_explorer)
|
||||
)
|
||||
|
||||
/obj/item/multitool/station_buffered
|
||||
name = "pre-linked multitool (Rascal's Pass hub)"
|
||||
desc = "This multitool has already been linked to the groundbase telecomms hub and can be used to configure one (1) relay."
|
||||
|
||||
/obj/item/multitool/station_buffered/Initialize()
|
||||
. = ..()
|
||||
name = "pre-linked multitool (Rascal's Pass hub)"
|
||||
desc = "This multitool has already been linked to the groundbase telecomms hub and can be used to configure one (1) relay."
|
||||
buffer = locate(/obj/machinery/telecomms/hub/preset/groundbase)
|
||||
|
||||
/obj/item/bluespaceradio/groundbase_prelinked
|
||||
name = "bluespace radio (Rascal's Pass)"
|
||||
handset = /obj/item/radio/bluespacehandset/linked/groundbase_prelinked
|
||||
|
||||
/obj/item/radio/bluespacehandset/linked/groundbase_prelinked
|
||||
bs_tx_preload_id = "groundbase_rx" //Transmit to a receiver
|
||||
bs_rx_preload_id = "groundbase_tx" //Recveive from a transmitter
|
||||
|
||||
Reference in New Issue
Block a user