Hivenet aug messages tweaks (#19404)

changes:
  - rscadd: "Hivenet aug preset messages tweaks and additions."

---------

Co-authored-by: DreamySkrell <>
This commit is contained in:
DreamySkrell
2024-06-13 02:05:20 +02:00
committed by GitHub
parent ebc85c5b51
commit 1dc031c225
4 changed files with 18 additions and 6 deletions
@@ -263,7 +263,7 @@
/datum/gear/augment/vekatak_hivenet
display_name = "Ve'katak Phalanx Hivenet receiver"
description = "An experimental augment developed for the non-Vaurca of the Ve'katak Phalanx, allowing them to recieve Hivenet transmissions and send preset messages."
description = "An experimental augment developed for the non-Vaurca members of the Ve'katak Phalanx, allowing them to receive Hivenet transmissions and send preset messages."
path = /obj/item/organ/internal/augment/language/vekatak
whitelisted = list(SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD, SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI, SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL, SPECIES_UNATHI)
faction = "Private Military Contracting Group"
+1 -1
View File
@@ -338,7 +338,7 @@
if(istype(V))
if(!V.transmitting || V.disrupted || V.muted)
to_chat(speaker, SPAN_WARNING("Your implant cannot transmit over the Hivenet!"))
to_chat(speaker, SPAN_WARNING("Your implant cannot freely transmit over the Hivenet!"))
return FALSE
else
return TRUE
@@ -2199,17 +2199,22 @@
var/obj/item/organ/internal/augment/language/vekatak/V = src.internal_organs_by_name[BP_AUG_LANGUAGE]
var/list/messages = list(
"I remain operational.",
"I am operational.",
"I am on standby.",
"Message received.",
"Positive.",
"Negative.",
"Uncertain.",
"I do not understand.",
"Order completed.",
"Cannot complete order.",
"I am on standby.",
"Minor damage registered.",
"Damage registered",
"Critical damage registered",
"Assistance required at my location.",
"Hostiles sighted at my location.",
"Location clear of threats."
"Threat sighted at my location.",
"Location clear of threats.",
"Praise the Queens.",
)
if(src.stat != CONSCIOUS)
to_chat(src, SPAN_WARNING("You are in no state to do that!"))
@@ -0,0 +1,7 @@
author: DreamySkrell
delete-after: True
changes:
- rscadd: "Hivenet aug preset messages tweaks and additions."