diff --git a/code/modules/emotes/definitions/audible.dm b/code/modules/emotes/definitions/audible.dm index c233cc1ccc..9aa12f3046 100644 --- a/code/modules/emotes/definitions/audible.dm +++ b/code/modules/emotes/definitions/audible.dm @@ -227,3 +227,11 @@ emote_message_1p_target = "You trill at TARGET." emote_message_3p_target = "trills at TARGET." emote_sound = 'sound/voice/teshtrill.ogg' // Copyright CC BY-NC 3.0 Arnaud Coutancier (freesound.org) for the source audio. + +/decl/emote/audible/prbt + key = "prbt" + emote_message_1p = "You prbt." + emote_message_3p = "prbts." + emote_message_1p_target = "You prbt at TARGET." + emote_message_3p_target = "prbts at TARGET." + emote_sound = 'sound/voice/prbt.ogg' diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 3d4d70dfc1..6ef2428733 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -128,6 +128,7 @@ var/list/_human_default_emotes = list( /decl/emote/audible/spiderchitter, /decl/emote/audible/spiderpurr, + /decl/emote/audible/prbt, /decl/emote/visible/mlem, /decl/emote/visible/blep, @@ -258,6 +259,7 @@ var/list/_simple_mob_default_emotes = list( /decl/emote/audible/spiderpurr, /decl/emote/visible/mlem, /decl/emote/visible/blep + /decl/emote/audible/prbt ) //VOREStation Add End diff --git a/sound/voice/prbt.ogg b/sound/voice/prbt.ogg new file mode 100644 index 0000000000..75a24e1207 Binary files /dev/null and b/sound/voice/prbt.ogg differ