mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-23 20:56:47 +01:00
1299 lines
41 KiB
Plaintext
1299 lines
41 KiB
Plaintext
//Main code edits
|
|
/datum/emote/living/audio_emote/laugh/run_emote(mob/user, params)
|
|
. = ..()
|
|
|
|
// Check parent return
|
|
if(!.)
|
|
return
|
|
|
|
// Define carbon user
|
|
var/mob/living/carbon/carbon_user = user
|
|
|
|
// Check if carbon user exists
|
|
if(!istype(carbon_user))
|
|
return
|
|
|
|
// Check for subraces
|
|
if(ishumanbasic(carbon_user) || iscatperson(carbon_user) || isinsect(carbon_user) || isjellyperson(carbon_user))
|
|
return
|
|
|
|
// Define default laugh type
|
|
// Defaults to male
|
|
var/laugh_sound = 'sound/voice/human/manlaugh1.ogg'
|
|
|
|
// Check gender
|
|
switch(user.gender)
|
|
// Female
|
|
if(FEMALE)
|
|
// Set laugh sound
|
|
laugh_sound = 'sound/voice/human/womanlaugh.ogg'
|
|
|
|
/*
|
|
* Please add more gendered laughs
|
|
*
|
|
// Male
|
|
if(MALE)
|
|
// Set laugh sound
|
|
laugh_sound = 'sound/voice/human/laugh_male.ogg'
|
|
|
|
// Non-binary
|
|
if(PLURAL)
|
|
// Set laugh sound
|
|
laugh_sound = 'sound/voice/human/laugh_nonbinary.ogg'
|
|
|
|
// Object
|
|
if(NEUTER)
|
|
// Set laugh sound
|
|
laugh_sound = 'sound/voice/human/laugh_object.ogg'
|
|
*/
|
|
|
|
// Other
|
|
else
|
|
// Set laugh sound
|
|
laugh_sound = pick('sound/voice/human/manlaugh1.ogg', 'sound/voice/human/manlaugh2.ogg')
|
|
|
|
// Play laugh sound
|
|
playsound(carbon_user, laugh_sound, 50, 1)
|
|
|
|
// Living variant
|
|
/datum/emote/living/audio
|
|
// List of mob types that can run emote
|
|
mob_type_allowed_typecache = list(/mob/living)
|
|
|
|
// Default type
|
|
// Can be EMOTE_AUDIBLE, EMOTE_VISIBLE, EMOTE_BOTH, or EMOTE_OMNI
|
|
emote_type = EMOTE_AUDIBLE
|
|
|
|
// Placeholder variables
|
|
// These should NOT appear in-game
|
|
message = "makes an indescribable noise"
|
|
var/emote_sound = 'sound/arcade/Boom.ogg'
|
|
|
|
// Default time before using another audio emote
|
|
var/emote_cooldown = 1 SECONDS
|
|
|
|
// Default volume of the emote
|
|
var/emote_volume = 50
|
|
|
|
// Default range modifier
|
|
var/emote_range = -1
|
|
var/emote_distance_multiplier = SOUND_DEFAULT_DISTANCE_MULTIPLIER
|
|
var/emote_distance_multiplier_min_range = SOUND_DEFAULT_MULTIPLIER_EFFECT_RANGE
|
|
|
|
// Default pitch variance
|
|
var/emote_pitch_variance = 1
|
|
|
|
// Default audio falloff settings
|
|
var/emote_falloff_exponent = SOUND_FALLOFF_EXPONENT
|
|
var/emote_falloff_distance = SOUND_DEFAULT_FALLOFF_DISTANCE
|
|
|
|
// Default frequency
|
|
var/emote_frequency = null
|
|
|
|
// Default channel
|
|
var/emote_channel = 0
|
|
|
|
// Should the emote consider atmospheric pressure?
|
|
var/emote_check_pressure = TRUE
|
|
|
|
// Should the emote ignore walls?
|
|
var/emote_ignore_walls = FALSE
|
|
|
|
// Default wet and dry settings (???)
|
|
var/emote_wetness = -10000
|
|
var/emote_dryness = 0
|
|
|
|
// Check if audio emote can run
|
|
/datum/emote/living/audio/can_run_emote(mob/living/user, status_check)
|
|
. = ..()
|
|
|
|
// Check parent return
|
|
if(!.)
|
|
return FALSE
|
|
|
|
// Check cooldown
|
|
if(user?.nextsoundemote >= world.time)
|
|
return FALSE
|
|
|
|
// Allow use
|
|
return TRUE
|
|
|
|
// Run audio emote
|
|
/datum/emote/living/audio/run_emote(mob/user, params)
|
|
. = ..()
|
|
|
|
// Check parent return
|
|
if(!.)
|
|
return
|
|
|
|
// Check if user is miming
|
|
if(user?.mind?.miming)
|
|
// Do nothing
|
|
return
|
|
|
|
// Play sound
|
|
// Accepts all possible parameters
|
|
playsound(user.loc, emote_sound, emote_volume, emote_pitch_variance, emote_range, emote_falloff_exponent, emote_frequency, emote_channel, emote_check_pressure, emote_ignore_walls, emote_falloff_distance, emote_wetness, emote_dryness, emote_distance_multiplier, emote_distance_multiplier_min_range)
|
|
|
|
// Set coodown
|
|
user.nextsoundemote = world.time + emote_cooldown
|
|
|
|
/datum/emote/living/surrender/run_emote(mob/user, params, type_override, intentional)
|
|
// Set message with pronouns
|
|
message = "puts [user.p_their()] hands on [user.p_their()] head and falls to the ground, [user.p_they()] surrender[user.p_s()]!"
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
// SPLURT emotes
|
|
/datum/emote/living/tilt
|
|
key = "tilt"
|
|
key_third_person = "tilts"
|
|
message = "tilts their head."
|
|
emote_type = EMOTE_VISIBLE
|
|
|
|
/datum/emote/living/squint
|
|
key = "squint"
|
|
key_third_person = "squints"
|
|
message = "squints their eyes." // i dumb
|
|
emote_type = EMOTE_VISIBLE
|
|
|
|
/datum/emote/living/fart
|
|
key = "fart"
|
|
key_third_person = "farts"
|
|
message = "farts out shitcode."
|
|
|
|
/datum/emote/living/fart/run_emote(mob/living/user, params, type_override, intentional)
|
|
if(TIMER_COOLDOWN_CHECK(user, COOLDOWN_EMOTE_FART))
|
|
to_chat(user, span_warning("You try your hardest, but no shart comes out."))
|
|
return
|
|
var/list/fart_emotes = list( //cope goonies
|
|
"lets out a girly little 'toot' from [user.p_their()] butt.",
|
|
"farts loudly!",
|
|
"lets one rip!",
|
|
"farts! It sounds wet and smells like rotten eggs.",
|
|
"farts robustly!",
|
|
"farted! It smells like something died.",
|
|
"farts like a muppet!",
|
|
"defiles the station's air supply.",
|
|
"farts for a whole ten seconds.",
|
|
"groans and moans, farting like the world depended on it.",
|
|
"breaks wind!",
|
|
"expels intestinal gas through [user.p_their()] anus.",
|
|
"releases an audible discharge of intestinal gas.",
|
|
"is a farting motherfucker!!!",
|
|
"suffers from flatulence!",
|
|
"releases flatus.",
|
|
"releases methane.",
|
|
"farts up a storm.",
|
|
"farts. It smells like Soylent Surprise!",
|
|
"farts. It smells like pizza!",
|
|
"farts. It smells like George Melons' perfume!",
|
|
"farts. It smells like the kitchen!",
|
|
"farts. It smells like medbay in here now!",
|
|
"farts. It smells like the bridge in here now!",
|
|
"farts like a pubby!",
|
|
"farts like a goone!",
|
|
"sharts! That's just nasty.",
|
|
"farts delicately.",
|
|
"farts timidly.",
|
|
"farts very, very quietly. The stench is OVERPOWERING.",
|
|
"farts egregiously.",
|
|
"farts voraciously.",
|
|
"farts cantankerously.",
|
|
"farts in [user.p_their()] own mouth. A shameful \the <b>[user]</b>.",
|
|
"breaks wind noisily!",
|
|
"releases gas with the power of the gods! The very station trembles!!",
|
|
"<B><span style='color:red'>f</span><span style='color:blue'>a</span>r<span style='color:red'>t</span><span style='color:blue'>s</span>!</B>",
|
|
"laughs! [user.p_their(TRUE)] breath smells like a fart.",
|
|
"farts, and as such, blob cannot evoulate.",
|
|
"farts. It might have been the Citizen Kane of farts."
|
|
)
|
|
var/new_message = pick(fart_emotes)
|
|
//new_message = replacetext(new_message, "%OWNER", "\the [user]")
|
|
message = new_message
|
|
. = ..()
|
|
if(.)
|
|
playsound(user, pick(GLOB.brap_noises), 50, 1, -1)
|
|
TIMER_COOLDOWN_START(user, COOLDOWN_EMOTE_FART, 3 SECONDS)
|
|
|
|
/datum/emote/living/audio/cackle
|
|
key = "cackle"
|
|
key_third_person = "cackles"
|
|
message = "cackles hysterically!"
|
|
message_mime = "cackles silently!"
|
|
emote_sound = 'modular_splurt/sound/voice/cackle_yeen.ogg'
|
|
emote_cooldown = 1.6 SECONDS
|
|
|
|
/datum/emote/living/audio/speen
|
|
key = "speen"
|
|
key_third_person = "speens"
|
|
message = "speeeeens!"
|
|
message_mime = "speeeeens silently!"
|
|
restraint_check = TRUE
|
|
mob_type_allowed_typecache = list(/mob/living)
|
|
mob_type_ignore_stat_typecache = list(/mob/dead/observer)
|
|
emote_sound = 'modular_splurt/sound/voice/speen.ogg'
|
|
// No cooldown var required
|
|
|
|
/datum/emote/living/audio/speen/run_emote(mob/user, params)
|
|
. = ..()
|
|
|
|
// Check parent return
|
|
if(!.)
|
|
return
|
|
|
|
// Spin user
|
|
user.spin(20, 1)
|
|
|
|
// Check for cyborg
|
|
// Check for buckled mobs
|
|
if(iscyborg(user) && user.has_buckled_mobs())
|
|
// Define cyborg user
|
|
var/mob/living/silicon/robot/user_cyborg = user
|
|
|
|
// Define riding datum
|
|
var/datum/component/riding/riding_datum = user_cyborg.GetComponent(/datum/component/riding)
|
|
|
|
// Check if riding datum exists
|
|
if(riding_datum)
|
|
// Iterate over buckled mobs
|
|
for(var/mob/buckled_mob in user_cyborg.buckled_mobs)
|
|
// Unbuckle iterated mob
|
|
riding_datum.force_dismount(buckled_mob)
|
|
|
|
// Riding datum does not exist
|
|
else
|
|
// Unbuckle all mobs
|
|
user_cyborg.unbuckle_all_mobs()
|
|
|
|
/datum/emote/living/audio/chirp
|
|
key = "chirp"
|
|
key_third_person = "chirps"
|
|
message = "chirps!"
|
|
message_mime = "chirps silently!"
|
|
emote_sound = 'modular_splurt/sound/voice/chirp.ogg'
|
|
emote_cooldown = 0.2 SECONDS
|
|
|
|
/datum/emote/living/audio/caw
|
|
key = "caw"
|
|
key_third_person = "caws"
|
|
message = "caws!"
|
|
message_mime = "caws silently!"
|
|
emote_sound = 'modular_splurt/sound/voice/caw.ogg'
|
|
emote_cooldown = 0.35 SECONDS
|
|
|
|
/datum/emote/living/burp/run_emote(mob/user, params, type_override, intentional)
|
|
. = ..()
|
|
var/list/burp_noises = list(
|
|
'modular_splurt/sound/voice/burps/belch1.ogg','modular_splurt/sound/voice/burps/belch2.ogg','modular_splurt/sound/voice/burps/belch3.ogg','modular_splurt/sound/voice/burps/belch4.ogg',
|
|
'modular_splurt/sound/voice/burps/belch5.ogg','modular_splurt/sound/voice/burps/belch6.ogg','modular_splurt/sound/voice/burps/belch7.ogg','modular_splurt/sound/voice/burps/belch8.ogg',
|
|
'modular_splurt/sound/voice/burps/belch9.ogg','modular_splurt/sound/voice/burps/belch10.ogg','modular_splurt/sound/voice/burps/belch11.ogg','modular_splurt/sound/voice/burps/belch12.ogg',
|
|
'modular_splurt/sound/voice/burps/belch13.ogg','modular_splurt/sound/voice/burps/belch14.ogg','modular_splurt/sound/voice/burps/belch15.ogg'
|
|
)
|
|
if(.)
|
|
playsound(user, pick(burp_noises), 50, 1)
|
|
|
|
/datum/emote/living/audio/bleat
|
|
key = "bleat"
|
|
key_third_person = "bleats"
|
|
message = "bleats loudly!"
|
|
message_mime = "bleats silently!"
|
|
emote_sound = 'modular_splurt/sound/voice/bleat.ogg'
|
|
emote_cooldown = 0.7 SECONDS
|
|
|
|
/datum/emote/living/carbon/moan/run_emote(mob/user, params, type_override, intentional) //I can't not port this shit, come on.
|
|
if(user.nextsoundemote >= world.time || user.stat != CONSCIOUS)
|
|
return
|
|
var/sound
|
|
var/miming = user.mind ? user.mind.miming : 0
|
|
if(!user.is_muzzled() && !miming)
|
|
user.nextsoundemote = world.time + 7
|
|
sound = pick('modular_splurt/sound/voice/moan_m1.ogg', 'modular_splurt/sound/voice/moan_m2.ogg', 'modular_splurt/sound/voice/moan_m3.ogg')
|
|
if(user.gender == FEMALE)
|
|
sound = pick('modular_splurt/sound/voice/moan_f1.ogg', 'modular_splurt/sound/voice/moan_f2.ogg', 'modular_splurt/sound/voice/moan_f3.ogg', 'modular_splurt/sound/voice/moan_f4.ogg', 'modular_splurt/sound/voice/moan_f5.ogg', 'modular_splurt/sound/voice/moan_f6.ogg', 'modular_splurt/sound/voice/moan_f7.ogg')
|
|
if(isalien(user))
|
|
sound = 'sound/voice/hiss6.ogg'
|
|
playlewdinteractionsound(user.loc, sound, 50, 1, 4, 1.2)
|
|
message = "moans!"
|
|
else if(miming)
|
|
message = "acts out a moan."
|
|
else
|
|
message = "makes a very loud noise."
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/chitter2
|
|
key = "chitter2"
|
|
key_third_person = "chitters2"
|
|
message = "chitters."
|
|
message_mime = "chitters silently!"
|
|
emote_sound = 'modular_splurt/sound/voice/moth/mothchitter2.ogg'
|
|
emote_cooldown = 0.3 SECONDS
|
|
|
|
/datum/emote/living/audio/monkeytwerk
|
|
key = "twerk"
|
|
key_third_person = "twerks"
|
|
message = "shakes it harder than James Russle himself!"
|
|
emote_sound = 'modular_splurt/sound/misc/monkey_twerk.ogg'
|
|
emote_cooldown = 3.2 SECONDS
|
|
|
|
/datum/emote/living/audio/bruh
|
|
key = "bruh"
|
|
key_third_person = "bruhs"
|
|
message = "thinks this is a bruh moment."
|
|
message_mime = "silently acknowledges the bruh moment."
|
|
emote_sound = 'modular_splurt/sound/voice/bruh.ogg'
|
|
emote_cooldown = 0.6 SECONDS
|
|
|
|
/datum/emote/living/audio/bababooey
|
|
key = "bababooey"
|
|
key_third_person = "bababooeys"
|
|
message = "spews bababooey."
|
|
message_mime = "spews something silently."
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/bababooey.ogg'
|
|
emote_cooldown = 0.9 SECONDS
|
|
|
|
/datum/emote/living/audio/bababooey/run_emote(mob/user, params)
|
|
// Check if user is muzzled
|
|
if(user.is_muzzled())
|
|
// Set muzzled sound
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/ffff.ogg'
|
|
|
|
// User is not muzzled
|
|
else
|
|
// Set random emote sound
|
|
emote_sound = pick('modular_splurt/sound/voice/bababooey/bababooey.ogg', 'modular_splurt/sound/voice/bababooey/bababooey2.ogg')
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/babafooey
|
|
key = "babafooey"
|
|
key_third_person = "babafooeys"
|
|
message = "spews babafooey."
|
|
message_mime = "spews something silently."
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/babafooey.ogg'
|
|
emote_cooldown = 0.85 SECONDS
|
|
|
|
/datum/emote/living/audio/fafafooey
|
|
key = "fafafooey"
|
|
key_third_person = "fafafooeys"
|
|
message = "spews fafafooey."
|
|
message_mime = "spews something silently."
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/fafafooey.ogg'
|
|
emote_cooldown = 0.7 SECONDS
|
|
|
|
/datum/emote/living/audio/fafafooey/run_emote(mob/user, params)
|
|
// Check if user is muzzled
|
|
if(user.is_muzzled())
|
|
// Set muzzled sound
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/ffff.ogg'
|
|
|
|
// User is not muzzled
|
|
else
|
|
// Set random emote sound
|
|
emote_sound = pick('modular_splurt/sound/voice/bababooey/fafafooey.ogg', 'modular_splurt/sound/voice/bababooey/fafafooey2.ogg', 'modular_splurt/sound/voice/bababooey/fafafooey3.ogg')
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/fafafoggy
|
|
key = "fafafoggy"
|
|
key_third_person = "fafafoggys"
|
|
message = "spews fafafoggy."
|
|
message_mime = "spews something silently."
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/fafafoggy.ogg'
|
|
emote_cooldown = 0.9 SECONDS
|
|
|
|
/datum/emote/living/audio/fafafoggy/run_emote(mob/user, params)
|
|
// Check if user is muzzled
|
|
if(user.is_muzzled())
|
|
// Set muzzled sound
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/ffff.ogg'
|
|
|
|
// User is not muzzled
|
|
else
|
|
// Set random emote sound
|
|
emote_sound = pick('modular_splurt/sound/voice/bababooey/fafafoggy.ogg', 'modular_splurt/sound/voice/bababooey/fafafoggy2.ogg')
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/hohohoy
|
|
key = "hohohoy"
|
|
key_third_person = "hohohoys"
|
|
message = "spews hohohoy."
|
|
message_mime = "spews something silently."
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/hohohoy.ogg'
|
|
emote_cooldown = 0.7 SECONDS
|
|
|
|
/datum/emote/living/audio/ffff
|
|
key = "ffff"
|
|
key_third_person = "ffffs"
|
|
message = "spews something softly."
|
|
message_mime = "spews something silently."
|
|
muzzle_ignore = TRUE
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/ffff.ogg'
|
|
emote_cooldown = 0.85 SECONDS
|
|
|
|
/datum/emote/living/audio/fafafail
|
|
key = "fafafail"
|
|
key_third_person = "fafafails"
|
|
message = "spews something unintelligible."
|
|
message_mime = "spews something silent."
|
|
emote_sound = 'modular_splurt/sound/voice/bababooey/ffffhvh.ogg'
|
|
emote_cooldown = 1.15 SECONDS
|
|
|
|
/datum/emote/living/audio/boowomp
|
|
key = "boowomp"
|
|
key_third_person = "boowomps"
|
|
message = "produces a sad boowomp."
|
|
message_mime = "produces a silent boowomp."
|
|
emote_sound = 'modular_splurt/sound/voice/boowomp.ogg'
|
|
emote_cooldown = 0.4 SECONDS
|
|
|
|
/datum/emote/living/audio/swaos
|
|
key = "swaos"
|
|
key_third_person = "swaos"
|
|
message = "mutters swaos."
|
|
message_mime = "imitates swaos."
|
|
emote_sound = 'modular_splurt/sound/voice/swaos.ogg'
|
|
emote_cooldown = 0.7 SECONDS
|
|
|
|
/datum/emote/living/audio/eyebrow2
|
|
key = "eyebrow2"
|
|
key_third_person = "eyebrows2"
|
|
message = "<b>raises an eyebrow.</b>"
|
|
message_mime = "<b>raises an eyebrow with quaking force!</b>"
|
|
emote_sound = 'modular_splurt/sound/voice/vineboom.ogg'
|
|
emote_cooldown = 2.9 SECONDS
|
|
|
|
/datum/emote/living/audio/eyebrow3
|
|
key = "eyebrow3"
|
|
key_third_person = "eyebrows3"
|
|
message = "raises an eyebrow <i>quizzaciously</i>."
|
|
emote_sound = 'modular_splurt/sound/voice/moonmen.ogg'
|
|
emote_cooldown = 7 SECONDS
|
|
|
|
/datum/emote/living/audio/blink2
|
|
key = "blink2"
|
|
key_third_person = "blinks2"
|
|
message = "blinks."
|
|
message_mime = "blinks expressively."
|
|
emote_sound = 'modular_splurt/sound/voice/blink.ogg'
|
|
emote_cooldown = 0.25 SECONDS
|
|
|
|
/datum/emote/living/audio/laugh2
|
|
key = "laugh2"
|
|
key_third_person = "laughs2"
|
|
message = "laughs like a king."
|
|
message_mime = "acts out laughing like a king."
|
|
emote_sound = 'modular_splurt/sound/voice/laugh_king.ogg'
|
|
// No cooldown var required
|
|
|
|
/datum/emote/living/audio/laugh3
|
|
key = "laugh3"
|
|
key_third_person = "laughs3"
|
|
message = "laughs silly."
|
|
message_mime = "acts out laughing silly."
|
|
emote_sound = 'modular_splurt/sound/voice/lol.ogg'
|
|
emote_cooldown = 6.1 SECONDS
|
|
|
|
/datum/emote/living/audio/laugh4
|
|
key = "laugh4"
|
|
key_third_person = "laughs4"
|
|
message = "burst into laughter!"
|
|
message_mime = "acts out bursting into laughter."
|
|
emote_sound = 'modular_splurt/sound/voice/laugh_muta.ogg'
|
|
emote_cooldown = 3 SECONDS
|
|
|
|
/datum/emote/living/audio/laugh5
|
|
key = "laugh5"
|
|
key_third_person = "laughs5"
|
|
message = "laughs in Scottish."
|
|
message_mime = "acts out laughing in Scottish."
|
|
emote_sound = 'modular_splurt/sound/voice/laugh_deman.ogg'
|
|
emote_cooldown = 2.75 SECONDS
|
|
|
|
/datum/emote/living/audio/laugh6
|
|
key = "laugh6"
|
|
key_third_person = "laughs6"
|
|
message = "laughs like a kettle!"
|
|
message_mime = "acts out laughing like a kettle."
|
|
emote_sound = 'modular_splurt/sound/voice/laugh6.ogg'
|
|
emote_cooldown = 4.45 SECONDS
|
|
|
|
/datum/emote/living/audio/breakbad
|
|
key = "breakbad"
|
|
key_third_person = "breakbads"
|
|
message = "stares intensively with determination."
|
|
emote_sound = 'modular_splurt/sound/voice/breakbad.ogg'
|
|
emote_cooldown = 6.4 SECONDS
|
|
|
|
/datum/emote/living/audio/lawyerup
|
|
key = "lawyerup"
|
|
key_third_person = "lawyerups"
|
|
message = "emits an aura of expertise."
|
|
emote_sound = 'modular_splurt/sound/voice/lawyerup.ogg'
|
|
emote_cooldown = 7.5 SECONDS
|
|
|
|
/datum/emote/living/audio/goddamn
|
|
key = "damn"
|
|
key_third_person = "damns"
|
|
message = "is in utter stupor."
|
|
message_mime = "appears to be in utter stupor."
|
|
emote_sound = 'modular_splurt/sound/voice/god_damn.ogg'
|
|
emote_cooldown = 1.25 SECONDS
|
|
|
|
/datum/emote/living/audio/spoonful
|
|
key = "spoonful"
|
|
key_third_person = "spoonfuls"
|
|
message = "asks for a spoonful."
|
|
message_mime = "pretends to ask for a spoonful."
|
|
emote_sound = 'modular_splurt/sound/voice/spoonful.ogg'
|
|
// No cooldown var required
|
|
|
|
/datum/emote/living/audio/ohhmygod
|
|
key = "mygod"
|
|
key_third_person = "omgs"
|
|
message = "invokes the presence of Jesus Christ."
|
|
message_mime = "invokes the presence of Jesus Christ through silent prayer."
|
|
emote_sound = 'modular_splurt/sound/voice/OMG.ogg'
|
|
emote_cooldown = 1.6 SECONDS
|
|
|
|
/datum/emote/living/audio/whatthehell
|
|
key = "wth"
|
|
key_third_person = "wths"
|
|
message = "condemns the abysses of hell!"
|
|
message_mime = "silently condemns the abysses of hell!"
|
|
emote_sound = 'modular_splurt/sound/voice/WTH.ogg'
|
|
emote_cooldown = 4.4 SECONDS
|
|
|
|
/datum/emote/living/audio/fusrodah
|
|
key = "fusrodah"
|
|
key_third_person = "furodahs"
|
|
message = "yells, \"<b>FUS RO DAH!!!</b>\""
|
|
message_mime = "acts out a dragon shout."
|
|
emote_sound = 'modular_splurt/sound/voice/fusrodah.ogg'
|
|
emote_cooldown = 7 SECONDS
|
|
|
|
/datum/emote/living/audio/skibidi
|
|
key = "skibidi"
|
|
key_third_person = "skibidis"
|
|
message = "yells, \"<b>Skibidi bop mm dada!</b>\""
|
|
message_mime = "makes incoherent mouth motions."
|
|
emote_sound = 'modular_splurt/sound/voice/skibidi.ogg'
|
|
emote_cooldown = 1.1 SECONDS
|
|
|
|
/datum/emote/living/audio/fbi
|
|
key = "fbi"
|
|
key_third_person = "fbis"
|
|
message = "yells, \"<b>FBI OPEN UP!</b>\""
|
|
message_mime = "acts out being the FBI."
|
|
emote_sound = 'modular_splurt/sound/voice/fbi.ogg'
|
|
emote_cooldown = 2 SECONDS
|
|
|
|
/datum/emote/living/audio/illuminati
|
|
key = "illuminati"
|
|
key_third_person = "illuminatis"
|
|
message = "exudes a mysterious aura!"
|
|
emote_sound = 'modular_splurt/sound/voice/illuminati.ogg'
|
|
emote_cooldown = 7.8 SECONDS
|
|
|
|
/datum/emote/living/audio/bonerif
|
|
key = "bonerif"
|
|
key_third_person = "bonerifs"
|
|
message = "riffs!"
|
|
message_mime = "riffs silently!"
|
|
emote_sound = 'modular_splurt/sound/voice/bonerif.ogg'
|
|
emote_cooldown = 2 SECONDS
|
|
|
|
/datum/emote/living/audio/cry2
|
|
key = "cry2"
|
|
key_third_person = "cries2"
|
|
message = "cries like a king."
|
|
message_mime = "acts out crying like a king."
|
|
emote_sound = 'modular_splurt/sound/voice/cry_king.ogg'
|
|
emote_cooldown = 1.6 SECONDS // Uses longest sound's time
|
|
|
|
/datum/emote/living/audio/cry2/run_emote(mob/user, params)
|
|
// Set random emote sound
|
|
emote_sound = pick('modular_splurt/sound/voice/cry_king.ogg', 'modular_splurt/sound/voice/cry_king2.ogg')
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/choir
|
|
key = "choir"
|
|
key_third_person = "choirs"
|
|
message = "let out a choir!"
|
|
message_mime = "acts out a choir."
|
|
emote_sound = 'modular_splurt/sound/voice/choir.ogg'
|
|
emote_cooldown = 6 SECONDS
|
|
|
|
/datum/emote/living/audio/agony
|
|
key = "agony"
|
|
key_third_person = "agonys"
|
|
message = "let out a choir of agony!"
|
|
message_mime = "is visibly in agony."
|
|
emote_sound = 'modular_splurt/sound/voice/agony.ogg'
|
|
emote_cooldown = 7 SECONDS
|
|
|
|
/datum/emote/living/audio/wtune
|
|
key = "whistletune"
|
|
key_third_person = "whistletunes"
|
|
message = "whistles a tune."
|
|
message_mime = "makes an expression as if whistling."
|
|
emote_sound = 'modular_splurt/sound/voice/wtune1.ogg'
|
|
emote_cooldown = 4.55 SECONDS // Uses longest sound's time.
|
|
|
|
/datum/emote/living/audio/wtune/run_emote(mob/user, params)
|
|
// Set random emote sound
|
|
emote_sound = pick('modular_splurt/sound/voice/wtune1.ogg', 'modular_splurt/sound/voice/wtune2.ogg')
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/fiufiu
|
|
key = "wolfwhistle"
|
|
key_third_person = "wolfwhistles"
|
|
message = "wolf-whistles!" // i am not creative
|
|
message_param = "audibly approves %t's appearance."
|
|
message_mime = "makes an expression as if <i>inappropriately</i> whistling."
|
|
emote_sound = 'modular_splurt/sound/voice/wolfwhistle.ogg'
|
|
emote_cooldown = 0.78 SECONDS
|
|
|
|
/datum/emote/living/audio/terror
|
|
key = "terror"
|
|
key_third_person = "terrors"
|
|
message = "whistles some dreadful tune..."
|
|
message_mime = "stares with aura full of dread..."
|
|
emote_sound = 'modular_splurt/sound/voice/terror1.ogg'
|
|
emote_cooldown = 13.07 SECONDS // Uses longest sound's time.
|
|
|
|
/datum/emote/living/audio/terror/run_emote(mob/user, params)
|
|
// Set random emote sound
|
|
emote_sound = pick('modular_splurt/sound/voice/terror1.ogg', 'modular_splurt/sound/voice/terror2.ogg')
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/deathglare
|
|
key = "glare2"
|
|
key_third_person = "glares2"
|
|
message = "<b><i>glares</b></i>."
|
|
message_param = "<b><i>glares</b></i> at %t."
|
|
emote_sound = 'modular_splurt/sound/voice/deathglare.ogg'
|
|
emote_cooldown = 4.4 SECONDS
|
|
|
|
/datum/emote/living/audio/sicko
|
|
key = "sicko"
|
|
key_third_person = "sickos"
|
|
message = "briefly goes sicko mode!"
|
|
message_mime = "briefly imitates sicko mode!"
|
|
emote_sound = 'modular_splurt/sound/voice/sicko.ogg'
|
|
emote_cooldown = 0.8 SECONDS
|
|
|
|
/datum/emote/living/audio/chill
|
|
key = "chill"
|
|
key_third_person = "chills"
|
|
message = "feels a chill running down their spine..."
|
|
message_mime = "acts out a chill running down their spine..."
|
|
emote_sound = 'modular_splurt/sound/voice/waterphone.ogg'
|
|
emote_cooldown = 3.4 SECONDS
|
|
|
|
/datum/emote/living/audio/taunt
|
|
key = "tt"
|
|
key_third_person = "taunts"
|
|
message = "strikes a pose!"
|
|
message_param = "taunts %t!"
|
|
emote_sound = 'modular_splurt/sound/voice/phillyhit.ogg'
|
|
|
|
/datum/emote/living/audio/taunt/alt
|
|
key = "tt2"
|
|
key_third_person = "taunts2"
|
|
emote_volume = 100
|
|
emote_sound = 'modular_splurt/sound/voice/orchestrahit.ogg'
|
|
|
|
/datum/emote/living/audio/weh2
|
|
key = "weh2"
|
|
key_third_person = "wehs2"
|
|
message = "let out a weh!"
|
|
message_mime = "acts out a weh!"
|
|
emote_sound = 'modular_splurt/sound/voice/weh2.ogg'
|
|
emote_cooldown = 0.25 SECONDS
|
|
|
|
/datum/emote/living/audio/weh3
|
|
key = "weh3"
|
|
key_third_person = "wehs3"
|
|
message = "let out a weh!"
|
|
message_mime = "acts out a weh!"
|
|
emote_sound = 'modular_splurt/sound/voice/weh3.ogg'
|
|
emote_cooldown = 0.25 SECONDS
|
|
|
|
/datum/emote/living/audio/weh4
|
|
key = "weh4"
|
|
key_third_person = "wehs4"
|
|
message = "let out a surprised weh!"
|
|
message_mime = "acts out a surprised weh!"
|
|
emote_sound = 'modular_splurt/sound/voice/weh_s.ogg'
|
|
emote_cooldown = 0.35 SECONDS
|
|
|
|
/datum/emote/living/audio/waa
|
|
key = "waa"
|
|
key_third_person = "waas"
|
|
message = "let out a waa!"
|
|
message_mime = "acts out a waa!"
|
|
emote_sound = 'modular_splurt/sound/voice/waa.ogg'
|
|
emote_cooldown = 3.5 SECONDS
|
|
|
|
/datum/emote/living/audio/bark2
|
|
key = "bark2"
|
|
key_third_person = "barks2"
|
|
message = "barks!"
|
|
message_mime = "acts out a bark!"
|
|
emote_sound = 'modular_splurt/sound/voice/bark_alt.ogg'
|
|
emote_cooldown = 0.35 SECONDS
|
|
|
|
/datum/emote/living/audio/yap
|
|
key = "yap"
|
|
key_third_person = "yaps"
|
|
message = "yaps!"
|
|
message_mime = "acts out a yap!"
|
|
emote_sound = 'modular_splurt/sound/voice/yap.ogg'
|
|
emote_cooldown = 0.28 SECONDS
|
|
|
|
/datum/emote/living/audio/yip
|
|
key = "yip"
|
|
key_third_person = "yips"
|
|
message = "yips!"
|
|
message_mime = "acts out a yip!"
|
|
emote_sound = 'modular_splurt/sound/voice/yip.ogg'
|
|
emote_cooldown = 0.2 SECONDS
|
|
|
|
/datum/emote/living/audio/bork
|
|
key = "bork"
|
|
key_third_person = "borks"
|
|
message = "borks!"
|
|
message_mime = "acts out a bork!"
|
|
emote_sound = 'modular_splurt/sound/voice/bork.ogg'
|
|
emote_cooldown = 0.4 SECONDS
|
|
|
|
/datum/emote/living/audio/woof
|
|
key = "woof"
|
|
key_third_person = "woofs"
|
|
message = "woofs!"
|
|
message_mime = "acts out a woof!"
|
|
emote_sound = 'modular_splurt/sound/voice/woof.ogg'
|
|
emote_cooldown = 0.71 SECONDS
|
|
|
|
/datum/emote/living/audio/woof/alt
|
|
key = "woof2"
|
|
key_third_person = "woofs2"
|
|
emote_sound = 'modular_splurt/sound/voice/woof2.ogg'
|
|
emote_cooldown = 0.3 SECONDS
|
|
|
|
/datum/emote/living/audio/howl
|
|
key = "howl"
|
|
key_third_person = "howls"
|
|
message = "howls!"
|
|
message_mime = "acts out a howl!"
|
|
emote_sound = 'modular_splurt/sound/voice/wolfhowl.ogg'
|
|
emote_cooldown = 2.04 SECONDS
|
|
|
|
/datum/emote/living/audio/coyhowl
|
|
key = "coyhowl"
|
|
key_third_person = "coyhowls"
|
|
message = "howls like coyote!"
|
|
message_mime = "acts out a coyote's howl!"
|
|
emote_sound = 'modular_splurt/sound/voice/coyotehowl.ogg'
|
|
emote_cooldown = 2.94 SECONDS // Uses longest sound's time
|
|
|
|
/datum/emote/living/audio/coyhowl/run_emote(mob/user, params)
|
|
emote_sound = pick('modular_splurt/sound/voice/coyotehowl.ogg', 'modular_splurt/sound/voice/coyotehowl2.ogg', 'modular_splurt/sound/voice/coyotehowl3.ogg', 'modular_splurt/sound/voice/coyotehowl4.ogg', 'modular_splurt/sound/voice/coyotehowl5.ogg')
|
|
. = ..()
|
|
|
|
/datum/emote/living/mlem
|
|
key = "mlem"
|
|
key_third_person = "mlems"
|
|
message = "sticks their tongue for a moment. Mlem!"
|
|
emote_type = EMOTE_VISIBLE
|
|
|
|
/datum/emote/living/audio/snore/snore2
|
|
key = "snore2"
|
|
key_third_person = "snores2"
|
|
message = "lets out an <b>earthshaking</b> snore"
|
|
message_mime = "lets out an <b>inaudible</b> snore!"
|
|
emote_sound = 'modular_splurt/sound/voice/aauugghh1.ogg'
|
|
emote_cooldown = 2.1 SECONDS
|
|
|
|
/datum/emote/living/audio/snore/snore2/run_emote(mob/user, params)
|
|
var/datum/dna/D = user.has_dna()
|
|
var/say_mod = (D ? D.species.say_mod : "says")
|
|
var/list/aaauughh = list(
|
|
"lets out an <b>earthshaking</b> snore.",
|
|
"lets out what sounds like a <b>painful</b> snore.",
|
|
"[say_mod], <b>\"AAAAAAUUUUUUGGGHHHHH!!!\"</b>"
|
|
)
|
|
message = pick(aaauughh)
|
|
|
|
// Set random emote sound
|
|
emote_sound = pick('modular_splurt/sound/voice/aauugghh1.ogg', 'modular_splurt/sound/voice/aauugghh2.ogg')
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/pant
|
|
key = "pant"
|
|
key_third_person = "pants"
|
|
message = "pants!"
|
|
|
|
/datum/emote/living/pant/run_emote(mob/user, params, type_override, intentional)
|
|
var/list/pants = list(
|
|
"pants!",
|
|
"pants like a dog.",
|
|
"lets out soft pants.",
|
|
"pulls [user.p_their()] tongue out, panting."
|
|
)
|
|
message = pick(pants)
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/yippee
|
|
key = "yippee"
|
|
key_third_person = "yippees"
|
|
message = "lets out a yippee!"
|
|
message_mime = "acts out a yippee!"
|
|
emote_sound = 'modular_splurt/sound/voice/yippee.ogg'
|
|
emote_cooldown = 1.2 SECONDS
|
|
|
|
/datum/emote/living/audio/mewo
|
|
key = "mewo"
|
|
key_third_person = "mewos"
|
|
message = "mewos!"
|
|
message_mime = "mewos silently!"
|
|
emote_sound = 'modular_splurt/sound/voice/mewo.ogg'
|
|
emote_cooldown = 0.7 SECONDS
|
|
|
|
/datum/emote/living/audio/ara_ara
|
|
key = "ara"
|
|
key_third_person = "aras"
|
|
message = "coos with sultry surprise~..."
|
|
message_mime = "exudes a sultry aura~"
|
|
emote_sound = 'modular_splurt/sound/voice/ara-ara.ogg'
|
|
emote_cooldown = 1.25 SECONDS
|
|
|
|
/datum/emote/living/audio/ara_ara/alt
|
|
key = "ara2"
|
|
emote_sound = 'modular_splurt/sound/voice/ara-ara2.ogg'
|
|
emote_cooldown = 1.3 SECONDS
|
|
|
|
/datum/emote/living/audio/missouri
|
|
key = "missouri"
|
|
key_third_person = "missouris"
|
|
message = "has relocated to Missouri."
|
|
message_mime = "starts thinking about Missouri."
|
|
emote_sound = 'modular_splurt/sound/voice/missouri.ogg'
|
|
emote_cooldown = 3.4 SECONDS
|
|
|
|
/datum/emote/living/audio/missouri/run_emote(mob/user, params)
|
|
// Set message pronouns
|
|
message = "appears to believe [user.p_theyre()] in Missouri."
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/facemetacarpus
|
|
key = "facehand" // Facepalm was taken
|
|
key_third_person = "facepalms"
|
|
// Message is generated from metacarpus_type below. You shouldn't see this!
|
|
message = "creates an error in the code." // Hear a slapping sound
|
|
muzzle_ignore = TRUE // Not a spoken emote
|
|
restraint_check = TRUE // Uses your hands
|
|
emote_sound = 'modular_splurt/sound/effects/slap.ogg'
|
|
// Defines appendage type for generated message
|
|
var/metacarpus_type = "palm" // Default to hands
|
|
emote_cooldown = 0.25 SECONDS
|
|
|
|
/datum/emote/living/audio/facemetacarpus/run_emote(mob/user, params)
|
|
// Randomly pick a message using metacarpus_type for hand
|
|
message = pick(list(
|
|
"places [usr.p_their()] [metacarpus_type] across [usr.p_their()] face.",
|
|
"lowers [usr.p_their()] face into [usr.p_their()] [metacarpus_type].",
|
|
"face[metacarpus_type]s",
|
|
))
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/facemetacarpus/paw
|
|
key = "facepaw" // For furries
|
|
key_third_person = "facepaws"
|
|
metacarpus_type = "paw"
|
|
|
|
/datum/emote/living/audio/facemetacarpus/claw
|
|
key = "faceclaw" // For scalies and avians
|
|
key_third_person = "faceclaws"
|
|
metacarpus_type = "claw"
|
|
|
|
/datum/emote/living/audio/facemetacarpus/hoof
|
|
key = "facehoof" // For horse enthusiasts
|
|
key_third_person = "facehoofs"
|
|
metacarpus_type = "hoof"
|
|
|
|
/datum/emote/living/audio/poyo
|
|
key = "poyo"
|
|
key_third_person = "poyos"
|
|
message = "%SAYS, \"Poyo!\""
|
|
message_mime = "acts out an excited motion!"
|
|
emote_sound = 'modular_splurt/sound/voice/barks/poyo.ogg'
|
|
// No cooldown var required
|
|
|
|
/datum/emote/living/audio/poyo/run_emote(mob/user, params)
|
|
var/datum/dna/D = user.has_dna()
|
|
var/say_mod = (D ? D.species.say_mod : "says")
|
|
message = replacetextEx(message, "%SAYS", say_mod)
|
|
|
|
// Return normally
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/rizz
|
|
key = "rizz"
|
|
key_third_person = "rizzes"
|
|
message = "saw something <u>hot</u>."
|
|
message_param = "looks at %t with bedroom eyes."
|
|
message_mime = "makes bedroom eyes."
|
|
emote_sound = 'modular_splurt/sound/voice/rizz.ogg'
|
|
emote_cooldown = 1.43 SECONDS
|
|
|
|
/datum/emote/living/audio/buff
|
|
key = "buff"
|
|
key_third_person = "buffs"
|
|
message = "shows off their muscles."
|
|
message_param = "shows off their muscles to %t."
|
|
emote_sound = 'modular_splurt/sound/voice/buff.ogg'
|
|
emote_cooldown = 4.77 SECONDS
|
|
emote_pitch_variance = FALSE
|
|
|
|
/datum/emote/living/audio/merowr
|
|
key = "merowr"
|
|
key_third_person = "merowrs"
|
|
message = "merowrs!"
|
|
message_mime = "acts out a merowr!"
|
|
emote_sound = 'modular_splurt/sound/voice/merowr.ogg'
|
|
emote_cooldown = 1.2 SECONDS
|
|
|
|
/datum/emote/living/audio/hoot
|
|
key = "hoot"
|
|
key_third_person = "hoots"
|
|
message = "hoots!"
|
|
message_mime = "acts out a hoot!"
|
|
emote_sound = 'modular_splurt/sound/voice/hoot.ogg'
|
|
emote_cooldown = 2.4 SECONDS
|
|
|
|
/datum/emote/living/audio/wurble
|
|
key = "wurble"
|
|
key_third_person = "wurbles"
|
|
message = "wurbles!"
|
|
message_mime = "acts out a wurbling!"
|
|
emote_sound = 'modular_splurt/sound/voice/wurble.ogg'
|
|
emote_cooldown = 2.3 SECONDS
|
|
|
|
/datum/emote/living/audio/warble
|
|
key = "warble"
|
|
key_third_person = "warbles"
|
|
message = "warbles!"
|
|
message_mime = "acts out a warbling!"
|
|
emote_sound = 'modular_splurt/sound/voice/warble.ogg'
|
|
emote_cooldown = 0.4 SECONDS
|
|
|
|
// At the moment of adding it I just realized there's Tesh test-merge going on, so I've added numeral in case if that gets merged in the long run.
|
|
/datum/emote/living/audio/trill2
|
|
key = "trill2"
|
|
key_third_person = "trills2"
|
|
message = "trills!"
|
|
message_mime = "acts out a trilling!"
|
|
emote_sound = 'modular_splurt/sound/voice/trill.ogg'
|
|
emote_cooldown = 1 SECONDS
|
|
|
|
/datum/emote/living/audio/rattlesnek
|
|
key = "rattle"
|
|
key_third_person = "rattles"
|
|
message = "rattles!"
|
|
message_mime = "acts like a rattling snake."
|
|
emote_sound = 'modular_splurt/sound/voice/rattle.ogg'
|
|
emote_cooldown = 4 SECONDS
|
|
|
|
/datum/emote/living/audio/rpurr
|
|
key = "rpurr"
|
|
key_third_person = "rpurrs"
|
|
message = "purrs like raptor!"
|
|
message_mime = "acts like a purring raptor."
|
|
emote_sound = 'modular_splurt/sound/voice/raptor_purr.ogg'
|
|
emote_cooldown = 1.5 SECONDS
|
|
|
|
/datum/emote/living/audio/bawk
|
|
key = "bawk"
|
|
key_third_person = "bawks"
|
|
message = "bawks!"
|
|
message_mime = "acts like a bawking chicken."
|
|
emote_sound = 'modular_splurt/sound/voice/bawk.ogg'
|
|
emote_cooldown = 0.5 SECONDS
|
|
|
|
/datum/emote/living/audio/moo
|
|
key = "moo"
|
|
key_third_person = "moos"
|
|
message = "moos!"
|
|
message_mime = "acts like a mooing cow."
|
|
emote_sound = 'modular_splurt/sound/voice/moo.ogg'
|
|
emote_cooldown = 1.7 SECONDS
|
|
|
|
/datum/emote/living/audio/untitledgoose
|
|
key = "goosehonk"
|
|
key_third_person = "honks"
|
|
message = "honks!"
|
|
message_mime = "looks like a duck from hell!"
|
|
emote_sound = 'modular_splurt/sound/voice/goosehonk/sfx_goose_honk_b_01.ogg'
|
|
emote_cooldown = 0.8 SECONDS
|
|
|
|
/datum/emote/living/audio/untitledgoose/run_emote(mob/user, params)
|
|
emote_sound = pick('modular_splurt/sound/voice/goosehonk/sfx_goose_honk_b_01.ogg', 'modular_splurt/sound/voice/goosehonk/sfx_goose_honk_b_02.ogg','modular_splurt/sound/voice/goosehonk/sfx_goose_honk_b_03.ogg','modular_splurt/sound/voice/goosehonk/sfx_goose_honk_b_06.ogg')
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/untitledgooseB
|
|
key = "goosehonkb"
|
|
key_third_person = "honks differently"
|
|
message = "honks differently!"
|
|
message_mime = "looks like a duck from hell!"
|
|
emote_sound = 'modular_splurt/sound/voice/goosehonk/sfx_goose_honk_b_01.ogg'
|
|
emote_cooldown = 0.8 SECONDS
|
|
|
|
/datum/emote/living/audio/untitledgooseB/run_emote(mob/user, params)
|
|
emote_sound = pick('modular_splurt/sound/voice/goosehonk/sfx_gooseB_honk_02.ogg', 'modular_splurt/sound/voice/goosehonk/sfx_gooseB_honk_03.ogg', 'modular_splurt/sound/voice/goosehonk/sfx_gooseB_honk_04.ogg', 'modular_splurt/sound/voice/goosehonk/sfx_gooseB_honk_06.ogg', 'modular_splurt/sound/voice/goosehonk/sfx_gooseB_honk_07.ogg', 'modular_splurt/sound/voice/goosehonk/sfx_gooseB_honk_08.ogg', 'modular_splurt/sound/voice/goosehonk/sfx_gooseB_honk_09.ogg')
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/scream2
|
|
key = "scream2"
|
|
key_third_person = "screams2"
|
|
message = "screams!"
|
|
message_mime = "acts out a rather silly scream!"
|
|
emote_sound = 'modular_splurt/sound/voice/cscream1.ogg'
|
|
emote_cooldown = 3.3 SECONDS // Uses longest sound's time.
|
|
emote_pitch_variance = FALSE
|
|
|
|
/datum/emote/living/audio/scream2/run_emote(mob/user, params)
|
|
emote_sound = pick('modular_splurt/sound/voice/cscream1.ogg', 'modular_splurt/sound/voice/cscream2.ogg', 'modular_splurt/sound/voice/cscream3.ogg', 'modular_splurt/sound/voice/cscream4.ogg', 'modular_splurt/sound/voice/cscream5.ogg', 'modular_splurt/sound/voice/cscream6.ogg', 'modular_splurt/sound/voice/cscream7.ogg', 'modular_splurt/sound/voice/cscream8.ogg', 'modular_splurt/sound/voice/cscream9.ogg', 'modular_splurt/sound/voice/cscream10.ogg', 'modular_splurt/sound/voice/cscream11.ogg', 'modular_splurt/sound/voice/cscream12.ogg')
|
|
. = ..()
|
|
|
|
// Here comes gachimuchi
|
|
/datum/emote/living/audio/scream3
|
|
key = "scream3"
|
|
key_third_person = "screams3"
|
|
message = "screams manly!"
|
|
message_mime = "acts out a rather manly scream!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/scream1.ogg'
|
|
emote_cooldown = 4.64 SECONDS // Uses longest sound's time.
|
|
|
|
/datum/emote/living/audio/scream3/run_emote(mob/user, params)
|
|
emote_sound = pick('modular_splurt/sound/voice/gachi/scream1.ogg', 'modular_splurt/sound/voice/gachi/scream2.ogg', 'modular_splurt/sound/voice/gachi/scream3.ogg', 'modular_splurt/sound/voice/gachi/scream4.ogg')
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/moan2
|
|
key = "moan2"
|
|
key_third_person = "moans2"
|
|
message = "moans somewhat manly!"
|
|
message_mime = "acts out a rather manly moan!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/moan1.ogg'
|
|
emote_cooldown = 2.7 SECONDS // Uses longest sound's time.
|
|
|
|
/datum/emote/living/audio/moan2/run_emote(mob/user, params)
|
|
emote_sound = pick('modular_splurt/sound/voice/gachi/moan1.ogg', 'modular_splurt/sound/voice/gachi/moan2.ogg', 'modular_splurt/sound/voice/gachi/moan3.ogg', 'modular_splurt/sound/voice/gachi/moan4.ogg')
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/woop
|
|
key = "woop"
|
|
key_third_person = "woops"
|
|
message = "woops!"
|
|
message_mime = "silently woops!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/woop.ogg'
|
|
emote_volume = 35
|
|
emote_cooldown = 0.4 SECONDS
|
|
|
|
/datum/emote/living/audio/whatthehell/right
|
|
key = "wth2"
|
|
key_third_person = "wths2"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/wth2.ogg'
|
|
emote_volume = 100
|
|
emote_cooldown = 1.0 SECONDS
|
|
|
|
/datum/emote/living/audio/pardon
|
|
key = "sorry"
|
|
key_third_person = "sorrys"
|
|
message = "exclaims, \"Oh shit, I am sorry!\""
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/sorry.ogg'
|
|
emote_cooldown = 1.3 SECONDS
|
|
|
|
/datum/emote/living/audio/fock
|
|
key = "fuckyou"
|
|
key_third_person = "fuckyous"
|
|
message = "curses someone!"
|
|
message_mime = "silently curses someone!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/fockyou1.ogg'
|
|
emote_cooldown = 1.18 SECONDS // Uses longest sound's time.
|
|
|
|
/datum/emote/living/audio/fock/run_emote(mob/user, params)
|
|
emote_sound = pick('modular_splurt/sound/voice/gachi/fockyou1.ogg', 'modular_splurt/sound/voice/gachi/fockyou2.ogg')
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/letsgo
|
|
key = "go"
|
|
key_third_person = "goes"
|
|
message = "yells, \"Come on, lets go!\""
|
|
message_mime = "motions moving forward!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/go.ogg'
|
|
emote_cooldown = 1.6 SECONDS
|
|
|
|
/datum/emote/living/audio/chuckle2
|
|
key = "chuckle2"
|
|
key_third_person = "chuckles2"
|
|
message = "chuckles."
|
|
message_mime = "chuckles silently."
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/chuckle.ogg'
|
|
emote_cooldown = 1.01 SECONDS
|
|
|
|
/datum/emote/living/audio/boss
|
|
key = "boss"
|
|
key_third_person = "boss"
|
|
message = "seeks the boss of this place!"
|
|
message_mime = "stares at the potential boss of this place!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/boss.ogg'
|
|
emote_cooldown = 1.68 SECONDS
|
|
|
|
/datum/emote/living/audio/attention
|
|
key = "attention"
|
|
key_third_person = "attentions"
|
|
message = "demands an attention!"
|
|
message_mime = "seems to be looking for an attention."
|
|
emote_volume = 100
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/attention.ogg'
|
|
emote_cooldown = 1.36 SECONDS
|
|
|
|
/datum/emote/living/audio/ah
|
|
key = "ah"
|
|
key_third_person = "ahs"
|
|
message = "ahs!"
|
|
message_mime = "ahs silently!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/ah.ogg'
|
|
emote_cooldown = 0.67 SECONDS
|
|
emote_volume = 25
|
|
|
|
/datum/emote/living/audio/boolets
|
|
key = "ammo"
|
|
key_third_person = "ammos"
|
|
message = "is requesting ammo!"
|
|
message_mime = "seem to ask for ammo!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/boolets.ogg'
|
|
emote_cooldown = 1.1 SECONDS // Uses longest sound's time.
|
|
emote_volume = 10
|
|
|
|
/datum/emote/living/audio/boolets/run_emote(mob/user, params)
|
|
emote_sound = pick('modular_splurt/sound/voice/gachi/boolets.ogg', 'modular_splurt/sound/voice/gachi/boolets2.ogg')
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/wepon
|
|
key = "wepon"
|
|
key_third_person = "wepons"
|
|
message = "is requesting bigger weapons!"
|
|
message_mime = "seem to ask for weapons!"
|
|
emote_sound = 'modular_splurt/sound/voice/gachi/wepons.ogg'
|
|
emote_cooldown = 1.07 SECONDS
|
|
emote_volume = 10
|
|
|
|
/datum/emote/living/audio/sciteam
|
|
key = "sciteam"
|
|
key_third_person = "sciteams"
|
|
message = "exclaims, \"I am with the <b>Science</b> team!\""
|
|
message_mime = "gestures being with the Science team!"
|
|
emote_sound = 'modular_splurt/sound/voice/sciteam.ogg'
|
|
emote_cooldown = 1.32 SECONDS
|
|
emote_volume = 90
|
|
|
|
/datum/emote/living/audio/ambatukam
|
|
key = "ambatukam"
|
|
key_third_person = "ambatukams"
|
|
message = "is about to come!"
|
|
message_mime = "seems like about to come!"
|
|
emote_sound = 'modular_splurt/sound/voice/ambatukam.ogg'
|
|
emote_cooldown = 2.75 SECONDS
|
|
//emote_volume = 30
|
|
|
|
/datum/emote/living/audio/ambatukam2
|
|
key = "ambatukam2"
|
|
key_third_person = "ambatukams2"
|
|
message = "is about to come in harmony!"
|
|
message_mime = "seems like about to come in harmony!"
|
|
emote_sound = 'modular_splurt/sound/voice/ambatukam_harmony.ogg'
|
|
emote_cooldown = 3.42 SECONDS
|
|
//emote_volume = 60
|
|
|
|
/datum/emote/living/audio/eekum
|
|
key = "eekumbokum"
|
|
key_third_person = "eekumbokums"
|
|
message = "eekum-bokums!"
|
|
message_mime = "seem to eekum-bokum!"
|
|
emote_sound = 'modular_splurt/sound/voice/eekum-bokum.ogg'
|
|
emote_cooldown = 0.9 SECONDS // Uses longest sound's time.
|
|
|
|
/datum/emote/living/audio/eekum/run_emote(mob/user, params)
|
|
switch(user.gender)
|
|
if(MALE) // Game's SFX
|
|
emote_sound = 'modular_splurt/sound/voice/eekum-bokum.ogg'
|
|
if(FEMALE) // Korone's
|
|
emote_sound = pick('modular_splurt/sound/voice/eekum-bokum_f1.ogg', 'modular_splurt/sound/voice/eekum-bokum_f2.ogg')
|
|
else // Both
|
|
emote_sound = pick('modular_splurt/sound/voice/eekum-bokum.ogg', 'modular_splurt/sound/voice/eekum-bokum_f1.ogg', 'modular_splurt/sound/voice/eekum-bokum_f2.ogg')
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/bazinga
|
|
key = "bazinga"
|
|
key_third_person = "bazingas"
|
|
message = "exclaims, \"<i>Bazinga!</i>\""
|
|
message_mime = "fools someone, silently."
|
|
emote_sound = 'modular_splurt/sound/voice/bazinga.ogg'
|
|
emote_cooldown = 0.65 SECONDS
|
|
|
|
/datum/emote/living/audio/bazinga/run_emote(mob/user, params)
|
|
if(prob(1)) // If Empah had TTS #25
|
|
emote_sound = 'modular_splurt/sound/voice/bazinga_ebil.ogg'
|
|
emote_pitch_variance = FALSE
|
|
emote_cooldown = 1.92 SECONDS
|
|
emote_volume = 110
|
|
else
|
|
emote_sound = 'modular_splurt/sound/voice/bazinga.ogg'
|
|
emote_pitch_variance = TRUE
|
|
emote_cooldown = 0.65 SECONDS
|
|
emote_volume = 50
|
|
. = ..()
|
|
|
|
/datum/emote/living/audio/yooo
|
|
key = "yooo"
|
|
key_third_person = "yooos"
|
|
message = "thinks they are part of Kabuki play."
|
|
emote_sound = 'modular_splurt/sound/voice/yooo.ogg'
|
|
emote_cooldown = 2.54 SECONDS
|
|
|
|
/datum/emote/living/audio/buzzer_correct
|
|
key = "correct"
|
|
key_third_person = "corrects"
|
|
message = "thinks someone is correct."
|
|
message_param = "thinks %t is correct."
|
|
emote_sound = 'modular_splurt/sound/voice/buzzer_correct.ogg'
|
|
emote_cooldown = 0.84 SECONDS
|
|
|
|
/datum/emote/living/audio/buzzer_incorrect
|
|
key = "incorrect"
|
|
key_third_person = "incorrects"
|
|
message = "thinks someone is incorrect."
|
|
message_param = "thinks %t is incorrect."
|
|
emote_sound = 'modular_splurt/sound/voice/buzzer_incorrect.ogg'
|
|
emote_cooldown = 1.21 SECONDS
|