mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-26 01:04:36 +00:00
Co-authored-by: Drathek <76988376+Drulikar@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
35 lines
1.5 KiB
Plaintext
35 lines
1.5 KiB
Plaintext
// #### 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/New()
|
|
..()
|
|
id = "groundbase Relay"
|
|
autolinkers = list("groundbase_relay")
|
|
|
|
/datum/map/groundbase/default_internal_channels()
|
|
return list(
|
|
num2text(PUB_FREQ) = list(),
|
|
num2text(AI_FREQ) = list(access_synth),
|
|
num2text(ENT_FREQ) = list(),
|
|
num2text(ERT_FREQ) = list(access_cent_specops),
|
|
num2text(COMM_FREQ)= list(access_heads),
|
|
num2text(ENG_FREQ) = list(access_engine_equip, access_atmospherics),
|
|
num2text(MED_FREQ) = list(access_medical_equip),
|
|
num2text(MED_I_FREQ)=list(access_medical_equip),
|
|
num2text(SEC_FREQ) = list(access_security),
|
|
num2text(SEC_I_FREQ)=list(access_security),
|
|
num2text(SCI_FREQ) = list(access_tox,access_robotics,access_xenobiology),
|
|
num2text(SUP_FREQ) = list(access_cargo),
|
|
num2text(SRV_FREQ) = list(access_janitor, access_hydroponics),
|
|
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(mapload)
|
|
. = ..()
|
|
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)
|