Files
Aurora.3/code/modules/mob/living/silicon/silicon_procs.dm
T
FluffyandGitHub 0dc6f03a46 Slight refactor and improvement of the hands inventory handling (#19282)
Slight refactor and improvement of the hands inventory handling procs,
DMDoc, SDMM markings.
Fixed a runtime with RIG cells removal.
2024-06-02 18:44:17 +00:00

14 lines
451 B
Plaintext

/mob/living/silicon/verb/silicon_mimic_accent()
set name = "Mimic Accent"
set category = "Subsystems"
var/chosen_accent = tgui_input_list(src, "Choose an accent to mimic.", "Accent Mimicry", possible_accents)
if(!chosen_accent)
return
accent = chosen_accent
to_chat(src, SPAN_NOTICE("You have set your synthesizer to mimic the [chosen_accent] accent."))
/mob/living/silicon/put_in_hands(obj/item/item_to_equip)
. = ..(item_to_equip, TRUE)