diff --git a/modular_skyrat/modules/emotes/code/emotes.dm b/modular_skyrat/modules/emotes/code/emotes.dm index 520b34dcf38..df6ffda2f6d 100644 --- a/modular_skyrat/modules/emotes/code/emotes.dm +++ b/modular_skyrat/modules/emotes/code/emotes.dm @@ -583,4 +583,4 @@ message = "meows loudly!" emote_type = EMOTE_AUDIBLE vary = TRUE - sound = 'modular_skyrat/modules/emotes/sound/voice/mggaow.ogg' + sound = 'modular_skyrat/modules/emotes/sound/voice/mggaow.ogg' \ No newline at end of file diff --git a/modular_skyrat/modules/emotes/sound/emotes/license.txt b/modular_skyrat/modules/emotes/sound/emotes/license.txt new file mode 100644 index 00000000000..af1a9e97ed2 --- /dev/null +++ b/modular_skyrat/modules/emotes/sound/emotes/license.txt @@ -0,0 +1,2 @@ +yipyip is "Yip Yip" from http://soundboards.cubicleninja.com/ +yip sounds sourced from kobold generator: https://introdile.itch.io/kobold-generator \ No newline at end of file diff --git a/modular_zubbers/code/modules/emotes/emotes.dm b/modular_zubbers/code/modules/emotes/emotes.dm index f4a68900286..ebb59fa13cd 100644 --- a/modular_zubbers/code/modules/emotes/emotes.dm +++ b/modular_zubbers/code/modules/emotes/emotes.dm @@ -132,3 +132,24 @@ emote_type = EMOTE_AUDIBLE vary = TRUE sound = 'modular_zubbers/code/modules/emotes/sound/voice/squeal.ogg' // See https://github.com/shiptest-ss13/Shiptest/pull/2159 + +/datum/emote/living/yipyip + key = "yipyip" + key_third_person = "yips twice" + message = "yips twice!" + emote_type = EMOTE_AUDIBLE + vary = TRUE + sound = 'modular_zubbers/code/modules/emotes/sound/voice/yip.ogg' + +/datum/emote/living/yip + key = "yip" + key_third_person = "yips" + message = "yips!" + emote_type = EMOTE_AUDIBLE + vary = TRUE + mob_type_allowed_typecache = list(/mob/living/carbon, /mob/living/silicon/pai) + +/datum/emote/living/yip/get_sound(mob/living/user) + return pick('modular_zubbers/code/modules/emotes/sound/voice/yip1.ogg', + 'modular_zubbers/code/modules/emotes/sound/voice/yip2.ogg', + 'modular_zubbers/code/modules/emotes/sound/voice/yip2.ogg') diff --git a/modular_zubbers/code/modules/emotes/sound/voice/yip.ogg b/modular_zubbers/code/modules/emotes/sound/voice/yip.ogg new file mode 100644 index 00000000000..dd11b0157f1 Binary files /dev/null and b/modular_zubbers/code/modules/emotes/sound/voice/yip.ogg differ diff --git a/modular_zubbers/code/modules/emotes/sound/voice/yip1.ogg b/modular_zubbers/code/modules/emotes/sound/voice/yip1.ogg new file mode 100644 index 00000000000..9f54efe3ebd Binary files /dev/null and b/modular_zubbers/code/modules/emotes/sound/voice/yip1.ogg differ diff --git a/modular_zubbers/code/modules/emotes/sound/voice/yip2.ogg b/modular_zubbers/code/modules/emotes/sound/voice/yip2.ogg new file mode 100644 index 00000000000..acd24ae256e Binary files /dev/null and b/modular_zubbers/code/modules/emotes/sound/voice/yip2.ogg differ diff --git a/modular_zubbers/code/modules/emotes/sound/voice/yip3.ogg b/modular_zubbers/code/modules/emotes/sound/voice/yip3.ogg new file mode 100644 index 00000000000..36bc9ec00f2 Binary files /dev/null and b/modular_zubbers/code/modules/emotes/sound/voice/yip3.ogg differ