diff --git a/code/datums/keybindings/emote_keybinds.dm b/code/datums/keybindings/emote_keybinds.dm index 969fd74bd0f..e8bfccd3a02 100644 --- a/code/datums/keybindings/emote_keybinds.dm +++ b/code/datums/keybindings/emote_keybinds.dm @@ -505,6 +505,10 @@ linked_emote = /datum/emote/living/carbon/human/hiss name = "Hiss (Unathi)" +/datum/keybinding/emote/carbon/human/thump + linked_emote = /datum/emote/living/carbon/human/thump + name = "Tail Thump" + /datum/keybinding/emote/carbon/human/creak linked_emote = /datum/emote/living/carbon/human/creak name = "Creak" diff --git a/code/modules/mob/living/carbon/human/human_emote.dm b/code/modules/mob/living/carbon/human/human_emote.dm index d11d16cc635..d80dba7e7ed 100644 --- a/code/modules/mob/living/carbon/human/human_emote.dm +++ b/code/modules/mob/living/carbon/human/human_emote.dm @@ -733,6 +733,16 @@ sound = "sound/effects/unathihiss.ogg" muzzled_noises = list("weak hissing") +/datum/emote/living/carbon/human/thump + key = "thump" + key_third_person = "thumps" + message = "thumps their tail." + message_param = "thumps their tail at %t." + species_type_whitelist_typecache = list(/datum/species/unathi) + emote_type = EMOTE_AUDIBLE + // Credit to TylerAM (freesound.org) for the sound. + sound = "sound/effects/unathitailthump.ogg" + /datum/emote/living/carbon/human/creak key = "creak" key_third_person = "creaks" diff --git a/code/modules/mob/living/carbon/human/species/unathi.dm b/code/modules/mob/living/carbon/human/species/unathi.dm index 064f551d6a9..01cd9399abf 100644 --- a/code/modules/mob/living/carbon/human/species/unathi.dm +++ b/code/modules/mob/living/carbon/human/species/unathi.dm @@ -34,6 +34,8 @@ //Default styles for created mobs. default_headacc = "Simple" default_headacc_colour = "#404040" + male_scream_sound = 'sound/effects/unathiscream.ogg' // credits to skyrat [https://github.com/Skyrat-SS13/Skyrat-tg/pull/892] + female_scream_sound = 'sound/effects/unathiscream.ogg' butt_sprite = "unathi" has_organ = list( diff --git a/sound/effects/unathiscream.ogg b/sound/effects/unathiscream.ogg new file mode 100644 index 00000000000..aec2d56303b Binary files /dev/null and b/sound/effects/unathiscream.ogg differ diff --git a/sound/effects/unathitailthump.ogg b/sound/effects/unathitailthump.ogg new file mode 100644 index 00000000000..e4bf25f7b8d Binary files /dev/null and b/sound/effects/unathitailthump.ogg differ