diff --git a/code/game/sound.dm b/code/game/sound.dm index ddeca577ab5..aa13ca867e9 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -850,6 +850,15 @@ 'sound/effects/footstep_skrell6.ogg' ) +/singleton/sound_category/footstep_unathi_sound + sounds = list( + 'sound/effects/footstep_unathi1.ogg', + 'sound/effects/footstep_unathi2.ogg', + 'sound/effects/footstep_unathi3.ogg', + 'sound/effects/footstep_unathi4.ogg', + 'sound/effects/footstep_unathi5.ogg' + ) + /singleton/sound_category/hammer_sound sounds = list( 'sound/items/tools/hammer1.ogg', diff --git a/code/modules/mob/living/carbon/human/species/station/unathi/unathi.dm b/code/modules/mob/living/carbon/human/species/station/unathi/unathi.dm index 50fba1cf6e8..3a44508f154 100644 --- a/code/modules/mob/living/carbon/human/species/station/unathi/unathi.dm +++ b/code/modules/mob/living/carbon/human/species/station/unathi/unathi.dm @@ -105,6 +105,8 @@ "Your scales bristle against the cold." ) + footsound = /singleton/sound_category/footstep_unathi_sound + has_organ = list( BP_BRAIN = /obj/item/organ/internal/brain/unathi, BP_EYES = /obj/item/organ/internal/eyes/unathi, diff --git a/html/changelogs/Crosarius-unathifootsteps.yml b/html/changelogs/Crosarius-unathifootsteps.yml new file mode 100644 index 00000000000..dd053654d70 --- /dev/null +++ b/html/changelogs/Crosarius-unathifootsteps.yml @@ -0,0 +1,6 @@ +author: Crosarius + +delete-after: True + +changes: + - soundadd: "Added footstep sound effects for barefoot Unathi." diff --git a/sound/effects/footstep_unathi1.ogg b/sound/effects/footstep_unathi1.ogg new file mode 100644 index 00000000000..cdfc1f5abb1 Binary files /dev/null and b/sound/effects/footstep_unathi1.ogg differ diff --git a/sound/effects/footstep_unathi2.ogg b/sound/effects/footstep_unathi2.ogg new file mode 100644 index 00000000000..f6590c15479 Binary files /dev/null and b/sound/effects/footstep_unathi2.ogg differ diff --git a/sound/effects/footstep_unathi3.ogg b/sound/effects/footstep_unathi3.ogg new file mode 100644 index 00000000000..42884bbc9fe Binary files /dev/null and b/sound/effects/footstep_unathi3.ogg differ diff --git a/sound/effects/footstep_unathi4.ogg b/sound/effects/footstep_unathi4.ogg new file mode 100644 index 00000000000..88e2e983185 Binary files /dev/null and b/sound/effects/footstep_unathi4.ogg differ diff --git a/sound/effects/footstep_unathi5.ogg b/sound/effects/footstep_unathi5.ogg new file mode 100644 index 00000000000..a1a042bc134 Binary files /dev/null and b/sound/effects/footstep_unathi5.ogg differ