mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-28 14:37:27 +01:00
* Mimes! * Apply suggestion from @Cameron-The-Raven --------- Co-authored-by: Cameron Lennox <killer65311@gmail.com>
13 lines
405 B
Plaintext
13 lines
405 B
Plaintext
/datum/decl/emote/audible/belch
|
|
key = "belch"
|
|
emote_message_3p = "belches."
|
|
emote_message_mute_3p = "acts out a belch."
|
|
message_type = AUDIBLE_MESSAGE
|
|
sound_preferences = list(/datum/preference/toggle/emote_noises, /datum/preference/toggle/belch_noises)
|
|
|
|
/datum/decl/emote/audible/belch/get_emote_sound(atom/user)
|
|
return list(
|
|
"sound" = sound(get_sfx("belches")),
|
|
"vol" = emote_volume / 2
|
|
)
|