Files
CHOMPStation2/code/modules/emotes/definitions/audible_belch.dm
2024-09-14 12:30:15 +02:00

12 lines
352 B
Plaintext

/decl/emote/audible/belch
key = "belch"
emote_message_3p = "belches."
message_type = AUDIBLE_MESSAGE
sound_preferences = list(/datum/preference/toggle/emote_noises, /datum/preference/toggle/belch_noises)
/decl/emote/audible/belch/get_emote_sound(var/atom/user)
return list(
"sound" = sound(get_sfx("belches")),
"vol" = emote_volume / 2
)