mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-17 10:05:27 +01:00
d0787362cd
* insanity - Crawling - Recursive Listeners - Global Conversion to GLOB. - Sound channels (and sound (but not looping sound yet)) - Species and gender specific sounds - Admin proc to enable vore antag on a target - Dying by being crushed inside of shoes now enables your vore_death flag - *pain emote - RNG Spaceslipping removed - Selecting the groin with help intent will do a bellyrub on the target - Xenochimera get lick wounds - Wolves now get stomachs (and stomach overlays) - Proper vantag handling - Staff exiting will now notify staff - Modular computers get a power on sound now GET IN THERE * whoops forgot to give it to mobs * Bellyrubbing is now an emote * Update vorestation.dme * some small edits actually gives voice freq a valid starting selection makes the default voice less jarring * Update atoms_movable.dm * Update atoms_movable.dm
28 lines
845 B
Plaintext
28 lines
845 B
Plaintext
/decl/emote/audible/scream
|
|
key = "scream"
|
|
emote_message_1p = "You scream!"
|
|
emote_message_3p = "screams!"
|
|
|
|
/decl/emote/audible/scream/get_emote_sound(var/atom/user)
|
|
if(ishuman(user))
|
|
var/mob/living/carbon/human/H = user
|
|
var/vol = H.species.scream_volume
|
|
return list(
|
|
"sound" = get_species_sound(get_gendered_sound(H))["scream"],
|
|
"vol" = vol,
|
|
"exr" = 20,
|
|
"volchannel" = VOLUME_CHANNEL_SPECIES_SOUNDS
|
|
)
|
|
|
|
/decl/emote/audible/scream/get_emote_message_1p(var/atom/user, var/atom/target, var/extra_params)
|
|
if(ishuman(user))
|
|
var/mob/living/carbon/human/H = user
|
|
return "You [H.species.scream_verb_1p]!"
|
|
. = ..()
|
|
|
|
/decl/emote/audible/scream/get_emote_message_3p(var/atom/user, var/atom/target, var/extra_params)
|
|
if(ishuman(user))
|
|
var/mob/living/carbon/human/H = user
|
|
return "[H.species.scream_verb_3p]!"
|
|
. = ..()
|