diff --git a/code/modules/mob/living/basic/farm_animals/cow.dm b/code/modules/mob/living/basic/farm_animals/cow.dm index 07ce11fb999..1ba8bc4049c 100644 --- a/code/modules/mob/living/basic/farm_animals/cow.dm +++ b/code/modules/mob/living/basic/farm_animals/cow.dm @@ -2,6 +2,7 @@ speech_chance = 2 speak = list("Moo?", "Moo", "MOOOOOO") speak_verbs = list("moos", "moos hauntingly") + sound = list('sound/creatures/cow.ogg') emote_hear = list("brays.") emote_see = list("shakes her head.") diff --git a/code/modules/mob/living/basic/farm_animals/pig.dm b/code/modules/mob/living/basic/farm_animals/pig.dm index 16e320f6fd0..c71ff2ca896 100644 --- a/code/modules/mob/living/basic/farm_animals/pig.dm +++ b/code/modules/mob/living/basic/farm_animals/pig.dm @@ -1,6 +1,7 @@ /datum/ai_planning_subtree/random_speech/pig speech_chance = 2 speak = list("oink?", "oink", "OINK") + sound = list('sound/creatures/pig.ogg') emote_hear = list("oinks.") emote_see = list("rolls around.") diff --git a/sound/Attributions.txt b/sound/Attributions.txt index 751fa82af5b..3927b51415b 100644 --- a/sound/Attributions.txt +++ b/sound/Attributions.txt @@ -8,4 +8,10 @@ machines/triple_beep.ogg is taken from /tg/station. Source (https://github.com/t misc/server_alert.ogg is taken from https://freesound.org/people/rhodesmas/sounds/380264/ and compressed to .ogg, under the CC-BY 3.0 license. Sound modified by Carthusia +Pig Oink by qubodup (cut down version of below for sound/creatures/pig.ogg) -- https://freesound.org/s/442906/ -- License: Creative Commons 0 + +Angry Pig Oinking by Jofae (full version of above for sound/creatures/pig.ogg)-- https://freesound.org/s/352698/ -- License: Creative Commons 0 + +Moo 3 - Moo Moo the Cow by manofham (sound/creatures/cow.ogg)-- https://freesound.org/s/700380/ -- License: Creative Commons 0 + effects/voxfcaw.ogg and effects/voxrcaw.ogg are processed versions of https://opengameart.org/content/crow-caw from zeroisnotnull under CC0 1.0 diff --git a/sound/creatures/cow.ogg b/sound/creatures/cow.ogg new file mode 100644 index 00000000000..4c3c48d8304 Binary files /dev/null and b/sound/creatures/cow.ogg differ diff --git a/sound/creatures/pig.ogg b/sound/creatures/pig.ogg new file mode 100644 index 00000000000..c8d8780f8ec Binary files /dev/null and b/sound/creatures/pig.ogg differ