mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 20:30:46 +01:00
f8333a8d93
* move those to static paths * maps * . * . * ugh * .
12 lines
364 B
Plaintext
12 lines
364 B
Plaintext
/datum/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)
|
|
|
|
/datum/decl/emote/audible/belch/get_emote_sound(var/atom/user)
|
|
return list(
|
|
"sound" = sound(get_sfx("belches")),
|
|
"vol" = emote_volume / 2
|
|
)
|